2 Unix SMB/CIFS implementation.
4 Copyright (C) Stefan Metzmacher 2004
5 Copyright (C) Matthias Dieter Wallnöfer 2009
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.
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.
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/>.
22 #include "ldap_server/ldap_server.h"
23 #include "../lib/util/dlinklist.h"
24 #include "auth/credentials/credentials.h"
25 #include "auth/gensec/gensec.h"
26 #include "auth/gensec/gensec_internal.h" /* TODO: remove this */
27 #include "auth/common_auth.h"
28 #include "param/param.h"
29 #include "samba/service_stream.h"
30 #include "dsdb/samdb/samdb.h"
31 #include <ldb_errors.h>
32 #include <ldb_module.h>
34 #include "lib/tsocket/tsocket.h"
35 #include "libcli/ldap/ldap_proto.h"
36 #include "source4/auth/auth.h"
38 static int map_ldb_error(TALLOC_CTX
*mem_ctx
, int ldb_err
,
39 const char *add_err_string
, const char **errstring
)
43 /* Certain LDB modules need to return very special WERROR codes. Proof
44 * for them here and if they exist skip the rest of the mapping. */
45 if (add_err_string
!= NULL
) {
47 strtol(add_err_string
, &endptr
, 16);
48 if (endptr
!= add_err_string
) {
49 *errstring
= add_err_string
;
54 /* Otherwise we calculate here a generic, but appropriate WERROR. */
60 case LDB_ERR_OPERATIONS_ERROR
:
61 err
= WERR_DS_OPERATIONS_ERROR
;
63 case LDB_ERR_PROTOCOL_ERROR
:
64 err
= WERR_DS_PROTOCOL_ERROR
;
66 case LDB_ERR_TIME_LIMIT_EXCEEDED
:
67 err
= WERR_DS_TIMELIMIT_EXCEEDED
;
69 case LDB_ERR_SIZE_LIMIT_EXCEEDED
:
70 err
= WERR_DS_SIZELIMIT_EXCEEDED
;
72 case LDB_ERR_COMPARE_FALSE
:
73 err
= WERR_DS_COMPARE_FALSE
;
75 case LDB_ERR_COMPARE_TRUE
:
76 err
= WERR_DS_COMPARE_TRUE
;
78 case LDB_ERR_AUTH_METHOD_NOT_SUPPORTED
:
79 err
= WERR_DS_AUTH_METHOD_NOT_SUPPORTED
;
81 case LDB_ERR_STRONG_AUTH_REQUIRED
:
82 err
= WERR_DS_STRONG_AUTH_REQUIRED
;
84 case LDB_ERR_REFERRAL
:
85 err
= WERR_DS_REFERRAL
;
87 case LDB_ERR_ADMIN_LIMIT_EXCEEDED
:
88 err
= WERR_DS_ADMIN_LIMIT_EXCEEDED
;
90 case LDB_ERR_UNSUPPORTED_CRITICAL_EXTENSION
:
91 err
= WERR_DS_UNAVAILABLE_CRIT_EXTENSION
;
93 case LDB_ERR_CONFIDENTIALITY_REQUIRED
:
94 err
= WERR_DS_CONFIDENTIALITY_REQUIRED
;
96 case LDB_ERR_SASL_BIND_IN_PROGRESS
:
99 case LDB_ERR_NO_SUCH_ATTRIBUTE
:
100 err
= WERR_DS_NO_ATTRIBUTE_OR_VALUE
;
102 case LDB_ERR_UNDEFINED_ATTRIBUTE_TYPE
:
103 err
= WERR_DS_ATTRIBUTE_TYPE_UNDEFINED
;
105 case LDB_ERR_INAPPROPRIATE_MATCHING
:
106 err
= WERR_DS_INAPPROPRIATE_MATCHING
;
108 case LDB_ERR_CONSTRAINT_VIOLATION
:
109 err
= WERR_DS_CONSTRAINT_VIOLATION
;
111 case LDB_ERR_ATTRIBUTE_OR_VALUE_EXISTS
:
112 err
= WERR_DS_ATTRIBUTE_OR_VALUE_EXISTS
;
114 case LDB_ERR_INVALID_ATTRIBUTE_SYNTAX
:
115 err
= WERR_DS_INVALID_ATTRIBUTE_SYNTAX
;
117 case LDB_ERR_NO_SUCH_OBJECT
:
118 err
= WERR_DS_NO_SUCH_OBJECT
;
120 case LDB_ERR_ALIAS_PROBLEM
:
121 err
= WERR_DS_ALIAS_PROBLEM
;
123 case LDB_ERR_INVALID_DN_SYNTAX
:
124 err
= WERR_DS_INVALID_DN_SYNTAX
;
126 case LDB_ERR_ALIAS_DEREFERENCING_PROBLEM
:
127 err
= WERR_DS_ALIAS_DEREF_PROBLEM
;
129 case LDB_ERR_INAPPROPRIATE_AUTHENTICATION
:
130 err
= WERR_DS_INAPPROPRIATE_AUTH
;
132 case LDB_ERR_INVALID_CREDENTIALS
:
133 err
= WERR_ACCESS_DENIED
;
135 case LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS
:
136 err
= WERR_DS_INSUFF_ACCESS_RIGHTS
;
141 case LDB_ERR_UNAVAILABLE
:
142 err
= WERR_DS_UNAVAILABLE
;
144 case LDB_ERR_UNWILLING_TO_PERFORM
:
145 err
= WERR_DS_UNWILLING_TO_PERFORM
;
147 case LDB_ERR_LOOP_DETECT
:
148 err
= WERR_DS_LOOP_DETECT
;
150 case LDB_ERR_NAMING_VIOLATION
:
151 err
= WERR_DS_NAMING_VIOLATION
;
153 case LDB_ERR_OBJECT_CLASS_VIOLATION
:
154 err
= WERR_DS_OBJ_CLASS_VIOLATION
;
156 case LDB_ERR_NOT_ALLOWED_ON_NON_LEAF
:
157 err
= WERR_DS_CANT_ON_NON_LEAF
;
159 case LDB_ERR_NOT_ALLOWED_ON_RDN
:
160 err
= WERR_DS_CANT_ON_RDN
;
162 case LDB_ERR_ENTRY_ALREADY_EXISTS
:
163 err
= WERR_DS_OBJ_STRING_NAME_EXISTS
;
165 case LDB_ERR_OBJECT_CLASS_MODS_PROHIBITED
:
166 err
= WERR_DS_CANT_MOD_OBJ_CLASS
;
168 case LDB_ERR_AFFECTS_MULTIPLE_DSAS
:
169 err
= WERR_DS_AFFECTS_MULTIPLE_DSAS
;
172 err
= WERR_DS_GENERIC_ERROR
;
176 *errstring
= talloc_asprintf(mem_ctx
, "%08X: %s", W_ERROR_V(err
),
177 add_err_string
!= NULL
? add_err_string
: ldb_strerror(ldb_err
));
179 /* result is 1:1 for now */
184 connect to the sam database
186 int ldapsrv_backend_Init(struct ldapsrv_connection
*conn
,
189 int ret
= samdb_connect_url(conn
,
190 conn
->connection
->event
.ctx
,
193 conn
->global_catalog
? LDB_FLG_RDONLY
: 0,
195 conn
->connection
->remote_address
,
198 if (ret
!= LDB_SUCCESS
) {
202 if (conn
->server_credentials
) {
203 struct gensec_security
*gensec_security
= NULL
;
204 const char **sasl_mechs
= NULL
;
207 status
= samba_server_gensec_start(conn
,
208 conn
->connection
->event
.ctx
,
209 conn
->connection
->msg_ctx
,
211 conn
->server_credentials
,
214 if (!NT_STATUS_IS_OK(status
)) {
215 DBG_ERR("samba_server_gensec_start failed: %s\n",
217 return LDB_ERR_OPERATIONS_ERROR
;
220 /* ldb can have a different lifetime to conn, so we
221 need to ensure that sasl_mechs lives as long as the
223 sasl_mechs
= gensec_security_sasl_names(gensec_security
,
225 TALLOC_FREE(gensec_security
);
226 if (sasl_mechs
== NULL
) {
227 DBG_ERR("Failed to get sasl mechs!\n");
228 return LDB_ERR_OPERATIONS_ERROR
;
231 ldb_set_opaque(conn
->ldb
, "supportedSASLMechanisms", sasl_mechs
);
237 struct ldapsrv_reply
*ldapsrv_init_reply(struct ldapsrv_call
*call
, uint8_t type
)
239 struct ldapsrv_reply
*reply
;
241 reply
= talloc_zero(call
, struct ldapsrv_reply
);
245 reply
->msg
= talloc_zero(reply
, struct ldap_message
);
246 if (reply
->msg
== NULL
) {
251 reply
->msg
->messageid
= call
->request
->messageid
;
252 reply
->msg
->type
= type
;
253 reply
->msg
->controls
= NULL
;
259 * Encode a reply to an LDAP client as ASN.1, free the original memory
261 static NTSTATUS
ldapsrv_encode(TALLOC_CTX
*mem_ctx
,
262 struct ldapsrv_reply
*reply
)
264 bool bret
= ldap_encode(reply
->msg
,
265 samba_ldap_control_handlers(),
268 TALLOC_FREE(reply
->msg
);
270 DEBUG(0,("Failed to encode ldap reply of type %d: "
271 "ldap_encode() failed\n",
273 return NT_STATUS_NO_MEMORY
;
276 talloc_set_name_const(reply
->blob
.data
,
277 "Outgoing, encoded single LDAP reply");
283 * Queue a reply (encoding it also), even if it would exceed the
284 * limit. This allows the error packet with LDAP_SIZE_LIMIT_EXCEEDED
287 static NTSTATUS
ldapsrv_queue_reply_forced(struct ldapsrv_call
*call
,
288 struct ldapsrv_reply
*reply
)
290 NTSTATUS status
= ldapsrv_encode(call
, reply
);
292 if (NT_STATUS_IS_OK(status
)) {
293 DLIST_ADD_END(call
->replies
, reply
);
299 * Queue a reply (encoding it also) but check we do not send more than
300 * LDAP_SERVER_MAX_REPLY_SIZE of responses as a way to limit the
301 * amount of data a client can make us allocate.
303 NTSTATUS
ldapsrv_queue_reply(struct ldapsrv_call
*call
, struct ldapsrv_reply
*reply
)
305 NTSTATUS status
= ldapsrv_encode(call
, reply
);
307 if (!NT_STATUS_IS_OK(status
)) {
311 if (call
->reply_size
> call
->reply_size
+ reply
->blob
.length
312 || call
->reply_size
+ reply
->blob
.length
> LDAP_SERVER_MAX_REPLY_SIZE
) {
313 DBG_WARNING("Refusing to queue LDAP search response size "
314 "of more than %zu bytes\n",
315 LDAP_SERVER_MAX_REPLY_SIZE
);
316 TALLOC_FREE(reply
->blob
.data
);
317 return NT_STATUS_FILE_TOO_LARGE
;
320 call
->reply_size
+= reply
->blob
.length
;
322 DLIST_ADD_END(call
->replies
, reply
);
327 static NTSTATUS
ldapsrv_unwilling(struct ldapsrv_call
*call
, int error
)
329 struct ldapsrv_reply
*reply
;
330 struct ldap_ExtendedResponse
*r
;
332 DEBUG(10,("Unwilling type[%d] id[%d]\n", call
->request
->type
, call
->request
->messageid
));
334 reply
= ldapsrv_init_reply(call
, LDAP_TAG_ExtendedResponse
);
336 return NT_STATUS_NO_MEMORY
;
339 r
= &reply
->msg
->r
.ExtendedResponse
;
340 r
->response
.resultcode
= error
;
341 r
->response
.dn
= NULL
;
342 r
->response
.errormessage
= NULL
;
343 r
->response
.referral
= NULL
;
347 ldapsrv_queue_reply(call
, reply
);
351 static int ldapsrv_add_with_controls(struct ldapsrv_call
*call
,
352 const struct ldb_message
*message
,
353 struct ldb_control
**controls
,
354 struct ldb_result
*res
)
356 struct ldb_context
*ldb
= call
->conn
->ldb
;
357 struct ldb_request
*req
;
360 ret
= ldb_msg_sanity_check(ldb
, message
);
361 if (ret
!= LDB_SUCCESS
) {
365 ret
= ldb_build_add_req(&req
, ldb
, ldb
,
369 ldb_modify_default_callback
,
372 if (ret
!= LDB_SUCCESS
) return ret
;
374 if (call
->conn
->global_catalog
) {
375 return ldb_error(ldb
, LDB_ERR_UNWILLING_TO_PERFORM
, "modify forbidden on global catalog port");
377 ldb_request_add_control(req
, DSDB_CONTROL_NO_GLOBAL_CATALOG
, false, NULL
);
379 ret
= ldb_transaction_start(ldb
);
380 if (ret
!= LDB_SUCCESS
) {
384 if (!call
->conn
->is_privileged
) {
385 ldb_req_mark_untrusted(req
);
388 LDB_REQ_SET_LOCATION(req
);
390 ret
= ldb_request(ldb
, req
);
391 if (ret
== LDB_SUCCESS
) {
392 ret
= ldb_wait(req
->handle
, LDB_WAIT_ALL
);
395 if (ret
== LDB_SUCCESS
) {
396 ret
= ldb_transaction_commit(ldb
);
399 ldb_transaction_cancel(ldb
);
406 /* create and execute a modify request */
407 static int ldapsrv_mod_with_controls(struct ldapsrv_call
*call
,
408 const struct ldb_message
*message
,
409 struct ldb_control
**controls
,
410 struct ldb_result
*res
)
412 struct ldb_context
*ldb
= call
->conn
->ldb
;
413 struct ldb_request
*req
;
416 ret
= ldb_msg_sanity_check(ldb
, message
);
417 if (ret
!= LDB_SUCCESS
) {
421 ret
= ldb_build_mod_req(&req
, ldb
, ldb
,
425 ldb_modify_default_callback
,
428 if (ret
!= LDB_SUCCESS
) {
432 if (call
->conn
->global_catalog
) {
433 return ldb_error(ldb
, LDB_ERR_UNWILLING_TO_PERFORM
, "modify forbidden on global catalog port");
435 ldb_request_add_control(req
, DSDB_CONTROL_NO_GLOBAL_CATALOG
, false, NULL
);
437 ret
= ldb_transaction_start(ldb
);
438 if (ret
!= LDB_SUCCESS
) {
442 if (!call
->conn
->is_privileged
) {
443 ldb_req_mark_untrusted(req
);
446 LDB_REQ_SET_LOCATION(req
);
448 ret
= ldb_request(ldb
, req
);
449 if (ret
== LDB_SUCCESS
) {
450 ret
= ldb_wait(req
->handle
, LDB_WAIT_ALL
);
453 if (ret
== LDB_SUCCESS
) {
454 ret
= ldb_transaction_commit(ldb
);
457 ldb_transaction_cancel(ldb
);
464 /* create and execute a delete request */
465 static int ldapsrv_del_with_controls(struct ldapsrv_call
*call
,
467 struct ldb_control
**controls
,
468 struct ldb_result
*res
)
470 struct ldb_context
*ldb
= call
->conn
->ldb
;
471 struct ldb_request
*req
;
474 ret
= ldb_build_del_req(&req
, ldb
, ldb
,
478 ldb_modify_default_callback
,
481 if (ret
!= LDB_SUCCESS
) return ret
;
483 if (call
->conn
->global_catalog
) {
484 return ldb_error(ldb
, LDB_ERR_UNWILLING_TO_PERFORM
, "modify forbidden on global catalog port");
486 ldb_request_add_control(req
, DSDB_CONTROL_NO_GLOBAL_CATALOG
, false, NULL
);
488 ret
= ldb_transaction_start(ldb
);
489 if (ret
!= LDB_SUCCESS
) {
493 if (!call
->conn
->is_privileged
) {
494 ldb_req_mark_untrusted(req
);
497 LDB_REQ_SET_LOCATION(req
);
499 ret
= ldb_request(ldb
, req
);
500 if (ret
== LDB_SUCCESS
) {
501 ret
= ldb_wait(req
->handle
, LDB_WAIT_ALL
);
504 if (ret
== LDB_SUCCESS
) {
505 ret
= ldb_transaction_commit(ldb
);
508 ldb_transaction_cancel(ldb
);
515 static int ldapsrv_rename_with_controls(struct ldapsrv_call
*call
,
516 struct ldb_dn
*olddn
,
517 struct ldb_dn
*newdn
,
518 struct ldb_control
**controls
,
519 struct ldb_result
*res
)
521 struct ldb_context
*ldb
= call
->conn
->ldb
;
522 struct ldb_request
*req
;
525 ret
= ldb_build_rename_req(&req
, ldb
, ldb
,
530 ldb_modify_default_callback
,
533 if (ret
!= LDB_SUCCESS
) return ret
;
535 if (call
->conn
->global_catalog
) {
536 return ldb_error(ldb
, LDB_ERR_UNWILLING_TO_PERFORM
, "modify forbidden on global catalog port");
538 ldb_request_add_control(req
, DSDB_CONTROL_NO_GLOBAL_CATALOG
, false, NULL
);
540 ret
= ldb_transaction_start(ldb
);
541 if (ret
!= LDB_SUCCESS
) {
545 if (!call
->conn
->is_privileged
) {
546 ldb_req_mark_untrusted(req
);
549 LDB_REQ_SET_LOCATION(req
);
551 ret
= ldb_request(ldb
, req
);
552 if (ret
== LDB_SUCCESS
) {
553 ret
= ldb_wait(req
->handle
, LDB_WAIT_ALL
);
556 if (ret
== LDB_SUCCESS
) {
557 ret
= ldb_transaction_commit(ldb
);
560 ldb_transaction_cancel(ldb
);
569 struct ldapsrv_context
{
570 struct ldapsrv_call
*call
;
573 struct ldb_control
**controls
;
574 size_t count
; /* For notificaiton only */
577 static int ldap_server_search_callback(struct ldb_request
*req
, struct ldb_reply
*ares
)
579 struct ldapsrv_context
*ctx
= talloc_get_type(req
->context
, struct ldapsrv_context
);
580 struct ldapsrv_call
*call
= ctx
->call
;
581 struct ldb_context
*ldb
= call
->conn
->ldb
;
583 struct ldapsrv_reply
*ent_r
= NULL
;
584 struct ldap_SearchResEntry
*ent
;
589 return ldb_request_done(req
, LDB_ERR_OPERATIONS_ERROR
);
591 if (ares
->error
!= LDB_SUCCESS
) {
592 return ldb_request_done(req
, ares
->error
);
595 switch (ares
->type
) {
596 case LDB_REPLY_ENTRY
:
598 struct ldb_message
*msg
= ares
->message
;
599 ent_r
= ldapsrv_init_reply(call
, LDAP_TAG_SearchResultEntry
);
607 * Put the LDAP search response data under ent_r->msg
608 * so we can free that later once encoded
610 talloc_steal(ent_r
->msg
, msg
);
612 ent
= &ent_r
->msg
->r
.SearchResultEntry
;
613 ent
->dn
= ldb_dn_get_extended_linearized(ent_r
, msg
->dn
,
615 ent
->num_attributes
= 0;
616 ent
->attributes
= NULL
;
617 if (msg
->num_elements
== 0) {
620 ent
->num_attributes
= msg
->num_elements
;
621 ent
->attributes
= talloc_array(ent_r
, struct ldb_message_element
, ent
->num_attributes
);
622 if (ent
->attributes
== NULL
) {
626 for (j
=0; j
< ent
->num_attributes
; j
++) {
627 ent
->attributes
[j
].name
= msg
->elements
[j
].name
;
628 ent
->attributes
[j
].num_values
= 0;
629 ent
->attributes
[j
].values
= NULL
;
630 if (ctx
->attributesonly
&& (msg
->elements
[j
].num_values
== 0)) {
633 ent
->attributes
[j
].num_values
= msg
->elements
[j
].num_values
;
634 ent
->attributes
[j
].values
= msg
->elements
[j
].values
;
637 status
= ldapsrv_queue_reply(call
, ent_r
);
638 if (NT_STATUS_EQUAL(status
, NT_STATUS_FILE_TOO_LARGE
)) {
639 ret
= ldb_request_done(req
,
640 LDB_ERR_SIZE_LIMIT_EXCEEDED
);
641 ldb_asprintf_errstring(ldb
,
642 "LDAP search response size "
643 "limited to %zu bytes\n",
644 LDAP_SERVER_MAX_REPLY_SIZE
);
645 } else if (!NT_STATUS_IS_OK(status
)) {
646 ret
= ldb_request_done(req
,
653 case LDB_REPLY_REFERRAL
:
655 struct ldap_SearchResRef
*ent_ref
;
658 * TODO: This should be handled by the notification
661 if (call
->notification
.busy
) {
666 ent_r
= ldapsrv_init_reply(call
, LDAP_TAG_SearchResultReference
);
672 * Put the LDAP referral data under ent_r->msg
673 * so we can free that later once encoded
675 talloc_steal(ent_r
->msg
, ares
->referral
);
677 ent_ref
= &ent_r
->msg
->r
.SearchResultReference
;
678 ent_ref
->referral
= ares
->referral
;
680 status
= ldapsrv_queue_reply(call
, ent_r
);
681 if (!NT_STATUS_IS_OK(status
)) {
682 ret
= LDB_ERR_OPERATIONS_ERROR
;
691 * We don't queue the reply for this one, we let that
694 ctx
->controls
= talloc_move(ctx
, &ares
->controls
);
697 return ldb_request_done(req
, LDB_SUCCESS
);
701 ret
= LDB_ERR_OPERATIONS_ERROR
;
709 static NTSTATUS
ldapsrv_SearchRequest(struct ldapsrv_call
*call
)
711 struct ldap_SearchRequest
*req
= &call
->request
->r
.SearchRequest
;
712 struct ldap_Result
*done
;
713 struct ldapsrv_reply
*done_r
;
714 TALLOC_CTX
*local_ctx
;
715 struct ldapsrv_context
*callback_ctx
= NULL
;
716 struct ldb_context
*samdb
= talloc_get_type(call
->conn
->ldb
, struct ldb_context
);
717 struct ldb_dn
*basedn
;
718 struct ldb_request
*lreq
;
719 struct ldb_control
*search_control
;
720 struct ldb_search_options_control
*search_options
;
721 struct ldb_control
*extended_dn_control
;
722 struct ldb_extended_dn_control
*extended_dn_decoded
= NULL
;
723 struct ldb_control
*notification_control
= NULL
;
724 enum ldb_scope scope
= LDB_SCOPE_DEFAULT
;
725 const char **attrs
= NULL
;
726 const char *scope_str
, *errstr
= NULL
;
730 int extended_type
= 1;
733 * Warn for searches that are longer than 1/4 of the
734 * search_timeout, being 30sec by default
736 struct timeval start_time
= timeval_current();
737 struct timeval warning_time
738 = timeval_add(&start_time
,
739 call
->conn
->limits
.search_timeout
/ 4,
742 local_ctx
= talloc_new(call
);
743 NT_STATUS_HAVE_NO_MEMORY(local_ctx
);
745 basedn
= ldb_dn_new(local_ctx
, samdb
, req
->basedn
);
746 NT_STATUS_HAVE_NO_MEMORY(basedn
);
748 switch (req
->scope
) {
749 case LDAP_SEARCH_SCOPE_BASE
:
751 scope
= LDB_SCOPE_BASE
;
753 case LDAP_SEARCH_SCOPE_SINGLE
:
755 scope
= LDB_SCOPE_ONELEVEL
;
757 case LDAP_SEARCH_SCOPE_SUB
:
759 scope
= LDB_SCOPE_SUBTREE
;
762 result
= LDAP_PROTOCOL_ERROR
;
763 map_ldb_error(local_ctx
, LDB_ERR_PROTOCOL_ERROR
, NULL
,
765 scope_str
= "<Invalid scope>";
766 errstr
= talloc_asprintf(local_ctx
,
767 "%s. Invalid scope", errstr
);
770 DEBUG(10,("SearchRequest: scope: [%s]\n", scope_str
));
772 if (req
->num_attributes
>= 1) {
773 attrs
= talloc_array(local_ctx
, const char *, req
->num_attributes
+1);
774 NT_STATUS_HAVE_NO_MEMORY(attrs
);
776 for (i
=0; i
< req
->num_attributes
; i
++) {
777 DEBUG(10,("SearchRequest: attrs: [%s]\n",req
->attributes
[i
]));
778 attrs
[i
] = req
->attributes
[i
];
783 DEBUG(5,("ldb_request %s dn=%s filter=%s\n",
784 scope_str
, req
->basedn
, ldb_filter_from_tree(call
, req
->tree
)));
786 callback_ctx
= talloc_zero(local_ctx
, struct ldapsrv_context
);
787 NT_STATUS_HAVE_NO_MEMORY(callback_ctx
);
788 callback_ctx
->call
= call
;
789 callback_ctx
->extended_type
= extended_type
;
790 callback_ctx
->attributesonly
= req
->attributesonly
;
792 ldb_ret
= ldb_build_search_req_ex(&lreq
, samdb
, local_ctx
,
795 call
->request
->controls
,
797 ldap_server_search_callback
,
800 if (ldb_ret
!= LDB_SUCCESS
) {
804 if (call
->conn
->global_catalog
) {
805 search_control
= ldb_request_get_control(lreq
, LDB_CONTROL_SEARCH_OPTIONS_OID
);
807 search_options
= NULL
;
808 if (search_control
) {
809 search_options
= talloc_get_type(search_control
->data
, struct ldb_search_options_control
);
810 search_options
->search_options
|= LDB_SEARCH_OPTION_PHANTOM_ROOT
;
812 search_options
= talloc(lreq
, struct ldb_search_options_control
);
813 NT_STATUS_HAVE_NO_MEMORY(search_options
);
814 search_options
->search_options
= LDB_SEARCH_OPTION_PHANTOM_ROOT
;
815 ldb_request_add_control(lreq
, LDB_CONTROL_SEARCH_OPTIONS_OID
, false, search_options
);
818 ldb_request_add_control(lreq
, DSDB_CONTROL_NO_GLOBAL_CATALOG
, false, NULL
);
821 extended_dn_control
= ldb_request_get_control(lreq
, LDB_CONTROL_EXTENDED_DN_OID
);
823 if (extended_dn_control
) {
824 if (extended_dn_control
->data
) {
825 extended_dn_decoded
= talloc_get_type(extended_dn_control
->data
, struct ldb_extended_dn_control
);
826 extended_type
= extended_dn_decoded
->type
;
830 callback_ctx
->extended_type
= extended_type
;
833 notification_control
= ldb_request_get_control(lreq
, LDB_CONTROL_NOTIFICATION_OID
);
834 if (notification_control
!= NULL
) {
835 const struct ldapsrv_call
*pc
= NULL
;
838 for (pc
= call
->conn
->pending_calls
; pc
!= NULL
; pc
= pc
->next
) {
842 if (count
>= call
->conn
->limits
.max_notifications
) {
843 DEBUG(10,("SearchRequest: error MaxNotificationPerConn\n"));
844 result
= map_ldb_error(local_ctx
,
845 LDB_ERR_ADMIN_LIMIT_EXCEEDED
,
846 "MaxNotificationPerConn reached",
852 * For now we need to do periodic retries on our own.
853 * As the dsdb_notification module will return after each run.
855 call
->notification
.busy
= true;
859 const char *scheme
= NULL
;
860 switch (call
->conn
->referral_scheme
) {
861 case LDAP_REFERRAL_SCHEME_LDAPS
:
867 ldb_ret
= ldb_set_opaque(
869 LDAP_REFERRAL_SCHEME_OPAQUE
,
870 discard_const_p(char *, scheme
));
871 if (ldb_ret
!= LDB_SUCCESS
) {
877 time_t timeout
= call
->conn
->limits
.search_timeout
;
880 || (req
->timelimit
!= 0
881 && req
->timelimit
< timeout
))
883 timeout
= req
->timelimit
;
885 ldb_set_timeout(samdb
, lreq
, timeout
);
888 if (!call
->conn
->is_privileged
) {
889 ldb_req_mark_untrusted(lreq
);
892 LDB_REQ_SET_LOCATION(lreq
);
894 ldb_ret
= ldb_request(samdb
, lreq
);
896 if (ldb_ret
!= LDB_SUCCESS
) {
900 ldb_ret
= ldb_wait(lreq
->handle
, LDB_WAIT_ALL
);
902 if (ldb_ret
== LDB_SUCCESS
) {
903 if (call
->notification
.busy
) {
904 /* Move/Add it to the end */
905 DLIST_DEMOTE(call
->conn
->pending_calls
, call
);
906 call
->notification
.generation
=
907 call
->conn
->service
->notification
.generation
;
909 if (callback_ctx
->count
!= 0) {
910 call
->notification
.generation
+= 1;
911 ldapsrv_notification_retry_setup(call
->conn
->service
,
915 talloc_free(local_ctx
);
923 * This looks like duplicated code - because it is - but
924 * otherwise the work in the parameters will be done
925 * regardless, this way the functions only execute when the
928 * The basedn is re-obtained as a string to escape it
930 if ((req
->timelimit
== 0 || call
->conn
->limits
.search_timeout
< req
->timelimit
)
931 && ldb_ret
== LDB_ERR_TIME_LIMIT_EXCEEDED
) {
932 struct dom_sid_buf sid_buf
;
933 DBG_WARNING("MaxQueryDuration(%d) timeout exceeded "
934 "in SearchRequest by %s from %s filter: [%s] "
937 call
->conn
->limits
.search_timeout
,
938 dom_sid_str_buf(&call
->conn
->session_info
->security_token
->sids
[0],
940 tsocket_address_string(call
->conn
->connection
->remote_address
,
942 ldb_filter_from_tree(call
, req
->tree
),
943 ldb_dn_get_extended_linearized(call
, basedn
, 1),
945 for (i
=0; i
< req
->num_attributes
; i
++) {
946 DBG_WARNING("MaxQueryDuration timeout exceeded attrs: [%s]\n",
950 } else if (timeval_expired(&warning_time
)) {
951 struct dom_sid_buf sid_buf
;
952 DBG_NOTICE("Long LDAP Query: Duration was %.2fs, "
953 "MaxQueryDuration(%d)/4 == %d "
954 "in SearchRequest by %s from %s filter: [%s] "
958 timeval_elapsed(&start_time
),
959 call
->conn
->limits
.search_timeout
,
960 call
->conn
->limits
.search_timeout
/ 4,
961 dom_sid_str_buf(&call
->conn
->session_info
->security_token
->sids
[0],
963 tsocket_address_string(call
->conn
->connection
->remote_address
,
965 ldb_filter_from_tree(call
, req
->tree
),
966 ldb_dn_get_extended_linearized(call
, basedn
, 1),
968 ldb_strerror(ldb_ret
));
969 for (i
=0; i
< req
->num_attributes
; i
++) {
970 DBG_NOTICE("Long LDAP Query attrs: [%s]\n",
974 struct dom_sid_buf sid_buf
;
975 DBG_INFO("LDAP Query: Duration was %.2fs, "
976 "SearchRequest by %s from %s filter: [%s] "
980 timeval_elapsed(&start_time
),
981 dom_sid_str_buf(&call
->conn
->session_info
->security_token
->sids
[0],
983 tsocket_address_string(call
->conn
->connection
->remote_address
,
985 ldb_filter_from_tree(call
, req
->tree
),
986 ldb_dn_get_extended_linearized(call
, basedn
, 1),
988 ldb_strerror(ldb_ret
));
991 DLIST_REMOVE(call
->conn
->pending_calls
, call
);
992 call
->notification
.busy
= false;
994 done_r
= ldapsrv_init_reply(call
, LDAP_TAG_SearchResultDone
);
995 NT_STATUS_HAVE_NO_MEMORY(done_r
);
997 done
= &done_r
->msg
->r
.SearchResultDone
;
999 done
->referral
= NULL
;
1002 } else if (ldb_ret
== LDB_SUCCESS
) {
1003 if (callback_ctx
->controls
) {
1004 done_r
->msg
->controls
= callback_ctx
->controls
;
1005 talloc_steal(done_r
->msg
, callback_ctx
->controls
);
1007 result
= LDB_SUCCESS
;
1009 DEBUG(10,("SearchRequest: error\n"));
1010 result
= map_ldb_error(local_ctx
, ldb_ret
, ldb_errstring(samdb
),
1014 done
->resultcode
= result
;
1015 done
->errormessage
= (errstr
?talloc_strdup(done_r
, errstr
):NULL
);
1017 talloc_free(local_ctx
);
1019 return ldapsrv_queue_reply_forced(call
, done_r
);
1022 static NTSTATUS
ldapsrv_ModifyRequest(struct ldapsrv_call
*call
)
1024 struct ldap_ModifyRequest
*req
= &call
->request
->r
.ModifyRequest
;
1025 struct ldap_Result
*modify_result
;
1026 struct ldapsrv_reply
*modify_reply
;
1027 TALLOC_CTX
*local_ctx
;
1028 struct ldb_context
*samdb
= call
->conn
->ldb
;
1029 struct ldb_message
*msg
= NULL
;
1031 const char *errstr
= NULL
;
1032 int result
= LDAP_SUCCESS
;
1035 struct ldb_result
*res
= NULL
;
1037 DEBUG(10, ("ModifyRequest"));
1038 DEBUGADD(10, (" dn: %s\n", req
->dn
));
1040 local_ctx
= talloc_named(call
, 0, "ModifyRequest local memory context");
1041 NT_STATUS_HAVE_NO_MEMORY(local_ctx
);
1043 dn
= ldb_dn_new(local_ctx
, samdb
, req
->dn
);
1044 NT_STATUS_HAVE_NO_MEMORY(dn
);
1046 DEBUG(10, ("ModifyRequest: dn: [%s]\n", req
->dn
));
1048 msg
= ldb_msg_new(local_ctx
);
1049 NT_STATUS_HAVE_NO_MEMORY(msg
);
1053 if (req
->num_mods
> 0) {
1054 msg
->num_elements
= req
->num_mods
;
1055 msg
->elements
= talloc_array(msg
, struct ldb_message_element
, req
->num_mods
);
1056 NT_STATUS_HAVE_NO_MEMORY(msg
->elements
);
1058 for (i
=0; i
< msg
->num_elements
; i
++) {
1059 msg
->elements
[i
].name
= discard_const_p(char, req
->mods
[i
].attrib
.name
);
1060 msg
->elements
[i
].num_values
= 0;
1061 msg
->elements
[i
].values
= NULL
;
1063 switch (req
->mods
[i
].type
) {
1065 result
= LDAP_PROTOCOL_ERROR
;
1066 map_ldb_error(local_ctx
,
1067 LDB_ERR_PROTOCOL_ERROR
, NULL
, &errstr
);
1068 errstr
= talloc_asprintf(local_ctx
,
1069 "%s. Invalid LDAP_MODIFY_* type", errstr
);
1071 case LDAP_MODIFY_ADD
:
1072 msg
->elements
[i
].flags
= LDB_FLAG_MOD_ADD
;
1074 case LDAP_MODIFY_DELETE
:
1075 msg
->elements
[i
].flags
= LDB_FLAG_MOD_DELETE
;
1077 case LDAP_MODIFY_REPLACE
:
1078 msg
->elements
[i
].flags
= LDB_FLAG_MOD_REPLACE
;
1082 msg
->elements
[i
].num_values
= req
->mods
[i
].attrib
.num_values
;
1083 if (msg
->elements
[i
].num_values
> 0) {
1084 msg
->elements
[i
].values
= talloc_array(msg
->elements
, struct ldb_val
,
1085 msg
->elements
[i
].num_values
);
1086 NT_STATUS_HAVE_NO_MEMORY(msg
->elements
[i
].values
);
1088 for (j
=0; j
< msg
->elements
[i
].num_values
; j
++) {
1089 msg
->elements
[i
].values
[j
].length
= req
->mods
[i
].attrib
.values
[j
].length
;
1090 msg
->elements
[i
].values
[j
].data
= req
->mods
[i
].attrib
.values
[j
].data
;
1097 modify_reply
= ldapsrv_init_reply(call
, LDAP_TAG_ModifyResponse
);
1098 NT_STATUS_HAVE_NO_MEMORY(modify_reply
);
1100 if (result
== LDAP_SUCCESS
) {
1101 res
= talloc_zero(local_ctx
, struct ldb_result
);
1102 NT_STATUS_HAVE_NO_MEMORY(res
);
1103 ldb_ret
= ldapsrv_mod_with_controls(call
, msg
, call
->request
->controls
, res
);
1104 result
= map_ldb_error(local_ctx
, ldb_ret
, ldb_errstring(samdb
),
1108 modify_result
= &modify_reply
->msg
->r
.ModifyResponse
;
1109 modify_result
->dn
= NULL
;
1110 if ((res
!= NULL
) && (res
->refs
!= NULL
)) {
1111 modify_result
->resultcode
= map_ldb_error(local_ctx
,
1114 modify_result
->errormessage
= (errstr
?talloc_strdup(modify_reply
, errstr
):NULL
);
1115 modify_result
->referral
= talloc_strdup(call
, *res
->refs
);
1117 modify_result
->resultcode
= result
;
1118 modify_result
->errormessage
= (errstr
?talloc_strdup(modify_reply
, errstr
):NULL
);
1119 modify_result
->referral
= NULL
;
1121 talloc_free(local_ctx
);
1123 return ldapsrv_queue_reply(call
, modify_reply
);
1127 static NTSTATUS
ldapsrv_AddRequest(struct ldapsrv_call
*call
)
1129 struct ldap_AddRequest
*req
= &call
->request
->r
.AddRequest
;
1130 struct ldap_Result
*add_result
;
1131 struct ldapsrv_reply
*add_reply
;
1132 TALLOC_CTX
*local_ctx
;
1133 struct ldb_context
*samdb
= call
->conn
->ldb
;
1134 struct ldb_message
*msg
= NULL
;
1136 const char *errstr
= NULL
;
1137 int result
= LDAP_SUCCESS
;
1140 struct ldb_result
*res
= NULL
;
1142 DEBUG(10, ("AddRequest"));
1143 DEBUGADD(10, (" dn: %s\n", req
->dn
));
1145 local_ctx
= talloc_named(call
, 0, "AddRequest local memory context");
1146 NT_STATUS_HAVE_NO_MEMORY(local_ctx
);
1148 dn
= ldb_dn_new(local_ctx
, samdb
, req
->dn
);
1149 NT_STATUS_HAVE_NO_MEMORY(dn
);
1151 DEBUG(10, ("AddRequest: dn: [%s]\n", req
->dn
));
1153 msg
= talloc(local_ctx
, struct ldb_message
);
1154 NT_STATUS_HAVE_NO_MEMORY(msg
);
1157 msg
->num_elements
= 0;
1158 msg
->elements
= NULL
;
1160 if (req
->num_attributes
> 0) {
1161 msg
->num_elements
= req
->num_attributes
;
1162 msg
->elements
= talloc_array(msg
, struct ldb_message_element
, msg
->num_elements
);
1163 NT_STATUS_HAVE_NO_MEMORY(msg
->elements
);
1165 for (i
=0; i
< msg
->num_elements
; i
++) {
1166 msg
->elements
[i
].name
= discard_const_p(char, req
->attributes
[i
].name
);
1167 msg
->elements
[i
].flags
= 0;
1168 msg
->elements
[i
].num_values
= 0;
1169 msg
->elements
[i
].values
= NULL
;
1171 if (req
->attributes
[i
].num_values
> 0) {
1172 msg
->elements
[i
].num_values
= req
->attributes
[i
].num_values
;
1173 msg
->elements
[i
].values
= talloc_array(msg
->elements
, struct ldb_val
,
1174 msg
->elements
[i
].num_values
);
1175 NT_STATUS_HAVE_NO_MEMORY(msg
->elements
[i
].values
);
1177 for (j
=0; j
< msg
->elements
[i
].num_values
; j
++) {
1178 msg
->elements
[i
].values
[j
].length
= req
->attributes
[i
].values
[j
].length
;
1179 msg
->elements
[i
].values
[j
].data
= req
->attributes
[i
].values
[j
].data
;
1185 add_reply
= ldapsrv_init_reply(call
, LDAP_TAG_AddResponse
);
1186 NT_STATUS_HAVE_NO_MEMORY(add_reply
);
1188 if (result
== LDAP_SUCCESS
) {
1189 res
= talloc_zero(local_ctx
, struct ldb_result
);
1190 NT_STATUS_HAVE_NO_MEMORY(res
);
1191 ldb_ret
= ldapsrv_add_with_controls(call
, msg
, call
->request
->controls
, res
);
1192 result
= map_ldb_error(local_ctx
, ldb_ret
, ldb_errstring(samdb
),
1196 add_result
= &add_reply
->msg
->r
.AddResponse
;
1197 add_result
->dn
= NULL
;
1198 if ((res
!= NULL
) && (res
->refs
!= NULL
)) {
1199 add_result
->resultcode
= map_ldb_error(local_ctx
,
1200 LDB_ERR_REFERRAL
, NULL
,
1202 add_result
->errormessage
= (errstr
?talloc_strdup(add_reply
,errstr
):NULL
);
1203 add_result
->referral
= talloc_strdup(call
, *res
->refs
);
1205 add_result
->resultcode
= result
;
1206 add_result
->errormessage
= (errstr
?talloc_strdup(add_reply
,errstr
):NULL
);
1207 add_result
->referral
= NULL
;
1209 talloc_free(local_ctx
);
1211 return ldapsrv_queue_reply(call
, add_reply
);
1215 static NTSTATUS
ldapsrv_DelRequest(struct ldapsrv_call
*call
)
1217 struct ldap_DelRequest
*req
= &call
->request
->r
.DelRequest
;
1218 struct ldap_Result
*del_result
;
1219 struct ldapsrv_reply
*del_reply
;
1220 TALLOC_CTX
*local_ctx
;
1221 struct ldb_context
*samdb
= call
->conn
->ldb
;
1223 const char *errstr
= NULL
;
1224 int result
= LDAP_SUCCESS
;
1226 struct ldb_result
*res
= NULL
;
1228 DEBUG(10, ("DelRequest"));
1229 DEBUGADD(10, (" dn: %s\n", req
->dn
));
1231 local_ctx
= talloc_named(call
, 0, "DelRequest local memory context");
1232 NT_STATUS_HAVE_NO_MEMORY(local_ctx
);
1234 dn
= ldb_dn_new(local_ctx
, samdb
, req
->dn
);
1235 NT_STATUS_HAVE_NO_MEMORY(dn
);
1237 DEBUG(10, ("DelRequest: dn: [%s]\n", req
->dn
));
1239 del_reply
= ldapsrv_init_reply(call
, LDAP_TAG_DelResponse
);
1240 NT_STATUS_HAVE_NO_MEMORY(del_reply
);
1242 if (result
== LDAP_SUCCESS
) {
1243 res
= talloc_zero(local_ctx
, struct ldb_result
);
1244 NT_STATUS_HAVE_NO_MEMORY(res
);
1245 ldb_ret
= ldapsrv_del_with_controls(call
, dn
, call
->request
->controls
, res
);
1246 result
= map_ldb_error(local_ctx
, ldb_ret
, ldb_errstring(samdb
),
1250 del_result
= &del_reply
->msg
->r
.DelResponse
;
1251 del_result
->dn
= NULL
;
1252 if ((res
!= NULL
) && (res
->refs
!= NULL
)) {
1253 del_result
->resultcode
= map_ldb_error(local_ctx
,
1254 LDB_ERR_REFERRAL
, NULL
,
1256 del_result
->errormessage
= (errstr
?talloc_strdup(del_reply
,errstr
):NULL
);
1257 del_result
->referral
= talloc_strdup(call
, *res
->refs
);
1259 del_result
->resultcode
= result
;
1260 del_result
->errormessage
= (errstr
?talloc_strdup(del_reply
,errstr
):NULL
);
1261 del_result
->referral
= NULL
;
1264 talloc_free(local_ctx
);
1266 return ldapsrv_queue_reply(call
, del_reply
);
1269 static NTSTATUS
ldapsrv_ModifyDNRequest(struct ldapsrv_call
*call
)
1271 struct ldap_ModifyDNRequest
*req
= &call
->request
->r
.ModifyDNRequest
;
1272 struct ldap_Result
*modifydn
;
1273 struct ldapsrv_reply
*modifydn_r
;
1274 TALLOC_CTX
*local_ctx
;
1275 struct ldb_context
*samdb
= call
->conn
->ldb
;
1276 struct ldb_dn
*olddn
, *newdn
=NULL
, *newrdn
;
1277 struct ldb_dn
*parentdn
= NULL
;
1278 const char *errstr
= NULL
;
1279 int result
= LDAP_SUCCESS
;
1281 struct ldb_result
*res
= NULL
;
1283 DEBUG(10, ("ModifyDNRequest"));
1284 DEBUGADD(10, (" dn: %s", req
->dn
));
1285 DEBUGADD(10, (" newrdn: %s\n", req
->newrdn
));
1287 local_ctx
= talloc_named(call
, 0, "ModifyDNRequest local memory context");
1288 NT_STATUS_HAVE_NO_MEMORY(local_ctx
);
1290 olddn
= ldb_dn_new(local_ctx
, samdb
, req
->dn
);
1291 NT_STATUS_HAVE_NO_MEMORY(olddn
);
1293 newrdn
= ldb_dn_new(local_ctx
, samdb
, req
->newrdn
);
1294 NT_STATUS_HAVE_NO_MEMORY(newrdn
);
1296 DEBUG(10, ("ModifyDNRequest: olddn: [%s]\n", req
->dn
));
1297 DEBUG(10, ("ModifyDNRequest: newrdn: [%s]\n", req
->newrdn
));
1299 if (ldb_dn_get_comp_num(newrdn
) == 0) {
1300 result
= LDAP_PROTOCOL_ERROR
;
1301 map_ldb_error(local_ctx
, LDB_ERR_PROTOCOL_ERROR
, NULL
,
1306 if (ldb_dn_get_comp_num(newrdn
) > 1) {
1307 result
= LDAP_NAMING_VIOLATION
;
1308 map_ldb_error(local_ctx
, LDB_ERR_NAMING_VIOLATION
, NULL
,
1313 /* we can't handle the rename if we should not remove the old dn */
1314 if (!req
->deleteolddn
) {
1315 result
= LDAP_UNWILLING_TO_PERFORM
;
1316 map_ldb_error(local_ctx
, LDB_ERR_UNWILLING_TO_PERFORM
, NULL
,
1318 errstr
= talloc_asprintf(local_ctx
,
1319 "%s. Old RDN must be deleted", errstr
);
1323 if (req
->newsuperior
) {
1324 DEBUG(10, ("ModifyDNRequest: newsuperior: [%s]\n", req
->newsuperior
));
1325 parentdn
= ldb_dn_new(local_ctx
, samdb
, req
->newsuperior
);
1329 parentdn
= ldb_dn_get_parent(local_ctx
, olddn
);
1332 result
= LDAP_NO_SUCH_OBJECT
;
1333 map_ldb_error(local_ctx
, LDB_ERR_NO_SUCH_OBJECT
, NULL
, &errstr
);
1337 if ( ! ldb_dn_add_child(parentdn
, newrdn
)) {
1338 result
= LDAP_OTHER
;
1339 map_ldb_error(local_ctx
, LDB_ERR_OTHER
, NULL
, &errstr
);
1345 modifydn_r
= ldapsrv_init_reply(call
, LDAP_TAG_ModifyDNResponse
);
1346 NT_STATUS_HAVE_NO_MEMORY(modifydn_r
);
1348 if (result
== LDAP_SUCCESS
) {
1349 res
= talloc_zero(local_ctx
, struct ldb_result
);
1350 NT_STATUS_HAVE_NO_MEMORY(res
);
1351 ldb_ret
= ldapsrv_rename_with_controls(call
, olddn
, newdn
, call
->request
->controls
, res
);
1352 result
= map_ldb_error(local_ctx
, ldb_ret
, ldb_errstring(samdb
),
1356 modifydn
= &modifydn_r
->msg
->r
.ModifyDNResponse
;
1357 modifydn
->dn
= NULL
;
1358 if ((res
!= NULL
) && (res
->refs
!= NULL
)) {
1359 modifydn
->resultcode
= map_ldb_error(local_ctx
,
1360 LDB_ERR_REFERRAL
, NULL
,
1362 modifydn
->errormessage
= (errstr
?talloc_strdup(modifydn_r
,errstr
):NULL
);
1363 modifydn
->referral
= talloc_strdup(call
, *res
->refs
);
1365 modifydn
->resultcode
= result
;
1366 modifydn
->errormessage
= (errstr
?talloc_strdup(modifydn_r
,errstr
):NULL
);
1367 modifydn
->referral
= NULL
;
1370 talloc_free(local_ctx
);
1372 return ldapsrv_queue_reply(call
, modifydn_r
);
1375 static NTSTATUS
ldapsrv_CompareRequest(struct ldapsrv_call
*call
)
1377 struct ldap_CompareRequest
*req
= &call
->request
->r
.CompareRequest
;
1378 struct ldap_Result
*compare
;
1379 struct ldapsrv_reply
*compare_r
;
1380 TALLOC_CTX
*local_ctx
;
1381 struct ldb_context
*samdb
= call
->conn
->ldb
;
1382 struct ldb_result
*res
= NULL
;
1384 const char *attrs
[1];
1385 const char *errstr
= NULL
;
1386 const char *filter
= NULL
;
1387 int result
= LDAP_SUCCESS
;
1390 DEBUG(10, ("CompareRequest"));
1391 DEBUGADD(10, (" dn: %s\n", req
->dn
));
1393 local_ctx
= talloc_named(call
, 0, "CompareRequest local_memory_context");
1394 NT_STATUS_HAVE_NO_MEMORY(local_ctx
);
1396 dn
= ldb_dn_new(local_ctx
, samdb
, req
->dn
);
1397 NT_STATUS_HAVE_NO_MEMORY(dn
);
1399 DEBUG(10, ("CompareRequest: dn: [%s]\n", req
->dn
));
1400 filter
= talloc_asprintf(local_ctx
, "(%s=%*s)", req
->attribute
,
1401 (int)req
->value
.length
, req
->value
.data
);
1402 NT_STATUS_HAVE_NO_MEMORY(filter
);
1404 DEBUGADD(10, ("CompareRequest: attribute: [%s]\n", filter
));
1408 compare_r
= ldapsrv_init_reply(call
, LDAP_TAG_CompareResponse
);
1409 NT_STATUS_HAVE_NO_MEMORY(compare_r
);
1411 if (result
== LDAP_SUCCESS
) {
1412 ldb_ret
= ldb_search(samdb
, local_ctx
, &res
,
1413 dn
, LDB_SCOPE_BASE
, attrs
, "%s", filter
);
1414 if (ldb_ret
!= LDB_SUCCESS
) {
1415 result
= map_ldb_error(local_ctx
, ldb_ret
,
1416 ldb_errstring(samdb
), &errstr
);
1417 DEBUG(10,("CompareRequest: error: %s\n", errstr
));
1418 } else if (res
->count
== 0) {
1419 DEBUG(10,("CompareRequest: doesn't matched\n"));
1420 result
= LDAP_COMPARE_FALSE
;
1422 } else if (res
->count
== 1) {
1423 DEBUG(10,("CompareRequest: matched\n"));
1424 result
= LDAP_COMPARE_TRUE
;
1426 } else if (res
->count
> 1) {
1427 result
= LDAP_OTHER
;
1428 map_ldb_error(local_ctx
, LDB_ERR_OTHER
, NULL
, &errstr
);
1429 errstr
= talloc_asprintf(local_ctx
,
1430 "%s. Too many objects match!", errstr
);
1431 DEBUG(10,("CompareRequest: %d results: %s\n", res
->count
, errstr
));
1435 compare
= &compare_r
->msg
->r
.CompareResponse
;
1437 compare
->resultcode
= result
;
1438 compare
->errormessage
= (errstr
?talloc_strdup(compare_r
,errstr
):NULL
);
1439 compare
->referral
= NULL
;
1441 talloc_free(local_ctx
);
1443 return ldapsrv_queue_reply(call
, compare_r
);
1446 static NTSTATUS
ldapsrv_AbandonRequest(struct ldapsrv_call
*call
)
1448 struct ldap_AbandonRequest
*req
= &call
->request
->r
.AbandonRequest
;
1449 struct ldapsrv_call
*c
= NULL
;
1450 struct ldapsrv_call
*n
= NULL
;
1452 DEBUG(10, ("AbandonRequest\n"));
1454 for (c
= call
->conn
->pending_calls
; c
!= NULL
; c
= n
) {
1457 if (c
->request
->messageid
!= req
->messageid
) {
1461 DLIST_REMOVE(call
->conn
->pending_calls
, c
);
1465 return NT_STATUS_OK
;
1468 static NTSTATUS
ldapsrv_expired(struct ldapsrv_call
*call
)
1470 struct ldapsrv_reply
*reply
= NULL
;
1471 struct ldap_ExtendedResponse
*r
= NULL
;
1473 DBG_DEBUG("Sending connection expired message\n");
1475 reply
= ldapsrv_init_reply(call
, LDAP_TAG_ExtendedResponse
);
1476 if (reply
== NULL
) {
1477 return NT_STATUS_NO_MEMORY
;
1481 * According to RFC4511 section 4.4.1 this has a msgid of 0
1483 reply
->msg
->messageid
= 0;
1485 r
= &reply
->msg
->r
.ExtendedResponse
;
1486 r
->response
.resultcode
= LDB_ERR_UNAVAILABLE
;
1487 r
->response
.errormessage
= "The server has timed out this connection";
1488 r
->oid
= "1.3.6.1.4.1.1466.20036"; /* see rfc4511 section 4.4.1 */
1490 ldapsrv_queue_reply(call
, reply
);
1491 return NT_STATUS_OK
;
1494 NTSTATUS
ldapsrv_do_call(struct ldapsrv_call
*call
)
1497 struct ldap_message
*msg
= call
->request
;
1498 struct ldapsrv_connection
*conn
= call
->conn
;
1502 expired
= timeval_expired(&conn
->limits
.expire_time
);
1504 status
= ldapsrv_expired(call
);
1505 if (!NT_STATUS_IS_OK(status
)) {
1508 return NT_STATUS_NETWORK_SESSION_EXPIRED
;
1511 /* Check for undecoded critical extensions */
1512 for (i
=0; msg
->controls
&& msg
->controls
[i
]; i
++) {
1513 if (!msg
->controls_decoded
[i
] &&
1514 msg
->controls
[i
]->critical
) {
1515 DEBUG(3, ("ldapsrv_do_call: Critical extension %s is not known to this server\n",
1516 msg
->controls
[i
]->oid
));
1517 return ldapsrv_unwilling(call
, LDAP_UNAVAILABLE_CRITICAL_EXTENSION
);
1521 if (call
->conn
->authz_logged
== false) {
1525 * We do not want to log anonymous access if the query
1526 * is just for the rootDSE, or it is a startTLS or a
1529 * A rootDSE search could also be done over
1530 * CLDAP anonymously for example, so these don't
1532 * Essentially we want to know about
1533 * access beyond that normally done prior to a
1537 switch(call
->request
->type
) {
1538 case LDAP_TAG_BindRequest
:
1539 case LDAP_TAG_UnbindRequest
:
1540 case LDAP_TAG_AbandonRequest
:
1543 case LDAP_TAG_ExtendedResponse
: {
1544 struct ldap_ExtendedRequest
*req
= &call
->request
->r
.ExtendedRequest
;
1545 if (strcmp(req
->oid
, LDB_EXTENDED_START_TLS_OID
) == 0) {
1550 case LDAP_TAG_SearchRequest
: {
1551 struct ldap_SearchRequest
*req
= &call
->request
->r
.SearchRequest
;
1552 if (req
->scope
== LDAP_SEARCH_SCOPE_BASE
) {
1553 if (req
->basedn
[0] == '\0') {
1564 const char *transport_protection
= AUTHZ_TRANSPORT_PROTECTION_NONE
;
1565 if (call
->conn
->sockets
.active
== call
->conn
->sockets
.tls
) {
1566 transport_protection
= AUTHZ_TRANSPORT_PROTECTION_TLS
;
1569 log_successful_authz_event(call
->conn
->connection
->msg_ctx
,
1570 call
->conn
->connection
->lp_ctx
,
1571 call
->conn
->connection
->remote_address
,
1572 call
->conn
->connection
->local_address
,
1575 transport_protection
,
1576 call
->conn
->session_info
);
1578 call
->conn
->authz_logged
= true;
1582 switch(call
->request
->type
) {
1583 case LDAP_TAG_BindRequest
:
1584 return ldapsrv_BindRequest(call
);
1585 case LDAP_TAG_UnbindRequest
:
1586 return ldapsrv_UnbindRequest(call
);
1587 case LDAP_TAG_SearchRequest
:
1588 return ldapsrv_SearchRequest(call
);
1589 case LDAP_TAG_ModifyRequest
:
1590 status
= ldapsrv_ModifyRequest(call
);
1592 case LDAP_TAG_AddRequest
:
1593 status
= ldapsrv_AddRequest(call
);
1595 case LDAP_TAG_DelRequest
:
1596 status
= ldapsrv_DelRequest(call
);
1598 case LDAP_TAG_ModifyDNRequest
:
1599 status
= ldapsrv_ModifyDNRequest(call
);
1601 case LDAP_TAG_CompareRequest
:
1602 return ldapsrv_CompareRequest(call
);
1603 case LDAP_TAG_AbandonRequest
:
1604 return ldapsrv_AbandonRequest(call
);
1605 case LDAP_TAG_ExtendedRequest
:
1606 status
= ldapsrv_ExtendedRequest(call
);
1609 return ldapsrv_unwilling(call
, LDAP_PROTOCOL_ERROR
);
1612 if (NT_STATUS_IS_OK(status
)) {
1613 ldapsrv_notification_retry_setup(call
->conn
->service
, true);