r3962: fix compiler warnings
[kai/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 struct rw_buffer {
23         uint8_t *data;
24         size_t ofs, length;
25 };
26
27 enum ldapsrv_call_state {
28         LDAPSRV_CALL_STATE_NEW = 0,
29         LDAPSRV_CALL_STATE_BUSY,
30         LDAPSRV_CALL_STATE_ASYNC,
31         LDAPSRV_CALL_STATE_ABORT,
32         LDAPSRV_CALL_STATE_COMPLETE
33 };
34
35 enum ldapsrv_reply_state {
36         LDAPSRV_REPLY_STATE_NEW = 0,
37         LDAPSRV_REPLY_STATE_SEND
38 };
39
40 struct ldapsrv_connection;
41
42 struct ldapsrv_call {
43         struct ldapsrv_call *prev,*next;
44         enum ldapsrv_call_state state;
45
46         struct ldapsrv_connection *conn;
47
48         struct ldap_message request;
49
50         struct ldapsrv_reply {
51                 struct ldapsrv_reply *prev,*next;
52                 enum ldapsrv_reply_state state;
53                 struct ldap_message msg;
54         } *replies;
55 };
56
57 struct ldapsrv_service;
58
59 struct ldapsrv_connection {
60         struct server_connection *connection;
61
62         struct gensec_security *gensec;
63         struct auth_session_info *session_info;
64
65         struct rw_buffer sasl_in_buffer;
66         struct rw_buffer sasl_out_buffer;
67
68         struct rw_buffer in_buffer;
69         struct rw_buffer out_buffer;
70
71         struct ldapsrv_call *calls;
72
73         struct ldapsrv_service *service;
74 };
75
76 struct ldapsrv_partition;
77
78 struct ldapsrv_partition_ops {
79         const char *name;
80         NTSTATUS (*Init)(struct ldapsrv_partition *partition, struct ldapsrv_connection *conn);
81         NTSTATUS (*Search)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_SearchRequest *r);
82         NTSTATUS (*Modify)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_ModifyRequest *r);
83         NTSTATUS (*Add)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_AddRequest *r);
84         NTSTATUS (*Del)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_DelRequest *r);
85         NTSTATUS (*ModifyDN)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_ModifyDNRequest *r);
86         NTSTATUS (*Compare)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_CompareRequest *r);
87         NTSTATUS (*Abandon)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_AbandonRequest *r);
88         NTSTATUS (*Extended)(struct ldapsrv_partition *partition, struct ldapsrv_call *call, struct ldap_ExtendedRequest *r);
89 };
90
91 struct ldapsrv_partition {
92         struct ldapsrv_partition *prev,*next;
93
94         void *private_data;
95         const struct ldapsrv_partition_ops *ops;
96
97         const char *base_dn;
98 };
99
100 struct ldapsrv_service {
101         struct ldapsrv_partition *rootDSE;
102         struct ldapsrv_partition *default_partition;
103         struct ldapsrv_partition *partitions;
104 };