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 3 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, see <http://www.gnu.org/licenses/>.
|
---|
19 | */
|
---|
20 |
|
---|
21 | #include "libcli/ldap/libcli_ldap.h"
|
---|
22 | #include "lib/socket/socket.h"
|
---|
23 | #include "lib/stream/packet.h"
|
---|
24 | #include "system/network.h"
|
---|
25 |
|
---|
26 | struct ldapsrv_connection {
|
---|
27 | struct loadparm_context *lp_ctx;
|
---|
28 | struct stream_connection *connection;
|
---|
29 | struct gensec_security *gensec;
|
---|
30 | struct auth_session_info *session_info;
|
---|
31 | struct ldapsrv_service *service;
|
---|
32 | struct cli_credentials *server_credentials;
|
---|
33 | struct ldb_context *ldb;
|
---|
34 |
|
---|
35 | struct {
|
---|
36 | struct tevent_queue *send_queue;
|
---|
37 | struct tstream_context *raw;
|
---|
38 | struct tstream_context *tls;
|
---|
39 | struct tstream_context *sasl;
|
---|
40 | struct tstream_context *active;
|
---|
41 | } sockets;
|
---|
42 |
|
---|
43 | bool global_catalog;
|
---|
44 | bool is_privileged;
|
---|
45 |
|
---|
46 | struct {
|
---|
47 | int initial_timeout;
|
---|
48 | int conn_idle_time;
|
---|
49 | int max_page_size;
|
---|
50 | int search_timeout;
|
---|
51 | struct timeval endtime;
|
---|
52 | const char *reason;
|
---|
53 | } limits;
|
---|
54 |
|
---|
55 | struct tevent_req *active_call;
|
---|
56 | };
|
---|
57 |
|
---|
58 | struct ldapsrv_call {
|
---|
59 | struct ldapsrv_connection *conn;
|
---|
60 | struct ldap_message *request;
|
---|
61 | struct ldapsrv_reply {
|
---|
62 | struct ldapsrv_reply *prev, *next;
|
---|
63 | struct ldap_message *msg;
|
---|
64 | } *replies;
|
---|
65 | struct iovec out_iov;
|
---|
66 |
|
---|
67 | struct tevent_req *(*postprocess_send)(TALLOC_CTX *mem_ctx,
|
---|
68 | struct tevent_context *ev,
|
---|
69 | void *private_data);
|
---|
70 | NTSTATUS (*postprocess_recv)(struct tevent_req *req);
|
---|
71 | void *postprocess_private;
|
---|
72 | };
|
---|
73 |
|
---|
74 | struct ldapsrv_service {
|
---|
75 | struct tstream_tls_params *tls_params;
|
---|
76 | struct task_server *task;
|
---|
77 | struct tevent_queue *call_queue;
|
---|
78 | };
|
---|
79 |
|
---|
80 | #include "ldap_server/proto.h"
|
---|