s4:ldap_server: let ldapsrv_call_writev_start use conn_idle_time to limit the time
[Samba.git] / source4 / ldap_server / ldap_server.c
blob4198caa451a7da9fd4aa23f5f59f4ddfdef9a0d8
1 /*
2 Unix SMB/CIFS implementation.
4 LDAP server
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/>.
24 #include "includes.h"
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"
39 #include <ldb.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"
52 #undef strcasecmp
54 static void ldapsrv_terminate_connection_done(struct tevent_req *subreq);
57 close the socket and shutdown a server_context
59 static void ldapsrv_terminate_connection(struct ldapsrv_connection *conn,
60 const char *reason)
62 struct tevent_req *subreq;
64 if (conn->limits.reason) {
65 return;
68 DLIST_REMOVE(conn->service->connections, conn);
70 conn->limits.endtime = timeval_current_ofs(0, 500);
72 tevent_queue_stop(conn->sockets.send_queue);
73 TALLOC_FREE(conn->sockets.read_req);
74 TALLOC_FREE(conn->deferred_expire_disconnect);
75 if (conn->active_call) {
76 tevent_req_cancel(conn->active_call);
77 conn->active_call = NULL;
80 conn->limits.reason = talloc_strdup(conn, reason);
81 if (conn->limits.reason == NULL) {
82 TALLOC_FREE(conn->sockets.tls);
83 TALLOC_FREE(conn->sockets.sasl);
84 TALLOC_FREE(conn->sockets.raw);
85 stream_terminate_connection(conn->connection, reason);
86 return;
89 subreq = tstream_disconnect_send(conn,
90 conn->connection->event.ctx,
91 conn->sockets.active);
92 if (subreq == NULL) {
93 TALLOC_FREE(conn->sockets.tls);
94 TALLOC_FREE(conn->sockets.sasl);
95 TALLOC_FREE(conn->sockets.raw);
96 stream_terminate_connection(conn->connection, reason);
97 return;
99 tevent_req_set_endtime(subreq,
100 conn->connection->event.ctx,
101 conn->limits.endtime);
102 tevent_req_set_callback(subreq, ldapsrv_terminate_connection_done, conn);
105 static void ldapsrv_terminate_connection_done(struct tevent_req *subreq)
107 struct ldapsrv_connection *conn =
108 tevent_req_callback_data(subreq,
109 struct ldapsrv_connection);
110 int sys_errno;
111 bool ok;
113 tstream_disconnect_recv(subreq, &sys_errno);
114 TALLOC_FREE(subreq);
116 if (conn->sockets.active == conn->sockets.raw) {
117 TALLOC_FREE(conn->sockets.tls);
118 TALLOC_FREE(conn->sockets.sasl);
119 TALLOC_FREE(conn->sockets.raw);
120 stream_terminate_connection(conn->connection,
121 conn->limits.reason);
122 return;
125 TALLOC_FREE(conn->sockets.tls);
126 TALLOC_FREE(conn->sockets.sasl);
127 conn->sockets.active = conn->sockets.raw;
129 subreq = tstream_disconnect_send(conn,
130 conn->connection->event.ctx,
131 conn->sockets.active);
132 if (subreq == NULL) {
133 TALLOC_FREE(conn->sockets.raw);
134 stream_terminate_connection(conn->connection,
135 conn->limits.reason);
136 return;
138 ok = tevent_req_set_endtime(subreq,
139 conn->connection->event.ctx,
140 conn->limits.endtime);
141 if (!ok) {
142 TALLOC_FREE(conn->sockets.raw);
143 stream_terminate_connection(conn->connection,
144 conn->limits.reason);
145 return;
147 tevent_req_set_callback(subreq, ldapsrv_terminate_connection_done, conn);
151 called when a LDAP socket becomes readable
153 void ldapsrv_recv(struct stream_connection *c, uint16_t flags)
155 smb_panic(__location__);
159 called when a LDAP socket becomes writable
161 static void ldapsrv_send(struct stream_connection *c, uint16_t flags)
163 smb_panic(__location__);
166 static int ldapsrv_load_limits(struct ldapsrv_connection *conn)
168 TALLOC_CTX *tmp_ctx;
169 const char *attrs[] = { "configurationNamingContext", NULL };
170 const char *attrs2[] = { "lDAPAdminLimits", NULL };
171 struct ldb_message_element *el;
172 struct ldb_result *res = NULL;
173 struct ldb_dn *basedn;
174 struct ldb_dn *conf_dn;
175 struct ldb_dn *policy_dn;
176 unsigned int i;
177 int ret;
179 /* set defaults limits in case of failure */
180 conn->limits.initial_timeout = 120;
181 conn->limits.conn_idle_time = 900;
182 conn->limits.max_page_size = 1000;
183 conn->limits.max_notifications = 5;
184 conn->limits.search_timeout = 120;
185 conn->limits.expire_time = (struct timeval) {
186 .tv_sec = get_time_t_max(),
190 tmp_ctx = talloc_new(conn);
191 if (tmp_ctx == NULL) {
192 return -1;
195 basedn = ldb_dn_new(tmp_ctx, conn->ldb, NULL);
196 if (basedn == NULL) {
197 goto failed;
200 ret = ldb_search(conn->ldb, tmp_ctx, &res, basedn, LDB_SCOPE_BASE, attrs, NULL);
201 if (ret != LDB_SUCCESS) {
202 goto failed;
205 if (res->count != 1) {
206 goto failed;
209 conf_dn = ldb_msg_find_attr_as_dn(conn->ldb, tmp_ctx, res->msgs[0], "configurationNamingContext");
210 if (conf_dn == NULL) {
211 goto failed;
214 policy_dn = ldb_dn_copy(tmp_ctx, conf_dn);
215 ldb_dn_add_child_fmt(policy_dn, "CN=Default Query Policy,CN=Query-Policies,CN=Directory Service,CN=Windows NT,CN=Services");
216 if (policy_dn == NULL) {
217 goto failed;
220 ret = ldb_search(conn->ldb, tmp_ctx, &res, policy_dn, LDB_SCOPE_BASE, attrs2, NULL);
221 if (ret != LDB_SUCCESS) {
222 goto failed;
225 if (res->count != 1) {
226 goto failed;
229 el = ldb_msg_find_element(res->msgs[0], "lDAPAdminLimits");
230 if (el == NULL) {
231 goto failed;
234 for (i = 0; i < el->num_values; i++) {
235 char policy_name[256];
236 int policy_value, s;
238 s = sscanf((const char *)el->values[i].data, "%255[^=]=%d", policy_name, &policy_value);
239 if (s != 2 || policy_value == 0)
240 continue;
241 if (strcasecmp("InitRecvTimeout", policy_name) == 0) {
242 conn->limits.initial_timeout = policy_value;
243 continue;
245 if (strcasecmp("MaxConnIdleTime", policy_name) == 0) {
246 conn->limits.conn_idle_time = policy_value;
247 continue;
249 if (strcasecmp("MaxPageSize", policy_name) == 0) {
250 conn->limits.max_page_size = policy_value;
251 continue;
253 if (strcasecmp("MaxNotificationPerConn", policy_name) == 0) {
254 conn->limits.max_notifications = policy_value;
255 continue;
257 if (strcasecmp("MaxQueryDuration", policy_name) == 0) {
258 if (policy_value > 0) {
259 conn->limits.search_timeout = policy_value;
261 continue;
265 return 0;
267 failed:
268 DBG_ERR("Failed to load ldap server query policies\n");
269 talloc_free(tmp_ctx);
270 return -1;
273 static int ldapsrv_call_destructor(struct ldapsrv_call *call)
275 if (call->conn == NULL) {
276 return 0;
279 DLIST_REMOVE(call->conn->pending_calls, call);
281 call->conn = NULL;
282 return 0;
285 static struct tevent_req *ldapsrv_process_call_send(TALLOC_CTX *mem_ctx,
286 struct tevent_context *ev,
287 struct tevent_queue *call_queue,
288 struct ldapsrv_call *call);
289 static NTSTATUS ldapsrv_process_call_recv(struct tevent_req *req);
291 static bool ldapsrv_call_read_next(struct ldapsrv_connection *conn);
292 static void ldapsrv_accept_tls_done(struct tevent_req *subreq);
295 initialise a server_context from a open socket and register a event handler
296 for reading from that socket
298 static void ldapsrv_accept(struct stream_connection *c,
299 struct auth_session_info *session_info,
300 bool is_privileged)
302 struct ldapsrv_service *ldapsrv_service =
303 talloc_get_type(c->private_data, struct ldapsrv_service);
304 struct ldapsrv_connection *conn;
305 struct cli_credentials *server_credentials;
306 struct socket_address *socket_address;
307 int port;
308 int ret;
309 struct tevent_req *subreq;
310 struct timeval endtime;
311 char *errstring = NULL;
313 conn = talloc_zero(c, struct ldapsrv_connection);
314 if (!conn) {
315 stream_terminate_connection(c, "ldapsrv_accept: out of memory");
316 return;
318 conn->is_privileged = is_privileged;
320 conn->sockets.send_queue = tevent_queue_create(conn, "ldapsev send queue");
321 if (conn->sockets.send_queue == NULL) {
322 stream_terminate_connection(c,
323 "ldapsrv_accept: tevent_queue_create failed");
324 return;
327 TALLOC_FREE(c->event.fde);
329 ret = tstream_bsd_existing_socket(conn,
330 socket_get_fd(c->socket),
331 &conn->sockets.raw);
332 if (ret == -1) {
333 stream_terminate_connection(c,
334 "ldapsrv_accept: out of memory");
335 return;
337 socket_set_flags(c->socket, SOCKET_FLAG_NOCLOSE);
339 conn->connection = c;
340 conn->service = ldapsrv_service;
341 conn->lp_ctx = ldapsrv_service->task->lp_ctx;
343 c->private_data = conn;
345 socket_address = socket_get_my_addr(c->socket, conn);
346 if (!socket_address) {
347 ldapsrv_terminate_connection(conn, "ldapsrv_accept: failed to obtain local socket address!");
348 return;
350 port = socket_address->port;
351 talloc_free(socket_address);
352 if (port == 3268 || port == 3269) /* Global catalog */ {
353 conn->global_catalog = true;
356 server_credentials = cli_credentials_init_server(conn, conn->lp_ctx);
357 if (!server_credentials) {
358 stream_terminate_connection(c, "Failed to init server credentials\n");
359 return;
362 conn->server_credentials = server_credentials;
364 conn->session_info = session_info;
366 conn->sockets.active = conn->sockets.raw;
368 if (conn->is_privileged) {
369 conn->require_strong_auth = LDAP_SERVER_REQUIRE_STRONG_AUTH_NO;
370 } else {
371 conn->require_strong_auth = lpcfg_ldap_server_require_strong_auth(conn->lp_ctx);
374 ret = ldapsrv_backend_Init(conn, &errstring);
375 if (ret != LDB_SUCCESS) {
376 char *reason = talloc_asprintf(conn,
377 "LDB backend for LDAP Init "
378 "failed: %s: %s",
379 errstring, ldb_strerror(ret));
380 ldapsrv_terminate_connection(conn, reason);
381 return;
384 /* load limits from the conf partition */
385 ldapsrv_load_limits(conn); /* should we fail on error ? */
387 /* register the server */
388 irpc_add_name(c->msg_ctx, "ldap_server");
390 DLIST_ADD_END(ldapsrv_service->connections, conn);
392 if (port != 636 && port != 3269) {
393 ldapsrv_call_read_next(conn);
394 return;
397 endtime = timeval_current_ofs(conn->limits.conn_idle_time, 0);
399 subreq = tstream_tls_accept_send(conn,
400 conn->connection->event.ctx,
401 conn->sockets.raw,
402 conn->service->tls_params);
403 if (subreq == NULL) {
404 ldapsrv_terminate_connection(conn, "ldapsrv_accept: "
405 "no memory for tstream_tls_accept_send");
406 return;
408 tevent_req_set_endtime(subreq,
409 conn->connection->event.ctx,
410 endtime);
411 tevent_req_set_callback(subreq, ldapsrv_accept_tls_done, conn);
414 static void ldapsrv_accept_tls_done(struct tevent_req *subreq)
416 struct ldapsrv_connection *conn =
417 tevent_req_callback_data(subreq,
418 struct ldapsrv_connection);
419 int ret;
420 int sys_errno;
422 ret = tstream_tls_accept_recv(subreq, &sys_errno,
423 conn, &conn->sockets.tls);
424 TALLOC_FREE(subreq);
425 if (ret == -1) {
426 const char *reason;
428 reason = talloc_asprintf(conn, "ldapsrv_accept_tls_loop: "
429 "tstream_tls_accept_recv() - %d:%s",
430 sys_errno, strerror(sys_errno));
431 if (!reason) {
432 reason = "ldapsrv_accept_tls_loop: "
433 "tstream_tls_accept_recv() - failed";
436 ldapsrv_terminate_connection(conn, reason);
437 return;
440 conn->sockets.active = conn->sockets.tls;
441 conn->referral_scheme = LDAP_REFERRAL_SCHEME_LDAPS;
442 ldapsrv_call_read_next(conn);
445 static void ldapsrv_call_read_done(struct tevent_req *subreq);
446 static NTSTATUS ldapsrv_packet_check(
447 void *private_data,
448 DATA_BLOB blob,
449 size_t *packet_size);
451 static bool ldapsrv_call_read_next(struct ldapsrv_connection *conn)
453 struct tevent_req *subreq;
455 if (conn->pending_calls != NULL) {
456 conn->limits.endtime = timeval_zero();
458 ldapsrv_notification_retry_setup(conn->service, false);
459 } else if (timeval_is_zero(&conn->limits.endtime)) {
460 conn->limits.endtime =
461 timeval_current_ofs(conn->limits.initial_timeout, 0);
462 } else {
463 conn->limits.endtime =
464 timeval_current_ofs(conn->limits.conn_idle_time, 0);
467 if (conn->sockets.read_req != NULL) {
468 return true;
472 * The minimum size of a LDAP pdu is 7 bytes
474 * dumpasn1 -hh ldap-unbind-min.dat
476 * <30 05 02 01 09 42 00>
477 * 0 5: SEQUENCE {
478 * <02 01 09>
479 * 2 1: INTEGER 9
480 * <42 00>
481 * 5 0: [APPLICATION 2]
482 * : Error: Object has zero length.
483 * : }
485 * dumpasn1 -hh ldap-unbind-windows.dat
487 * <30 84 00 00 00 05 02 01 09 42 00>
488 * 0 5: SEQUENCE {
489 * <02 01 09>
490 * 6 1: INTEGER 9
491 * <42 00>
492 * 9 0: [APPLICATION 2]
493 * : Error: Object has zero length.
494 * : }
496 * This means using an initial read size
497 * of 7 is ok.
499 subreq = tstream_read_pdu_blob_send(conn,
500 conn->connection->event.ctx,
501 conn->sockets.active,
502 7, /* initial_read_size */
503 ldapsrv_packet_check,
504 conn);
505 if (subreq == NULL) {
506 ldapsrv_terminate_connection(conn, "ldapsrv_call_read_next: "
507 "no memory for tstream_read_pdu_blob_send");
508 return false;
510 if (!timeval_is_zero(&conn->limits.endtime)) {
511 bool ok;
512 ok = tevent_req_set_endtime(subreq,
513 conn->connection->event.ctx,
514 conn->limits.endtime);
515 if (!ok) {
516 ldapsrv_terminate_connection(
517 conn,
518 "ldapsrv_call_read_next: "
519 "no memory for tevent_req_set_endtime");
520 return false;
523 tevent_req_set_callback(subreq, ldapsrv_call_read_done, conn);
524 conn->sockets.read_req = subreq;
525 return true;
528 static void ldapsrv_call_process_done(struct tevent_req *subreq);
529 static int ldapsrv_check_packet_size(
530 struct ldapsrv_connection *conn,
531 size_t size);
533 static void ldapsrv_call_read_done(struct tevent_req *subreq)
535 struct ldapsrv_connection *conn =
536 tevent_req_callback_data(subreq,
537 struct ldapsrv_connection);
538 NTSTATUS status;
539 struct ldapsrv_call *call;
540 struct asn1_data *asn1;
541 DATA_BLOB blob;
542 int ret = LDAP_SUCCESS;
543 struct ldap_request_limits limits = {0};
545 conn->sockets.read_req = NULL;
547 call = talloc_zero(conn, struct ldapsrv_call);
548 if (!call) {
549 ldapsrv_terminate_connection(conn, "no memory");
550 return;
552 talloc_set_destructor(call, ldapsrv_call_destructor);
554 call->conn = conn;
556 status = tstream_read_pdu_blob_recv(subreq,
557 call,
558 &blob);
559 TALLOC_FREE(subreq);
560 if (!NT_STATUS_IS_OK(status)) {
561 const char *reason;
563 reason = talloc_asprintf(call, "ldapsrv_call_loop: "
564 "tstream_read_pdu_blob_recv() - %s",
565 nt_errstr(status));
566 if (!reason) {
567 reason = nt_errstr(status);
570 ldapsrv_terminate_connection(conn, reason);
571 return;
574 ret = ldapsrv_check_packet_size(conn, blob.length);
575 if (ret != LDAP_SUCCESS) {
576 ldapsrv_terminate_connection(
577 conn,
578 "Request packet too large");
579 return;
582 asn1 = asn1_init(call, ASN1_MAX_TREE_DEPTH);
583 if (asn1 == NULL) {
584 ldapsrv_terminate_connection(conn, "no memory");
585 return;
588 call->request = talloc(call, struct ldap_message);
589 if (call->request == NULL) {
590 ldapsrv_terminate_connection(conn, "no memory");
591 return;
594 asn1_load_nocopy(asn1, blob.data, blob.length);
596 limits.max_search_size =
597 lpcfg_ldap_max_search_request_size(conn->lp_ctx);
598 status = ldap_decode(
599 asn1,
600 &limits,
601 samba_ldap_control_handlers(),
602 call->request);
603 if (!NT_STATUS_IS_OK(status)) {
604 ldapsrv_terminate_connection(conn, nt_errstr(status));
605 return;
608 data_blob_free(&blob);
609 TALLOC_FREE(asn1);
612 /* queue the call in the global queue */
613 subreq = ldapsrv_process_call_send(call,
614 conn->connection->event.ctx,
615 conn->service->call_queue,
616 call);
617 if (subreq == NULL) {
618 ldapsrv_terminate_connection(conn, "ldapsrv_process_call_send failed");
619 return;
621 tevent_req_set_callback(subreq, ldapsrv_call_process_done, call);
622 conn->active_call = subreq;
625 static void ldapsrv_call_wait_done(struct tevent_req *subreq);
626 static void ldapsrv_call_writev_start(struct ldapsrv_call *call);
627 static void ldapsrv_call_writev_done(struct tevent_req *subreq);
629 static void ldapsrv_call_process_done(struct tevent_req *subreq)
631 struct ldapsrv_call *call =
632 tevent_req_callback_data(subreq,
633 struct ldapsrv_call);
634 struct ldapsrv_connection *conn = call->conn;
635 NTSTATUS status;
637 conn->active_call = NULL;
639 status = ldapsrv_process_call_recv(subreq);
640 TALLOC_FREE(subreq);
641 if (!NT_STATUS_IS_OK(status)) {
642 ldapsrv_terminate_connection(conn, nt_errstr(status));
643 return;
646 if (call->wait_send != NULL) {
647 subreq = call->wait_send(call,
648 conn->connection->event.ctx,
649 call->wait_private);
650 if (subreq == NULL) {
651 ldapsrv_terminate_connection(conn,
652 "ldapsrv_call_process_done: "
653 "call->wait_send - no memory");
654 return;
656 tevent_req_set_callback(subreq,
657 ldapsrv_call_wait_done,
658 call);
659 conn->active_call = subreq;
660 return;
663 ldapsrv_call_writev_start(call);
666 static void ldapsrv_call_wait_done(struct tevent_req *subreq)
668 struct ldapsrv_call *call =
669 tevent_req_callback_data(subreq,
670 struct ldapsrv_call);
671 struct ldapsrv_connection *conn = call->conn;
672 NTSTATUS status;
674 conn->active_call = NULL;
676 status = call->wait_recv(subreq);
677 TALLOC_FREE(subreq);
678 if (!NT_STATUS_IS_OK(status)) {
679 const char *reason;
681 reason = talloc_asprintf(call, "ldapsrv_call_wait_done: "
682 "call->wait_recv() - %s",
683 nt_errstr(status));
684 if (reason == NULL) {
685 reason = nt_errstr(status);
688 ldapsrv_terminate_connection(conn, reason);
689 return;
692 ldapsrv_call_writev_start(call);
695 static void ldapsrv_call_writev_start(struct ldapsrv_call *call)
697 struct ldapsrv_connection *conn = call->conn;
698 struct ldapsrv_reply *reply = NULL;
699 struct tevent_req *subreq = NULL;
700 struct timeval endtime;
701 size_t length = 0;
702 size_t i;
704 call->iov_count = 0;
706 /* build all the replies into an IOV (no copy) */
707 for (reply = call->replies;
708 reply != NULL;
709 reply = reply->next) {
711 /* Cap output at 25MB per writev() */
712 if (length > length + reply->blob.length
713 || length + reply->blob.length > LDAP_SERVER_MAX_CHUNK_SIZE) {
714 break;
718 * Overflow is harmless here, just used below to
719 * decide if to read or write, but checked above anyway
721 length += reply->blob.length;
724 * At worst an overflow would mean we send less
725 * replies
727 call->iov_count++;
730 if (length == 0) {
731 if (!call->notification.busy) {
732 TALLOC_FREE(call);
735 ldapsrv_call_read_next(conn);
736 return;
739 /* Cap call->iov_count at IOV_MAX */
740 call->iov_count = MIN(call->iov_count, IOV_MAX);
742 call->out_iov = talloc_array(call,
743 struct iovec,
744 call->iov_count);
745 if (!call->out_iov) {
746 /* This is not ideal */
747 ldapsrv_terminate_connection(conn,
748 "failed to allocate "
749 "iovec array");
750 return;
753 /* We may have had to cap the number of replies at IOV_MAX */
754 for (i = 0;
755 i < call->iov_count && call->replies != NULL;
756 i++) {
757 reply = call->replies;
758 call->out_iov[i].iov_base = reply->blob.data;
759 call->out_iov[i].iov_len = reply->blob.length;
761 /* Keep only the ASN.1 encoded data */
762 talloc_steal(call->out_iov, reply->blob.data);
764 DLIST_REMOVE(call->replies, reply);
765 TALLOC_FREE(reply);
768 if (i > call->iov_count) {
769 /* This is not ideal, but also (essentially) impossible */
770 ldapsrv_terminate_connection(conn,
771 "call list ended"
772 "before iov_count");
773 return;
776 subreq = tstream_writev_queue_send(call,
777 conn->connection->event.ctx,
778 conn->sockets.active,
779 conn->sockets.send_queue,
780 call->out_iov, call->iov_count);
781 if (subreq == NULL) {
782 ldapsrv_terminate_connection(conn, "stream_writev_queue_send failed");
783 return;
785 endtime = timeval_current_ofs(conn->limits.conn_idle_time, 0);
786 tevent_req_set_endtime(subreq,
787 conn->connection->event.ctx,
788 endtime);
789 tevent_req_set_callback(subreq, ldapsrv_call_writev_done, call);
792 static void ldapsrv_call_postprocess_done(struct tevent_req *subreq);
794 static void ldapsrv_call_writev_done(struct tevent_req *subreq)
796 struct ldapsrv_call *call =
797 tevent_req_callback_data(subreq,
798 struct ldapsrv_call);
799 struct ldapsrv_connection *conn = call->conn;
800 int sys_errno;
801 int rc;
803 rc = tstream_writev_queue_recv(subreq, &sys_errno);
804 TALLOC_FREE(subreq);
806 /* This releases the ASN.1 encoded packets from memory */
807 TALLOC_FREE(call->out_iov);
808 if (rc == -1) {
809 const char *reason;
811 reason = talloc_asprintf(call, "ldapsrv_call_writev_done: "
812 "tstream_writev_queue_recv() - %d:%s",
813 sys_errno, strerror(sys_errno));
814 if (reason == NULL) {
815 reason = "ldapsrv_call_writev_done: "
816 "tstream_writev_queue_recv() failed";
819 ldapsrv_terminate_connection(conn, reason);
820 return;
823 if (call->postprocess_send) {
824 subreq = call->postprocess_send(call,
825 conn->connection->event.ctx,
826 call->postprocess_private);
827 if (subreq == NULL) {
828 ldapsrv_terminate_connection(conn, "ldapsrv_call_writev_done: "
829 "call->postprocess_send - no memory");
830 return;
832 tevent_req_set_callback(subreq,
833 ldapsrv_call_postprocess_done,
834 call);
835 return;
838 /* Perhaps still some more to send */
839 if (call->replies != NULL) {
840 ldapsrv_call_writev_start(call);
841 return;
844 if (!call->notification.busy) {
845 TALLOC_FREE(call);
848 ldapsrv_call_read_next(conn);
851 static void ldapsrv_call_postprocess_done(struct tevent_req *subreq)
853 struct ldapsrv_call *call =
854 tevent_req_callback_data(subreq,
855 struct ldapsrv_call);
856 struct ldapsrv_connection *conn = call->conn;
857 NTSTATUS status;
859 status = call->postprocess_recv(subreq);
860 TALLOC_FREE(subreq);
861 if (!NT_STATUS_IS_OK(status)) {
862 const char *reason;
864 reason = talloc_asprintf(call, "ldapsrv_call_postprocess_done: "
865 "call->postprocess_recv() - %s",
866 nt_errstr(status));
867 if (reason == NULL) {
868 reason = nt_errstr(status);
871 ldapsrv_terminate_connection(conn, reason);
872 return;
875 TALLOC_FREE(call);
877 ldapsrv_call_read_next(conn);
880 static void ldapsrv_notification_retry_done(struct tevent_req *subreq);
882 void ldapsrv_notification_retry_setup(struct ldapsrv_service *service, bool force)
884 struct ldapsrv_connection *conn = NULL;
885 struct timeval retry;
886 size_t num_pending = 0;
887 size_t num_active = 0;
889 if (force) {
890 TALLOC_FREE(service->notification.retry);
891 service->notification.generation += 1;
894 if (service->notification.retry != NULL) {
895 return;
898 for (conn = service->connections; conn != NULL; conn = conn->next) {
899 if (conn->pending_calls == NULL) {
900 continue;
903 num_pending += 1;
905 if (conn->pending_calls->notification.generation !=
906 service->notification.generation)
908 num_active += 1;
912 if (num_pending == 0) {
913 return;
916 if (num_active != 0) {
917 retry = timeval_current_ofs(0, 100);
918 } else {
919 retry = timeval_current_ofs(5, 0);
922 service->notification.retry = tevent_wakeup_send(service,
923 service->task->event_ctx,
924 retry);
925 if (service->notification.retry == NULL) {
926 /* retry later */
927 return;
930 tevent_req_set_callback(service->notification.retry,
931 ldapsrv_notification_retry_done,
932 service);
935 static void ldapsrv_notification_retry_done(struct tevent_req *subreq)
937 struct ldapsrv_service *service =
938 tevent_req_callback_data(subreq,
939 struct ldapsrv_service);
940 struct ldapsrv_connection *conn = NULL;
941 struct ldapsrv_connection *conn_next = NULL;
942 bool ok;
944 service->notification.retry = NULL;
946 ok = tevent_wakeup_recv(subreq);
947 TALLOC_FREE(subreq);
948 if (!ok) {
949 /* ignore */
952 for (conn = service->connections; conn != NULL; conn = conn_next) {
953 struct ldapsrv_call *call = conn->pending_calls;
955 conn_next = conn->next;
957 if (conn->pending_calls == NULL) {
958 continue;
961 if (conn->active_call != NULL) {
962 continue;
965 DLIST_DEMOTE(conn->pending_calls, call);
966 call->notification.generation =
967 service->notification.generation;
969 /* queue the call in the global queue */
970 subreq = ldapsrv_process_call_send(call,
971 conn->connection->event.ctx,
972 conn->service->call_queue,
973 call);
974 if (subreq == NULL) {
975 ldapsrv_terminate_connection(conn,
976 "ldapsrv_process_call_send failed");
977 continue;
979 tevent_req_set_callback(subreq, ldapsrv_call_process_done, call);
980 conn->active_call = subreq;
983 ldapsrv_notification_retry_setup(service, false);
986 struct ldapsrv_process_call_state {
987 struct ldapsrv_call *call;
990 static void ldapsrv_process_call_trigger(struct tevent_req *req,
991 void *private_data);
993 static struct tevent_req *ldapsrv_process_call_send(TALLOC_CTX *mem_ctx,
994 struct tevent_context *ev,
995 struct tevent_queue *call_queue,
996 struct ldapsrv_call *call)
998 struct tevent_req *req;
999 struct ldapsrv_process_call_state *state;
1000 bool ok;
1002 req = tevent_req_create(mem_ctx, &state,
1003 struct ldapsrv_process_call_state);
1004 if (req == NULL) {
1005 return req;
1008 state->call = call;
1010 ok = tevent_queue_add(call_queue, ev, req,
1011 ldapsrv_process_call_trigger, NULL);
1012 if (!ok) {
1013 tevent_req_oom(req);
1014 return tevent_req_post(req, ev);
1017 return req;
1020 static void ldapsrv_disconnect_ticket_expired(struct tevent_req *subreq);
1022 static void ldapsrv_process_call_trigger(struct tevent_req *req,
1023 void *private_data)
1025 struct ldapsrv_process_call_state *state =
1026 tevent_req_data(req,
1027 struct ldapsrv_process_call_state);
1028 struct ldapsrv_connection *conn = state->call->conn;
1029 NTSTATUS status;
1031 if (conn->deferred_expire_disconnect != NULL) {
1033 * Just drop this on the floor
1035 tevent_req_done(req);
1036 return;
1039 /* make the call */
1040 status = ldapsrv_do_call(state->call);
1042 if (NT_STATUS_EQUAL(status, NT_STATUS_NETWORK_SESSION_EXPIRED)) {
1044 * For testing purposes, defer the TCP disconnect
1045 * after having sent the msgid 0
1046 * 1.3.6.1.4.1.1466.20036 exop response. LDAP clients
1047 * should not wait for the TCP connection to close but
1048 * handle this packet equivalent to a TCP
1049 * disconnect. This delay enables testing both cases
1050 * in LDAP client libraries.
1053 int defer_msec = lpcfg_parm_int(
1054 conn->lp_ctx,
1055 NULL,
1056 "ldap_server",
1057 "delay_expire_disconnect",
1060 conn->deferred_expire_disconnect = tevent_wakeup_send(
1061 conn,
1062 conn->connection->event.ctx,
1063 timeval_current_ofs_msec(defer_msec));
1064 if (tevent_req_nomem(conn->deferred_expire_disconnect, req)) {
1065 return;
1067 tevent_req_set_callback(
1068 conn->deferred_expire_disconnect,
1069 ldapsrv_disconnect_ticket_expired,
1070 conn);
1072 tevent_req_done(req);
1073 return;
1076 if (!NT_STATUS_IS_OK(status)) {
1077 tevent_req_nterror(req, status);
1078 return;
1081 tevent_req_done(req);
1084 static void ldapsrv_disconnect_ticket_expired(struct tevent_req *subreq)
1086 struct ldapsrv_connection *conn = tevent_req_callback_data(
1087 subreq, struct ldapsrv_connection);
1088 bool ok;
1090 ok = tevent_wakeup_recv(subreq);
1091 TALLOC_FREE(subreq);
1092 if (!ok) {
1093 DBG_WARNING("tevent_wakeup_recv failed\n");
1095 conn->deferred_expire_disconnect = NULL;
1096 ldapsrv_terminate_connection(conn, "network session expired");
1099 static NTSTATUS ldapsrv_process_call_recv(struct tevent_req *req)
1101 NTSTATUS status;
1103 if (tevent_req_is_nterror(req, &status)) {
1104 tevent_req_received(req);
1105 return status;
1108 tevent_req_received(req);
1109 return NT_STATUS_OK;
1112 static void ldapsrv_accept_nonpriv(struct stream_connection *c)
1114 struct ldapsrv_service *ldapsrv_service = talloc_get_type_abort(
1115 c->private_data, struct ldapsrv_service);
1116 struct auth_session_info *session_info;
1117 NTSTATUS status;
1119 status = auth_anonymous_session_info(
1120 c, ldapsrv_service->task->lp_ctx, &session_info);
1121 if (!NT_STATUS_IS_OK(status)) {
1122 stream_terminate_connection(c, "failed to setup anonymous "
1123 "session info");
1124 return;
1126 ldapsrv_accept(c, session_info, false);
1129 static const struct stream_server_ops ldap_stream_nonpriv_ops = {
1130 .name = "ldap",
1131 .accept_connection = ldapsrv_accept_nonpriv,
1132 .recv_handler = ldapsrv_recv,
1133 .send_handler = ldapsrv_send,
1136 /* The feature removed behind an #ifdef until we can do it properly
1137 * with an EXTERNAL bind. */
1139 #define WITH_LDAPI_PRIV_SOCKET
1141 #ifdef WITH_LDAPI_PRIV_SOCKET
1142 static void ldapsrv_accept_priv(struct stream_connection *c)
1144 struct ldapsrv_service *ldapsrv_service = talloc_get_type_abort(
1145 c->private_data, struct ldapsrv_service);
1146 struct auth_session_info *session_info;
1148 session_info = system_session(ldapsrv_service->task->lp_ctx);
1149 if (!session_info) {
1150 stream_terminate_connection(c, "failed to setup system "
1151 "session info");
1152 return;
1154 ldapsrv_accept(c, session_info, true);
1157 static const struct stream_server_ops ldap_stream_priv_ops = {
1158 .name = "ldap",
1159 .accept_connection = ldapsrv_accept_priv,
1160 .recv_handler = ldapsrv_recv,
1161 .send_handler = ldapsrv_send,
1164 #endif
1168 add a socket address to the list of events, one event per port
1170 static NTSTATUS add_socket(struct task_server *task,
1171 struct loadparm_context *lp_ctx,
1172 const struct model_ops *model_ops,
1173 const char *address, struct ldapsrv_service *ldap_service)
1175 uint16_t port = 389;
1176 NTSTATUS status;
1177 struct ldb_context *ldb;
1179 status = stream_setup_socket(task, task->event_ctx, lp_ctx,
1180 model_ops, &ldap_stream_nonpriv_ops,
1181 "ip", address, &port,
1182 lpcfg_socket_options(lp_ctx),
1183 ldap_service, task->process_context);
1184 if (!NT_STATUS_IS_OK(status)) {
1185 DBG_ERR("ldapsrv failed to bind to %s:%u - %s\n",
1186 address, port, nt_errstr(status));
1187 return status;
1190 if (tstream_tls_params_enabled(ldap_service->tls_params)) {
1191 /* add ldaps server */
1192 port = 636;
1193 status = stream_setup_socket(task, task->event_ctx, lp_ctx,
1194 model_ops,
1195 &ldap_stream_nonpriv_ops,
1196 "ip", address, &port,
1197 lpcfg_socket_options(lp_ctx),
1198 ldap_service,
1199 task->process_context);
1200 if (!NT_STATUS_IS_OK(status)) {
1201 DBG_ERR("ldapsrv failed to bind to %s:%u - %s\n",
1202 address, port, nt_errstr(status));
1203 return status;
1207 /* Load LDAP database, but only to read our settings */
1208 ldb = samdb_connect(ldap_service,
1209 ldap_service->task->event_ctx,
1210 lp_ctx,
1211 system_session(lp_ctx),
1212 NULL,
1214 if (!ldb) {
1215 return NT_STATUS_INTERNAL_DB_CORRUPTION;
1218 if (samdb_is_gc(ldb)) {
1219 port = 3268;
1220 status = stream_setup_socket(task, task->event_ctx, lp_ctx,
1221 model_ops,
1222 &ldap_stream_nonpriv_ops,
1223 "ip", address, &port,
1224 lpcfg_socket_options(lp_ctx),
1225 ldap_service,
1226 task->process_context);
1227 if (!NT_STATUS_IS_OK(status)) {
1228 DBG_ERR("ldapsrv failed to bind to %s:%u - %s\n",
1229 address, port, nt_errstr(status));
1230 return status;
1232 if (tstream_tls_params_enabled(ldap_service->tls_params)) {
1233 /* add ldaps server for the global catalog */
1234 port = 3269;
1235 status = stream_setup_socket(task, task->event_ctx, lp_ctx,
1236 model_ops,
1237 &ldap_stream_nonpriv_ops,
1238 "ip", address, &port,
1239 lpcfg_socket_options(lp_ctx),
1240 ldap_service,
1241 task->process_context);
1242 if (!NT_STATUS_IS_OK(status)) {
1243 DBG_ERR("ldapsrv failed to bind to %s:%u - %s\n",
1244 address, port, nt_errstr(status));
1245 return status;
1250 /* And once we are bound, free the temporary ldb, it will
1251 * connect again on each incoming LDAP connection */
1252 talloc_unlink(ldap_service, ldb);
1254 return NT_STATUS_OK;
1258 open the ldap server sockets
1260 static NTSTATUS ldapsrv_task_init(struct task_server *task)
1262 char *ldapi_path;
1263 #ifdef WITH_LDAPI_PRIV_SOCKET
1264 char *priv_dir;
1265 #endif
1266 const char *dns_host_name;
1267 struct ldapsrv_service *ldap_service;
1268 NTSTATUS status;
1270 switch (lpcfg_server_role(task->lp_ctx)) {
1271 case ROLE_STANDALONE:
1272 task_server_terminate(task, "ldap_server: no LDAP server required in standalone configuration",
1273 false);
1274 return NT_STATUS_INVALID_DOMAIN_ROLE;
1275 case ROLE_DOMAIN_MEMBER:
1276 task_server_terminate(task, "ldap_server: no LDAP server required in member server configuration",
1277 false);
1278 return NT_STATUS_INVALID_DOMAIN_ROLE;
1279 case ROLE_ACTIVE_DIRECTORY_DC:
1280 /* Yes, we want an LDAP server */
1281 break;
1284 task_server_set_title(task, "task[ldapsrv]");
1286 ldap_service = talloc_zero(task, struct ldapsrv_service);
1287 if (ldap_service == NULL) {
1288 status = NT_STATUS_NO_MEMORY;
1289 goto failed;
1292 ldap_service->task = task;
1294 dns_host_name = talloc_asprintf(ldap_service, "%s.%s",
1295 lpcfg_netbios_name(task->lp_ctx),
1296 lpcfg_dnsdomain(task->lp_ctx));
1297 if (dns_host_name == NULL) {
1298 status = NT_STATUS_NO_MEMORY;
1299 goto failed;
1302 status = tstream_tls_params_server(ldap_service,
1303 dns_host_name,
1304 lpcfg_tls_enabled(task->lp_ctx),
1305 lpcfg_tls_keyfile(ldap_service, task->lp_ctx),
1306 lpcfg_tls_certfile(ldap_service, task->lp_ctx),
1307 lpcfg_tls_cafile(ldap_service, task->lp_ctx),
1308 lpcfg_tls_crlfile(ldap_service, task->lp_ctx),
1309 lpcfg_tls_dhpfile(ldap_service, task->lp_ctx),
1310 lpcfg_tls_priority(task->lp_ctx),
1311 &ldap_service->tls_params);
1312 if (!NT_STATUS_IS_OK(status)) {
1313 DBG_ERR("ldapsrv failed tstream_tls_params_server - %s\n",
1314 nt_errstr(status));
1315 goto failed;
1318 ldap_service->call_queue = tevent_queue_create(ldap_service, "ldapsrv_call_queue");
1319 if (ldap_service->call_queue == NULL) {
1320 status = NT_STATUS_NO_MEMORY;
1321 goto failed;
1324 if (lpcfg_interfaces(task->lp_ctx) && lpcfg_bind_interfaces_only(task->lp_ctx)) {
1325 struct interface *ifaces;
1326 int num_interfaces;
1327 int i;
1329 load_interface_list(task, task->lp_ctx, &ifaces);
1330 num_interfaces = iface_list_count(ifaces);
1332 /* We have been given an interfaces line, and been
1333 told to only bind to those interfaces. Create a
1334 socket per interface and bind to only these.
1336 for(i = 0; i < num_interfaces; i++) {
1337 const char *address = iface_list_n_ip(ifaces, i);
1338 status = add_socket(task, task->lp_ctx, task->model_ops,
1339 address, ldap_service);
1340 if (!NT_STATUS_IS_OK(status)) goto failed;
1342 } else {
1343 char **wcard;
1344 size_t i;
1345 size_t num_binds = 0;
1346 wcard = iface_list_wildcard(task);
1347 if (wcard == NULL) {
1348 DBG_ERR("No wildcard addresses available\n");
1349 status = NT_STATUS_UNSUCCESSFUL;
1350 goto failed;
1352 for (i=0; wcard[i]; i++) {
1353 status = add_socket(task, task->lp_ctx, task->model_ops,
1354 wcard[i], ldap_service);
1355 if (NT_STATUS_IS_OK(status)) {
1356 num_binds++;
1359 talloc_free(wcard);
1360 if (num_binds == 0) {
1361 status = NT_STATUS_UNSUCCESSFUL;
1362 goto failed;
1366 ldapi_path = lpcfg_private_path(ldap_service, task->lp_ctx, "ldapi");
1367 if (!ldapi_path) {
1368 status = NT_STATUS_UNSUCCESSFUL;
1369 goto failed;
1372 status = stream_setup_socket(task, task->event_ctx, task->lp_ctx,
1373 task->model_ops, &ldap_stream_nonpriv_ops,
1374 "unix", ldapi_path, NULL,
1375 lpcfg_socket_options(task->lp_ctx),
1376 ldap_service, task->process_context);
1377 talloc_free(ldapi_path);
1378 if (!NT_STATUS_IS_OK(status)) {
1379 DBG_ERR("ldapsrv failed to bind to %s - %s\n",
1380 ldapi_path, nt_errstr(status));
1383 #ifdef WITH_LDAPI_PRIV_SOCKET
1384 priv_dir = lpcfg_private_path(ldap_service, task->lp_ctx, "ldap_priv");
1385 if (priv_dir == NULL) {
1386 status = NT_STATUS_UNSUCCESSFUL;
1387 goto failed;
1390 * Make sure the directory for the privileged ldapi socket exists, and
1391 * is of the correct permissions
1393 if (!directory_create_or_exist(priv_dir, 0750)) {
1394 task_server_terminate(task, "Cannot create ldap "
1395 "privileged ldapi directory", true);
1396 return NT_STATUS_UNSUCCESSFUL;
1398 ldapi_path = talloc_asprintf(ldap_service, "%s/ldapi", priv_dir);
1399 talloc_free(priv_dir);
1400 if (ldapi_path == NULL) {
1401 status = NT_STATUS_NO_MEMORY;
1402 goto failed;
1405 status = stream_setup_socket(task, task->event_ctx, task->lp_ctx,
1406 task->model_ops, &ldap_stream_priv_ops,
1407 "unix", ldapi_path, NULL,
1408 lpcfg_socket_options(task->lp_ctx),
1409 ldap_service,
1410 task->process_context);
1411 talloc_free(ldapi_path);
1412 if (!NT_STATUS_IS_OK(status)) {
1413 DBG_ERR("ldapsrv failed to bind to %s - %s\n",
1414 ldapi_path, nt_errstr(status));
1417 #endif
1419 /* register the server */
1420 irpc_add_name(task->msg_ctx, "ldap_server");
1422 task->private_data = ldap_service;
1424 return NT_STATUS_OK;
1426 failed:
1427 task_server_terminate(task, "Failed to startup ldap server task", true);
1428 return status;
1432 * Open a database to be later used by LDB wrap code (although it should be
1433 * plumbed through correctly eventually).
1435 static void ldapsrv_post_fork(struct task_server *task, struct process_details *pd)
1437 struct ldapsrv_service *ldap_service =
1438 talloc_get_type_abort(task->private_data, struct ldapsrv_service);
1440 ldap_service->sam_ctx = samdb_connect(ldap_service,
1441 ldap_service->task->event_ctx,
1442 ldap_service->task->lp_ctx,
1443 system_session(ldap_service->task->lp_ctx),
1444 NULL,
1446 if (ldap_service->sam_ctx == NULL) {
1447 task_server_terminate(task, "Cannot open system session LDB",
1448 true);
1449 return;
1454 * Check the size of an ldap request packet.
1456 * For authenticated connections the maximum packet size is controlled by
1457 * the smb.conf parameter "ldap max authenticated request size"
1459 * For anonymous connections the maximum packet size is controlled by
1460 * the smb.conf parameter "ldap max anonymous request size"
1462 static int ldapsrv_check_packet_size(
1463 struct ldapsrv_connection *conn,
1464 size_t size)
1466 bool is_anonymous = false;
1467 size_t max_size = 0;
1469 max_size = lpcfg_ldap_max_anonymous_request_size(conn->lp_ctx);
1470 if (size <= max_size) {
1471 return LDAP_SUCCESS;
1475 * Request is larger than the maximum unauthenticated request size.
1476 * As this code is called frequently we avoid calling
1477 * security_token_is_anonymous if possible
1479 if (conn->session_info != NULL &&
1480 conn->session_info->security_token != NULL) {
1481 is_anonymous = security_token_is_anonymous(
1482 conn->session_info->security_token);
1485 if (is_anonymous) {
1486 DBG_WARNING(
1487 "LDAP request size (%zu) exceeds (%zu)\n",
1488 size,
1489 max_size);
1490 return LDAP_UNWILLING_TO_PERFORM;
1493 max_size = lpcfg_ldap_max_authenticated_request_size(conn->lp_ctx);
1494 if (size > max_size) {
1495 DBG_WARNING(
1496 "LDAP request size (%zu) exceeds (%zu)\n",
1497 size,
1498 max_size);
1499 return LDAP_UNWILLING_TO_PERFORM;
1501 return LDAP_SUCCESS;
1506 * Check that the blob contains enough data to be a valid packet
1507 * If there is a packet header check the size to ensure that it does not
1508 * exceed the maximum sizes.
1511 static NTSTATUS ldapsrv_packet_check(
1512 void *private_data,
1513 DATA_BLOB blob,
1514 size_t *packet_size)
1516 NTSTATUS ret;
1517 struct ldapsrv_connection *conn = private_data;
1518 int result = LDB_SUCCESS;
1520 ret = ldap_full_packet(private_data, blob, packet_size);
1521 if (!NT_STATUS_IS_OK(ret)) {
1522 return ret;
1524 result = ldapsrv_check_packet_size(conn, *packet_size);
1525 if (result != LDAP_SUCCESS) {
1526 return NT_STATUS_LDAP(result);
1528 return NT_STATUS_OK;
1531 NTSTATUS server_service_ldap_init(TALLOC_CTX *ctx)
1533 static const struct service_details details = {
1534 .inhibit_fork_on_accept = false,
1535 .inhibit_pre_fork = false,
1536 .task_init = ldapsrv_task_init,
1537 .post_fork = ldapsrv_post_fork,
1539 return register_server_service(ctx, "ldap", &details);