r10810: This adds the hooks required to communicate the current user from the
[mat/samba.git] / source4 / ldap_server / ldap_server.h
1 /* 
2    Unix SMB/CIFS implementation.
3    LDAP server
4    Copyright (C) Volker Lendecke 2004
5    Copyright (C) Stefan Metzmacher 2004
6    
7    This program is free software; you can redistribute it and/or modify
8    it under the terms of the GNU General Public License as published by
9    the Free Software Foundation; either version 2 of the License, or
10    (at your option) any later version.
11    
12    This program is distributed in the hope that it will be useful,
13    but WITHOUT ANY WARRANTY; without even the implied warranty of
14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15    GNU General Public License for more details.
16    
17    You should have received a copy of the GNU General Public License
18    along with this program; if not, write to the Free Software
19    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 */
21
22 #include "libcli/ldap/ldap.h"
23
24 struct ldapsrv_connection {
25         struct stream_connection *connection;
26         struct gensec_security *gensec;
27         struct auth_session_info *session_info;
28         struct ldapsrv_service *service;
29         struct tls_context *tls;
30         struct ldapsrv_partition *rootDSE;
31         struct ldapsrv_partition *default_partition;
32         struct ldapsrv_partition *partitions;
33
34         /* partially received request */
35         DATA_BLOB partial;
36
37         /* are we using gensec wrapping? */
38         BOOL enable_wrap;
39
40         /* reply send queue */
41         struct data_blob_list_item *send_queue;
42
43         BOOL processing;
44
45         /* connection should be terminated if non-null */
46         const char *terminate;
47 };
48
49 struct ldapsrv_call {
50         struct ldapsrv_connection *conn;
51         struct ldap_message *request;
52         struct ldapsrv_reply {
53                 struct ldapsrv_reply *prev, *next;
54                 struct ldap_message *msg;
55         } *replies;
56 };
57
58 struct ldapsrv_service;
59 struct ldapsrv_partition;
60
61 struct ldapsrv_partition_ops {
62         const char *name;
63         NTSTATUS (*Init)(struct ldapsrv_partition *partition, struct ldapsrv_connection *conn);
64         NTSTATUS (*Bind)(struct ldapsrv_partition *partition, struct ldapsrv_connection *conn);
65         NTSTATUS (*Search)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_SearchRequest *r);
66         NTSTATUS (*Modify)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_ModifyRequest *r);
67         NTSTATUS (*Add)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_AddRequest *r);
68         NTSTATUS (*Del)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_DelRequest *r);
69         NTSTATUS (*ModifyDN)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_ModifyDNRequest *r);
70         NTSTATUS (*Compare)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_CompareRequest *r);
71         NTSTATUS (*Abandon)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_AbandonRequest *r);
72         NTSTATUS (*Extended)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_ExtendedRequest *r);
73 };
74
75 struct ldapsrv_partition {
76         struct ldapsrv_partition *prev,*next;
77
78         void *private;
79         const struct ldapsrv_partition_ops *ops;
80
81         const char *base_dn;
82 };
83
84 struct ldapsrv_service {
85         struct tls_params *tls_params;
86 };