2 Unix SMB/CIFS implementation.
6 Copyright (C) Andrew Tridgell 2005
7 Copyright (C) Volker Lendecke 2004
8 Copyright (C) Stefan Metzmacher 2004
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 3 of the License, or
13 (at your option) any later version.
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "system/network.h"
26 #include "lib/events/events.h"
27 #include "auth/auth.h"
28 #include "auth/credentials/credentials.h"
29 #include "librpc/gen_ndr/ndr_samr.h"
30 #include "../lib/util/dlinklist.h"
31 #include "../lib/util/asn1.h"
32 #include "ldap_server/ldap_server.h"
33 #include "samba/service_task.h"
34 #include "samba/service_stream.h"
35 #include "samba/service.h"
36 #include "samba/process_model.h"
37 #include "lib/tls/tls.h"
38 #include "lib/messaging/irpc.h"
40 #include <ldb_errors.h>
41 #include "libcli/ldap/ldap_proto.h"
42 #include "system/network.h"
43 #include "lib/socket/netif.h"
44 #include "dsdb/samdb/samdb.h"
45 #include "param/param.h"
46 #include "../lib/tsocket/tsocket.h"
47 #include "../lib/util/tevent_ntstatus.h"
48 #include "../libcli/util/tstream.h"
49 #include "libds/common/roles.h"
50 #include "lib/util/time.h"
51 #include "lib/util/server_id.h"
52 #include "lib/util/server_id_db.h"
53 #include "lib/messaging/messaging_internal.h"
57 static void ldapsrv_terminate_connection_done(struct tevent_req
*subreq
);
60 close the socket and shutdown a server_context
62 static void ldapsrv_terminate_connection(struct ldapsrv_connection
*conn
,
65 struct tevent_req
*subreq
;
67 if (conn
->limits
.reason
) {
71 DLIST_REMOVE(conn
->service
->connections
, conn
);
73 conn
->limits
.endtime
= timeval_current_ofs(0, 500);
75 tevent_queue_stop(conn
->sockets
.send_queue
);
76 TALLOC_FREE(conn
->sockets
.read_req
);
77 TALLOC_FREE(conn
->deferred_expire_disconnect
);
78 if (conn
->active_call
) {
79 tevent_req_cancel(conn
->active_call
);
80 conn
->active_call
= NULL
;
83 conn
->limits
.reason
= talloc_strdup(conn
, reason
);
84 if (conn
->limits
.reason
== NULL
) {
85 TALLOC_FREE(conn
->sockets
.tls
);
86 TALLOC_FREE(conn
->sockets
.sasl
);
87 TALLOC_FREE(conn
->sockets
.raw
);
88 stream_terminate_connection(conn
->connection
, reason
);
92 subreq
= tstream_disconnect_send(conn
,
93 conn
->connection
->event
.ctx
,
94 conn
->sockets
.active
);
96 TALLOC_FREE(conn
->sockets
.tls
);
97 TALLOC_FREE(conn
->sockets
.sasl
);
98 TALLOC_FREE(conn
->sockets
.raw
);
99 stream_terminate_connection(conn
->connection
, reason
);
102 tevent_req_set_endtime(subreq
,
103 conn
->connection
->event
.ctx
,
104 conn
->limits
.endtime
);
105 tevent_req_set_callback(subreq
, ldapsrv_terminate_connection_done
, conn
);
108 static void ldapsrv_terminate_connection_done(struct tevent_req
*subreq
)
110 struct ldapsrv_connection
*conn
=
111 tevent_req_callback_data(subreq
,
112 struct ldapsrv_connection
);
116 tstream_disconnect_recv(subreq
, &sys_errno
);
119 if (conn
->sockets
.active
== conn
->sockets
.raw
) {
120 TALLOC_FREE(conn
->sockets
.tls
);
121 TALLOC_FREE(conn
->sockets
.sasl
);
122 TALLOC_FREE(conn
->sockets
.raw
);
123 stream_terminate_connection(conn
->connection
,
124 conn
->limits
.reason
);
128 TALLOC_FREE(conn
->sockets
.tls
);
129 TALLOC_FREE(conn
->sockets
.sasl
);
130 conn
->sockets
.active
= conn
->sockets
.raw
;
132 subreq
= tstream_disconnect_send(conn
,
133 conn
->connection
->event
.ctx
,
134 conn
->sockets
.active
);
135 if (subreq
== NULL
) {
136 TALLOC_FREE(conn
->sockets
.raw
);
137 stream_terminate_connection(conn
->connection
,
138 conn
->limits
.reason
);
141 ok
= tevent_req_set_endtime(subreq
,
142 conn
->connection
->event
.ctx
,
143 conn
->limits
.endtime
);
145 TALLOC_FREE(conn
->sockets
.raw
);
146 stream_terminate_connection(conn
->connection
,
147 conn
->limits
.reason
);
150 tevent_req_set_callback(subreq
, ldapsrv_terminate_connection_done
, conn
);
154 called when a LDAP socket becomes readable
156 void ldapsrv_recv(struct stream_connection
*c
, uint16_t flags
)
158 smb_panic(__location__
);
162 called when a LDAP socket becomes writable
164 static void ldapsrv_send(struct stream_connection
*c
, uint16_t flags
)
166 smb_panic(__location__
);
169 static int ldapsrv_load_limits(struct ldapsrv_connection
*conn
)
172 const char *attrs
[] = { "configurationNamingContext", NULL
};
173 const char *attrs2
[] = { "lDAPAdminLimits", NULL
};
174 struct ldb_message_element
*el
;
175 struct ldb_result
*res
= NULL
;
176 struct ldb_dn
*basedn
;
177 struct ldb_dn
*conf_dn
;
178 struct ldb_dn
*policy_dn
;
182 /* set defaults limits in case of failure */
183 conn
->limits
.initial_timeout
= 120;
184 conn
->limits
.conn_idle_time
= 900;
185 conn
->limits
.max_page_size
= 1000;
186 conn
->limits
.max_notifications
= 5;
187 conn
->limits
.search_timeout
= 120;
188 conn
->limits
.expire_time
= (struct timeval
) {
189 .tv_sec
= get_time_t_max(),
193 tmp_ctx
= talloc_new(conn
);
194 if (tmp_ctx
== NULL
) {
198 basedn
= ldb_dn_new(tmp_ctx
, conn
->ldb
, NULL
);
199 if (basedn
== NULL
) {
203 ret
= ldb_search(conn
->ldb
, tmp_ctx
, &res
, basedn
, LDB_SCOPE_BASE
, attrs
, NULL
);
204 if (ret
!= LDB_SUCCESS
) {
208 if (res
->count
!= 1) {
212 conf_dn
= ldb_msg_find_attr_as_dn(conn
->ldb
, tmp_ctx
, res
->msgs
[0], "configurationNamingContext");
213 if (conf_dn
== NULL
) {
217 policy_dn
= ldb_dn_copy(tmp_ctx
, conf_dn
);
218 ldb_dn_add_child_fmt(policy_dn
, "CN=Default Query Policy,CN=Query-Policies,CN=Directory Service,CN=Windows NT,CN=Services");
219 if (policy_dn
== NULL
) {
223 ret
= ldb_search(conn
->ldb
, tmp_ctx
, &res
, policy_dn
, LDB_SCOPE_BASE
, attrs2
, NULL
);
224 if (ret
!= LDB_SUCCESS
) {
228 if (res
->count
!= 1) {
232 el
= ldb_msg_find_element(res
->msgs
[0], "lDAPAdminLimits");
237 for (i
= 0; i
< el
->num_values
; i
++) {
238 char policy_name
[256];
241 s
= sscanf((const char *)el
->values
[i
].data
, "%255[^=]=%d", policy_name
, &policy_value
);
242 if (s
!= 2 || policy_value
== 0)
244 if (strcasecmp("InitRecvTimeout", policy_name
) == 0) {
245 conn
->limits
.initial_timeout
= policy_value
;
248 if (strcasecmp("MaxConnIdleTime", policy_name
) == 0) {
249 conn
->limits
.conn_idle_time
= policy_value
;
252 if (strcasecmp("MaxPageSize", policy_name
) == 0) {
253 conn
->limits
.max_page_size
= policy_value
;
256 if (strcasecmp("MaxNotificationPerConn", policy_name
) == 0) {
257 conn
->limits
.max_notifications
= policy_value
;
260 if (strcasecmp("MaxQueryDuration", policy_name
) == 0) {
261 if (policy_value
> 0) {
262 conn
->limits
.search_timeout
= policy_value
;
271 DBG_ERR("Failed to load ldap server query policies\n");
272 talloc_free(tmp_ctx
);
276 static int ldapsrv_call_destructor(struct ldapsrv_call
*call
)
278 if (call
->conn
== NULL
) {
282 DLIST_REMOVE(call
->conn
->pending_calls
, call
);
288 static struct tevent_req
*ldapsrv_process_call_send(TALLOC_CTX
*mem_ctx
,
289 struct tevent_context
*ev
,
290 struct tevent_queue
*call_queue
,
291 struct ldapsrv_call
*call
);
292 static NTSTATUS
ldapsrv_process_call_recv(struct tevent_req
*req
);
294 static bool ldapsrv_call_read_next(struct ldapsrv_connection
*conn
);
295 static void ldapsrv_accept_tls_done(struct tevent_req
*subreq
);
298 initialise a server_context from a open socket and register a event handler
299 for reading from that socket
301 static void ldapsrv_accept(struct stream_connection
*c
,
302 struct auth_session_info
*session_info
,
305 struct ldapsrv_service
*ldapsrv_service
=
306 talloc_get_type(c
->private_data
, struct ldapsrv_service
);
307 struct ldapsrv_connection
*conn
;
308 struct cli_credentials
*server_credentials
;
309 struct socket_address
*socket_address
;
312 struct tevent_req
*subreq
;
313 struct timeval endtime
;
314 char *errstring
= NULL
;
316 conn
= talloc_zero(c
, struct ldapsrv_connection
);
318 stream_terminate_connection(c
, "ldapsrv_accept: out of memory");
321 conn
->is_privileged
= is_privileged
;
323 conn
->sockets
.send_queue
= tevent_queue_create(conn
, "ldapsev send queue");
324 if (conn
->sockets
.send_queue
== NULL
) {
325 stream_terminate_connection(c
,
326 "ldapsrv_accept: tevent_queue_create failed");
330 TALLOC_FREE(c
->event
.fde
);
332 ret
= tstream_bsd_existing_socket(conn
,
333 socket_get_fd(c
->socket
),
336 stream_terminate_connection(c
,
337 "ldapsrv_accept: out of memory");
340 socket_set_flags(c
->socket
, SOCKET_FLAG_NOCLOSE
);
342 conn
->connection
= c
;
343 conn
->service
= ldapsrv_service
;
344 conn
->lp_ctx
= ldapsrv_service
->lp_ctx
;
346 c
->private_data
= conn
;
348 socket_address
= socket_get_my_addr(c
->socket
, conn
);
349 if (!socket_address
) {
350 ldapsrv_terminate_connection(conn
, "ldapsrv_accept: failed to obtain local socket address!");
353 port
= socket_address
->port
;
354 talloc_free(socket_address
);
355 if (port
== 3268 || port
== 3269) /* Global catalog */ {
356 conn
->global_catalog
= true;
359 server_credentials
= cli_credentials_init_server(conn
, conn
->lp_ctx
);
360 if (!server_credentials
) {
361 stream_terminate_connection(c
, "Failed to init server credentials\n");
365 conn
->server_credentials
= server_credentials
;
367 conn
->session_info
= session_info
;
369 conn
->sockets
.active
= conn
->sockets
.raw
;
371 if (conn
->is_privileged
) {
372 conn
->require_strong_auth
= LDAP_SERVER_REQUIRE_STRONG_AUTH_NO
;
374 conn
->require_strong_auth
= lpcfg_ldap_server_require_strong_auth(conn
->lp_ctx
);
377 ret
= ldapsrv_backend_Init(conn
, &errstring
);
378 if (ret
!= LDB_SUCCESS
) {
379 char *reason
= talloc_asprintf(conn
,
380 "LDB backend for LDAP Init "
382 errstring
, ldb_strerror(ret
));
383 ldapsrv_terminate_connection(conn
, reason
);
387 /* load limits from the conf partition */
388 ldapsrv_load_limits(conn
); /* should we fail on error ? */
390 /* register the server */
391 irpc_add_name(c
->msg_ctx
, "ldap_server");
393 DLIST_ADD_END(ldapsrv_service
->connections
, conn
);
395 if (port
!= 636 && port
!= 3269) {
396 ldapsrv_call_read_next(conn
);
400 endtime
= timeval_current_ofs(conn
->limits
.conn_idle_time
, 0);
402 subreq
= tstream_tls_accept_send(conn
,
403 conn
->connection
->event
.ctx
,
405 conn
->service
->tls_params
);
406 if (subreq
== NULL
) {
407 ldapsrv_terminate_connection(conn
, "ldapsrv_accept: "
408 "no memory for tstream_tls_accept_send");
411 tevent_req_set_endtime(subreq
,
412 conn
->connection
->event
.ctx
,
414 tevent_req_set_callback(subreq
, ldapsrv_accept_tls_done
, conn
);
417 static void ldapsrv_accept_tls_done(struct tevent_req
*subreq
)
419 struct ldapsrv_connection
*conn
=
420 tevent_req_callback_data(subreq
,
421 struct ldapsrv_connection
);
425 ret
= tstream_tls_accept_recv(subreq
, &sys_errno
,
426 conn
, &conn
->sockets
.tls
);
431 reason
= talloc_asprintf(conn
, "ldapsrv_accept_tls_loop: "
432 "tstream_tls_accept_recv() - %d:%s",
433 sys_errno
, strerror(sys_errno
));
435 reason
= "ldapsrv_accept_tls_loop: "
436 "tstream_tls_accept_recv() - failed";
439 ldapsrv_terminate_connection(conn
, reason
);
443 conn
->sockets
.active
= conn
->sockets
.tls
;
444 conn
->referral_scheme
= LDAP_REFERRAL_SCHEME_LDAPS
;
445 ldapsrv_call_read_next(conn
);
448 static void ldapsrv_call_read_done(struct tevent_req
*subreq
);
449 static NTSTATUS
ldapsrv_packet_check(
452 size_t *packet_size
);
454 static bool ldapsrv_call_read_next(struct ldapsrv_connection
*conn
)
456 struct tevent_req
*subreq
;
458 if (conn
->pending_calls
!= NULL
) {
459 conn
->limits
.endtime
= timeval_zero();
461 ldapsrv_notification_retry_setup(conn
->service
, false);
462 } else if (timeval_is_zero(&conn
->limits
.endtime
)) {
463 conn
->limits
.endtime
=
464 timeval_current_ofs(conn
->limits
.initial_timeout
, 0);
466 conn
->limits
.endtime
=
467 timeval_current_ofs(conn
->limits
.conn_idle_time
, 0);
470 if (conn
->sockets
.read_req
!= NULL
) {
475 * The minimum size of a LDAP pdu is 7 bytes
477 * dumpasn1 -hh ldap-unbind-min.dat
479 * <30 05 02 01 09 42 00>
484 * 5 0: [APPLICATION 2]
485 * : Error: Object has zero length.
488 * dumpasn1 -hh ldap-unbind-windows.dat
490 * <30 84 00 00 00 05 02 01 09 42 00>
495 * 9 0: [APPLICATION 2]
496 * : Error: Object has zero length.
499 * This means using an initial read size
502 subreq
= tstream_read_pdu_blob_send(conn
,
503 conn
->connection
->event
.ctx
,
504 conn
->sockets
.active
,
505 7, /* initial_read_size */
506 ldapsrv_packet_check
,
508 if (subreq
== NULL
) {
509 ldapsrv_terminate_connection(conn
, "ldapsrv_call_read_next: "
510 "no memory for tstream_read_pdu_blob_send");
513 if (!timeval_is_zero(&conn
->limits
.endtime
)) {
515 ok
= tevent_req_set_endtime(subreq
,
516 conn
->connection
->event
.ctx
,
517 conn
->limits
.endtime
);
519 ldapsrv_terminate_connection(
521 "ldapsrv_call_read_next: "
522 "no memory for tevent_req_set_endtime");
526 tevent_req_set_callback(subreq
, ldapsrv_call_read_done
, conn
);
527 conn
->sockets
.read_req
= subreq
;
531 static void ldapsrv_call_process_done(struct tevent_req
*subreq
);
532 static int ldapsrv_check_packet_size(
533 struct ldapsrv_connection
*conn
,
536 static void ldapsrv_call_read_done(struct tevent_req
*subreq
)
538 struct ldapsrv_connection
*conn
=
539 tevent_req_callback_data(subreq
,
540 struct ldapsrv_connection
);
542 struct ldapsrv_call
*call
;
543 struct asn1_data
*asn1
;
545 int ret
= LDAP_SUCCESS
;
546 struct ldap_request_limits limits
= {0};
548 conn
->sockets
.read_req
= NULL
;
550 call
= talloc_zero(conn
, struct ldapsrv_call
);
552 ldapsrv_terminate_connection(conn
, "no memory");
555 talloc_set_destructor(call
, ldapsrv_call_destructor
);
559 status
= tstream_read_pdu_blob_recv(subreq
,
563 if (!NT_STATUS_IS_OK(status
)) {
566 reason
= talloc_asprintf(call
, "ldapsrv_call_loop: "
567 "tstream_read_pdu_blob_recv() - %s",
570 reason
= nt_errstr(status
);
573 ldapsrv_terminate_connection(conn
, reason
);
577 ret
= ldapsrv_check_packet_size(conn
, blob
.length
);
578 if (ret
!= LDAP_SUCCESS
) {
579 ldapsrv_terminate_connection(
581 "Request packet too large");
585 asn1
= asn1_init(call
, ASN1_MAX_TREE_DEPTH
);
587 ldapsrv_terminate_connection(conn
, "no memory");
591 call
->request
= talloc(call
, struct ldap_message
);
592 if (call
->request
== NULL
) {
593 ldapsrv_terminate_connection(conn
, "no memory");
597 asn1_load_nocopy(asn1
, blob
.data
, blob
.length
);
599 limits
.max_search_size
=
600 lpcfg_ldap_max_search_request_size(conn
->lp_ctx
);
601 status
= ldap_decode(
604 samba_ldap_control_handlers(),
606 if (!NT_STATUS_IS_OK(status
)) {
607 ldapsrv_terminate_connection(conn
, nt_errstr(status
));
611 data_blob_free(&blob
);
615 /* queue the call in the global queue */
616 subreq
= ldapsrv_process_call_send(call
,
617 conn
->connection
->event
.ctx
,
618 conn
->service
->call_queue
,
620 if (subreq
== NULL
) {
621 ldapsrv_terminate_connection(conn
, "ldapsrv_process_call_send failed");
624 tevent_req_set_callback(subreq
, ldapsrv_call_process_done
, call
);
625 conn
->active_call
= subreq
;
628 static void ldapsrv_call_wait_done(struct tevent_req
*subreq
);
629 static void ldapsrv_call_writev_start(struct ldapsrv_call
*call
);
630 static void ldapsrv_call_writev_done(struct tevent_req
*subreq
);
632 static void ldapsrv_call_process_done(struct tevent_req
*subreq
)
634 struct ldapsrv_call
*call
=
635 tevent_req_callback_data(subreq
,
636 struct ldapsrv_call
);
637 struct ldapsrv_connection
*conn
= call
->conn
;
640 conn
->active_call
= NULL
;
642 status
= ldapsrv_process_call_recv(subreq
);
644 if (!NT_STATUS_IS_OK(status
)) {
645 ldapsrv_terminate_connection(conn
, nt_errstr(status
));
649 if (call
->wait_send
!= NULL
) {
650 subreq
= call
->wait_send(call
,
651 conn
->connection
->event
.ctx
,
653 if (subreq
== NULL
) {
654 ldapsrv_terminate_connection(conn
,
655 "ldapsrv_call_process_done: "
656 "call->wait_send - no memory");
659 tevent_req_set_callback(subreq
,
660 ldapsrv_call_wait_done
,
662 conn
->active_call
= subreq
;
666 ldapsrv_call_writev_start(call
);
669 static void ldapsrv_call_wait_done(struct tevent_req
*subreq
)
671 struct ldapsrv_call
*call
=
672 tevent_req_callback_data(subreq
,
673 struct ldapsrv_call
);
674 struct ldapsrv_connection
*conn
= call
->conn
;
677 conn
->active_call
= NULL
;
679 status
= call
->wait_recv(subreq
);
681 if (!NT_STATUS_IS_OK(status
)) {
684 reason
= talloc_asprintf(call
, "ldapsrv_call_wait_done: "
685 "call->wait_recv() - %s",
687 if (reason
== NULL
) {
688 reason
= nt_errstr(status
);
691 ldapsrv_terminate_connection(conn
, reason
);
695 ldapsrv_call_writev_start(call
);
698 static void ldapsrv_call_writev_start(struct ldapsrv_call
*call
)
700 struct ldapsrv_connection
*conn
= call
->conn
;
701 struct ldapsrv_reply
*reply
= NULL
;
702 struct tevent_req
*subreq
= NULL
;
703 struct timeval endtime
;
709 /* build all the replies into an IOV (no copy) */
710 for (reply
= call
->replies
;
712 reply
= reply
->next
) {
714 /* Cap output at 25MB per writev() */
715 if (length
> length
+ reply
->blob
.length
716 || length
+ reply
->blob
.length
> LDAP_SERVER_MAX_CHUNK_SIZE
) {
721 * Overflow is harmless here, just used below to
722 * decide if to read or write, but checked above anyway
724 length
+= reply
->blob
.length
;
727 * At worst an overflow would mean we send less
734 if (!call
->notification
.busy
) {
738 ldapsrv_call_read_next(conn
);
742 /* Cap call->iov_count at IOV_MAX */
743 call
->iov_count
= MIN(call
->iov_count
, IOV_MAX
);
745 call
->out_iov
= talloc_array(call
,
748 if (!call
->out_iov
) {
749 /* This is not ideal */
750 ldapsrv_terminate_connection(conn
,
751 "failed to allocate "
756 /* We may have had to cap the number of replies at IOV_MAX */
758 i
< call
->iov_count
&& call
->replies
!= NULL
;
760 reply
= call
->replies
;
761 call
->out_iov
[i
].iov_base
= reply
->blob
.data
;
762 call
->out_iov
[i
].iov_len
= reply
->blob
.length
;
764 /* Keep only the ASN.1 encoded data */
765 talloc_steal(call
->out_iov
, reply
->blob
.data
);
767 DLIST_REMOVE(call
->replies
, reply
);
771 if (i
> call
->iov_count
) {
772 /* This is not ideal, but also (essentially) impossible */
773 ldapsrv_terminate_connection(conn
,
779 subreq
= tstream_writev_queue_send(call
,
780 conn
->connection
->event
.ctx
,
781 conn
->sockets
.active
,
782 conn
->sockets
.send_queue
,
783 call
->out_iov
, call
->iov_count
);
784 if (subreq
== NULL
) {
785 ldapsrv_terminate_connection(conn
, "stream_writev_queue_send failed");
788 endtime
= timeval_current_ofs(conn
->limits
.conn_idle_time
, 0);
789 tevent_req_set_endtime(subreq
,
790 conn
->connection
->event
.ctx
,
792 tevent_req_set_callback(subreq
, ldapsrv_call_writev_done
, call
);
795 static void ldapsrv_call_postprocess_done(struct tevent_req
*subreq
);
797 static void ldapsrv_call_writev_done(struct tevent_req
*subreq
)
799 struct ldapsrv_call
*call
=
800 tevent_req_callback_data(subreq
,
801 struct ldapsrv_call
);
802 struct ldapsrv_connection
*conn
= call
->conn
;
806 rc
= tstream_writev_queue_recv(subreq
, &sys_errno
);
809 /* This releases the ASN.1 encoded packets from memory */
810 TALLOC_FREE(call
->out_iov
);
814 reason
= talloc_asprintf(call
, "ldapsrv_call_writev_done: "
815 "tstream_writev_queue_recv() - %d:%s",
816 sys_errno
, strerror(sys_errno
));
817 if (reason
== NULL
) {
818 reason
= "ldapsrv_call_writev_done: "
819 "tstream_writev_queue_recv() failed";
822 ldapsrv_terminate_connection(conn
, reason
);
826 if (call
->postprocess_send
) {
827 subreq
= call
->postprocess_send(call
,
828 conn
->connection
->event
.ctx
,
829 call
->postprocess_private
);
830 if (subreq
== NULL
) {
831 ldapsrv_terminate_connection(conn
, "ldapsrv_call_writev_done: "
832 "call->postprocess_send - no memory");
835 tevent_req_set_callback(subreq
,
836 ldapsrv_call_postprocess_done
,
841 /* Perhaps still some more to send */
842 if (call
->replies
!= NULL
) {
843 ldapsrv_call_writev_start(call
);
847 if (!call
->notification
.busy
) {
851 ldapsrv_call_read_next(conn
);
854 static void ldapsrv_call_postprocess_done(struct tevent_req
*subreq
)
856 struct ldapsrv_call
*call
=
857 tevent_req_callback_data(subreq
,
858 struct ldapsrv_call
);
859 struct ldapsrv_connection
*conn
= call
->conn
;
862 status
= call
->postprocess_recv(subreq
);
864 if (!NT_STATUS_IS_OK(status
)) {
867 reason
= talloc_asprintf(call
, "ldapsrv_call_postprocess_done: "
868 "call->postprocess_recv() - %s",
870 if (reason
== NULL
) {
871 reason
= nt_errstr(status
);
874 ldapsrv_terminate_connection(conn
, reason
);
880 ldapsrv_call_read_next(conn
);
883 static void ldapsrv_notification_retry_done(struct tevent_req
*subreq
);
885 void ldapsrv_notification_retry_setup(struct ldapsrv_service
*service
, bool force
)
887 struct ldapsrv_connection
*conn
= NULL
;
888 struct timeval retry
;
889 size_t num_pending
= 0;
890 size_t num_active
= 0;
893 TALLOC_FREE(service
->notification
.retry
);
894 service
->notification
.generation
+= 1;
897 if (service
->notification
.retry
!= NULL
) {
901 for (conn
= service
->connections
; conn
!= NULL
; conn
= conn
->next
) {
902 if (conn
->pending_calls
== NULL
) {
908 if (conn
->pending_calls
->notification
.generation
!=
909 service
->notification
.generation
)
915 if (num_pending
== 0) {
919 if (num_active
!= 0) {
920 retry
= timeval_current_ofs(0, 100);
922 retry
= timeval_current_ofs(5, 0);
925 service
->notification
.retry
= tevent_wakeup_send(service
,
928 if (service
->notification
.retry
== NULL
) {
933 tevent_req_set_callback(service
->notification
.retry
,
934 ldapsrv_notification_retry_done
,
938 static void ldapsrv_notification_retry_done(struct tevent_req
*subreq
)
940 struct ldapsrv_service
*service
=
941 tevent_req_callback_data(subreq
,
942 struct ldapsrv_service
);
943 struct ldapsrv_connection
*conn
= NULL
;
944 struct ldapsrv_connection
*conn_next
= NULL
;
947 service
->notification
.retry
= NULL
;
949 ok
= tevent_wakeup_recv(subreq
);
955 for (conn
= service
->connections
; conn
!= NULL
; conn
= conn_next
) {
956 struct ldapsrv_call
*call
= conn
->pending_calls
;
958 conn_next
= conn
->next
;
960 if (conn
->pending_calls
== NULL
) {
964 if (conn
->active_call
!= NULL
) {
968 DLIST_DEMOTE(conn
->pending_calls
, call
);
969 call
->notification
.generation
=
970 service
->notification
.generation
;
972 /* queue the call in the global queue */
973 subreq
= ldapsrv_process_call_send(call
,
974 conn
->connection
->event
.ctx
,
975 conn
->service
->call_queue
,
977 if (subreq
== NULL
) {
978 ldapsrv_terminate_connection(conn
,
979 "ldapsrv_process_call_send failed");
982 tevent_req_set_callback(subreq
, ldapsrv_call_process_done
, call
);
983 conn
->active_call
= subreq
;
986 ldapsrv_notification_retry_setup(service
, false);
989 struct ldapsrv_process_call_state
{
990 struct ldapsrv_call
*call
;
993 static void ldapsrv_process_call_trigger(struct tevent_req
*req
,
996 static struct tevent_req
*ldapsrv_process_call_send(TALLOC_CTX
*mem_ctx
,
997 struct tevent_context
*ev
,
998 struct tevent_queue
*call_queue
,
999 struct ldapsrv_call
*call
)
1001 struct tevent_req
*req
;
1002 struct ldapsrv_process_call_state
*state
;
1005 req
= tevent_req_create(mem_ctx
, &state
,
1006 struct ldapsrv_process_call_state
);
1013 ok
= tevent_queue_add(call_queue
, ev
, req
,
1014 ldapsrv_process_call_trigger
, NULL
);
1016 tevent_req_oom(req
);
1017 return tevent_req_post(req
, ev
);
1023 static void ldapsrv_disconnect_ticket_expired(struct tevent_req
*subreq
);
1025 static void ldapsrv_process_call_trigger(struct tevent_req
*req
,
1028 struct ldapsrv_process_call_state
*state
=
1029 tevent_req_data(req
,
1030 struct ldapsrv_process_call_state
);
1031 struct ldapsrv_connection
*conn
= state
->call
->conn
;
1034 if (conn
->deferred_expire_disconnect
!= NULL
) {
1036 * Just drop this on the floor
1038 tevent_req_done(req
);
1043 status
= ldapsrv_do_call(state
->call
);
1045 if (NT_STATUS_EQUAL(status
, NT_STATUS_NETWORK_SESSION_EXPIRED
)) {
1047 * For testing purposes, defer the TCP disconnect
1048 * after having sent the msgid 0
1049 * 1.3.6.1.4.1.1466.20036 exop response. LDAP clients
1050 * should not wait for the TCP connection to close but
1051 * handle this packet equivalent to a TCP
1052 * disconnect. This delay enables testing both cases
1053 * in LDAP client libraries.
1056 int defer_msec
= lpcfg_parm_int(
1060 "delay_expire_disconnect",
1063 conn
->deferred_expire_disconnect
= tevent_wakeup_send(
1065 conn
->connection
->event
.ctx
,
1066 timeval_current_ofs_msec(defer_msec
));
1067 if (tevent_req_nomem(conn
->deferred_expire_disconnect
, req
)) {
1070 tevent_req_set_callback(
1071 conn
->deferred_expire_disconnect
,
1072 ldapsrv_disconnect_ticket_expired
,
1075 tevent_req_done(req
);
1079 if (!NT_STATUS_IS_OK(status
)) {
1080 tevent_req_nterror(req
, status
);
1084 tevent_req_done(req
);
1087 static void ldapsrv_disconnect_ticket_expired(struct tevent_req
*subreq
)
1089 struct ldapsrv_connection
*conn
= tevent_req_callback_data(
1090 subreq
, struct ldapsrv_connection
);
1093 ok
= tevent_wakeup_recv(subreq
);
1094 TALLOC_FREE(subreq
);
1096 DBG_WARNING("tevent_wakeup_recv failed\n");
1098 conn
->deferred_expire_disconnect
= NULL
;
1099 ldapsrv_terminate_connection(conn
, "network session expired");
1102 static NTSTATUS
ldapsrv_process_call_recv(struct tevent_req
*req
)
1106 if (tevent_req_is_nterror(req
, &status
)) {
1107 tevent_req_received(req
);
1111 tevent_req_received(req
);
1112 return NT_STATUS_OK
;
1115 static void ldapsrv_accept_nonpriv(struct stream_connection
*c
)
1117 struct ldapsrv_service
*ldapsrv_service
= talloc_get_type_abort(
1118 c
->private_data
, struct ldapsrv_service
);
1119 struct auth_session_info
*session_info
;
1122 status
= auth_anonymous_session_info(
1123 c
, ldapsrv_service
->lp_ctx
, &session_info
);
1124 if (!NT_STATUS_IS_OK(status
)) {
1125 stream_terminate_connection(c
, "failed to setup anonymous "
1129 ldapsrv_accept(c
, session_info
, false);
1132 static const struct stream_server_ops ldap_stream_nonpriv_ops
= {
1134 .accept_connection
= ldapsrv_accept_nonpriv
,
1135 .recv_handler
= ldapsrv_recv
,
1136 .send_handler
= ldapsrv_send
,
1139 /* The feature removed behind an #ifdef until we can do it properly
1140 * with an EXTERNAL bind. */
1142 #define WITH_LDAPI_PRIV_SOCKET
1144 #ifdef WITH_LDAPI_PRIV_SOCKET
1145 static void ldapsrv_accept_priv(struct stream_connection
*c
)
1147 struct ldapsrv_service
*ldapsrv_service
= talloc_get_type_abort(
1148 c
->private_data
, struct ldapsrv_service
);
1149 struct auth_session_info
*session_info
;
1151 session_info
= system_session(ldapsrv_service
->lp_ctx
);
1152 if (!session_info
) {
1153 stream_terminate_connection(c
, "failed to setup system "
1157 ldapsrv_accept(c
, session_info
, true);
1160 static const struct stream_server_ops ldap_stream_priv_ops
= {
1162 .accept_connection
= ldapsrv_accept_priv
,
1163 .recv_handler
= ldapsrv_recv
,
1164 .send_handler
= ldapsrv_send
,
1171 add a socket address to the list of events, one event per port
1173 static NTSTATUS
add_socket(struct task_server
*task
,
1174 struct loadparm_context
*lp_ctx
,
1175 const struct model_ops
*model_ops
,
1176 const char *address
, struct ldapsrv_service
*ldap_service
)
1178 uint16_t port
= 389;
1180 struct ldb_context
*ldb
;
1182 status
= stream_setup_socket(task
, task
->event_ctx
, lp_ctx
,
1183 model_ops
, &ldap_stream_nonpriv_ops
,
1184 "ip", address
, &port
,
1185 lpcfg_socket_options(lp_ctx
),
1186 ldap_service
, task
->process_context
);
1187 if (!NT_STATUS_IS_OK(status
)) {
1188 DBG_ERR("ldapsrv failed to bind to %s:%u - %s\n",
1189 address
, port
, nt_errstr(status
));
1193 if (tstream_tls_params_enabled(ldap_service
->tls_params
)) {
1194 /* add ldaps server */
1196 status
= stream_setup_socket(task
, task
->event_ctx
, lp_ctx
,
1198 &ldap_stream_nonpriv_ops
,
1199 "ip", address
, &port
,
1200 lpcfg_socket_options(lp_ctx
),
1202 task
->process_context
);
1203 if (!NT_STATUS_IS_OK(status
)) {
1204 DBG_ERR("ldapsrv failed to bind to %s:%u - %s\n",
1205 address
, port
, nt_errstr(status
));
1210 /* Load LDAP database, but only to read our settings */
1211 ldb
= samdb_connect(ldap_service
,
1212 ldap_service
->current_ev
,
1214 system_session(lp_ctx
),
1218 return NT_STATUS_INTERNAL_DB_CORRUPTION
;
1221 if (samdb_is_gc(ldb
)) {
1223 status
= stream_setup_socket(task
, task
->event_ctx
, lp_ctx
,
1225 &ldap_stream_nonpriv_ops
,
1226 "ip", address
, &port
,
1227 lpcfg_socket_options(lp_ctx
),
1229 task
->process_context
);
1230 if (!NT_STATUS_IS_OK(status
)) {
1231 DBG_ERR("ldapsrv failed to bind to %s:%u - %s\n",
1232 address
, port
, nt_errstr(status
));
1235 if (tstream_tls_params_enabled(ldap_service
->tls_params
)) {
1236 /* add ldaps server for the global catalog */
1238 status
= stream_setup_socket(task
, task
->event_ctx
, lp_ctx
,
1240 &ldap_stream_nonpriv_ops
,
1241 "ip", address
, &port
,
1242 lpcfg_socket_options(lp_ctx
),
1244 task
->process_context
);
1245 if (!NT_STATUS_IS_OK(status
)) {
1246 DBG_ERR("ldapsrv failed to bind to %s:%u - %s\n",
1247 address
, port
, nt_errstr(status
));
1253 /* And once we are bound, free the temporary ldb, it will
1254 * connect again on each incoming LDAP connection */
1255 talloc_unlink(ldap_service
, ldb
);
1257 return NT_STATUS_OK
;
1260 static void ldap_reload_certs(struct imessaging_context
*msg_ctx
,
1263 struct server_id server_id
,
1268 TALLOC_CTX
*frame
= talloc_stackframe();
1269 struct ldapsrv_service
*ldap_service
=
1270 talloc_get_type_abort(private_data
,
1271 struct ldapsrv_service
);
1272 int default_children
;
1276 struct server_id ldap_master_id
;
1278 struct tstream_tls_params
*new_tls_params
= NULL
;
1280 SMB_ASSERT(msg_ctx
== ldap_service
->current_msg
);
1282 /* reload certificates */
1283 status
= tstream_tls_params_server(ldap_service
,
1284 ldap_service
->dns_host_name
,
1285 lpcfg_tls_enabled(ldap_service
->lp_ctx
),
1286 lpcfg_tls_keyfile(frame
, ldap_service
->lp_ctx
),
1287 lpcfg_tls_certfile(frame
, ldap_service
->lp_ctx
),
1288 lpcfg_tls_cafile(frame
, ldap_service
->lp_ctx
),
1289 lpcfg_tls_crlfile(frame
, ldap_service
->lp_ctx
),
1290 lpcfg_tls_dhpfile(frame
, ldap_service
->lp_ctx
),
1291 lpcfg_tls_priority(ldap_service
->lp_ctx
),
1293 if (!NT_STATUS_IS_OK(status
)) {
1294 DBG_ERR("ldapsrv failed tstream_tls_params_server - %s\n",
1300 TALLOC_FREE(ldap_service
->tls_params
);
1301 ldap_service
->tls_params
= new_tls_params
;
1303 if (getpid() != ldap_service
->parent_pid
) {
1305 * If we are not the master process we are done
1312 * Check we're running under the prefork model,
1313 * by checking if the prefork-master-ldap name
1316 ok
= server_id_db_lookup_one(msg_ctx
->names
, "prefork-master-ldap", &ldap_master_id
);
1319 * We are done if another process model is in use.
1326 * Now we loop over all possible prefork workers
1327 * in order to notify them about the reload
1329 default_children
= lpcfg_prefork_children(ldap_service
->lp_ctx
);
1330 num_children
= lpcfg_parm_int(ldap_service
->lp_ctx
,
1331 NULL
, "prefork children", "ldap",
1333 for (i
= 0; i
< num_children
; i
++) {
1334 char child_name
[64] = { 0, };
1335 struct server_id ldap_worker_id
;
1337 snprintf(child_name
, sizeof(child_name
), "prefork-worker-ldap-%d", i
);
1338 ok
= server_id_db_lookup_one(msg_ctx
->names
, child_name
, &ldap_worker_id
);
1340 DBG_ERR("server_id_db_lookup_one(%s) - failed\n",
1345 status
= imessaging_send(msg_ctx
, ldap_worker_id
,
1346 MSG_RELOAD_TLS_CERTIFICATES
, NULL
);
1347 if (!NT_STATUS_IS_OK(status
)) {
1348 struct server_id_buf id_buf
;
1349 DBG_ERR("ldapsrv failed imessaging_send(%s, %s) - %s\n",
1351 server_id_str_buf(ldap_worker_id
, &id_buf
),
1361 open the ldap server sockets
1363 static NTSTATUS
ldapsrv_task_init(struct task_server
*task
)
1366 #ifdef WITH_LDAPI_PRIV_SOCKET
1369 struct ldapsrv_service
*ldap_service
;
1372 switch (lpcfg_server_role(task
->lp_ctx
)) {
1373 case ROLE_STANDALONE
:
1374 task_server_terminate(task
, "ldap_server: no LDAP server required in standalone configuration",
1376 return NT_STATUS_INVALID_DOMAIN_ROLE
;
1377 case ROLE_DOMAIN_MEMBER
:
1378 task_server_terminate(task
, "ldap_server: no LDAP server required in member server configuration",
1380 return NT_STATUS_INVALID_DOMAIN_ROLE
;
1381 case ROLE_ACTIVE_DIRECTORY_DC
:
1382 /* Yes, we want an LDAP server */
1386 task_server_set_title(task
, "task[ldapsrv]");
1388 ldap_service
= talloc_zero(task
, struct ldapsrv_service
);
1389 if (ldap_service
== NULL
) {
1390 status
= NT_STATUS_NO_MEMORY
;
1394 ldap_service
->lp_ctx
= task
->lp_ctx
;
1395 ldap_service
->current_ev
= task
->event_ctx
;
1396 ldap_service
->current_msg
= task
->msg_ctx
;
1398 ldap_service
->dns_host_name
= talloc_asprintf(ldap_service
, "%s.%s",
1399 lpcfg_netbios_name(task
->lp_ctx
),
1400 lpcfg_dnsdomain(task
->lp_ctx
));
1401 if (ldap_service
->dns_host_name
== NULL
) {
1402 status
= NT_STATUS_NO_MEMORY
;
1406 ldap_service
->parent_pid
= getpid();
1408 status
= tstream_tls_params_server(ldap_service
,
1409 ldap_service
->dns_host_name
,
1410 lpcfg_tls_enabled(task
->lp_ctx
),
1411 lpcfg_tls_keyfile(ldap_service
, task
->lp_ctx
),
1412 lpcfg_tls_certfile(ldap_service
, task
->lp_ctx
),
1413 lpcfg_tls_cafile(ldap_service
, task
->lp_ctx
),
1414 lpcfg_tls_crlfile(ldap_service
, task
->lp_ctx
),
1415 lpcfg_tls_dhpfile(ldap_service
, task
->lp_ctx
),
1416 lpcfg_tls_priority(task
->lp_ctx
),
1417 &ldap_service
->tls_params
);
1418 if (!NT_STATUS_IS_OK(status
)) {
1419 DBG_ERR("ldapsrv failed tstream_tls_params_server - %s\n",
1424 ldap_service
->call_queue
= tevent_queue_create(ldap_service
, "ldapsrv_call_queue");
1425 if (ldap_service
->call_queue
== NULL
) {
1426 status
= NT_STATUS_NO_MEMORY
;
1430 if (lpcfg_interfaces(task
->lp_ctx
) && lpcfg_bind_interfaces_only(task
->lp_ctx
)) {
1431 struct interface
*ifaces
;
1435 load_interface_list(task
, task
->lp_ctx
, &ifaces
);
1436 num_interfaces
= iface_list_count(ifaces
);
1438 /* We have been given an interfaces line, and been
1439 told to only bind to those interfaces. Create a
1440 socket per interface and bind to only these.
1442 for(i
= 0; i
< num_interfaces
; i
++) {
1443 const char *address
= iface_list_n_ip(ifaces
, i
);
1444 status
= add_socket(task
, task
->lp_ctx
, task
->model_ops
,
1445 address
, ldap_service
);
1446 if (!NT_STATUS_IS_OK(status
)) goto failed
;
1451 size_t num_binds
= 0;
1452 wcard
= iface_list_wildcard(task
);
1453 if (wcard
== NULL
) {
1454 DBG_ERR("No wildcard addresses available\n");
1455 status
= NT_STATUS_UNSUCCESSFUL
;
1458 for (i
=0; wcard
[i
]; i
++) {
1459 status
= add_socket(task
, task
->lp_ctx
, task
->model_ops
,
1460 wcard
[i
], ldap_service
);
1461 if (NT_STATUS_IS_OK(status
)) {
1466 if (num_binds
== 0) {
1467 status
= NT_STATUS_UNSUCCESSFUL
;
1472 ldapi_path
= lpcfg_private_path(ldap_service
, task
->lp_ctx
, "ldapi");
1474 status
= NT_STATUS_UNSUCCESSFUL
;
1478 status
= stream_setup_socket(task
, task
->event_ctx
, task
->lp_ctx
,
1479 task
->model_ops
, &ldap_stream_nonpriv_ops
,
1480 "unix", ldapi_path
, NULL
,
1481 lpcfg_socket_options(task
->lp_ctx
),
1482 ldap_service
, task
->process_context
);
1483 talloc_free(ldapi_path
);
1484 if (!NT_STATUS_IS_OK(status
)) {
1485 DBG_ERR("ldapsrv failed to bind to %s - %s\n",
1486 ldapi_path
, nt_errstr(status
));
1489 #ifdef WITH_LDAPI_PRIV_SOCKET
1490 priv_dir
= lpcfg_private_path(ldap_service
, task
->lp_ctx
, "ldap_priv");
1491 if (priv_dir
== NULL
) {
1492 status
= NT_STATUS_UNSUCCESSFUL
;
1496 * Make sure the directory for the privileged ldapi socket exists, and
1497 * is of the correct permissions
1499 if (!directory_create_or_exist(priv_dir
, 0750)) {
1500 task_server_terminate(task
, "Cannot create ldap "
1501 "privileged ldapi directory", true);
1502 return NT_STATUS_UNSUCCESSFUL
;
1504 ldapi_path
= talloc_asprintf(ldap_service
, "%s/ldapi", priv_dir
);
1505 talloc_free(priv_dir
);
1506 if (ldapi_path
== NULL
) {
1507 status
= NT_STATUS_NO_MEMORY
;
1511 status
= stream_setup_socket(task
, task
->event_ctx
, task
->lp_ctx
,
1512 task
->model_ops
, &ldap_stream_priv_ops
,
1513 "unix", ldapi_path
, NULL
,
1514 lpcfg_socket_options(task
->lp_ctx
),
1516 task
->process_context
);
1517 talloc_free(ldapi_path
);
1518 if (!NT_STATUS_IS_OK(status
)) {
1519 DBG_ERR("ldapsrv failed to bind to %s - %s\n",
1520 ldapi_path
, nt_errstr(status
));
1525 /* register the server */
1526 irpc_add_name(task
->msg_ctx
, "ldap_server");
1528 task
->private_data
= ldap_service
;
1530 return NT_STATUS_OK
;
1533 task_server_terminate(task
, "Failed to startup ldap server task", true);
1538 * Open a database to be later used by LDB wrap code (although it should be
1539 * plumbed through correctly eventually).
1541 static void ldapsrv_post_fork(struct task_server
*task
, struct process_details
*pd
)
1543 struct ldapsrv_service
*ldap_service
=
1544 talloc_get_type_abort(task
->private_data
, struct ldapsrv_service
);
1547 * As ldapsrv_before_loop() may changed the values for the parent loop
1548 * we need to adjust the pointers to the correct value in the child
1550 ldap_service
->lp_ctx
= task
->lp_ctx
;
1551 ldap_service
->current_ev
= task
->event_ctx
;
1552 ldap_service
->current_msg
= task
->msg_ctx
;
1554 ldap_service
->sam_ctx
= samdb_connect(ldap_service
,
1555 ldap_service
->current_ev
,
1556 ldap_service
->lp_ctx
,
1557 system_session(ldap_service
->lp_ctx
),
1560 if (ldap_service
->sam_ctx
== NULL
) {
1561 task_server_terminate(task
, "Cannot open system session LDB",
1567 static void ldapsrv_before_loop(struct task_server
*task
)
1569 struct ldapsrv_service
*ldap_service
=
1570 talloc_get_type_abort(task
->private_data
, struct ldapsrv_service
);
1573 if (ldap_service
->sam_ctx
!= NULL
) {
1575 * Make sure the values are still the same
1576 * as set in ldapsrv_post_fork()
1578 SMB_ASSERT(task
->lp_ctx
== ldap_service
->lp_ctx
);
1579 SMB_ASSERT(task
->event_ctx
== ldap_service
->current_ev
);
1580 SMB_ASSERT(task
->msg_ctx
== ldap_service
->current_msg
);
1583 * We need to adjust the pointers to the correct value
1584 * in the parent loop.
1586 ldap_service
->lp_ctx
= task
->lp_ctx
;
1587 ldap_service
->current_ev
= task
->event_ctx
;
1588 ldap_service
->current_msg
= task
->msg_ctx
;
1591 status
= imessaging_register(ldap_service
->current_msg
,
1593 MSG_RELOAD_TLS_CERTIFICATES
,
1595 if (!NT_STATUS_IS_OK(status
)) {
1596 task_server_terminate(task
, "Cannot register ldap_reload_certs",
1603 * Check the size of an ldap request packet.
1605 * For authenticated connections the maximum packet size is controlled by
1606 * the smb.conf parameter "ldap max authenticated request size"
1608 * For anonymous connections the maximum packet size is controlled by
1609 * the smb.conf parameter "ldap max anonymous request size"
1611 static int ldapsrv_check_packet_size(
1612 struct ldapsrv_connection
*conn
,
1615 bool is_anonymous
= false;
1616 size_t max_size
= 0;
1618 max_size
= lpcfg_ldap_max_anonymous_request_size(conn
->lp_ctx
);
1619 if (size
<= max_size
) {
1620 return LDAP_SUCCESS
;
1624 * Request is larger than the maximum unauthenticated request size.
1625 * As this code is called frequently we avoid calling
1626 * security_token_is_anonymous if possible
1628 if (conn
->session_info
!= NULL
&&
1629 conn
->session_info
->security_token
!= NULL
) {
1630 is_anonymous
= security_token_is_anonymous(
1631 conn
->session_info
->security_token
);
1636 "LDAP request size (%zu) exceeds (%zu)\n",
1639 return LDAP_UNWILLING_TO_PERFORM
;
1642 max_size
= lpcfg_ldap_max_authenticated_request_size(conn
->lp_ctx
);
1643 if (size
> max_size
) {
1645 "LDAP request size (%zu) exceeds (%zu)\n",
1648 return LDAP_UNWILLING_TO_PERFORM
;
1650 return LDAP_SUCCESS
;
1655 * Check that the blob contains enough data to be a valid packet
1656 * If there is a packet header check the size to ensure that it does not
1657 * exceed the maximum sizes.
1660 static NTSTATUS
ldapsrv_packet_check(
1663 size_t *packet_size
)
1666 struct ldapsrv_connection
*conn
= private_data
;
1667 int result
= LDB_SUCCESS
;
1669 ret
= ldap_full_packet(private_data
, blob
, packet_size
);
1670 if (!NT_STATUS_IS_OK(ret
)) {
1673 result
= ldapsrv_check_packet_size(conn
, *packet_size
);
1674 if (result
!= LDAP_SUCCESS
) {
1675 return NT_STATUS_LDAP(result
);
1677 return NT_STATUS_OK
;
1680 NTSTATUS
server_service_ldap_init(TALLOC_CTX
*ctx
)
1682 static const struct service_details details
= {
1683 .inhibit_fork_on_accept
= false,
1684 .inhibit_pre_fork
= false,
1685 .task_init
= ldapsrv_task_init
,
1686 .post_fork
= ldapsrv_post_fork
,
1687 .before_loop
= ldapsrv_before_loop
,
1689 return register_server_service(ctx
, "ldap", &details
);