dsdb/util: rework samdb_check_password() to support utf8
[Samba.git] / source4 / dsdb / common / util.c
blob8e407768ffaeb89cdc51fd0471664e7566a6ed56
1 /*
2 Unix SMB/CIFS implementation.
3 Samba utility functions
5 Copyright (C) Andrew Tridgell 2004
6 Copyright (C) Volker Lendecke 2004
7 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2006
8 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
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 "events/events.h"
26 #include "ldb.h"
27 #include "ldb_module.h"
28 #include "ldb_errors.h"
29 #include "../lib/util/util_ldb.h"
30 #include "../lib/crypto/crypto.h"
31 #include "dsdb/samdb/samdb.h"
32 #include "libcli/security/security.h"
33 #include "librpc/gen_ndr/ndr_security.h"
34 #include "librpc/gen_ndr/ndr_misc.h"
35 #include "../libds/common/flags.h"
36 #include "dsdb/common/proto.h"
37 #include "libcli/ldap/ldap_ndr.h"
38 #include "param/param.h"
39 #include "libcli/auth/libcli_auth.h"
40 #include "librpc/gen_ndr/ndr_drsblobs.h"
41 #include "system/locale.h"
42 #include "lib/util/tsort.h"
43 #include "dsdb/common/util.h"
44 #include "lib/socket/socket.h"
45 #include "librpc/gen_ndr/irpc.h"
46 #include "libds/common/flag_mapping.h"
49 search the sam for the specified attributes in a specific domain, filter on
50 objectSid being in domain_sid.
52 int samdb_search_domain(struct ldb_context *sam_ldb,
53 TALLOC_CTX *mem_ctx,
54 struct ldb_dn *basedn,
55 struct ldb_message ***res,
56 const char * const *attrs,
57 const struct dom_sid *domain_sid,
58 const char *format, ...) _PRINTF_ATTRIBUTE(7,8)
60 va_list ap;
61 int i, count;
63 va_start(ap, format);
64 count = gendb_search_v(sam_ldb, mem_ctx, basedn,
65 res, attrs, format, ap);
66 va_end(ap);
68 i=0;
70 while (i<count) {
71 struct dom_sid *entry_sid;
73 entry_sid = samdb_result_dom_sid(mem_ctx, (*res)[i], "objectSid");
75 if ((entry_sid == NULL) ||
76 (!dom_sid_in_domain(domain_sid, entry_sid))) {
77 /* Delete that entry from the result set */
78 (*res)[i] = (*res)[count-1];
79 count -= 1;
80 talloc_free(entry_sid);
81 continue;
83 talloc_free(entry_sid);
84 i += 1;
87 return count;
91 search the sam for a single string attribute in exactly 1 record
93 const char *samdb_search_string_v(struct ldb_context *sam_ldb,
94 TALLOC_CTX *mem_ctx,
95 struct ldb_dn *basedn,
96 const char *attr_name,
97 const char *format, va_list ap) _PRINTF_ATTRIBUTE(5,0)
99 int count;
100 const char *attrs[2] = { NULL, NULL };
101 struct ldb_message **res = NULL;
103 attrs[0] = attr_name;
105 count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
106 if (count > 1) {
107 DEBUG(1,("samdb: search for %s %s not single valued (count=%d)\n",
108 attr_name, format, count));
110 if (count != 1) {
111 talloc_free(res);
112 return NULL;
115 return ldb_msg_find_attr_as_string(res[0], attr_name, NULL);
119 search the sam for a single string attribute in exactly 1 record
121 const char *samdb_search_string(struct ldb_context *sam_ldb,
122 TALLOC_CTX *mem_ctx,
123 struct ldb_dn *basedn,
124 const char *attr_name,
125 const char *format, ...) _PRINTF_ATTRIBUTE(5,6)
127 va_list ap;
128 const char *str;
130 va_start(ap, format);
131 str = samdb_search_string_v(sam_ldb, mem_ctx, basedn, attr_name, format, ap);
132 va_end(ap);
134 return str;
137 struct ldb_dn *samdb_search_dn(struct ldb_context *sam_ldb,
138 TALLOC_CTX *mem_ctx,
139 struct ldb_dn *basedn,
140 const char *format, ...) _PRINTF_ATTRIBUTE(4,5)
142 va_list ap;
143 struct ldb_dn *ret;
144 struct ldb_message **res = NULL;
145 int count;
147 va_start(ap, format);
148 count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, NULL, format, ap);
149 va_end(ap);
151 if (count != 1) return NULL;
153 ret = talloc_steal(mem_ctx, res[0]->dn);
154 talloc_free(res);
156 return ret;
160 search the sam for a dom_sid attribute in exactly 1 record
162 struct dom_sid *samdb_search_dom_sid(struct ldb_context *sam_ldb,
163 TALLOC_CTX *mem_ctx,
164 struct ldb_dn *basedn,
165 const char *attr_name,
166 const char *format, ...) _PRINTF_ATTRIBUTE(5,6)
168 va_list ap;
169 int count;
170 struct ldb_message **res;
171 const char *attrs[2] = { NULL, NULL };
172 struct dom_sid *sid;
174 attrs[0] = attr_name;
176 va_start(ap, format);
177 count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
178 va_end(ap);
179 if (count > 1) {
180 DEBUG(1,("samdb: search for %s %s not single valued (count=%d)\n",
181 attr_name, format, count));
183 if (count != 1) {
184 talloc_free(res);
185 return NULL;
187 sid = samdb_result_dom_sid(mem_ctx, res[0], attr_name);
188 talloc_free(res);
189 return sid;
193 return the count of the number of records in the sam matching the query
195 int samdb_search_count(struct ldb_context *sam_ldb,
196 TALLOC_CTX *mem_ctx,
197 struct ldb_dn *basedn,
198 const char *format, ...) _PRINTF_ATTRIBUTE(4,5)
200 va_list ap;
201 const char *attrs[] = { NULL };
202 int ret;
204 va_start(ap, format);
205 ret = gendb_search_v(sam_ldb, mem_ctx, basedn, NULL, attrs, format, ap);
206 va_end(ap);
208 return ret;
213 search the sam for a single integer attribute in exactly 1 record
215 unsigned int samdb_search_uint(struct ldb_context *sam_ldb,
216 TALLOC_CTX *mem_ctx,
217 unsigned int default_value,
218 struct ldb_dn *basedn,
219 const char *attr_name,
220 const char *format, ...) _PRINTF_ATTRIBUTE(6,7)
222 va_list ap;
223 int count;
224 struct ldb_message **res;
225 const char *attrs[2] = { NULL, NULL };
227 attrs[0] = attr_name;
229 va_start(ap, format);
230 count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
231 va_end(ap);
233 if (count != 1) {
234 return default_value;
237 return ldb_msg_find_attr_as_uint(res[0], attr_name, default_value);
241 search the sam for a single signed 64 bit integer attribute in exactly 1 record
243 int64_t samdb_search_int64(struct ldb_context *sam_ldb,
244 TALLOC_CTX *mem_ctx,
245 int64_t default_value,
246 struct ldb_dn *basedn,
247 const char *attr_name,
248 const char *format, ...) _PRINTF_ATTRIBUTE(6,7)
250 va_list ap;
251 int count;
252 struct ldb_message **res;
253 const char *attrs[2] = { NULL, NULL };
255 attrs[0] = attr_name;
257 va_start(ap, format);
258 count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
259 va_end(ap);
261 if (count != 1) {
262 return default_value;
265 return ldb_msg_find_attr_as_int64(res[0], attr_name, default_value);
269 search the sam for multipe records each giving a single string attribute
270 return the number of matches, or -1 on error
272 int samdb_search_string_multiple(struct ldb_context *sam_ldb,
273 TALLOC_CTX *mem_ctx,
274 struct ldb_dn *basedn,
275 const char ***strs,
276 const char *attr_name,
277 const char *format, ...) _PRINTF_ATTRIBUTE(6,7)
279 va_list ap;
280 int count, i;
281 const char *attrs[2] = { NULL, NULL };
282 struct ldb_message **res = NULL;
284 attrs[0] = attr_name;
286 va_start(ap, format);
287 count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
288 va_end(ap);
290 if (count <= 0) {
291 return count;
294 /* make sure its single valued */
295 for (i=0;i<count;i++) {
296 if (res[i]->num_elements != 1) {
297 DEBUG(1,("samdb: search for %s %s not single valued\n",
298 attr_name, format));
299 talloc_free(res);
300 return -1;
304 *strs = talloc_array(mem_ctx, const char *, count+1);
305 if (! *strs) {
306 talloc_free(res);
307 return -1;
310 for (i=0;i<count;i++) {
311 (*strs)[i] = ldb_msg_find_attr_as_string(res[i], attr_name, NULL);
313 (*strs)[count] = NULL;
315 return count;
318 struct ldb_dn *samdb_result_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
319 const char *attr, struct ldb_dn *default_value)
321 struct ldb_dn *ret_dn = ldb_msg_find_attr_as_dn(ldb, mem_ctx, msg, attr);
322 if (!ret_dn) {
323 return default_value;
325 return ret_dn;
329 pull a rid from a objectSid in a result set.
331 uint32_t samdb_result_rid_from_sid(TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
332 const char *attr, uint32_t default_value)
334 struct dom_sid *sid;
335 uint32_t rid;
337 sid = samdb_result_dom_sid(mem_ctx, msg, attr);
338 if (sid == NULL) {
339 return default_value;
341 rid = sid->sub_auths[sid->num_auths-1];
342 talloc_free(sid);
343 return rid;
347 pull a dom_sid structure from a objectSid in a result set.
349 struct dom_sid *samdb_result_dom_sid(TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
350 const char *attr)
352 bool ok;
353 const struct ldb_val *v;
354 struct dom_sid *sid;
355 v = ldb_msg_find_ldb_val(msg, attr);
356 if (v == NULL) {
357 return NULL;
359 sid = talloc(mem_ctx, struct dom_sid);
360 if (sid == NULL) {
361 return NULL;
363 ok = sid_blob_parse(*v, sid);
364 if (!ok) {
365 talloc_free(sid);
366 return NULL;
368 return sid;
372 pull a guid structure from a objectGUID in a result set.
374 struct GUID samdb_result_guid(const struct ldb_message *msg, const char *attr)
376 const struct ldb_val *v;
377 struct GUID guid;
378 NTSTATUS status;
380 v = ldb_msg_find_ldb_val(msg, attr);
381 if (!v) return GUID_zero();
383 status = GUID_from_ndr_blob(v, &guid);
384 if (!NT_STATUS_IS_OK(status)) {
385 return GUID_zero();
388 return guid;
392 pull a sid prefix from a objectSid in a result set.
393 this is used to find the domain sid for a user
395 struct dom_sid *samdb_result_sid_prefix(TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
396 const char *attr)
398 struct dom_sid *sid = samdb_result_dom_sid(mem_ctx, msg, attr);
399 if (!sid || sid->num_auths < 1) return NULL;
400 sid->num_auths--;
401 return sid;
405 pull a NTTIME in a result set.
407 NTTIME samdb_result_nttime(const struct ldb_message *msg, const char *attr,
408 NTTIME default_value)
410 return ldb_msg_find_attr_as_uint64(msg, attr, default_value);
414 * Windows stores 0 for lastLogoff.
415 * But when a MS DC return the lastLogoff (as Logoff Time)
416 * it returns 0x7FFFFFFFFFFFFFFF, not returning this value in this case
417 * cause windows 2008 and newer version to fail for SMB requests
419 NTTIME samdb_result_last_logoff(const struct ldb_message *msg)
421 NTTIME ret = ldb_msg_find_attr_as_uint64(msg, "lastLogoff",0);
423 if (ret == 0)
424 ret = 0x7FFFFFFFFFFFFFFFULL;
426 return ret;
430 * Windows uses both 0 and 9223372036854775807 (0x7FFFFFFFFFFFFFFFULL) to
431 * indicate an account doesn't expire.
433 * When Windows initially creates an account, it sets
434 * accountExpires = 9223372036854775807 (0x7FFFFFFFFFFFFFFF). However,
435 * when changing from an account having a specific expiration date to
436 * that account never expiring, it sets accountExpires = 0.
438 * Consolidate that logic here to allow clearer logic for account expiry in
439 * the rest of the code.
441 NTTIME samdb_result_account_expires(const struct ldb_message *msg)
443 NTTIME ret = ldb_msg_find_attr_as_uint64(msg, "accountExpires",
446 if (ret == 0)
447 ret = 0x7FFFFFFFFFFFFFFFULL;
449 return ret;
453 construct the allow_password_change field from the PwdLastSet attribute and the
454 domain password settings
456 NTTIME samdb_result_allow_password_change(struct ldb_context *sam_ldb,
457 TALLOC_CTX *mem_ctx,
458 struct ldb_dn *domain_dn,
459 struct ldb_message *msg,
460 const char *attr)
462 uint64_t attr_time = ldb_msg_find_attr_as_uint64(msg, attr, 0);
463 int64_t minPwdAge;
465 if (attr_time == 0) {
466 return 0;
469 minPwdAge = samdb_search_int64(sam_ldb, mem_ctx, 0, domain_dn, "minPwdAge", NULL);
471 /* yes, this is a -= not a += as minPwdAge is stored as the negative
472 of the number of 100-nano-seconds */
473 attr_time -= minPwdAge;
475 return attr_time;
479 construct the force_password_change field from the PwdLastSet
480 attribute, the userAccountControl and the domain password settings
482 NTTIME samdb_result_force_password_change(struct ldb_context *sam_ldb,
483 TALLOC_CTX *mem_ctx,
484 struct ldb_dn *domain_dn,
485 struct ldb_message *msg)
487 int64_t attr_time = ldb_msg_find_attr_as_int64(msg, "pwdLastSet", 0);
488 uint32_t userAccountControl = ldb_msg_find_attr_as_uint(msg,
489 "userAccountControl",
491 int64_t maxPwdAge;
493 /* Machine accounts don't expire, and there is a flag for 'no expiry' */
494 if (!(userAccountControl & UF_NORMAL_ACCOUNT)
495 || (userAccountControl & UF_DONT_EXPIRE_PASSWD)) {
496 return 0x7FFFFFFFFFFFFFFFULL;
499 if (attr_time == 0) {
500 return 0;
502 if (attr_time == -1) {
503 return 0x7FFFFFFFFFFFFFFFULL;
506 maxPwdAge = samdb_search_int64(sam_ldb, mem_ctx, 0, domain_dn,
507 "maxPwdAge", NULL);
508 if (maxPwdAge == 0 || maxPwdAge == -0x8000000000000000ULL) {
509 return 0x7FFFFFFFFFFFFFFFULL;
510 } else {
511 attr_time -= maxPwdAge;
514 return attr_time;
518 pull a samr_Password structutre from a result set.
520 struct samr_Password *samdb_result_hash(TALLOC_CTX *mem_ctx, const struct ldb_message *msg, const char *attr)
522 struct samr_Password *hash = NULL;
523 const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
524 if (val && (val->length >= sizeof(hash->hash))) {
525 hash = talloc(mem_ctx, struct samr_Password);
526 memcpy(hash->hash, val->data, MIN(val->length, sizeof(hash->hash)));
528 return hash;
532 pull an array of samr_Password structures from a result set.
534 unsigned int samdb_result_hashes(TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
535 const char *attr, struct samr_Password **hashes)
537 unsigned int count, i;
538 const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
540 *hashes = NULL;
541 if (!val) {
542 return 0;
544 count = val->length / 16;
545 if (count == 0) {
546 return 0;
549 *hashes = talloc_array(mem_ctx, struct samr_Password, count);
550 if (! *hashes) {
551 return 0;
554 for (i=0;i<count;i++) {
555 memcpy((*hashes)[i].hash, (i*16)+(char *)val->data, 16);
558 return count;
561 NTSTATUS samdb_result_passwords(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx, struct ldb_message *msg,
562 struct samr_Password **lm_pwd, struct samr_Password **nt_pwd)
564 struct samr_Password *lmPwdHash, *ntPwdHash;
565 if (nt_pwd) {
566 unsigned int num_nt;
567 num_nt = samdb_result_hashes(mem_ctx, msg, "unicodePwd", &ntPwdHash);
568 if (num_nt == 0) {
569 *nt_pwd = NULL;
570 } else if (num_nt > 1) {
571 return NT_STATUS_INTERNAL_DB_CORRUPTION;
572 } else {
573 *nt_pwd = &ntPwdHash[0];
576 if (lm_pwd) {
577 /* Ensure that if we have turned off LM
578 * authentication, that we never use the LM hash, even
579 * if we store it */
580 if (lpcfg_lanman_auth(lp_ctx)) {
581 unsigned int num_lm;
582 num_lm = samdb_result_hashes(mem_ctx, msg, "dBCSPwd", &lmPwdHash);
583 if (num_lm == 0) {
584 *lm_pwd = NULL;
585 } else if (num_lm > 1) {
586 return NT_STATUS_INTERNAL_DB_CORRUPTION;
587 } else {
588 *lm_pwd = &lmPwdHash[0];
590 } else {
591 *lm_pwd = NULL;
594 return NT_STATUS_OK;
598 pull a samr_LogonHours structutre from a result set.
600 struct samr_LogonHours samdb_result_logon_hours(TALLOC_CTX *mem_ctx, struct ldb_message *msg, const char *attr)
602 struct samr_LogonHours hours;
603 size_t units_per_week = 168;
604 const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
606 ZERO_STRUCT(hours);
608 if (val) {
609 units_per_week = val->length * 8;
612 hours.bits = talloc_array(mem_ctx, uint8_t, units_per_week/8);
613 if (!hours.bits) {
614 return hours;
616 hours.units_per_week = units_per_week;
617 memset(hours.bits, 0xFF, units_per_week/8);
618 if (val) {
619 memcpy(hours.bits, val->data, val->length);
622 return hours;
626 pull a set of account_flags from a result set.
628 This requires that the attributes:
629 pwdLastSet
630 userAccountControl
631 be included in 'msg'
633 uint32_t samdb_result_acct_flags(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx,
634 struct ldb_message *msg, struct ldb_dn *domain_dn)
636 uint32_t userAccountControl = ldb_msg_find_attr_as_uint(msg, "userAccountControl", 0);
637 uint32_t acct_flags = ds_uf2acb(userAccountControl);
638 NTTIME must_change_time;
639 NTTIME now;
641 must_change_time = samdb_result_force_password_change(sam_ctx, mem_ctx,
642 domain_dn, msg);
644 /* Test account expire time */
645 unix_to_nt_time(&now, time(NULL));
646 /* check for expired password */
647 if (must_change_time < now) {
648 acct_flags |= ACB_PW_EXPIRED;
650 return acct_flags;
653 struct lsa_BinaryString samdb_result_parameters(TALLOC_CTX *mem_ctx,
654 struct ldb_message *msg,
655 const char *attr)
657 struct lsa_BinaryString s;
658 const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
660 ZERO_STRUCT(s);
662 if (!val) {
663 return s;
666 s.array = talloc_array(mem_ctx, uint16_t, val->length/2);
667 if (!s.array) {
668 return s;
670 s.length = s.size = val->length;
671 memcpy(s.array, val->data, val->length);
673 return s;
676 /* Find an attribute, with a particular value */
678 /* The current callers of this function expect a very specific
679 * behaviour: In particular, objectClass subclass equivilance is not
680 * wanted. This means that we should not lookup the schema for the
681 * comparison function */
682 struct ldb_message_element *samdb_find_attribute(struct ldb_context *ldb,
683 const struct ldb_message *msg,
684 const char *name, const char *value)
686 unsigned int i;
687 struct ldb_message_element *el = ldb_msg_find_element(msg, name);
689 if (!el) {
690 return NULL;
693 for (i=0;i<el->num_values;i++) {
694 if (ldb_attr_cmp(value, (char *)el->values[i].data) == 0) {
695 return el;
699 return NULL;
702 int samdb_find_or_add_attribute(struct ldb_context *ldb, struct ldb_message *msg, const char *name, const char *set_value)
704 struct ldb_message_element *el;
706 el = ldb_msg_find_element(msg, name);
707 if (el) {
708 return LDB_SUCCESS;
711 return ldb_msg_add_string(msg, name, set_value);
715 add a dom_sid element to a message
717 int samdb_msg_add_dom_sid(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
718 const char *attr_name, const struct dom_sid *sid)
720 struct ldb_val v;
721 enum ndr_err_code ndr_err;
723 ndr_err = ndr_push_struct_blob(&v, mem_ctx,
724 sid,
725 (ndr_push_flags_fn_t)ndr_push_dom_sid);
726 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
727 return ldb_operr(sam_ldb);
729 return ldb_msg_add_value(msg, attr_name, &v, NULL);
734 add a delete element operation to a message
736 int samdb_msg_add_delete(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
737 const char *attr_name)
739 /* we use an empty replace rather than a delete, as it allows for
740 dsdb_replace() to be used everywhere */
741 return ldb_msg_add_empty(msg, attr_name, LDB_FLAG_MOD_REPLACE, NULL);
745 add an add attribute value to a message or enhance an existing attribute
746 which has the same name and the add flag set.
748 int samdb_msg_add_addval(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx,
749 struct ldb_message *msg, const char *attr_name,
750 const char *value)
752 struct ldb_message_element *el;
753 struct ldb_val val, *vals;
754 char *v;
755 unsigned int i;
756 bool found = false;
757 int ret;
759 v = talloc_strdup(mem_ctx, value);
760 if (v == NULL) {
761 return ldb_oom(sam_ldb);
764 val.data = (uint8_t *) v;
765 val.length = strlen(v);
767 if (val.length == 0) {
768 /* allow empty strings as non-existent attributes */
769 return LDB_SUCCESS;
772 for (i = 0; i < msg->num_elements; i++) {
773 el = &msg->elements[i];
774 if ((ldb_attr_cmp(el->name, attr_name) == 0) &&
775 (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_ADD)) {
776 found = true;
777 break;
780 if (!found) {
781 ret = ldb_msg_add_empty(msg, attr_name, LDB_FLAG_MOD_ADD,
782 &el);
783 if (ret != LDB_SUCCESS) {
784 return ret;
788 vals = talloc_realloc(msg->elements, el->values, struct ldb_val,
789 el->num_values + 1);
790 if (vals == NULL) {
791 return ldb_oom(sam_ldb);
793 el->values = vals;
794 el->values[el->num_values] = val;
795 ++(el->num_values);
797 return LDB_SUCCESS;
801 add a delete attribute value to a message or enhance an existing attribute
802 which has the same name and the delete flag set.
804 int samdb_msg_add_delval(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx,
805 struct ldb_message *msg, const char *attr_name,
806 const char *value)
808 struct ldb_message_element *el;
809 struct ldb_val val, *vals;
810 char *v;
811 unsigned int i;
812 bool found = false;
813 int ret;
815 v = talloc_strdup(mem_ctx, value);
816 if (v == NULL) {
817 return ldb_oom(sam_ldb);
820 val.data = (uint8_t *) v;
821 val.length = strlen(v);
823 if (val.length == 0) {
824 /* allow empty strings as non-existent attributes */
825 return LDB_SUCCESS;
828 for (i = 0; i < msg->num_elements; i++) {
829 el = &msg->elements[i];
830 if ((ldb_attr_cmp(el->name, attr_name) == 0) &&
831 (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_DELETE)) {
832 found = true;
833 break;
836 if (!found) {
837 ret = ldb_msg_add_empty(msg, attr_name, LDB_FLAG_MOD_DELETE,
838 &el);
839 if (ret != LDB_SUCCESS) {
840 return ret;
844 vals = talloc_realloc(msg->elements, el->values, struct ldb_val,
845 el->num_values + 1);
846 if (vals == NULL) {
847 return ldb_oom(sam_ldb);
849 el->values = vals;
850 el->values[el->num_values] = val;
851 ++(el->num_values);
853 return LDB_SUCCESS;
857 add a int element to a message
859 int samdb_msg_add_int(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
860 const char *attr_name, int v)
862 const char *s = talloc_asprintf(mem_ctx, "%d", v);
863 if (s == NULL) {
864 return ldb_oom(sam_ldb);
866 return ldb_msg_add_string(msg, attr_name, s);
870 * Add an unsigned int element to a message
872 * The issue here is that we have not yet first cast to int32_t explicitly,
873 * before we cast to an signed int to printf() into the %d or cast to a
874 * int64_t before we then cast to a long long to printf into a %lld.
876 * There are *no* unsigned integers in Active Directory LDAP, even the RID
877 * allocations and ms-DS-Secondary-KrbTgt-Number are *signed* quantities.
878 * (See the schema, and the syntax definitions in schema_syntax.c).
881 int samdb_msg_add_uint(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
882 const char *attr_name, unsigned int v)
884 return samdb_msg_add_int(sam_ldb, mem_ctx, msg, attr_name, (int)v);
888 add a (signed) int64_t element to a message
890 int samdb_msg_add_int64(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
891 const char *attr_name, int64_t v)
893 const char *s = talloc_asprintf(mem_ctx, "%lld", (long long)v);
894 if (s == NULL) {
895 return ldb_oom(sam_ldb);
897 return ldb_msg_add_string(msg, attr_name, s);
901 * Add an unsigned int64_t (uint64_t) element to a message
903 * The issue here is that we have not yet first cast to int32_t explicitly,
904 * before we cast to an signed int to printf() into the %d or cast to a
905 * int64_t before we then cast to a long long to printf into a %lld.
907 * There are *no* unsigned integers in Active Directory LDAP, even the RID
908 * allocations and ms-DS-Secondary-KrbTgt-Number are *signed* quantities.
909 * (See the schema, and the syntax definitions in schema_syntax.c).
912 int samdb_msg_add_uint64(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
913 const char *attr_name, uint64_t v)
915 return samdb_msg_add_int64(sam_ldb, mem_ctx, msg, attr_name, (int64_t)v);
919 add a samr_Password element to a message
921 int samdb_msg_add_hash(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
922 const char *attr_name, const struct samr_Password *hash)
924 struct ldb_val val;
925 val.data = talloc_memdup(mem_ctx, hash->hash, 16);
926 if (!val.data) {
927 return ldb_oom(sam_ldb);
929 val.length = 16;
930 return ldb_msg_add_value(msg, attr_name, &val, NULL);
934 add a samr_Password array to a message
936 int samdb_msg_add_hashes(struct ldb_context *ldb,
937 TALLOC_CTX *mem_ctx, struct ldb_message *msg,
938 const char *attr_name, struct samr_Password *hashes,
939 unsigned int count)
941 struct ldb_val val;
942 unsigned int i;
943 val.data = talloc_array_size(mem_ctx, 16, count);
944 val.length = count*16;
945 if (!val.data) {
946 return ldb_oom(ldb);
948 for (i=0;i<count;i++) {
949 memcpy(i*16 + (char *)val.data, hashes[i].hash, 16);
951 return ldb_msg_add_value(msg, attr_name, &val, NULL);
955 add a acct_flags element to a message
957 int samdb_msg_add_acct_flags(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
958 const char *attr_name, uint32_t v)
960 return samdb_msg_add_uint(sam_ldb, mem_ctx, msg, attr_name, ds_acb2uf(v));
964 add a logon_hours element to a message
966 int samdb_msg_add_logon_hours(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
967 const char *attr_name, struct samr_LogonHours *hours)
969 struct ldb_val val;
970 val.length = hours->units_per_week / 8;
971 val.data = hours->bits;
972 return ldb_msg_add_value(msg, attr_name, &val, NULL);
976 add a parameters element to a message
978 int samdb_msg_add_parameters(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
979 const char *attr_name, struct lsa_BinaryString *parameters)
981 struct ldb_val val;
982 val.length = parameters->length;
983 val.data = (uint8_t *)parameters->array;
984 return ldb_msg_add_value(msg, attr_name, &val, NULL);
988 * Sets an unsigned int element in a message
990 * The issue here is that we have not yet first cast to int32_t explicitly,
991 * before we cast to an signed int to printf() into the %d or cast to a
992 * int64_t before we then cast to a long long to printf into a %lld.
994 * There are *no* unsigned integers in Active Directory LDAP, even the RID
995 * allocations and ms-DS-Secondary-KrbTgt-Number are *signed* quantities.
996 * (See the schema, and the syntax definitions in schema_syntax.c).
999 int samdb_msg_set_uint(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx,
1000 struct ldb_message *msg, const char *attr_name,
1001 unsigned int v)
1003 struct ldb_message_element *el;
1005 el = ldb_msg_find_element(msg, attr_name);
1006 if (el) {
1007 el->num_values = 0;
1009 return samdb_msg_add_uint(sam_ldb, mem_ctx, msg, attr_name, v);
1013 * Handle ldb_request in transaction
1015 static int dsdb_autotransaction_request(struct ldb_context *sam_ldb,
1016 struct ldb_request *req)
1018 int ret;
1020 ret = ldb_transaction_start(sam_ldb);
1021 if (ret != LDB_SUCCESS) {
1022 return ret;
1025 ret = ldb_request(sam_ldb, req);
1026 if (ret == LDB_SUCCESS) {
1027 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
1030 if (ret == LDB_SUCCESS) {
1031 return ldb_transaction_commit(sam_ldb);
1033 ldb_transaction_cancel(sam_ldb);
1035 return ret;
1039 return a default security descriptor
1041 struct security_descriptor *samdb_default_security_descriptor(TALLOC_CTX *mem_ctx)
1043 struct security_descriptor *sd;
1045 sd = security_descriptor_initialise(mem_ctx);
1047 return sd;
1050 struct ldb_dn *samdb_aggregate_schema_dn(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx)
1052 struct ldb_dn *schema_dn = ldb_get_schema_basedn(sam_ctx);
1053 struct ldb_dn *aggregate_dn;
1054 if (!schema_dn) {
1055 return NULL;
1058 aggregate_dn = ldb_dn_copy(mem_ctx, schema_dn);
1059 if (!aggregate_dn) {
1060 return NULL;
1062 if (!ldb_dn_add_child_fmt(aggregate_dn, "CN=Aggregate")) {
1063 return NULL;
1065 return aggregate_dn;
1068 struct ldb_dn *samdb_partitions_dn(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx)
1070 struct ldb_dn *new_dn;
1072 new_dn = ldb_dn_copy(mem_ctx, ldb_get_config_basedn(sam_ctx));
1073 if ( ! ldb_dn_add_child_fmt(new_dn, "CN=Partitions")) {
1074 talloc_free(new_dn);
1075 return NULL;
1077 return new_dn;
1080 struct ldb_dn *samdb_infrastructure_dn(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx)
1082 struct ldb_dn *new_dn;
1084 new_dn = ldb_dn_copy(mem_ctx, ldb_get_default_basedn(sam_ctx));
1085 if ( ! ldb_dn_add_child_fmt(new_dn, "CN=Infrastructure")) {
1086 talloc_free(new_dn);
1087 return NULL;
1089 return new_dn;
1092 struct ldb_dn *samdb_sites_dn(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx)
1094 struct ldb_dn *new_dn;
1096 new_dn = ldb_dn_copy(mem_ctx, ldb_get_config_basedn(sam_ctx));
1097 if ( ! ldb_dn_add_child_fmt(new_dn, "CN=Sites")) {
1098 talloc_free(new_dn);
1099 return NULL;
1101 return new_dn;
1105 work out the domain sid for the current open ldb
1107 const struct dom_sid *samdb_domain_sid(struct ldb_context *ldb)
1109 TALLOC_CTX *tmp_ctx;
1110 const struct dom_sid *domain_sid;
1111 const char *attrs[] = {
1112 "objectSid",
1113 NULL
1115 struct ldb_result *res;
1116 int ret;
1118 /* see if we have a cached copy */
1119 domain_sid = (struct dom_sid *)ldb_get_opaque(ldb, "cache.domain_sid");
1120 if (domain_sid) {
1121 return domain_sid;
1124 tmp_ctx = talloc_new(ldb);
1125 if (tmp_ctx == NULL) {
1126 goto failed;
1129 ret = ldb_search(ldb, tmp_ctx, &res, ldb_get_default_basedn(ldb), LDB_SCOPE_BASE, attrs, "objectSid=*");
1131 if (ret != LDB_SUCCESS) {
1132 goto failed;
1135 if (res->count != 1) {
1136 goto failed;
1139 domain_sid = samdb_result_dom_sid(tmp_ctx, res->msgs[0], "objectSid");
1140 if (domain_sid == NULL) {
1141 goto failed;
1144 /* cache the domain_sid in the ldb */
1145 if (ldb_set_opaque(ldb, "cache.domain_sid", discard_const_p(struct dom_sid, domain_sid)) != LDB_SUCCESS) {
1146 goto failed;
1149 talloc_steal(ldb, domain_sid);
1150 talloc_free(tmp_ctx);
1152 return domain_sid;
1154 failed:
1155 talloc_free(tmp_ctx);
1156 return NULL;
1160 get domain sid from cache
1162 const struct dom_sid *samdb_domain_sid_cache_only(struct ldb_context *ldb)
1164 return (struct dom_sid *)ldb_get_opaque(ldb, "cache.domain_sid");
1167 bool samdb_set_domain_sid(struct ldb_context *ldb, const struct dom_sid *dom_sid_in)
1169 TALLOC_CTX *tmp_ctx;
1170 struct dom_sid *dom_sid_new;
1171 struct dom_sid *dom_sid_old;
1173 /* see if we have a cached copy */
1174 dom_sid_old = talloc_get_type(ldb_get_opaque(ldb,
1175 "cache.domain_sid"), struct dom_sid);
1177 tmp_ctx = talloc_new(ldb);
1178 if (tmp_ctx == NULL) {
1179 goto failed;
1182 dom_sid_new = dom_sid_dup(tmp_ctx, dom_sid_in);
1183 if (!dom_sid_new) {
1184 goto failed;
1187 /* cache the domain_sid in the ldb */
1188 if (ldb_set_opaque(ldb, "cache.domain_sid", dom_sid_new) != LDB_SUCCESS) {
1189 goto failed;
1192 talloc_steal(ldb, dom_sid_new);
1193 talloc_free(tmp_ctx);
1194 talloc_free(dom_sid_old);
1196 return true;
1198 failed:
1199 DEBUG(1,("Failed to set our own cached domain SID in the ldb!\n"));
1200 talloc_free(tmp_ctx);
1201 return false;
1204 bool samdb_set_ntds_settings_dn(struct ldb_context *ldb, struct ldb_dn *ntds_settings_dn_in)
1206 TALLOC_CTX *tmp_ctx;
1207 struct ldb_dn *ntds_settings_dn_new;
1208 struct ldb_dn *ntds_settings_dn_old;
1210 /* see if we have a forced copy from provision */
1211 ntds_settings_dn_old = talloc_get_type(ldb_get_opaque(ldb,
1212 "forced.ntds_settings_dn"), struct ldb_dn);
1214 tmp_ctx = talloc_new(ldb);
1215 if (tmp_ctx == NULL) {
1216 goto failed;
1219 ntds_settings_dn_new = ldb_dn_copy(tmp_ctx, ntds_settings_dn_in);
1220 if (!ntds_settings_dn_new) {
1221 goto failed;
1224 /* set the DN in the ldb to avoid lookups during provision */
1225 if (ldb_set_opaque(ldb, "forced.ntds_settings_dn", ntds_settings_dn_new) != LDB_SUCCESS) {
1226 goto failed;
1229 talloc_steal(ldb, ntds_settings_dn_new);
1230 talloc_free(tmp_ctx);
1231 talloc_free(ntds_settings_dn_old);
1233 return true;
1235 failed:
1236 DEBUG(1,("Failed to set our NTDS Settings DN in the ldb!\n"));
1237 talloc_free(tmp_ctx);
1238 return false;
1242 work out the ntds settings dn for the current open ldb
1244 struct ldb_dn *samdb_ntds_settings_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
1246 TALLOC_CTX *tmp_ctx;
1247 const char *root_attrs[] = { "dsServiceName", NULL };
1248 int ret;
1249 struct ldb_result *root_res;
1250 struct ldb_dn *settings_dn;
1252 /* see if we have a cached copy */
1253 settings_dn = (struct ldb_dn *)ldb_get_opaque(ldb, "forced.ntds_settings_dn");
1254 if (settings_dn) {
1255 return ldb_dn_copy(mem_ctx, settings_dn);
1258 tmp_ctx = talloc_new(mem_ctx);
1259 if (tmp_ctx == NULL) {
1260 goto failed;
1263 ret = ldb_search(ldb, tmp_ctx, &root_res, ldb_dn_new(tmp_ctx, ldb, ""), LDB_SCOPE_BASE, root_attrs, NULL);
1264 if (ret != LDB_SUCCESS) {
1265 DEBUG(1,("Searching for dsServiceName in rootDSE failed: %s\n",
1266 ldb_errstring(ldb)));
1267 goto failed;
1270 if (root_res->count != 1) {
1271 goto failed;
1274 settings_dn = ldb_msg_find_attr_as_dn(ldb, tmp_ctx, root_res->msgs[0], "dsServiceName");
1276 /* note that we do not cache the DN here, as that would mean
1277 * we could not handle server renames at runtime. Only
1278 * provision sets up forced.ntds_settings_dn */
1280 talloc_steal(mem_ctx, settings_dn);
1281 talloc_free(tmp_ctx);
1283 return settings_dn;
1285 failed:
1286 DEBUG(1,("Failed to find our own NTDS Settings DN in the ldb!\n"));
1287 talloc_free(tmp_ctx);
1288 return NULL;
1292 work out the ntds settings invocationId for the current open ldb
1294 const struct GUID *samdb_ntds_invocation_id(struct ldb_context *ldb)
1296 TALLOC_CTX *tmp_ctx;
1297 const char *attrs[] = { "invocationId", NULL };
1298 int ret;
1299 struct ldb_result *res;
1300 struct GUID *invocation_id;
1302 /* see if we have a cached copy */
1303 invocation_id = (struct GUID *)ldb_get_opaque(ldb, "cache.invocation_id");
1304 if (invocation_id) {
1305 return invocation_id;
1308 tmp_ctx = talloc_new(ldb);
1309 if (tmp_ctx == NULL) {
1310 goto failed;
1313 ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb, tmp_ctx), LDB_SCOPE_BASE, attrs, NULL);
1314 if (ret) {
1315 goto failed;
1318 if (res->count != 1) {
1319 goto failed;
1322 invocation_id = talloc(tmp_ctx, struct GUID);
1323 if (!invocation_id) {
1324 goto failed;
1327 *invocation_id = samdb_result_guid(res->msgs[0], "invocationId");
1329 /* cache the domain_sid in the ldb */
1330 if (ldb_set_opaque(ldb, "cache.invocation_id", invocation_id) != LDB_SUCCESS) {
1331 goto failed;
1334 talloc_steal(ldb, invocation_id);
1335 talloc_free(tmp_ctx);
1337 return invocation_id;
1339 failed:
1340 DEBUG(1,("Failed to find our own NTDS Settings invocationId in the ldb!\n"));
1341 talloc_free(tmp_ctx);
1342 return NULL;
1345 bool samdb_set_ntds_invocation_id(struct ldb_context *ldb, const struct GUID *invocation_id_in)
1347 TALLOC_CTX *tmp_ctx;
1348 struct GUID *invocation_id_new;
1349 struct GUID *invocation_id_old;
1351 /* see if we have a cached copy */
1352 invocation_id_old = (struct GUID *)ldb_get_opaque(ldb,
1353 "cache.invocation_id");
1355 tmp_ctx = talloc_new(ldb);
1356 if (tmp_ctx == NULL) {
1357 goto failed;
1360 invocation_id_new = talloc(tmp_ctx, struct GUID);
1361 if (!invocation_id_new) {
1362 goto failed;
1365 *invocation_id_new = *invocation_id_in;
1367 /* cache the domain_sid in the ldb */
1368 if (ldb_set_opaque(ldb, "cache.invocation_id", invocation_id_new) != LDB_SUCCESS) {
1369 goto failed;
1372 talloc_steal(ldb, invocation_id_new);
1373 talloc_free(tmp_ctx);
1374 talloc_free(invocation_id_old);
1376 return true;
1378 failed:
1379 DEBUG(1,("Failed to set our own cached invocationId in the ldb!\n"));
1380 talloc_free(tmp_ctx);
1381 return false;
1385 work out the ntds settings objectGUID for the current open ldb
1387 const struct GUID *samdb_ntds_objectGUID(struct ldb_context *ldb)
1389 TALLOC_CTX *tmp_ctx;
1390 const char *attrs[] = { "objectGUID", NULL };
1391 int ret;
1392 struct ldb_result *res;
1393 struct GUID *ntds_guid;
1395 /* see if we have a cached copy */
1396 ntds_guid = (struct GUID *)ldb_get_opaque(ldb, "cache.ntds_guid");
1397 if (ntds_guid) {
1398 return ntds_guid;
1401 tmp_ctx = talloc_new(ldb);
1402 if (tmp_ctx == NULL) {
1403 goto failed;
1406 ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb, tmp_ctx), LDB_SCOPE_BASE, attrs, NULL);
1407 if (ret) {
1408 goto failed;
1411 if (res->count != 1) {
1412 goto failed;
1415 ntds_guid = talloc(tmp_ctx, struct GUID);
1416 if (!ntds_guid) {
1417 goto failed;
1420 *ntds_guid = samdb_result_guid(res->msgs[0], "objectGUID");
1422 /* cache the domain_sid in the ldb */
1423 if (ldb_set_opaque(ldb, "cache.ntds_guid", ntds_guid) != LDB_SUCCESS) {
1424 goto failed;
1427 talloc_steal(ldb, ntds_guid);
1428 talloc_free(tmp_ctx);
1430 return ntds_guid;
1432 failed:
1433 DEBUG(1,("Failed to find our own NTDS Settings objectGUID in the ldb!\n"));
1434 talloc_free(tmp_ctx);
1435 return NULL;
1438 bool samdb_set_ntds_objectGUID(struct ldb_context *ldb, const struct GUID *ntds_guid_in)
1440 TALLOC_CTX *tmp_ctx;
1441 struct GUID *ntds_guid_new;
1442 struct GUID *ntds_guid_old;
1444 /* see if we have a cached copy */
1445 ntds_guid_old = (struct GUID *)ldb_get_opaque(ldb, "cache.ntds_guid");
1447 tmp_ctx = talloc_new(ldb);
1448 if (tmp_ctx == NULL) {
1449 goto failed;
1452 ntds_guid_new = talloc(tmp_ctx, struct GUID);
1453 if (!ntds_guid_new) {
1454 goto failed;
1457 *ntds_guid_new = *ntds_guid_in;
1459 /* cache the domain_sid in the ldb */
1460 if (ldb_set_opaque(ldb, "cache.ntds_guid", ntds_guid_new) != LDB_SUCCESS) {
1461 goto failed;
1464 talloc_steal(ldb, ntds_guid_new);
1465 talloc_free(tmp_ctx);
1466 talloc_free(ntds_guid_old);
1468 return true;
1470 failed:
1471 DEBUG(1,("Failed to set our own cached invocationId in the ldb!\n"));
1472 talloc_free(tmp_ctx);
1473 return false;
1477 work out the server dn for the current open ldb
1479 struct ldb_dn *samdb_server_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
1481 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
1482 struct ldb_dn *dn;
1483 if (!tmp_ctx) {
1484 return NULL;
1486 dn = ldb_dn_get_parent(mem_ctx, samdb_ntds_settings_dn(ldb, tmp_ctx));
1487 talloc_free(tmp_ctx);
1488 return dn;
1493 work out the server dn for the current open ldb
1495 struct ldb_dn *samdb_server_site_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
1497 struct ldb_dn *server_dn;
1498 struct ldb_dn *servers_dn;
1499 struct ldb_dn *server_site_dn;
1501 /* TODO: there must be a saner way to do this!! */
1502 server_dn = samdb_server_dn(ldb, mem_ctx);
1503 if (!server_dn) return NULL;
1505 servers_dn = ldb_dn_get_parent(mem_ctx, server_dn);
1506 talloc_free(server_dn);
1507 if (!servers_dn) return NULL;
1509 server_site_dn = ldb_dn_get_parent(mem_ctx, servers_dn);
1510 talloc_free(servers_dn);
1512 return server_site_dn;
1516 find the site name from a computers DN record
1518 int samdb_find_site_for_computer(struct ldb_context *ldb,
1519 TALLOC_CTX *mem_ctx, struct ldb_dn *computer_dn,
1520 const char **site_name)
1522 int ret;
1523 struct ldb_dn *dn;
1524 const struct ldb_val *rdn_val;
1526 *site_name = NULL;
1528 ret = samdb_reference_dn(ldb, mem_ctx, computer_dn, "serverReferenceBL", &dn);
1529 if (ret != LDB_SUCCESS) {
1530 return ret;
1533 if (!ldb_dn_remove_child_components(dn, 2)) {
1534 talloc_free(dn);
1535 return LDB_ERR_INVALID_DN_SYNTAX;
1538 rdn_val = ldb_dn_get_rdn_val(dn);
1539 if (rdn_val == NULL) {
1540 return LDB_ERR_OPERATIONS_ERROR;
1543 (*site_name) = talloc_strndup(mem_ctx, (const char *)rdn_val->data, rdn_val->length);
1544 talloc_free(dn);
1545 if (!*site_name) {
1546 return LDB_ERR_OPERATIONS_ERROR;
1548 return LDB_SUCCESS;
1552 find the NTDS GUID from a computers DN record
1554 int samdb_find_ntdsguid_for_computer(struct ldb_context *ldb, struct ldb_dn *computer_dn,
1555 struct GUID *ntds_guid)
1557 int ret;
1558 struct ldb_dn *dn;
1560 *ntds_guid = GUID_zero();
1562 ret = samdb_reference_dn(ldb, ldb, computer_dn, "serverReferenceBL", &dn);
1563 if (ret != LDB_SUCCESS) {
1564 return ret;
1567 if (!ldb_dn_add_child_fmt(dn, "CN=NTDS Settings")) {
1568 talloc_free(dn);
1569 return LDB_ERR_OPERATIONS_ERROR;
1572 ret = dsdb_find_guid_by_dn(ldb, dn, ntds_guid);
1573 talloc_free(dn);
1574 return ret;
1578 find a 'reference' DN that points at another object
1579 (eg. serverReference, rIDManagerReference etc)
1581 int samdb_reference_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn *base,
1582 const char *attribute, struct ldb_dn **dn)
1584 const char *attrs[2];
1585 struct ldb_result *res;
1586 int ret;
1588 attrs[0] = attribute;
1589 attrs[1] = NULL;
1591 ret = dsdb_search(ldb, mem_ctx, &res, base, LDB_SCOPE_BASE, attrs, DSDB_SEARCH_ONE_ONLY|DSDB_SEARCH_SHOW_EXTENDED_DN, NULL);
1592 if (ret != LDB_SUCCESS) {
1593 ldb_asprintf_errstring(ldb, "Cannot find DN %s to get attribute %s for reference dn: %s",
1594 ldb_dn_get_linearized(base), attribute, ldb_errstring(ldb));
1595 return ret;
1598 *dn = ldb_msg_find_attr_as_dn(ldb, mem_ctx, res->msgs[0], attribute);
1599 if (!*dn) {
1600 if (!ldb_msg_find_element(res->msgs[0], attribute)) {
1601 ldb_asprintf_errstring(ldb, "Cannot find attribute %s of %s to calculate reference dn", attribute,
1602 ldb_dn_get_linearized(base));
1603 } else {
1604 ldb_asprintf_errstring(ldb, "Cannot interpret attribute %s of %s as a dn", attribute,
1605 ldb_dn_get_linearized(base));
1607 talloc_free(res);
1608 return LDB_ERR_NO_SUCH_ATTRIBUTE;
1611 talloc_free(res);
1612 return LDB_SUCCESS;
1616 find if a DN (must have GUID component!) is our ntdsDsa
1618 int samdb_dn_is_our_ntdsa(struct ldb_context *ldb, struct ldb_dn *dn, bool *is_ntdsa)
1620 NTSTATUS status;
1621 struct GUID dn_guid;
1622 const struct GUID *our_ntds_guid;
1623 status = dsdb_get_extended_dn_guid(dn, &dn_guid, "GUID");
1624 if (!NT_STATUS_IS_OK(status)) {
1625 return LDB_ERR_OPERATIONS_ERROR;
1628 our_ntds_guid = samdb_ntds_objectGUID(ldb);
1629 if (!our_ntds_guid) {
1630 DEBUG(0, ("Failed to find our NTDS Settings GUID for comparison with %s - %s\n", ldb_dn_get_linearized(dn), ldb_errstring(ldb)));
1631 return LDB_ERR_OPERATIONS_ERROR;
1634 *is_ntdsa = GUID_equal(&dn_guid, our_ntds_guid);
1635 return LDB_SUCCESS;
1639 find a 'reference' DN that points at another object and indicate if it is our ntdsDsa
1641 int samdb_reference_dn_is_our_ntdsa(struct ldb_context *ldb, struct ldb_dn *base,
1642 const char *attribute, bool *is_ntdsa)
1644 int ret;
1645 struct ldb_dn *referenced_dn;
1646 TALLOC_CTX *tmp_ctx = talloc_new(ldb);
1647 if (tmp_ctx == NULL) {
1648 return LDB_ERR_OPERATIONS_ERROR;
1650 ret = samdb_reference_dn(ldb, tmp_ctx, base, attribute, &referenced_dn);
1651 if (ret != LDB_SUCCESS) {
1652 DEBUG(0, ("Failed to find object %s for attribute %s - %s\n", ldb_dn_get_linearized(base), attribute, ldb_errstring(ldb)));
1653 return ret;
1656 ret = samdb_dn_is_our_ntdsa(ldb, referenced_dn, is_ntdsa);
1658 talloc_free(tmp_ctx);
1659 return ret;
1663 find our machine account via the serverReference attribute in the
1664 server DN
1666 int samdb_server_reference_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn **dn)
1668 struct ldb_dn *server_dn;
1669 int ret;
1671 server_dn = samdb_server_dn(ldb, mem_ctx);
1672 if (server_dn == NULL) {
1673 return LDB_ERR_NO_SUCH_OBJECT;
1676 ret = samdb_reference_dn(ldb, mem_ctx, server_dn, "serverReference", dn);
1677 talloc_free(server_dn);
1679 return ret;
1683 find the RID Manager$ DN via the rIDManagerReference attribute in the
1684 base DN
1686 int samdb_rid_manager_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn **dn)
1688 return samdb_reference_dn(ldb, mem_ctx, ldb_get_default_basedn(ldb),
1689 "rIDManagerReference", dn);
1693 find the RID Set DN via the rIDSetReferences attribute in our
1694 machine account DN
1696 int samdb_rid_set_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn **dn)
1698 struct ldb_dn *server_ref_dn;
1699 int ret;
1701 ret = samdb_server_reference_dn(ldb, mem_ctx, &server_ref_dn);
1702 if (ret != LDB_SUCCESS) {
1703 return ret;
1705 ret = samdb_reference_dn(ldb, mem_ctx, server_ref_dn, "rIDSetReferences", dn);
1706 talloc_free(server_ref_dn);
1707 return ret;
1710 const char *samdb_server_site_name(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
1712 const struct ldb_val *val = ldb_dn_get_rdn_val(samdb_server_site_dn(ldb,
1713 mem_ctx));
1715 if (val == NULL) {
1716 return NULL;
1719 return (const char *) val->data;
1723 * Finds the client site by using the client's IP address.
1724 * The "subnet_name" returns the name of the subnet if parameter != NULL
1726 const char *samdb_client_site_name(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
1727 const char *ip_address, char **subnet_name)
1729 const char *attrs[] = { "cn", "siteObject", NULL };
1730 struct ldb_dn *sites_container_dn, *subnets_dn, *sites_dn;
1731 struct ldb_result *res;
1732 const struct ldb_val *val;
1733 const char *site_name = NULL, *l_subnet_name = NULL;
1734 const char *allow_list[2] = { NULL, NULL };
1735 unsigned int i, count;
1736 int cnt, ret;
1739 * if we don't have a client ip e.g. ncalrpc
1740 * the server site is the client site
1742 if (ip_address == NULL) {
1743 return samdb_server_site_name(ldb, mem_ctx);
1746 sites_container_dn = samdb_sites_dn(ldb, mem_ctx);
1747 if (sites_container_dn == NULL) {
1748 return NULL;
1751 subnets_dn = ldb_dn_copy(mem_ctx, sites_container_dn);
1752 if ( ! ldb_dn_add_child_fmt(subnets_dn, "CN=Subnets")) {
1753 talloc_free(sites_container_dn);
1754 talloc_free(subnets_dn);
1755 return NULL;
1758 ret = ldb_search(ldb, mem_ctx, &res, subnets_dn, LDB_SCOPE_ONELEVEL,
1759 attrs, NULL);
1760 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
1761 count = 0;
1762 } else if (ret != LDB_SUCCESS) {
1763 talloc_free(sites_container_dn);
1764 talloc_free(subnets_dn);
1765 return NULL;
1766 } else {
1767 count = res->count;
1770 for (i = 0; i < count; i++) {
1771 l_subnet_name = ldb_msg_find_attr_as_string(res->msgs[i], "cn",
1772 NULL);
1774 allow_list[0] = l_subnet_name;
1776 if (socket_allow_access(mem_ctx, NULL, allow_list, "", ip_address)) {
1777 sites_dn = ldb_msg_find_attr_as_dn(ldb, mem_ctx,
1778 res->msgs[i],
1779 "siteObject");
1780 if (sites_dn == NULL) {
1781 /* No reference, maybe another subnet matches */
1782 continue;
1785 /* "val" cannot be NULL here since "sites_dn" != NULL */
1786 val = ldb_dn_get_rdn_val(sites_dn);
1787 site_name = talloc_strdup(mem_ctx,
1788 (const char *) val->data);
1790 talloc_free(sites_dn);
1792 break;
1796 if (site_name == NULL) {
1797 /* This is the Windows Server fallback rule: when no subnet
1798 * exists and we have only one site available then use it (it
1799 * is for sure the same as our server site). If more sites do
1800 * exist then we don't know which one to use and set the site
1801 * name to "". */
1802 cnt = samdb_search_count(ldb, mem_ctx, sites_container_dn,
1803 "(objectClass=site)");
1804 if (cnt == 1) {
1805 site_name = samdb_server_site_name(ldb, mem_ctx);
1806 } else {
1807 site_name = talloc_strdup(mem_ctx, "");
1809 l_subnet_name = NULL;
1812 if (subnet_name != NULL) {
1813 *subnet_name = talloc_strdup(mem_ctx, l_subnet_name);
1816 talloc_free(sites_container_dn);
1817 talloc_free(subnets_dn);
1818 talloc_free(res);
1820 return site_name;
1824 work out if we are the PDC for the domain of the current open ldb
1826 bool samdb_is_pdc(struct ldb_context *ldb)
1828 int ret;
1829 bool is_pdc;
1831 ret = samdb_reference_dn_is_our_ntdsa(ldb, ldb_get_default_basedn(ldb), "fsmoRoleOwner",
1832 &is_pdc);
1833 if (ret != LDB_SUCCESS) {
1834 DEBUG(1,("Failed to find if we are the PDC for this ldb: Searching for fSMORoleOwner in %s failed: %s\n",
1835 ldb_dn_get_linearized(ldb_get_default_basedn(ldb)),
1836 ldb_errstring(ldb)));
1837 return false;
1840 return is_pdc;
1844 work out if we are a Global Catalog server for the domain of the current open ldb
1846 bool samdb_is_gc(struct ldb_context *ldb)
1848 uint32_t options;
1849 if (samdb_ntds_options(ldb, &options) != LDB_SUCCESS) {
1850 return false;
1852 return (options & DS_NTDSDSA_OPT_IS_GC) != 0;
1855 /* Find a domain object in the parents of a particular DN. */
1856 int samdb_search_for_parent_domain(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn *dn,
1857 struct ldb_dn **parent_dn, const char **errstring)
1859 TALLOC_CTX *local_ctx;
1860 struct ldb_dn *sdn = dn;
1861 struct ldb_result *res = NULL;
1862 int ret = LDB_SUCCESS;
1863 const char *attrs[] = { NULL };
1865 local_ctx = talloc_new(mem_ctx);
1866 if (local_ctx == NULL) return ldb_oom(ldb);
1868 while ((sdn = ldb_dn_get_parent(local_ctx, sdn))) {
1869 ret = ldb_search(ldb, local_ctx, &res, sdn, LDB_SCOPE_BASE, attrs,
1870 "(|(objectClass=domain)(objectClass=builtinDomain))");
1871 if (ret == LDB_SUCCESS) {
1872 if (res->count == 1) {
1873 break;
1875 } else {
1876 break;
1880 if (ret != LDB_SUCCESS) {
1881 *errstring = talloc_asprintf(mem_ctx, "Error searching for parent domain of %s, failed searching for %s: %s",
1882 ldb_dn_get_linearized(dn),
1883 ldb_dn_get_linearized(sdn),
1884 ldb_errstring(ldb));
1885 talloc_free(local_ctx);
1886 return ret;
1888 if (res->count != 1) {
1889 *errstring = talloc_asprintf(mem_ctx, "Invalid dn (%s), not child of a domain object",
1890 ldb_dn_get_linearized(dn));
1891 DEBUG(0,(__location__ ": %s\n", *errstring));
1892 talloc_free(local_ctx);
1893 return LDB_ERR_CONSTRAINT_VIOLATION;
1896 *parent_dn = talloc_steal(mem_ctx, res->msgs[0]->dn);
1897 talloc_free(local_ctx);
1898 return ret;
1903 * Performs checks on a user password (plaintext UNIX format - attribute
1904 * "password"). The remaining parameters have to be extracted from the domain
1905 * object in the AD.
1907 * Result codes from "enum samr_ValidationStatus" (consider "samr.idl")
1909 enum samr_ValidationStatus samdb_check_password(const DATA_BLOB *utf8_blob,
1910 const uint32_t pwdProperties,
1911 const uint32_t minPwdLength)
1913 const char *utf8_pw = (const char *)utf8_blob->data;
1914 size_t utf8_len = strlen_m(utf8_pw);
1916 /* checks if the "minPwdLength" property is satisfied */
1917 if (minPwdLength > utf8_len) {
1918 return SAMR_VALIDATION_STATUS_PWD_TOO_SHORT;
1921 /* checks the password complexity */
1922 if (!(pwdProperties & DOMAIN_PASSWORD_COMPLEX)) {
1923 return SAMR_VALIDATION_STATUS_SUCCESS;
1926 if (utf8_len == 0) {
1927 return SAMR_VALIDATION_STATUS_NOT_COMPLEX_ENOUGH;
1930 if (!check_password_quality(utf8_pw)) {
1931 return SAMR_VALIDATION_STATUS_NOT_COMPLEX_ENOUGH;
1934 return SAMR_VALIDATION_STATUS_SUCCESS;
1938 * Callback for "samdb_set_password" password change
1940 int samdb_set_password_callback(struct ldb_request *req, struct ldb_reply *ares)
1942 int ret;
1944 if (!ares) {
1945 return ldb_request_done(req, LDB_ERR_OPERATIONS_ERROR);
1948 if (ares->error != LDB_SUCCESS) {
1949 ret = ares->error;
1950 req->context = talloc_steal(req,
1951 ldb_reply_get_control(ares, DSDB_CONTROL_PASSWORD_CHANGE_STATUS_OID));
1952 talloc_free(ares);
1953 return ldb_request_done(req, ret);
1956 if (ares->type != LDB_REPLY_DONE) {
1957 talloc_free(ares);
1958 return ldb_request_done(req, LDB_ERR_OPERATIONS_ERROR);
1961 req->context = talloc_steal(req,
1962 ldb_reply_get_control(ares, DSDB_CONTROL_PASSWORD_CHANGE_STATUS_OID));
1963 talloc_free(ares);
1964 return ldb_request_done(req, LDB_SUCCESS);
1968 * Sets the user password using plaintext UTF16 (attribute "new_password") or
1969 * LM (attribute "lmNewHash") or NT (attribute "ntNewHash") hash. Also pass
1970 * the old LM and/or NT hash (attributes "lmOldHash"/"ntOldHash") if it is a
1971 * user change or not. The "rejectReason" gives some more information if the
1972 * change failed.
1974 * Results: NT_STATUS_OK, NT_STATUS_INVALID_PARAMETER, NT_STATUS_UNSUCCESSFUL,
1975 * NT_STATUS_WRONG_PASSWORD, NT_STATUS_PASSWORD_RESTRICTION
1977 NTSTATUS samdb_set_password(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
1978 struct ldb_dn *user_dn, struct ldb_dn *domain_dn,
1979 const DATA_BLOB *new_password,
1980 const struct samr_Password *lmNewHash,
1981 const struct samr_Password *ntNewHash,
1982 const struct samr_Password *lmOldHash,
1983 const struct samr_Password *ntOldHash,
1984 enum samPwdChangeReason *reject_reason,
1985 struct samr_DomInfo1 **_dominfo)
1987 struct ldb_message *msg;
1988 struct ldb_message_element *el;
1989 struct ldb_request *req;
1990 struct dsdb_control_password_change_status *pwd_stat = NULL;
1991 int ret;
1992 bool hash_values = false;
1993 NTSTATUS status = NT_STATUS_OK;
1995 #define CHECK_RET(x) \
1996 if (x != LDB_SUCCESS) { \
1997 talloc_free(msg); \
1998 return NT_STATUS_NO_MEMORY; \
2001 msg = ldb_msg_new(mem_ctx);
2002 if (msg == NULL) {
2003 return NT_STATUS_NO_MEMORY;
2005 msg->dn = user_dn;
2006 if ((new_password != NULL)
2007 && ((lmNewHash == NULL) && (ntNewHash == NULL))) {
2008 /* we have the password as plaintext UTF16 */
2009 CHECK_RET(ldb_msg_add_value(msg, "clearTextPassword",
2010 new_password, NULL));
2011 el = ldb_msg_find_element(msg, "clearTextPassword");
2012 el->flags = LDB_FLAG_MOD_REPLACE;
2013 } else if ((new_password == NULL)
2014 && ((lmNewHash != NULL) || (ntNewHash != NULL))) {
2015 /* we have a password as LM and/or NT hash */
2016 if (lmNewHash != NULL) {
2017 CHECK_RET(samdb_msg_add_hash(ldb, mem_ctx, msg,
2018 "dBCSPwd", lmNewHash));
2019 el = ldb_msg_find_element(msg, "dBCSPwd");
2020 el->flags = LDB_FLAG_MOD_REPLACE;
2022 if (ntNewHash != NULL) {
2023 CHECK_RET(samdb_msg_add_hash(ldb, mem_ctx, msg,
2024 "unicodePwd", ntNewHash));
2025 el = ldb_msg_find_element(msg, "unicodePwd");
2026 el->flags = LDB_FLAG_MOD_REPLACE;
2028 hash_values = true;
2029 } else {
2030 /* the password wasn't specified correctly */
2031 talloc_free(msg);
2032 return NT_STATUS_INVALID_PARAMETER;
2035 /* build modify request */
2036 ret = ldb_build_mod_req(&req, ldb, mem_ctx, msg, NULL, NULL,
2037 samdb_set_password_callback, NULL);
2038 if (ret != LDB_SUCCESS) {
2039 talloc_free(msg);
2040 return NT_STATUS_NO_MEMORY;
2043 /* A password change operation */
2044 if ((ntOldHash != NULL) || (lmOldHash != NULL)) {
2045 struct dsdb_control_password_change *change;
2047 change = talloc(req, struct dsdb_control_password_change);
2048 if (change == NULL) {
2049 talloc_free(req);
2050 talloc_free(msg);
2051 return NT_STATUS_NO_MEMORY;
2054 change->old_nt_pwd_hash = ntOldHash;
2055 change->old_lm_pwd_hash = lmOldHash;
2057 ret = ldb_request_add_control(req,
2058 DSDB_CONTROL_PASSWORD_CHANGE_OID,
2059 true, change);
2060 if (ret != LDB_SUCCESS) {
2061 talloc_free(req);
2062 talloc_free(msg);
2063 return NT_STATUS_NO_MEMORY;
2066 if (hash_values) {
2067 ret = ldb_request_add_control(req,
2068 DSDB_CONTROL_PASSWORD_HASH_VALUES_OID,
2069 true, NULL);
2070 if (ret != LDB_SUCCESS) {
2071 talloc_free(req);
2072 talloc_free(msg);
2073 return NT_STATUS_NO_MEMORY;
2076 ret = ldb_request_add_control(req,
2077 DSDB_CONTROL_PASSWORD_CHANGE_STATUS_OID,
2078 true, NULL);
2079 if (ret != LDB_SUCCESS) {
2080 talloc_free(req);
2081 talloc_free(msg);
2082 return NT_STATUS_NO_MEMORY;
2085 ret = dsdb_autotransaction_request(ldb, req);
2087 if (req->context != NULL) {
2088 pwd_stat = talloc_steal(mem_ctx,
2089 ((struct ldb_control *)req->context)->data);
2092 talloc_free(req);
2093 talloc_free(msg);
2095 /* Sets the domain info (if requested) */
2096 if (_dominfo != NULL) {
2097 struct samr_DomInfo1 *dominfo;
2099 dominfo = talloc_zero(mem_ctx, struct samr_DomInfo1);
2100 if (dominfo == NULL) {
2101 return NT_STATUS_NO_MEMORY;
2104 if (pwd_stat != NULL) {
2105 dominfo->min_password_length = pwd_stat->domain_data.minPwdLength;
2106 dominfo->password_properties = pwd_stat->domain_data.pwdProperties;
2107 dominfo->password_history_length = pwd_stat->domain_data.pwdHistoryLength;
2108 dominfo->max_password_age = pwd_stat->domain_data.maxPwdAge;
2109 dominfo->min_password_age = pwd_stat->domain_data.minPwdAge;
2112 *_dominfo = dominfo;
2115 if (reject_reason != NULL) {
2116 if (pwd_stat != NULL) {
2117 *reject_reason = pwd_stat->reject_reason;
2118 } else {
2119 *reject_reason = SAM_PWD_CHANGE_NO_ERROR;
2123 if (pwd_stat != NULL) {
2124 talloc_free(pwd_stat);
2127 if (ret == LDB_ERR_CONSTRAINT_VIOLATION) {
2128 const char *errmsg = ldb_errstring(ldb);
2129 char *endptr = NULL;
2130 WERROR werr = WERR_GENERAL_FAILURE;
2131 status = NT_STATUS_UNSUCCESSFUL;
2132 if (errmsg != NULL) {
2133 werr = W_ERROR(strtol(errmsg, &endptr, 16));
2135 if (endptr != errmsg) {
2136 if (W_ERROR_EQUAL(werr, WERR_INVALID_PASSWORD)) {
2137 status = NT_STATUS_WRONG_PASSWORD;
2139 if (W_ERROR_EQUAL(werr, WERR_PASSWORD_RESTRICTION)) {
2140 status = NT_STATUS_PASSWORD_RESTRICTION;
2143 } else if (ret == LDB_ERR_NO_SUCH_OBJECT) {
2144 /* don't let the caller know if an account doesn't exist */
2145 status = NT_STATUS_WRONG_PASSWORD;
2146 } else if (ret != LDB_SUCCESS) {
2147 status = NT_STATUS_UNSUCCESSFUL;
2150 return status;
2154 * Sets the user password using plaintext UTF16 (attribute "new_password") or
2155 * LM (attribute "lmNewHash") or NT (attribute "ntNewHash") hash. Also pass
2156 * the old LM and/or NT hash (attributes "lmOldHash"/"ntOldHash") if it is a
2157 * user change or not. The "rejectReason" gives some more information if the
2158 * change failed.
2160 * This wrapper function for "samdb_set_password" takes a SID as input rather
2161 * than a user DN.
2163 * This call encapsulates a new LDB transaction for changing the password;
2164 * therefore the user hasn't to start a new one.
2166 * Results: NT_STATUS_OK, NT_STATUS_INTERNAL_DB_CORRUPTION,
2167 * NT_STATUS_INVALID_PARAMETER, NT_STATUS_UNSUCCESSFUL,
2168 * NT_STATUS_WRONG_PASSWORD, NT_STATUS_PASSWORD_RESTRICTION,
2169 * NT_STATUS_TRANSACTION_ABORTED, NT_STATUS_NO_SUCH_USER
2171 NTSTATUS samdb_set_password_sid(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
2172 const struct dom_sid *user_sid,
2173 const DATA_BLOB *new_password,
2174 const struct samr_Password *lmNewHash,
2175 const struct samr_Password *ntNewHash,
2176 const struct samr_Password *lmOldHash,
2177 const struct samr_Password *ntOldHash,
2178 enum samPwdChangeReason *reject_reason,
2179 struct samr_DomInfo1 **_dominfo)
2181 NTSTATUS nt_status;
2182 struct ldb_dn *user_dn;
2183 int ret;
2185 ret = ldb_transaction_start(ldb);
2186 if (ret != LDB_SUCCESS) {
2187 DEBUG(1, ("Failed to start transaction: %s\n", ldb_errstring(ldb)));
2188 return NT_STATUS_TRANSACTION_ABORTED;
2191 user_dn = samdb_search_dn(ldb, mem_ctx, NULL,
2192 "(&(objectSid=%s)(objectClass=user))",
2193 ldap_encode_ndr_dom_sid(mem_ctx, user_sid));
2194 if (!user_dn) {
2195 ldb_transaction_cancel(ldb);
2196 DEBUG(3, ("samdb_set_password_sid: SID %s not found in samdb, returning NO_SUCH_USER\n",
2197 dom_sid_string(mem_ctx, user_sid)));
2198 return NT_STATUS_NO_SUCH_USER;
2201 nt_status = samdb_set_password(ldb, mem_ctx,
2202 user_dn, NULL,
2203 new_password,
2204 lmNewHash, ntNewHash,
2205 lmOldHash, ntOldHash,
2206 reject_reason, _dominfo);
2207 if (!NT_STATUS_IS_OK(nt_status)) {
2208 ldb_transaction_cancel(ldb);
2209 talloc_free(user_dn);
2210 return nt_status;
2213 ret = ldb_transaction_commit(ldb);
2214 if (ret != LDB_SUCCESS) {
2215 DEBUG(0,("Failed to commit transaction to change password on %s: %s\n",
2216 ldb_dn_get_linearized(user_dn),
2217 ldb_errstring(ldb)));
2218 talloc_free(user_dn);
2219 return NT_STATUS_TRANSACTION_ABORTED;
2222 talloc_free(user_dn);
2223 return NT_STATUS_OK;
2227 NTSTATUS samdb_create_foreign_security_principal(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx,
2228 struct dom_sid *sid, struct ldb_dn **ret_dn)
2230 struct ldb_message *msg;
2231 struct ldb_dn *basedn;
2232 char *sidstr;
2233 int ret;
2235 sidstr = dom_sid_string(mem_ctx, sid);
2236 NT_STATUS_HAVE_NO_MEMORY(sidstr);
2238 /* We might have to create a ForeignSecurityPrincipal, even if this user
2239 * is in our own domain */
2241 msg = ldb_msg_new(sidstr);
2242 if (msg == NULL) {
2243 talloc_free(sidstr);
2244 return NT_STATUS_NO_MEMORY;
2247 ret = dsdb_wellknown_dn(sam_ctx, sidstr,
2248 ldb_get_default_basedn(sam_ctx),
2249 DS_GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER,
2250 &basedn);
2251 if (ret != LDB_SUCCESS) {
2252 DEBUG(0, ("Failed to find DN for "
2253 "ForeignSecurityPrincipal container - %s\n", ldb_errstring(sam_ctx)));
2254 talloc_free(sidstr);
2255 return NT_STATUS_INTERNAL_DB_CORRUPTION;
2258 /* add core elements to the ldb_message for the alias */
2259 msg->dn = basedn;
2260 if ( ! ldb_dn_add_child_fmt(msg->dn, "CN=%s", sidstr)) {
2261 talloc_free(sidstr);
2262 return NT_STATUS_NO_MEMORY;
2265 ret = ldb_msg_add_string(msg, "objectClass",
2266 "foreignSecurityPrincipal");
2267 if (ret != LDB_SUCCESS) {
2268 talloc_free(sidstr);
2269 return NT_STATUS_NO_MEMORY;
2272 /* create the alias */
2273 ret = ldb_add(sam_ctx, msg);
2274 if (ret != LDB_SUCCESS) {
2275 DEBUG(0,("Failed to create foreignSecurityPrincipal "
2276 "record %s: %s\n",
2277 ldb_dn_get_linearized(msg->dn),
2278 ldb_errstring(sam_ctx)));
2279 talloc_free(sidstr);
2280 return NT_STATUS_INTERNAL_DB_CORRUPTION;
2283 *ret_dn = talloc_steal(mem_ctx, msg->dn);
2284 talloc_free(sidstr);
2286 return NT_STATUS_OK;
2291 Find the DN of a domain, assuming it to be a dotted.dns name
2294 struct ldb_dn *samdb_dns_domain_to_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const char *dns_domain)
2296 unsigned int i;
2297 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
2298 const char *binary_encoded;
2299 const char * const *split_realm;
2300 struct ldb_dn *dn;
2302 if (!tmp_ctx) {
2303 return NULL;
2306 split_realm = (const char * const *)str_list_make(tmp_ctx, dns_domain, ".");
2307 if (!split_realm) {
2308 talloc_free(tmp_ctx);
2309 return NULL;
2311 dn = ldb_dn_new(mem_ctx, ldb, NULL);
2312 for (i=0; split_realm[i]; i++) {
2313 binary_encoded = ldb_binary_encode_string(tmp_ctx, split_realm[i]);
2314 if (!ldb_dn_add_base_fmt(dn, "dc=%s", binary_encoded)) {
2315 DEBUG(2, ("Failed to add dc=%s element to DN %s\n",
2316 binary_encoded, ldb_dn_get_linearized(dn)));
2317 talloc_free(tmp_ctx);
2318 return NULL;
2321 if (!ldb_dn_validate(dn)) {
2322 DEBUG(2, ("Failed to validated DN %s\n",
2323 ldb_dn_get_linearized(dn)));
2324 talloc_free(tmp_ctx);
2325 return NULL;
2327 talloc_free(tmp_ctx);
2328 return dn;
2333 Find the DNS equivalent of a DN, in dotted DNS form
2335 char *samdb_dn_to_dns_domain(TALLOC_CTX *mem_ctx, struct ldb_dn *dn)
2337 int i, num_components = ldb_dn_get_comp_num(dn);
2338 char *dns_name = talloc_strdup(mem_ctx, "");
2339 if (dns_name == NULL) {
2340 return NULL;
2343 for (i=0; i<num_components; i++) {
2344 const struct ldb_val *v = ldb_dn_get_component_val(dn, i);
2345 char *s;
2346 if (v == NULL) {
2347 talloc_free(dns_name);
2348 return NULL;
2350 s = talloc_asprintf_append_buffer(dns_name, "%*.*s.",
2351 (int)v->length, (int)v->length, (char *)v->data);
2352 if (s == NULL) {
2353 talloc_free(dns_name);
2354 return NULL;
2356 dns_name = s;
2359 /* remove the last '.' */
2360 if (dns_name[0] != 0) {
2361 dns_name[strlen(dns_name)-1] = 0;
2364 return dns_name;
2368 Find the DNS _msdcs name for a given NTDS GUID. The resulting DNS
2369 name is based on the forest DNS name
2371 char *samdb_ntds_msdcs_dns_name(struct ldb_context *samdb,
2372 TALLOC_CTX *mem_ctx,
2373 const struct GUID *ntds_guid)
2375 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
2376 const char *guid_str;
2377 struct ldb_dn *forest_dn;
2378 const char *dnsforest;
2379 char *ret;
2381 guid_str = GUID_string(tmp_ctx, ntds_guid);
2382 if (guid_str == NULL) {
2383 talloc_free(tmp_ctx);
2384 return NULL;
2386 forest_dn = ldb_get_root_basedn(samdb);
2387 if (forest_dn == NULL) {
2388 talloc_free(tmp_ctx);
2389 return NULL;
2391 dnsforest = samdb_dn_to_dns_domain(tmp_ctx, forest_dn);
2392 if (dnsforest == NULL) {
2393 talloc_free(tmp_ctx);
2394 return NULL;
2396 ret = talloc_asprintf(mem_ctx, "%s._msdcs.%s", guid_str, dnsforest);
2397 talloc_free(tmp_ctx);
2398 return ret;
2403 Find the DN of a domain, be it the netbios or DNS name
2405 struct ldb_dn *samdb_domain_to_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
2406 const char *domain_name)
2408 const char * const domain_ref_attrs[] = {
2409 "ncName", NULL
2411 const char * const domain_ref2_attrs[] = {
2412 NULL
2414 struct ldb_result *res_domain_ref;
2415 char *escaped_domain = ldb_binary_encode_string(mem_ctx, domain_name);
2416 /* find the domain's DN */
2417 int ret_domain = ldb_search(ldb, mem_ctx,
2418 &res_domain_ref,
2419 samdb_partitions_dn(ldb, mem_ctx),
2420 LDB_SCOPE_ONELEVEL,
2421 domain_ref_attrs,
2422 "(&(nETBIOSName=%s)(objectclass=crossRef))",
2423 escaped_domain);
2424 if (ret_domain != LDB_SUCCESS) {
2425 return NULL;
2428 if (res_domain_ref->count == 0) {
2429 ret_domain = ldb_search(ldb, mem_ctx,
2430 &res_domain_ref,
2431 samdb_dns_domain_to_dn(ldb, mem_ctx, domain_name),
2432 LDB_SCOPE_BASE,
2433 domain_ref2_attrs,
2434 "(objectclass=domain)");
2435 if (ret_domain != LDB_SUCCESS) {
2436 return NULL;
2439 if (res_domain_ref->count == 1) {
2440 return res_domain_ref->msgs[0]->dn;
2442 return NULL;
2445 if (res_domain_ref->count > 1) {
2446 DEBUG(0,("Found %d records matching domain [%s]\n",
2447 ret_domain, domain_name));
2448 return NULL;
2451 return samdb_result_dn(ldb, mem_ctx, res_domain_ref->msgs[0], "nCName", NULL);
2457 use a GUID to find a DN
2459 int dsdb_find_dn_by_guid(struct ldb_context *ldb,
2460 TALLOC_CTX *mem_ctx,
2461 const struct GUID *guid, struct ldb_dn **dn)
2463 int ret;
2464 struct ldb_result *res;
2465 const char *attrs[] = { NULL };
2466 char *guid_str = GUID_string(mem_ctx, guid);
2468 if (!guid_str) {
2469 return ldb_operr(ldb);
2472 ret = dsdb_search(ldb, mem_ctx, &res, NULL, LDB_SCOPE_SUBTREE, attrs,
2473 DSDB_SEARCH_SEARCH_ALL_PARTITIONS |
2474 DSDB_SEARCH_SHOW_EXTENDED_DN |
2475 DSDB_SEARCH_ONE_ONLY,
2476 "objectGUID=%s", guid_str);
2477 talloc_free(guid_str);
2478 if (ret != LDB_SUCCESS) {
2479 return ret;
2482 *dn = talloc_steal(mem_ctx, res->msgs[0]->dn);
2483 talloc_free(res);
2485 return LDB_SUCCESS;
2489 use a DN to find a GUID with a given attribute name
2491 int dsdb_find_guid_attr_by_dn(struct ldb_context *ldb,
2492 struct ldb_dn *dn, const char *attribute,
2493 struct GUID *guid)
2495 int ret;
2496 struct ldb_result *res;
2497 const char *attrs[2];
2498 TALLOC_CTX *tmp_ctx = talloc_new(ldb);
2500 attrs[0] = attribute;
2501 attrs[1] = NULL;
2503 ret = dsdb_search_dn(ldb, tmp_ctx, &res, dn, attrs,
2504 DSDB_SEARCH_SHOW_DELETED |
2505 DSDB_SEARCH_SHOW_RECYCLED);
2506 if (ret != LDB_SUCCESS) {
2507 talloc_free(tmp_ctx);
2508 return ret;
2510 if (res->count < 1) {
2511 talloc_free(tmp_ctx);
2512 return LDB_ERR_NO_SUCH_OBJECT;
2514 *guid = samdb_result_guid(res->msgs[0], attribute);
2515 talloc_free(tmp_ctx);
2516 return LDB_SUCCESS;
2520 use a DN to find a GUID
2522 int dsdb_find_guid_by_dn(struct ldb_context *ldb,
2523 struct ldb_dn *dn, struct GUID *guid)
2525 return dsdb_find_guid_attr_by_dn(ldb, dn, "objectGUID", guid);
2531 adds the given GUID to the given ldb_message. This value is added
2532 for the given attr_name (may be either "objectGUID" or "parentGUID").
2534 int dsdb_msg_add_guid(struct ldb_message *msg,
2535 struct GUID *guid,
2536 const char *attr_name)
2538 int ret;
2539 struct ldb_val v;
2540 NTSTATUS status;
2541 TALLOC_CTX *tmp_ctx = talloc_init("dsdb_msg_add_guid");
2543 status = GUID_to_ndr_blob(guid, tmp_ctx, &v);
2544 if (!NT_STATUS_IS_OK(status)) {
2545 ret = LDB_ERR_OPERATIONS_ERROR;
2546 goto done;
2549 ret = ldb_msg_add_steal_value(msg, attr_name, &v);
2550 if (ret != LDB_SUCCESS) {
2551 DEBUG(4,(__location__ ": Failed to add %s to the message\n",
2552 attr_name));
2553 goto done;
2556 ret = LDB_SUCCESS;
2558 done:
2559 talloc_free(tmp_ctx);
2560 return ret;
2566 use a DN to find a SID
2568 int dsdb_find_sid_by_dn(struct ldb_context *ldb,
2569 struct ldb_dn *dn, struct dom_sid *sid)
2571 int ret;
2572 struct ldb_result *res;
2573 const char *attrs[] = { "objectSid", NULL };
2574 TALLOC_CTX *tmp_ctx = talloc_new(ldb);
2575 struct dom_sid *s;
2577 ZERO_STRUCTP(sid);
2579 ret = dsdb_search_dn(ldb, tmp_ctx, &res, dn, attrs,
2580 DSDB_SEARCH_SHOW_DELETED |
2581 DSDB_SEARCH_SHOW_RECYCLED);
2582 if (ret != LDB_SUCCESS) {
2583 talloc_free(tmp_ctx);
2584 return ret;
2586 if (res->count < 1) {
2587 talloc_free(tmp_ctx);
2588 return LDB_ERR_NO_SUCH_OBJECT;
2590 s = samdb_result_dom_sid(tmp_ctx, res->msgs[0], "objectSid");
2591 if (s == NULL) {
2592 talloc_free(tmp_ctx);
2593 return LDB_ERR_NO_SUCH_OBJECT;
2595 *sid = *s;
2596 talloc_free(tmp_ctx);
2597 return LDB_SUCCESS;
2601 use a SID to find a DN
2603 int dsdb_find_dn_by_sid(struct ldb_context *ldb,
2604 TALLOC_CTX *mem_ctx,
2605 struct dom_sid *sid, struct ldb_dn **dn)
2607 int ret;
2608 struct ldb_result *res;
2609 const char *attrs[] = { NULL };
2610 char *sid_str = ldap_encode_ndr_dom_sid(mem_ctx, sid);
2612 if (!sid_str) {
2613 return ldb_operr(ldb);
2616 ret = dsdb_search(ldb, mem_ctx, &res, NULL, LDB_SCOPE_SUBTREE, attrs,
2617 DSDB_SEARCH_SEARCH_ALL_PARTITIONS |
2618 DSDB_SEARCH_SHOW_EXTENDED_DN |
2619 DSDB_SEARCH_ONE_ONLY,
2620 "objectSid=%s", sid_str);
2621 talloc_free(sid_str);
2622 if (ret != LDB_SUCCESS) {
2623 return ret;
2626 *dn = talloc_steal(mem_ctx, res->msgs[0]->dn);
2627 talloc_free(res);
2629 return LDB_SUCCESS;
2633 load a repsFromTo blob list for a given partition GUID
2634 attr must be "repsFrom" or "repsTo"
2636 WERROR dsdb_loadreps(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx, struct ldb_dn *dn,
2637 const char *attr, struct repsFromToBlob **r, uint32_t *count)
2639 const char *attrs[] = { attr, NULL };
2640 struct ldb_result *res = NULL;
2641 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
2642 unsigned int i;
2643 struct ldb_message_element *el;
2644 int ret;
2646 *r = NULL;
2647 *count = 0;
2649 ret = dsdb_search_dn(sam_ctx, tmp_ctx, &res, dn, attrs, 0);
2650 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
2651 /* partition hasn't been replicated yet */
2652 return WERR_OK;
2654 if (ret != LDB_SUCCESS) {
2655 DEBUG(0,("dsdb_loadreps: failed to read partition object: %s\n", ldb_errstring(sam_ctx)));
2656 talloc_free(tmp_ctx);
2657 return WERR_DS_DRA_INTERNAL_ERROR;
2660 el = ldb_msg_find_element(res->msgs[0], attr);
2661 if (el == NULL) {
2662 /* it's OK to be empty */
2663 talloc_free(tmp_ctx);
2664 return WERR_OK;
2667 *count = el->num_values;
2668 *r = talloc_array(mem_ctx, struct repsFromToBlob, *count);
2669 if (*r == NULL) {
2670 talloc_free(tmp_ctx);
2671 return WERR_DS_DRA_INTERNAL_ERROR;
2674 for (i=0; i<(*count); i++) {
2675 enum ndr_err_code ndr_err;
2676 ndr_err = ndr_pull_struct_blob(&el->values[i],
2677 mem_ctx,
2678 &(*r)[i],
2679 (ndr_pull_flags_fn_t)ndr_pull_repsFromToBlob);
2680 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2681 talloc_free(tmp_ctx);
2682 return WERR_DS_DRA_INTERNAL_ERROR;
2686 talloc_free(tmp_ctx);
2688 return WERR_OK;
2692 save the repsFromTo blob list for a given partition GUID
2693 attr must be "repsFrom" or "repsTo"
2695 WERROR dsdb_savereps(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx, struct ldb_dn *dn,
2696 const char *attr, struct repsFromToBlob *r, uint32_t count)
2698 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
2699 struct ldb_message *msg;
2700 struct ldb_message_element *el;
2701 unsigned int i;
2703 msg = ldb_msg_new(tmp_ctx);
2704 msg->dn = dn;
2705 if (ldb_msg_add_empty(msg, attr, LDB_FLAG_MOD_REPLACE, &el) != LDB_SUCCESS) {
2706 goto failed;
2709 el->values = talloc_array(msg, struct ldb_val, count);
2710 if (!el->values) {
2711 goto failed;
2714 for (i=0; i<count; i++) {
2715 struct ldb_val v;
2716 enum ndr_err_code ndr_err;
2718 ndr_err = ndr_push_struct_blob(&v, tmp_ctx,
2719 &r[i],
2720 (ndr_push_flags_fn_t)ndr_push_repsFromToBlob);
2721 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2722 goto failed;
2725 el->num_values++;
2726 el->values[i] = v;
2729 if (dsdb_modify(sam_ctx, msg, 0) != LDB_SUCCESS) {
2730 DEBUG(0,("Failed to store %s - %s\n", attr, ldb_errstring(sam_ctx)));
2731 goto failed;
2734 talloc_free(tmp_ctx);
2736 return WERR_OK;
2738 failed:
2739 talloc_free(tmp_ctx);
2740 return WERR_DS_DRA_INTERNAL_ERROR;
2745 load the uSNHighest and the uSNUrgent attributes from the @REPLCHANGED
2746 object for a partition
2748 int dsdb_load_partition_usn(struct ldb_context *ldb, struct ldb_dn *dn,
2749 uint64_t *uSN, uint64_t *urgent_uSN)
2751 struct ldb_request *req;
2752 int ret;
2753 TALLOC_CTX *tmp_ctx = talloc_new(ldb);
2754 struct dsdb_control_current_partition *p_ctrl;
2755 struct ldb_result *res;
2757 res = talloc_zero(tmp_ctx, struct ldb_result);
2758 if (!res) {
2759 talloc_free(tmp_ctx);
2760 return ldb_oom(ldb);
2763 ret = ldb_build_search_req(&req, ldb, tmp_ctx,
2764 ldb_dn_new(tmp_ctx, ldb, "@REPLCHANGED"),
2765 LDB_SCOPE_BASE,
2766 NULL, NULL,
2767 NULL,
2768 res, ldb_search_default_callback,
2769 NULL);
2770 if (ret != LDB_SUCCESS) {
2771 talloc_free(tmp_ctx);
2772 return ret;
2775 p_ctrl = talloc(req, struct dsdb_control_current_partition);
2776 if (p_ctrl == NULL) {
2777 talloc_free(tmp_ctx);
2778 return ldb_oom(ldb);
2780 p_ctrl->version = DSDB_CONTROL_CURRENT_PARTITION_VERSION;
2781 p_ctrl->dn = dn;
2783 ret = ldb_request_add_control(req,
2784 DSDB_CONTROL_CURRENT_PARTITION_OID,
2785 false, p_ctrl);
2786 if (ret != LDB_SUCCESS) {
2787 talloc_free(tmp_ctx);
2788 return ret;
2791 /* Run the new request */
2792 ret = ldb_request(ldb, req);
2794 if (ret == LDB_SUCCESS) {
2795 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
2798 if (ret == LDB_ERR_NO_SUCH_OBJECT || ret == LDB_ERR_INVALID_DN_SYNTAX) {
2799 /* it hasn't been created yet, which means
2800 an implicit value of zero */
2801 *uSN = 0;
2802 talloc_free(tmp_ctx);
2803 return LDB_SUCCESS;
2806 if (ret != LDB_SUCCESS) {
2807 talloc_free(tmp_ctx);
2808 return ret;
2811 if (res->count < 1) {
2812 *uSN = 0;
2813 if (urgent_uSN) {
2814 *urgent_uSN = 0;
2816 } else {
2817 *uSN = ldb_msg_find_attr_as_uint64(res->msgs[0], "uSNHighest", 0);
2818 if (urgent_uSN) {
2819 *urgent_uSN = ldb_msg_find_attr_as_uint64(res->msgs[0], "uSNUrgent", 0);
2823 talloc_free(tmp_ctx);
2825 return LDB_SUCCESS;
2828 int drsuapi_DsReplicaCursor2_compare(const struct drsuapi_DsReplicaCursor2 *c1,
2829 const struct drsuapi_DsReplicaCursor2 *c2)
2831 return GUID_compare(&c1->source_dsa_invocation_id, &c2->source_dsa_invocation_id);
2834 int drsuapi_DsReplicaCursor_compare(const struct drsuapi_DsReplicaCursor *c1,
2835 const struct drsuapi_DsReplicaCursor *c2)
2837 return GUID_compare(&c1->source_dsa_invocation_id, &c2->source_dsa_invocation_id);
2842 see if a computer identified by its invocationId is a RODC
2844 int samdb_is_rodc(struct ldb_context *sam_ctx, const struct GUID *objectGUID, bool *is_rodc)
2846 /* 1) find the DN for this servers NTDSDSA object
2847 2) search for the msDS-isRODC attribute
2848 3) if not present then not a RODC
2849 4) if present and TRUE then is a RODC
2851 struct ldb_dn *config_dn;
2852 const char *attrs[] = { "msDS-isRODC", NULL };
2853 int ret;
2854 struct ldb_result *res;
2855 TALLOC_CTX *tmp_ctx = talloc_new(sam_ctx);
2857 config_dn = ldb_get_config_basedn(sam_ctx);
2858 if (!config_dn) {
2859 talloc_free(tmp_ctx);
2860 return ldb_operr(sam_ctx);
2863 ret = dsdb_search(sam_ctx, tmp_ctx, &res, config_dn, LDB_SCOPE_SUBTREE, attrs,
2864 DSDB_SEARCH_ONE_ONLY, "objectGUID=%s", GUID_string(tmp_ctx, objectGUID));
2866 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
2867 *is_rodc = false;
2868 talloc_free(tmp_ctx);
2869 return LDB_SUCCESS;
2872 if (ret != LDB_SUCCESS) {
2873 DEBUG(1,(("Failed to find our own NTDS Settings object by objectGUID=%s!\n"),
2874 GUID_string(tmp_ctx, objectGUID)));
2875 *is_rodc = false;
2876 talloc_free(tmp_ctx);
2877 return ret;
2880 ret = ldb_msg_find_attr_as_bool(res->msgs[0], "msDS-isRODC", 0);
2881 *is_rodc = (ret == 1);
2883 talloc_free(tmp_ctx);
2884 return LDB_SUCCESS;
2889 see if we are a RODC
2891 int samdb_rodc(struct ldb_context *sam_ctx, bool *am_rodc)
2893 const struct GUID *objectGUID;
2894 int ret;
2895 bool *cached;
2897 /* see if we have a cached copy */
2898 cached = (bool *)ldb_get_opaque(sam_ctx, "cache.am_rodc");
2899 if (cached) {
2900 *am_rodc = *cached;
2901 return LDB_SUCCESS;
2904 objectGUID = samdb_ntds_objectGUID(sam_ctx);
2905 if (!objectGUID) {
2906 return ldb_operr(sam_ctx);
2909 ret = samdb_is_rodc(sam_ctx, objectGUID, am_rodc);
2910 if (ret != LDB_SUCCESS) {
2911 return ret;
2914 cached = talloc(sam_ctx, bool);
2915 if (cached == NULL) {
2916 return ldb_oom(sam_ctx);
2918 *cached = *am_rodc;
2920 ret = ldb_set_opaque(sam_ctx, "cache.am_rodc", cached);
2921 if (ret != LDB_SUCCESS) {
2922 talloc_free(cached);
2923 return ldb_operr(sam_ctx);
2926 return LDB_SUCCESS;
2929 bool samdb_set_am_rodc(struct ldb_context *ldb, bool am_rodc)
2931 TALLOC_CTX *tmp_ctx;
2932 bool *cached;
2934 tmp_ctx = talloc_new(ldb);
2935 if (tmp_ctx == NULL) {
2936 goto failed;
2939 cached = talloc(tmp_ctx, bool);
2940 if (!cached) {
2941 goto failed;
2944 *cached = am_rodc;
2945 if (ldb_set_opaque(ldb, "cache.am_rodc", cached) != LDB_SUCCESS) {
2946 goto failed;
2949 talloc_steal(ldb, cached);
2950 talloc_free(tmp_ctx);
2951 return true;
2953 failed:
2954 DEBUG(1,("Failed to set our own cached am_rodc in the ldb!\n"));
2955 talloc_free(tmp_ctx);
2956 return false;
2961 * return NTDSSiteSettings options. See MS-ADTS 7.1.1.2.2.1.1
2962 * flags are DS_NTDSSETTINGS_OPT_*
2964 int samdb_ntds_site_settings_options(struct ldb_context *ldb_ctx,
2965 uint32_t *options)
2967 int rc;
2968 TALLOC_CTX *tmp_ctx;
2969 struct ldb_result *res;
2970 struct ldb_dn *site_dn;
2971 const char *attrs[] = { "options", NULL };
2973 tmp_ctx = talloc_new(ldb_ctx);
2974 if (tmp_ctx == NULL)
2975 goto failed;
2977 /* Retrieve the site dn for the ldb that we
2978 * have open. This is our local site.
2980 site_dn = samdb_server_site_dn(ldb_ctx, tmp_ctx);
2981 if (site_dn == NULL)
2982 goto failed;
2984 /* Perform a one level (child) search from the local
2985 * site distinguided name. We're looking for the
2986 * "options" attribute within the nTDSSiteSettings
2987 * object
2989 rc = ldb_search(ldb_ctx, tmp_ctx, &res, site_dn,
2990 LDB_SCOPE_ONELEVEL, attrs,
2991 "objectClass=nTDSSiteSettings");
2993 if (rc != LDB_SUCCESS || res->count != 1)
2994 goto failed;
2996 *options = ldb_msg_find_attr_as_uint(res->msgs[0], "options", 0);
2998 talloc_free(tmp_ctx);
3000 return LDB_SUCCESS;
3002 failed:
3003 DEBUG(1,("Failed to find our NTDS Site Settings options in ldb!\n"));
3004 talloc_free(tmp_ctx);
3005 return LDB_ERR_NO_SUCH_OBJECT;
3009 return NTDS options flags. See MS-ADTS 7.1.1.2.2.1.2.1.1
3011 flags are DS_NTDS_OPTION_*
3013 int samdb_ntds_options(struct ldb_context *ldb, uint32_t *options)
3015 TALLOC_CTX *tmp_ctx;
3016 const char *attrs[] = { "options", NULL };
3017 int ret;
3018 struct ldb_result *res;
3020 tmp_ctx = talloc_new(ldb);
3021 if (tmp_ctx == NULL) {
3022 goto failed;
3025 ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb, tmp_ctx), LDB_SCOPE_BASE, attrs, NULL);
3026 if (ret != LDB_SUCCESS) {
3027 goto failed;
3030 if (res->count != 1) {
3031 goto failed;
3034 *options = ldb_msg_find_attr_as_uint(res->msgs[0], "options", 0);
3036 talloc_free(tmp_ctx);
3038 return LDB_SUCCESS;
3040 failed:
3041 DEBUG(1,("Failed to find our own NTDS Settings options in the ldb!\n"));
3042 talloc_free(tmp_ctx);
3043 return LDB_ERR_NO_SUCH_OBJECT;
3046 const char* samdb_ntds_object_category(TALLOC_CTX *tmp_ctx, struct ldb_context *ldb)
3048 const char *attrs[] = { "objectCategory", NULL };
3049 int ret;
3050 struct ldb_result *res;
3052 ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb, tmp_ctx), LDB_SCOPE_BASE, attrs, NULL);
3053 if (ret != LDB_SUCCESS) {
3054 goto failed;
3057 if (res->count != 1) {
3058 goto failed;
3061 return ldb_msg_find_attr_as_string(res->msgs[0], "objectCategory", NULL);
3063 failed:
3064 DEBUG(1,("Failed to find our own NTDS Settings objectCategory in the ldb!\n"));
3065 return NULL;
3069 * Function which generates a "lDAPDisplayName" attribute from a "CN" one.
3070 * Algorithm implemented according to MS-ADTS 3.1.1.2.3.4
3072 const char *samdb_cn_to_lDAPDisplayName(TALLOC_CTX *mem_ctx, const char *cn)
3074 char **tokens, *ret;
3075 size_t i;
3077 tokens = str_list_make(mem_ctx, cn, " -_");
3078 if (tokens == NULL)
3079 return NULL;
3081 /* "tolower()" and "toupper()" should also work properly on 0x00 */
3082 tokens[0][0] = tolower(tokens[0][0]);
3083 for (i = 1; i < str_list_length((const char * const *)tokens); i++)
3084 tokens[i][0] = toupper(tokens[i][0]);
3086 ret = talloc_strdup(mem_ctx, tokens[0]);
3087 for (i = 1; i < str_list_length((const char * const *)tokens); i++)
3088 ret = talloc_asprintf_append_buffer(ret, "%s", tokens[i]);
3090 talloc_free(tokens);
3092 return ret;
3096 * This detects and returns the domain functional level (DS_DOMAIN_FUNCTION_*)
3098 int dsdb_functional_level(struct ldb_context *ldb)
3100 int *domainFunctionality =
3101 talloc_get_type(ldb_get_opaque(ldb, "domainFunctionality"), int);
3102 if (!domainFunctionality) {
3103 /* this is expected during initial provision */
3104 DEBUG(4,(__location__ ": WARNING: domainFunctionality not setup\n"));
3105 return DS_DOMAIN_FUNCTION_2000;
3107 return *domainFunctionality;
3111 * This detects and returns the forest functional level (DS_DOMAIN_FUNCTION_*)
3113 int dsdb_forest_functional_level(struct ldb_context *ldb)
3115 int *forestFunctionality =
3116 talloc_get_type(ldb_get_opaque(ldb, "forestFunctionality"), int);
3117 if (!forestFunctionality) {
3118 DEBUG(0,(__location__ ": WARNING: forestFunctionality not setup\n"));
3119 return DS_DOMAIN_FUNCTION_2000;
3121 return *forestFunctionality;
3125 set a GUID in an extended DN structure
3127 int dsdb_set_extended_dn_guid(struct ldb_dn *dn, const struct GUID *guid, const char *component_name)
3129 struct ldb_val v;
3130 NTSTATUS status;
3131 int ret;
3133 status = GUID_to_ndr_blob(guid, dn, &v);
3134 if (!NT_STATUS_IS_OK(status)) {
3135 return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
3138 ret = ldb_dn_set_extended_component(dn, component_name, &v);
3139 data_blob_free(&v);
3140 return ret;
3144 return a GUID from a extended DN structure
3146 NTSTATUS dsdb_get_extended_dn_guid(struct ldb_dn *dn, struct GUID *guid, const char *component_name)
3148 const struct ldb_val *v;
3150 v = ldb_dn_get_extended_component(dn, component_name);
3151 if (v == NULL) {
3152 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
3155 return GUID_from_ndr_blob(v, guid);
3159 return a uint64_t from a extended DN structure
3161 NTSTATUS dsdb_get_extended_dn_uint64(struct ldb_dn *dn, uint64_t *val, const char *component_name)
3163 const struct ldb_val *v;
3164 char *s;
3166 v = ldb_dn_get_extended_component(dn, component_name);
3167 if (v == NULL) {
3168 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
3170 s = talloc_strndup(dn, (const char *)v->data, v->length);
3171 NT_STATUS_HAVE_NO_MEMORY(s);
3173 *val = strtoull(s, NULL, 0);
3175 talloc_free(s);
3176 return NT_STATUS_OK;
3180 return a NTTIME from a extended DN structure
3182 NTSTATUS dsdb_get_extended_dn_nttime(struct ldb_dn *dn, NTTIME *nttime, const char *component_name)
3184 return dsdb_get_extended_dn_uint64(dn, nttime, component_name);
3188 return a uint32_t from a extended DN structure
3190 NTSTATUS dsdb_get_extended_dn_uint32(struct ldb_dn *dn, uint32_t *val, const char *component_name)
3192 const struct ldb_val *v;
3193 char *s;
3195 v = ldb_dn_get_extended_component(dn, component_name);
3196 if (v == NULL) {
3197 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
3200 s = talloc_strndup(dn, (const char *)v->data, v->length);
3201 NT_STATUS_HAVE_NO_MEMORY(s);
3203 *val = strtoul(s, NULL, 0);
3205 talloc_free(s);
3206 return NT_STATUS_OK;
3210 return a dom_sid from a extended DN structure
3212 NTSTATUS dsdb_get_extended_dn_sid(struct ldb_dn *dn, struct dom_sid *sid, const char *component_name)
3214 const struct ldb_val *sid_blob;
3215 struct TALLOC_CTX *tmp_ctx;
3216 enum ndr_err_code ndr_err;
3218 sid_blob = ldb_dn_get_extended_component(dn, component_name);
3219 if (!sid_blob) {
3220 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
3223 tmp_ctx = talloc_new(NULL);
3225 ndr_err = ndr_pull_struct_blob_all(sid_blob, tmp_ctx, sid,
3226 (ndr_pull_flags_fn_t)ndr_pull_dom_sid);
3227 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
3228 NTSTATUS status = ndr_map_error2ntstatus(ndr_err);
3229 talloc_free(tmp_ctx);
3230 return status;
3233 talloc_free(tmp_ctx);
3234 return NT_STATUS_OK;
3239 return RMD_FLAGS directly from a ldb_dn
3240 returns 0 if not found
3242 uint32_t dsdb_dn_rmd_flags(struct ldb_dn *dn)
3244 const struct ldb_val *v;
3245 char buf[32];
3246 v = ldb_dn_get_extended_component(dn, "RMD_FLAGS");
3247 if (!v || v->length > sizeof(buf)-1) return 0;
3248 strncpy(buf, (const char *)v->data, v->length);
3249 buf[v->length] = 0;
3250 return strtoul(buf, NULL, 10);
3254 return RMD_FLAGS directly from a ldb_val for a DN
3255 returns 0 if RMD_FLAGS is not found
3257 uint32_t dsdb_dn_val_rmd_flags(const struct ldb_val *val)
3259 const char *p;
3260 uint32_t flags;
3261 char *end;
3263 if (val->length < 13) {
3264 return 0;
3266 p = memmem(val->data, val->length, "<RMD_FLAGS=", 11);
3267 if (!p) {
3268 return 0;
3270 flags = strtoul(p+11, &end, 10);
3271 if (!end || *end != '>') {
3272 /* it must end in a > */
3273 return 0;
3275 return flags;
3279 return true if a ldb_val containing a DN in storage form is deleted
3281 bool dsdb_dn_is_deleted_val(const struct ldb_val *val)
3283 return (dsdb_dn_val_rmd_flags(val) & DSDB_RMD_FLAG_DELETED) != 0;
3287 return true if a ldb_val containing a DN in storage form is
3288 in the upgraded w2k3 linked attribute format
3290 bool dsdb_dn_is_upgraded_link_val(struct ldb_val *val)
3292 return memmem(val->data, val->length, "<RMD_VERSION=", 13) != NULL;
3296 return a DN for a wellknown GUID
3298 int dsdb_wellknown_dn(struct ldb_context *samdb, TALLOC_CTX *mem_ctx,
3299 struct ldb_dn *nc_root, const char *wk_guid,
3300 struct ldb_dn **wkguid_dn)
3302 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
3303 const char *attrs[] = { NULL };
3304 int ret;
3305 struct ldb_dn *dn;
3306 struct ldb_result *res;
3308 /* construct the magic WKGUID DN */
3309 dn = ldb_dn_new_fmt(tmp_ctx, samdb, "<WKGUID=%s,%s>",
3310 wk_guid, ldb_dn_get_linearized(nc_root));
3311 if (!wkguid_dn) {
3312 talloc_free(tmp_ctx);
3313 return ldb_operr(samdb);
3316 ret = dsdb_search_dn(samdb, tmp_ctx, &res, dn, attrs,
3317 DSDB_SEARCH_SHOW_DELETED |
3318 DSDB_SEARCH_SHOW_RECYCLED);
3319 if (ret != LDB_SUCCESS) {
3320 talloc_free(tmp_ctx);
3321 return ret;
3324 (*wkguid_dn) = talloc_steal(mem_ctx, res->msgs[0]->dn);
3325 talloc_free(tmp_ctx);
3326 return LDB_SUCCESS;
3330 static int dsdb_dn_compare_ptrs(struct ldb_dn **dn1, struct ldb_dn **dn2)
3332 return ldb_dn_compare(*dn1, *dn2);
3336 find a NC root given a DN within the NC
3338 int dsdb_find_nc_root(struct ldb_context *samdb, TALLOC_CTX *mem_ctx, struct ldb_dn *dn,
3339 struct ldb_dn **nc_root)
3341 const char *root_attrs[] = { "namingContexts", NULL };
3342 TALLOC_CTX *tmp_ctx;
3343 int ret;
3344 struct ldb_message_element *el;
3345 struct ldb_result *root_res;
3346 unsigned int i;
3347 struct ldb_dn **nc_dns;
3349 tmp_ctx = talloc_new(samdb);
3350 if (tmp_ctx == NULL) {
3351 return ldb_oom(samdb);
3354 ret = ldb_search(samdb, tmp_ctx, &root_res,
3355 ldb_dn_new(tmp_ctx, samdb, ""), LDB_SCOPE_BASE, root_attrs, NULL);
3356 if (ret != LDB_SUCCESS) {
3357 DEBUG(1,("Searching for namingContexts in rootDSE failed: %s\n", ldb_errstring(samdb)));
3358 talloc_free(tmp_ctx);
3359 return ret;
3362 el = ldb_msg_find_element(root_res->msgs[0], "namingContexts");
3363 if ((el == NULL) || (el->num_values < 3)) {
3364 struct ldb_message *tmp_msg;
3366 DEBUG(5,("dsdb_find_nc_root: Finding a valid 'namingContexts' element in the RootDSE failed. Using a temporary list."));
3368 /* This generates a temporary list of NCs in order to let the
3369 * provisioning work. */
3370 tmp_msg = ldb_msg_new(tmp_ctx);
3371 if (tmp_msg == NULL) {
3372 talloc_free(tmp_ctx);
3373 return ldb_oom(samdb);
3375 ret = ldb_msg_add_steal_string(tmp_msg, "namingContexts",
3376 ldb_dn_alloc_linearized(tmp_msg, ldb_get_schema_basedn(samdb)));
3377 if (ret != LDB_SUCCESS) {
3378 talloc_free(tmp_ctx);
3379 return ret;
3381 ret = ldb_msg_add_steal_string(tmp_msg, "namingContexts",
3382 ldb_dn_alloc_linearized(tmp_msg, ldb_get_config_basedn(samdb)));
3383 if (ret != LDB_SUCCESS) {
3384 talloc_free(tmp_ctx);
3385 return ret;
3387 ret = ldb_msg_add_steal_string(tmp_msg, "namingContexts",
3388 ldb_dn_alloc_linearized(tmp_msg, ldb_get_default_basedn(samdb)));
3389 if (ret != LDB_SUCCESS) {
3390 talloc_free(tmp_ctx);
3391 return ret;
3393 el = &tmp_msg->elements[0];
3396 nc_dns = talloc_array(tmp_ctx, struct ldb_dn *, el->num_values);
3397 if (!nc_dns) {
3398 talloc_free(tmp_ctx);
3399 return ldb_oom(samdb);
3402 for (i=0; i<el->num_values; i++) {
3403 nc_dns[i] = ldb_dn_from_ldb_val(nc_dns, samdb, &el->values[i]);
3404 if (nc_dns[i] == NULL) {
3405 talloc_free(tmp_ctx);
3406 return ldb_operr(samdb);
3410 TYPESAFE_QSORT(nc_dns, el->num_values, dsdb_dn_compare_ptrs);
3412 for (i=0; i<el->num_values; i++) {
3413 if (ldb_dn_compare_base(nc_dns[i], dn) == 0) {
3414 (*nc_root) = talloc_steal(mem_ctx, nc_dns[i]);
3415 talloc_free(tmp_ctx);
3416 return LDB_SUCCESS;
3420 talloc_free(tmp_ctx);
3421 return LDB_ERR_NO_SUCH_OBJECT;
3426 find the deleted objects DN for any object, by looking for the NC
3427 root, then looking up the wellknown GUID
3429 int dsdb_get_deleted_objects_dn(struct ldb_context *ldb,
3430 TALLOC_CTX *mem_ctx, struct ldb_dn *obj_dn,
3431 struct ldb_dn **do_dn)
3433 struct ldb_dn *nc_root;
3434 int ret;
3436 ret = dsdb_find_nc_root(ldb, mem_ctx, obj_dn, &nc_root);
3437 if (ret != LDB_SUCCESS) {
3438 return ret;
3441 ret = dsdb_wellknown_dn(ldb, mem_ctx, nc_root, DS_GUID_DELETED_OBJECTS_CONTAINER, do_dn);
3442 talloc_free(nc_root);
3443 return ret;
3447 return the tombstoneLifetime, in days
3449 int dsdb_tombstone_lifetime(struct ldb_context *ldb, uint32_t *lifetime)
3451 struct ldb_dn *dn;
3452 dn = ldb_get_config_basedn(ldb);
3453 if (!dn) {
3454 return LDB_ERR_NO_SUCH_OBJECT;
3456 dn = ldb_dn_copy(ldb, dn);
3457 if (!dn) {
3458 return ldb_operr(ldb);
3460 /* see MS-ADTS section 7.1.1.2.4.1.1. There doesn't appear to
3461 be a wellknown GUID for this */
3462 if (!ldb_dn_add_child_fmt(dn, "CN=Directory Service,CN=Windows NT,CN=Services")) {
3463 talloc_free(dn);
3464 return ldb_operr(ldb);
3467 *lifetime = samdb_search_uint(ldb, dn, 180, dn, "tombstoneLifetime", "objectClass=nTDSService");
3468 talloc_free(dn);
3469 return LDB_SUCCESS;
3473 compare a ldb_val to a string case insensitively
3475 int samdb_ldb_val_case_cmp(const char *s, struct ldb_val *v)
3477 size_t len = strlen(s);
3478 int ret;
3479 if (len > v->length) return 1;
3480 ret = strncasecmp(s, (const char *)v->data, v->length);
3481 if (ret != 0) return ret;
3482 if (v->length > len && v->data[len] != 0) {
3483 return -1;
3485 return 0;
3490 load the UDV for a partition in v2 format
3491 The list is returned sorted, and with our local cursor added
3493 int dsdb_load_udv_v2(struct ldb_context *samdb, struct ldb_dn *dn, TALLOC_CTX *mem_ctx,
3494 struct drsuapi_DsReplicaCursor2 **cursors, uint32_t *count)
3496 static const char *attrs[] = { "replUpToDateVector", NULL };
3497 struct ldb_result *r;
3498 const struct ldb_val *ouv_value;
3499 unsigned int i;
3500 int ret;
3501 uint64_t highest_usn = 0;
3502 const struct GUID *our_invocation_id;
3503 static const struct timeval tv1970;
3504 NTTIME nt1970 = timeval_to_nttime(&tv1970);
3506 ret = ldb_search(samdb, mem_ctx, &r, dn, LDB_SCOPE_BASE, attrs, NULL);
3507 if (ret != LDB_SUCCESS) {
3508 return ret;
3511 ouv_value = ldb_msg_find_ldb_val(r->msgs[0], "replUpToDateVector");
3512 if (ouv_value) {
3513 enum ndr_err_code ndr_err;
3514 struct replUpToDateVectorBlob ouv;
3516 ndr_err = ndr_pull_struct_blob(ouv_value, r, &ouv,
3517 (ndr_pull_flags_fn_t)ndr_pull_replUpToDateVectorBlob);
3518 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
3519 talloc_free(r);
3520 return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
3522 if (ouv.version != 2) {
3523 /* we always store as version 2, and
3524 * replUpToDateVector is not replicated
3526 return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
3529 *count = ouv.ctr.ctr2.count;
3530 *cursors = talloc_steal(mem_ctx, ouv.ctr.ctr2.cursors);
3531 } else {
3532 *count = 0;
3533 *cursors = NULL;
3536 talloc_free(r);
3538 our_invocation_id = samdb_ntds_invocation_id(samdb);
3539 if (!our_invocation_id) {
3540 DEBUG(0,(__location__ ": No invocationID on samdb - %s\n", ldb_errstring(samdb)));
3541 talloc_free(*cursors);
3542 return ldb_operr(samdb);
3545 ret = ldb_sequence_number(samdb, LDB_SEQ_HIGHEST_SEQ, &highest_usn);
3546 if (ret != LDB_SUCCESS) {
3547 /* nothing to add - this can happen after a vampire */
3548 TYPESAFE_QSORT(*cursors, *count, drsuapi_DsReplicaCursor2_compare);
3549 return LDB_SUCCESS;
3552 for (i=0; i<*count; i++) {
3553 if (GUID_equal(our_invocation_id, &(*cursors)[i].source_dsa_invocation_id)) {
3554 (*cursors)[i].highest_usn = highest_usn;
3555 (*cursors)[i].last_sync_success = nt1970;
3556 TYPESAFE_QSORT(*cursors, *count, drsuapi_DsReplicaCursor2_compare);
3557 return LDB_SUCCESS;
3561 (*cursors) = talloc_realloc(mem_ctx, *cursors, struct drsuapi_DsReplicaCursor2, (*count)+1);
3562 if (! *cursors) {
3563 return ldb_oom(samdb);
3566 (*cursors)[*count].source_dsa_invocation_id = *our_invocation_id;
3567 (*cursors)[*count].highest_usn = highest_usn;
3568 (*cursors)[*count].last_sync_success = nt1970;
3569 (*count)++;
3571 TYPESAFE_QSORT(*cursors, *count, drsuapi_DsReplicaCursor2_compare);
3573 return LDB_SUCCESS;
3577 load the UDV for a partition in version 1 format
3578 The list is returned sorted, and with our local cursor added
3580 int dsdb_load_udv_v1(struct ldb_context *samdb, struct ldb_dn *dn, TALLOC_CTX *mem_ctx,
3581 struct drsuapi_DsReplicaCursor **cursors, uint32_t *count)
3583 struct drsuapi_DsReplicaCursor2 *v2;
3584 uint32_t i;
3585 int ret;
3587 ret = dsdb_load_udv_v2(samdb, dn, mem_ctx, &v2, count);
3588 if (ret != LDB_SUCCESS) {
3589 return ret;
3592 if (*count == 0) {
3593 talloc_free(v2);
3594 *cursors = NULL;
3595 return LDB_SUCCESS;
3598 *cursors = talloc_array(mem_ctx, struct drsuapi_DsReplicaCursor, *count);
3599 if (*cursors == NULL) {
3600 talloc_free(v2);
3601 return ldb_oom(samdb);
3604 for (i=0; i<*count; i++) {
3605 (*cursors)[i].source_dsa_invocation_id = v2[i].source_dsa_invocation_id;
3606 (*cursors)[i].highest_usn = v2[i].highest_usn;
3608 talloc_free(v2);
3609 return LDB_SUCCESS;
3613 add a set of controls to a ldb_request structure based on a set of
3614 flags. See util.h for a list of available flags
3616 int dsdb_request_add_controls(struct ldb_request *req, uint32_t dsdb_flags)
3618 int ret;
3619 if (dsdb_flags & DSDB_SEARCH_SEARCH_ALL_PARTITIONS) {
3620 struct ldb_search_options_control *options;
3621 /* Using the phantom root control allows us to search all partitions */
3622 options = talloc(req, struct ldb_search_options_control);
3623 if (options == NULL) {
3624 return LDB_ERR_OPERATIONS_ERROR;
3626 options->search_options = LDB_SEARCH_OPTION_PHANTOM_ROOT;
3628 ret = ldb_request_add_control(req,
3629 LDB_CONTROL_SEARCH_OPTIONS_OID,
3630 true, options);
3631 if (ret != LDB_SUCCESS) {
3632 return ret;
3636 if (dsdb_flags & DSDB_SEARCH_NO_GLOBAL_CATALOG) {
3637 ret = ldb_request_add_control(req,
3638 DSDB_CONTROL_NO_GLOBAL_CATALOG,
3639 false, NULL);
3640 if (ret != LDB_SUCCESS) {
3641 return ret;
3645 if (dsdb_flags & DSDB_SEARCH_SHOW_DELETED) {
3646 ret = ldb_request_add_control(req, LDB_CONTROL_SHOW_DELETED_OID, true, NULL);
3647 if (ret != LDB_SUCCESS) {
3648 return ret;
3652 if (dsdb_flags & DSDB_SEARCH_SHOW_RECYCLED) {
3653 ret = ldb_request_add_control(req, LDB_CONTROL_SHOW_RECYCLED_OID, false, NULL);
3654 if (ret != LDB_SUCCESS) {
3655 return ret;
3659 if (dsdb_flags & DSDB_SEARCH_SHOW_DN_IN_STORAGE_FORMAT) {
3660 ret = ldb_request_add_control(req, DSDB_CONTROL_DN_STORAGE_FORMAT_OID, false, NULL);
3661 if (ret != LDB_SUCCESS) {
3662 return ret;
3666 if (dsdb_flags & DSDB_SEARCH_SHOW_EXTENDED_DN) {
3667 struct ldb_extended_dn_control *extended_ctrl = talloc(req, struct ldb_extended_dn_control);
3668 if (!extended_ctrl) {
3669 return LDB_ERR_OPERATIONS_ERROR;
3671 extended_ctrl->type = 1;
3673 ret = ldb_request_add_control(req, LDB_CONTROL_EXTENDED_DN_OID, true, extended_ctrl);
3674 if (ret != LDB_SUCCESS) {
3675 return ret;
3679 if (dsdb_flags & DSDB_SEARCH_REVEAL_INTERNALS) {
3680 ret = ldb_request_add_control(req, LDB_CONTROL_REVEAL_INTERNALS, false, NULL);
3681 if (ret != LDB_SUCCESS) {
3682 return ret;
3686 if (dsdb_flags & DSDB_MODIFY_RELAX) {
3687 ret = ldb_request_add_control(req, LDB_CONTROL_RELAX_OID, false, NULL);
3688 if (ret != LDB_SUCCESS) {
3689 return ret;
3693 if (dsdb_flags & DSDB_MODIFY_PERMISSIVE) {
3694 ret = ldb_request_add_control(req, LDB_CONTROL_PERMISSIVE_MODIFY_OID, false, NULL);
3695 if (ret != LDB_SUCCESS) {
3696 return ret;
3700 if (dsdb_flags & DSDB_FLAG_AS_SYSTEM) {
3701 ret = ldb_request_add_control(req, LDB_CONTROL_AS_SYSTEM_OID, false, NULL);
3702 if (ret != LDB_SUCCESS) {
3703 return ret;
3707 if (dsdb_flags & DSDB_TREE_DELETE) {
3708 ret = ldb_request_add_control(req, LDB_CONTROL_TREE_DELETE_OID, false, NULL);
3709 if (ret != LDB_SUCCESS) {
3710 return ret;
3714 if (dsdb_flags & DSDB_PROVISION) {
3715 ret = ldb_request_add_control(req, LDB_CONTROL_PROVISION_OID, false, NULL);
3716 if (ret != LDB_SUCCESS) {
3717 return ret;
3721 /* This is a special control to bypass the password_hash module for use in pdb_samba4 for Samba3 upgrades */
3722 if (dsdb_flags & DSDB_BYPASS_PASSWORD_HASH) {
3723 ret = ldb_request_add_control(req, DSDB_CONTROL_BYPASS_PASSWORD_HASH_OID, true, NULL);
3724 if (ret != LDB_SUCCESS) {
3725 return ret;
3729 if (dsdb_flags & DSDB_PASSWORD_BYPASS_LAST_SET) {
3731 * This must not be critical, as it will only be
3732 * handled (and need to be handled) if the other
3733 * attributes in the request bring password_hash into
3734 * action
3736 ret = ldb_request_add_control(req, DSDB_CONTROL_PASSWORD_BYPASS_LAST_SET_OID, false, NULL);
3737 if (ret != LDB_SUCCESS) {
3738 return ret;
3742 if (dsdb_flags & DSDB_MODIFY_PARTIAL_REPLICA) {
3743 ret = ldb_request_add_control(req, DSDB_CONTROL_PARTIAL_REPLICA, false, NULL);
3744 if (ret != LDB_SUCCESS) {
3745 return ret;
3749 return LDB_SUCCESS;
3753 an add with a set of controls
3755 int dsdb_add(struct ldb_context *ldb, const struct ldb_message *message,
3756 uint32_t dsdb_flags)
3758 struct ldb_request *req;
3759 int ret;
3761 ret = ldb_build_add_req(&req, ldb, ldb,
3762 message,
3763 NULL,
3764 NULL,
3765 ldb_op_default_callback,
3766 NULL);
3768 if (ret != LDB_SUCCESS) return ret;
3770 ret = dsdb_request_add_controls(req, dsdb_flags);
3771 if (ret != LDB_SUCCESS) {
3772 talloc_free(req);
3773 return ret;
3776 ret = dsdb_autotransaction_request(ldb, req);
3778 talloc_free(req);
3779 return ret;
3783 a modify with a set of controls
3785 int dsdb_modify(struct ldb_context *ldb, const struct ldb_message *message,
3786 uint32_t dsdb_flags)
3788 struct ldb_request *req;
3789 int ret;
3791 ret = ldb_build_mod_req(&req, ldb, ldb,
3792 message,
3793 NULL,
3794 NULL,
3795 ldb_op_default_callback,
3796 NULL);
3798 if (ret != LDB_SUCCESS) return ret;
3800 ret = dsdb_request_add_controls(req, dsdb_flags);
3801 if (ret != LDB_SUCCESS) {
3802 talloc_free(req);
3803 return ret;
3806 ret = dsdb_autotransaction_request(ldb, req);
3808 talloc_free(req);
3809 return ret;
3813 a delete with a set of flags
3815 int dsdb_delete(struct ldb_context *ldb, struct ldb_dn *dn,
3816 uint32_t dsdb_flags)
3818 struct ldb_request *req;
3819 int ret;
3821 ret = ldb_build_del_req(&req, ldb, ldb,
3823 NULL,
3824 NULL,
3825 ldb_op_default_callback,
3826 NULL);
3828 if (ret != LDB_SUCCESS) return ret;
3830 ret = dsdb_request_add_controls(req, dsdb_flags);
3831 if (ret != LDB_SUCCESS) {
3832 talloc_free(req);
3833 return ret;
3836 ret = dsdb_autotransaction_request(ldb, req);
3838 talloc_free(req);
3839 return ret;
3843 like dsdb_modify() but set all the element flags to
3844 LDB_FLAG_MOD_REPLACE
3846 int dsdb_replace(struct ldb_context *ldb, struct ldb_message *msg, uint32_t dsdb_flags)
3848 unsigned int i;
3850 /* mark all the message elements as LDB_FLAG_MOD_REPLACE */
3851 for (i=0;i<msg->num_elements;i++) {
3852 msg->elements[i].flags = LDB_FLAG_MOD_REPLACE;
3855 return dsdb_modify(ldb, msg, dsdb_flags);
3860 search for attrs on one DN, allowing for dsdb_flags controls
3862 int dsdb_search_dn(struct ldb_context *ldb,
3863 TALLOC_CTX *mem_ctx,
3864 struct ldb_result **_result,
3865 struct ldb_dn *basedn,
3866 const char * const *attrs,
3867 uint32_t dsdb_flags)
3869 int ret;
3870 struct ldb_request *req;
3871 struct ldb_result *res;
3873 res = talloc_zero(mem_ctx, struct ldb_result);
3874 if (!res) {
3875 return ldb_oom(ldb);
3878 ret = ldb_build_search_req(&req, ldb, res,
3879 basedn,
3880 LDB_SCOPE_BASE,
3881 NULL,
3882 attrs,
3883 NULL,
3884 res,
3885 ldb_search_default_callback,
3886 NULL);
3887 if (ret != LDB_SUCCESS) {
3888 talloc_free(res);
3889 return ret;
3892 ret = dsdb_request_add_controls(req, dsdb_flags);
3893 if (ret != LDB_SUCCESS) {
3894 talloc_free(res);
3895 return ret;
3898 ret = ldb_request(ldb, req);
3899 if (ret == LDB_SUCCESS) {
3900 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
3903 talloc_free(req);
3904 if (ret != LDB_SUCCESS) {
3905 talloc_free(res);
3906 return ret;
3909 *_result = res;
3910 return LDB_SUCCESS;
3914 search for attrs on one DN, by the GUID of the DN, allowing for
3915 dsdb_flags controls
3917 int dsdb_search_by_dn_guid(struct ldb_context *ldb,
3918 TALLOC_CTX *mem_ctx,
3919 struct ldb_result **_result,
3920 const struct GUID *guid,
3921 const char * const *attrs,
3922 uint32_t dsdb_flags)
3924 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
3925 struct ldb_dn *dn;
3926 int ret;
3928 dn = ldb_dn_new_fmt(tmp_ctx, ldb, "<GUID=%s>", GUID_string(tmp_ctx, guid));
3929 if (dn == NULL) {
3930 talloc_free(tmp_ctx);
3931 return ldb_oom(ldb);
3934 ret = dsdb_search_dn(ldb, mem_ctx, _result, dn, attrs, dsdb_flags);
3935 talloc_free(tmp_ctx);
3936 return ret;
3940 general search with dsdb_flags for controls
3942 int dsdb_search(struct ldb_context *ldb,
3943 TALLOC_CTX *mem_ctx,
3944 struct ldb_result **_result,
3945 struct ldb_dn *basedn,
3946 enum ldb_scope scope,
3947 const char * const *attrs,
3948 uint32_t dsdb_flags,
3949 const char *exp_fmt, ...) _PRINTF_ATTRIBUTE(8, 9)
3951 int ret;
3952 struct ldb_request *req;
3953 struct ldb_result *res;
3954 va_list ap;
3955 char *expression = NULL;
3956 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
3958 /* cross-partitions searches with a basedn break multi-domain support */
3959 SMB_ASSERT(basedn == NULL || (dsdb_flags & DSDB_SEARCH_SEARCH_ALL_PARTITIONS) == 0);
3961 res = talloc_zero(tmp_ctx, struct ldb_result);
3962 if (!res) {
3963 talloc_free(tmp_ctx);
3964 return ldb_oom(ldb);
3967 if (exp_fmt) {
3968 va_start(ap, exp_fmt);
3969 expression = talloc_vasprintf(tmp_ctx, exp_fmt, ap);
3970 va_end(ap);
3972 if (!expression) {
3973 talloc_free(tmp_ctx);
3974 return ldb_oom(ldb);
3978 ret = ldb_build_search_req(&req, ldb, tmp_ctx,
3979 basedn,
3980 scope,
3981 expression,
3982 attrs,
3983 NULL,
3984 res,
3985 ldb_search_default_callback,
3986 NULL);
3987 if (ret != LDB_SUCCESS) {
3988 talloc_free(tmp_ctx);
3989 return ret;
3992 ret = dsdb_request_add_controls(req, dsdb_flags);
3993 if (ret != LDB_SUCCESS) {
3994 talloc_free(tmp_ctx);
3995 ldb_reset_err_string(ldb);
3996 return ret;
3999 ret = ldb_request(ldb, req);
4000 if (ret == LDB_SUCCESS) {
4001 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
4004 if (ret != LDB_SUCCESS) {
4005 talloc_free(tmp_ctx);
4006 return ret;
4009 if (dsdb_flags & DSDB_SEARCH_ONE_ONLY) {
4010 if (res->count == 0) {
4011 talloc_free(tmp_ctx);
4012 ldb_reset_err_string(ldb);
4013 return LDB_ERR_NO_SUCH_OBJECT;
4015 if (res->count != 1) {
4016 talloc_free(tmp_ctx);
4017 ldb_reset_err_string(ldb);
4018 return LDB_ERR_CONSTRAINT_VIOLATION;
4022 *_result = talloc_steal(mem_ctx, res);
4023 talloc_free(tmp_ctx);
4025 return LDB_SUCCESS;
4030 general search with dsdb_flags for controls
4031 returns exactly 1 record or an error
4033 int dsdb_search_one(struct ldb_context *ldb,
4034 TALLOC_CTX *mem_ctx,
4035 struct ldb_message **msg,
4036 struct ldb_dn *basedn,
4037 enum ldb_scope scope,
4038 const char * const *attrs,
4039 uint32_t dsdb_flags,
4040 const char *exp_fmt, ...) _PRINTF_ATTRIBUTE(8, 9)
4042 int ret;
4043 struct ldb_result *res;
4044 va_list ap;
4045 char *expression = NULL;
4046 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
4048 dsdb_flags |= DSDB_SEARCH_ONE_ONLY;
4050 res = talloc_zero(tmp_ctx, struct ldb_result);
4051 if (!res) {
4052 talloc_free(tmp_ctx);
4053 return ldb_oom(ldb);
4056 if (exp_fmt) {
4057 va_start(ap, exp_fmt);
4058 expression = talloc_vasprintf(tmp_ctx, exp_fmt, ap);
4059 va_end(ap);
4061 if (!expression) {
4062 talloc_free(tmp_ctx);
4063 return ldb_oom(ldb);
4065 ret = dsdb_search(ldb, tmp_ctx, &res, basedn, scope, attrs,
4066 dsdb_flags, "%s", expression);
4067 } else {
4068 ret = dsdb_search(ldb, tmp_ctx, &res, basedn, scope, attrs,
4069 dsdb_flags, NULL);
4072 if (ret != LDB_SUCCESS) {
4073 talloc_free(tmp_ctx);
4074 return ret;
4077 *msg = talloc_steal(mem_ctx, res->msgs[0]);
4078 talloc_free(tmp_ctx);
4080 return LDB_SUCCESS;
4083 /* returns back the forest DNS name */
4084 const char *samdb_forest_name(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
4086 const char *forest_name = ldb_dn_canonical_string(mem_ctx,
4087 ldb_get_root_basedn(ldb));
4088 char *p;
4090 if (forest_name == NULL) {
4091 return NULL;
4094 p = strchr(forest_name, '/');
4095 if (p) {
4096 *p = '\0';
4099 return forest_name;
4102 /* returns back the default domain DNS name */
4103 const char *samdb_default_domain_name(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
4105 const char *domain_name = ldb_dn_canonical_string(mem_ctx,
4106 ldb_get_default_basedn(ldb));
4107 char *p;
4109 if (domain_name == NULL) {
4110 return NULL;
4113 p = strchr(domain_name, '/');
4114 if (p) {
4115 *p = '\0';
4118 return domain_name;
4122 validate that an DSA GUID belongs to the specified user sid.
4123 The user SID must be a domain controller account (either RODC or
4124 RWDC)
4126 int dsdb_validate_dsa_guid(struct ldb_context *ldb,
4127 const struct GUID *dsa_guid,
4128 const struct dom_sid *sid)
4130 /* strategy:
4131 - find DN of record with the DSA GUID in the
4132 configuration partition (objectGUID)
4133 - remove "NTDS Settings" component from DN
4134 - do a base search on that DN for serverReference with
4135 extended-dn enabled
4136 - extract objectSid from resulting serverReference
4137 attribute
4138 - check this sid matches the sid argument
4140 struct ldb_dn *config_dn;
4141 TALLOC_CTX *tmp_ctx = talloc_new(ldb);
4142 struct ldb_message *msg;
4143 const char *attrs1[] = { NULL };
4144 const char *attrs2[] = { "serverReference", NULL };
4145 int ret;
4146 struct ldb_dn *dn, *account_dn;
4147 struct dom_sid sid2;
4148 NTSTATUS status;
4150 config_dn = ldb_get_config_basedn(ldb);
4152 ret = dsdb_search_one(ldb, tmp_ctx, &msg, config_dn, LDB_SCOPE_SUBTREE,
4153 attrs1, 0, "(&(objectGUID=%s)(objectClass=nTDSDSA))", GUID_string(tmp_ctx, dsa_guid));
4154 if (ret != LDB_SUCCESS) {
4155 DEBUG(1,(__location__ ": Failed to find DSA objectGUID %s for sid %s\n",
4156 GUID_string(tmp_ctx, dsa_guid), dom_sid_string(tmp_ctx, sid)));
4157 talloc_free(tmp_ctx);
4158 return ldb_operr(ldb);
4160 dn = msg->dn;
4162 if (!ldb_dn_remove_child_components(dn, 1)) {
4163 talloc_free(tmp_ctx);
4164 return ldb_operr(ldb);
4167 ret = dsdb_search_one(ldb, tmp_ctx, &msg, dn, LDB_SCOPE_BASE,
4168 attrs2, DSDB_SEARCH_SHOW_EXTENDED_DN,
4169 "(objectClass=server)");
4170 if (ret != LDB_SUCCESS) {
4171 DEBUG(1,(__location__ ": Failed to find server record for DSA with objectGUID %s, sid %s\n",
4172 GUID_string(tmp_ctx, dsa_guid), dom_sid_string(tmp_ctx, sid)));
4173 talloc_free(tmp_ctx);
4174 return ldb_operr(ldb);
4177 account_dn = ldb_msg_find_attr_as_dn(ldb, tmp_ctx, msg, "serverReference");
4178 if (account_dn == NULL) {
4179 DEBUG(1,(__location__ ": Failed to find account_dn for DSA with objectGUID %s, sid %s\n",
4180 GUID_string(tmp_ctx, dsa_guid), dom_sid_string(tmp_ctx, sid)));
4181 talloc_free(tmp_ctx);
4182 return ldb_operr(ldb);
4185 status = dsdb_get_extended_dn_sid(account_dn, &sid2, "SID");
4186 if (!NT_STATUS_IS_OK(status)) {
4187 DEBUG(1,(__location__ ": Failed to find SID for DSA with objectGUID %s, sid %s\n",
4188 GUID_string(tmp_ctx, dsa_guid), dom_sid_string(tmp_ctx, sid)));
4189 talloc_free(tmp_ctx);
4190 return ldb_operr(ldb);
4193 if (!dom_sid_equal(sid, &sid2)) {
4194 /* someone is trying to spoof another account */
4195 DEBUG(0,(__location__ ": Bad DSA objectGUID %s for sid %s - expected sid %s\n",
4196 GUID_string(tmp_ctx, dsa_guid),
4197 dom_sid_string(tmp_ctx, sid),
4198 dom_sid_string(tmp_ctx, &sid2)));
4199 talloc_free(tmp_ctx);
4200 return ldb_operr(ldb);
4203 talloc_free(tmp_ctx);
4204 return LDB_SUCCESS;
4207 static const char * const secret_attributes[] = {
4208 DSDB_SECRET_ATTRIBUTES,
4209 NULL
4213 check if the attribute belongs to the RODC filtered attribute set
4214 Note that attributes that are in the filtered attribute set are the
4215 ones that _are_ always sent to a RODC
4217 bool dsdb_attr_in_rodc_fas(const struct dsdb_attribute *sa)
4219 /* they never get secret attributes */
4220 if (is_attr_in_list(secret_attributes, sa->lDAPDisplayName)) {
4221 return false;
4224 /* they do get non-secret critical attributes */
4225 if (sa->schemaFlagsEx & SCHEMA_FLAG_ATTR_IS_CRITICAL) {
4226 return true;
4229 /* they do get non-secret attributes marked as being in the FAS */
4230 if (sa->searchFlags & SEARCH_FLAG_RODC_ATTRIBUTE) {
4231 return true;
4234 /* other attributes are denied */
4235 return false;
4238 /* return fsmo role dn and role owner dn for a particular role*/
4239 WERROR dsdb_get_fsmo_role_info(TALLOC_CTX *tmp_ctx,
4240 struct ldb_context *ldb,
4241 uint32_t role,
4242 struct ldb_dn **fsmo_role_dn,
4243 struct ldb_dn **role_owner_dn)
4245 int ret;
4246 switch (role) {
4247 case DREPL_NAMING_MASTER:
4248 *fsmo_role_dn = samdb_partitions_dn(ldb, tmp_ctx);
4249 ret = samdb_reference_dn(ldb, tmp_ctx, *fsmo_role_dn, "fSMORoleOwner", role_owner_dn);
4250 if (ret != LDB_SUCCESS) {
4251 DEBUG(0,(__location__ ": Failed to find fSMORoleOwner in Naming Master object - %s",
4252 ldb_errstring(ldb)));
4253 talloc_free(tmp_ctx);
4254 return WERR_DS_DRA_INTERNAL_ERROR;
4256 break;
4257 case DREPL_INFRASTRUCTURE_MASTER:
4258 *fsmo_role_dn = samdb_infrastructure_dn(ldb, tmp_ctx);
4259 ret = samdb_reference_dn(ldb, tmp_ctx, *fsmo_role_dn, "fSMORoleOwner", role_owner_dn);
4260 if (ret != LDB_SUCCESS) {
4261 DEBUG(0,(__location__ ": Failed to find fSMORoleOwner in Schema Master object - %s",
4262 ldb_errstring(ldb)));
4263 talloc_free(tmp_ctx);
4264 return WERR_DS_DRA_INTERNAL_ERROR;
4266 break;
4267 case DREPL_RID_MASTER:
4268 ret = samdb_rid_manager_dn(ldb, tmp_ctx, fsmo_role_dn);
4269 if (ret != LDB_SUCCESS) {
4270 DEBUG(0, (__location__ ": Failed to find RID Manager object - %s", ldb_errstring(ldb)));
4271 talloc_free(tmp_ctx);
4272 return WERR_DS_DRA_INTERNAL_ERROR;
4275 ret = samdb_reference_dn(ldb, tmp_ctx, *fsmo_role_dn, "fSMORoleOwner", role_owner_dn);
4276 if (ret != LDB_SUCCESS) {
4277 DEBUG(0,(__location__ ": Failed to find fSMORoleOwner in RID Manager object - %s",
4278 ldb_errstring(ldb)));
4279 talloc_free(tmp_ctx);
4280 return WERR_DS_DRA_INTERNAL_ERROR;
4282 break;
4283 case DREPL_SCHEMA_MASTER:
4284 *fsmo_role_dn = ldb_get_schema_basedn(ldb);
4285 ret = samdb_reference_dn(ldb, tmp_ctx, *fsmo_role_dn, "fSMORoleOwner", role_owner_dn);
4286 if (ret != LDB_SUCCESS) {
4287 DEBUG(0,(__location__ ": Failed to find fSMORoleOwner in Schema Master object - %s",
4288 ldb_errstring(ldb)));
4289 talloc_free(tmp_ctx);
4290 return WERR_DS_DRA_INTERNAL_ERROR;
4292 break;
4293 case DREPL_PDC_MASTER:
4294 *fsmo_role_dn = ldb_get_default_basedn(ldb);
4295 ret = samdb_reference_dn(ldb, tmp_ctx, *fsmo_role_dn, "fSMORoleOwner", role_owner_dn);
4296 if (ret != LDB_SUCCESS) {
4297 DEBUG(0,(__location__ ": Failed to find fSMORoleOwner in Pd Master object - %s",
4298 ldb_errstring(ldb)));
4299 talloc_free(tmp_ctx);
4300 return WERR_DS_DRA_INTERNAL_ERROR;
4302 break;
4303 default:
4304 return WERR_DS_DRA_INTERNAL_ERROR;
4306 return WERR_OK;
4309 const char *samdb_dn_to_dnshostname(struct ldb_context *ldb,
4310 TALLOC_CTX *mem_ctx,
4311 struct ldb_dn *server_dn)
4313 int ldb_ret;
4314 struct ldb_result *res = NULL;
4315 const char * const attrs[] = { "dNSHostName", NULL};
4317 ldb_ret = ldb_search(ldb, mem_ctx, &res,
4318 server_dn,
4319 LDB_SCOPE_BASE,
4320 attrs, NULL);
4321 if (ldb_ret != LDB_SUCCESS) {
4322 DEBUG(4, ("Failed to find dNSHostName for dn %s, ldb error: %s",
4323 ldb_dn_get_linearized(server_dn), ldb_errstring(ldb)));
4324 return NULL;
4327 return ldb_msg_find_attr_as_string(res->msgs[0], "dNSHostName", NULL);
4331 returns true if an attribute is in the filter,
4332 false otherwise, provided that attribute value is provided with the expression
4334 bool dsdb_attr_in_parse_tree(struct ldb_parse_tree *tree,
4335 const char *attr)
4337 unsigned int i;
4338 switch (tree->operation) {
4339 case LDB_OP_AND:
4340 case LDB_OP_OR:
4341 for (i=0;i<tree->u.list.num_elements;i++) {
4342 if (dsdb_attr_in_parse_tree(tree->u.list.elements[i],
4343 attr))
4344 return true;
4346 return false;
4347 case LDB_OP_NOT:
4348 return dsdb_attr_in_parse_tree(tree->u.isnot.child, attr);
4349 case LDB_OP_EQUALITY:
4350 case LDB_OP_GREATER:
4351 case LDB_OP_LESS:
4352 case LDB_OP_APPROX:
4353 if (ldb_attr_cmp(tree->u.equality.attr, attr) == 0) {
4354 return true;
4356 return false;
4357 case LDB_OP_SUBSTRING:
4358 if (ldb_attr_cmp(tree->u.substring.attr, attr) == 0) {
4359 return true;
4361 return false;
4362 case LDB_OP_PRESENT:
4363 /* (attrname=*) is not filtered out */
4364 return false;
4365 case LDB_OP_EXTENDED:
4366 if (tree->u.extended.attr &&
4367 ldb_attr_cmp(tree->u.extended.attr, attr) == 0) {
4368 return true;
4370 return false;
4372 return false;
4375 bool is_attr_in_list(const char * const * attrs, const char *attr)
4377 unsigned int i;
4379 for (i = 0; attrs[i]; i++) {
4380 if (ldb_attr_cmp(attrs[i], attr) == 0)
4381 return true;
4384 return false;
4389 map an ldb error code to an approximate NTSTATUS code
4391 NTSTATUS dsdb_ldb_err_to_ntstatus(int err)
4393 switch (err) {
4394 case LDB_SUCCESS:
4395 return NT_STATUS_OK;
4397 case LDB_ERR_PROTOCOL_ERROR:
4398 return NT_STATUS_DEVICE_PROTOCOL_ERROR;
4400 case LDB_ERR_TIME_LIMIT_EXCEEDED:
4401 return NT_STATUS_IO_TIMEOUT;
4403 case LDB_ERR_SIZE_LIMIT_EXCEEDED:
4404 return NT_STATUS_BUFFER_TOO_SMALL;
4406 case LDB_ERR_COMPARE_FALSE:
4407 case LDB_ERR_COMPARE_TRUE:
4408 return NT_STATUS_REVISION_MISMATCH;
4410 case LDB_ERR_AUTH_METHOD_NOT_SUPPORTED:
4411 return NT_STATUS_NOT_SUPPORTED;
4413 case LDB_ERR_STRONG_AUTH_REQUIRED:
4414 case LDB_ERR_CONFIDENTIALITY_REQUIRED:
4415 case LDB_ERR_SASL_BIND_IN_PROGRESS:
4416 case LDB_ERR_INAPPROPRIATE_AUTHENTICATION:
4417 case LDB_ERR_INVALID_CREDENTIALS:
4418 case LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS:
4419 case LDB_ERR_UNWILLING_TO_PERFORM:
4420 return NT_STATUS_ACCESS_DENIED;
4422 case LDB_ERR_NO_SUCH_OBJECT:
4423 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
4425 case LDB_ERR_REFERRAL:
4426 case LDB_ERR_NO_SUCH_ATTRIBUTE:
4427 return NT_STATUS_NOT_FOUND;
4429 case LDB_ERR_UNSUPPORTED_CRITICAL_EXTENSION:
4430 return NT_STATUS_NOT_SUPPORTED;
4432 case LDB_ERR_ADMIN_LIMIT_EXCEEDED:
4433 return NT_STATUS_BUFFER_TOO_SMALL;
4435 case LDB_ERR_UNDEFINED_ATTRIBUTE_TYPE:
4436 case LDB_ERR_INAPPROPRIATE_MATCHING:
4437 case LDB_ERR_CONSTRAINT_VIOLATION:
4438 case LDB_ERR_INVALID_ATTRIBUTE_SYNTAX:
4439 case LDB_ERR_INVALID_DN_SYNTAX:
4440 case LDB_ERR_NAMING_VIOLATION:
4441 case LDB_ERR_OBJECT_CLASS_VIOLATION:
4442 case LDB_ERR_NOT_ALLOWED_ON_NON_LEAF:
4443 case LDB_ERR_NOT_ALLOWED_ON_RDN:
4444 return NT_STATUS_INVALID_PARAMETER;
4446 case LDB_ERR_ATTRIBUTE_OR_VALUE_EXISTS:
4447 case LDB_ERR_ENTRY_ALREADY_EXISTS:
4448 return NT_STATUS_ERROR_DS_OBJ_STRING_NAME_EXISTS;
4450 case LDB_ERR_BUSY:
4451 return NT_STATUS_NETWORK_BUSY;
4453 case LDB_ERR_ALIAS_PROBLEM:
4454 case LDB_ERR_ALIAS_DEREFERENCING_PROBLEM:
4455 case LDB_ERR_UNAVAILABLE:
4456 case LDB_ERR_LOOP_DETECT:
4457 case LDB_ERR_OBJECT_CLASS_MODS_PROHIBITED:
4458 case LDB_ERR_AFFECTS_MULTIPLE_DSAS:
4459 case LDB_ERR_OTHER:
4460 case LDB_ERR_OPERATIONS_ERROR:
4461 break;
4463 return NT_STATUS_UNSUCCESSFUL;
4468 create a new naming context that will hold a partial replica
4470 int dsdb_create_partial_replica_NC(struct ldb_context *ldb, struct ldb_dn *dn)
4472 TALLOC_CTX *tmp_ctx = talloc_new(ldb);
4473 struct ldb_message *msg;
4474 int ret;
4476 msg = ldb_msg_new(tmp_ctx);
4477 if (msg == NULL) {
4478 talloc_free(tmp_ctx);
4479 return ldb_oom(ldb);
4482 msg->dn = dn;
4483 ret = ldb_msg_add_string(msg, "objectClass", "top");
4484 if (ret != LDB_SUCCESS) {
4485 talloc_free(tmp_ctx);
4486 return ldb_oom(ldb);
4489 /* [MS-DRSR] implies that we should only add the 'top'
4490 * objectclass, but that would cause lots of problems with our
4491 * objectclass code as top is not structural, so we add
4492 * 'domainDNS' as well to keep things sane. We're expecting
4493 * this new NC to be of objectclass domainDNS after
4494 * replication anyway
4496 ret = ldb_msg_add_string(msg, "objectClass", "domainDNS");
4497 if (ret != LDB_SUCCESS) {
4498 talloc_free(tmp_ctx);
4499 return ldb_oom(ldb);
4502 ret = ldb_msg_add_fmt(msg, "instanceType", "%u",
4503 INSTANCE_TYPE_IS_NC_HEAD|
4504 INSTANCE_TYPE_NC_ABOVE|
4505 INSTANCE_TYPE_UNINSTANT);
4506 if (ret != LDB_SUCCESS) {
4507 talloc_free(tmp_ctx);
4508 return ldb_oom(ldb);
4511 ret = dsdb_add(ldb, msg, DSDB_MODIFY_PARTIAL_REPLICA);
4512 if (ret != LDB_SUCCESS && ret != LDB_ERR_ENTRY_ALREADY_EXISTS) {
4513 DEBUG(0,("Failed to create new NC for %s - %s (%s)\n",
4514 ldb_dn_get_linearized(dn),
4515 ldb_errstring(ldb), ldb_strerror(ret)));
4516 talloc_free(tmp_ctx);
4517 return ret;
4520 DEBUG(1,("Created new NC for %s\n", ldb_dn_get_linearized(dn)));
4522 talloc_free(tmp_ctx);
4523 return LDB_SUCCESS;
4527 build a GUID from a string
4529 _PUBLIC_ NTSTATUS NS_GUID_from_string(const char *s, struct GUID *guid)
4531 NTSTATUS status = NT_STATUS_INVALID_PARAMETER;
4532 uint32_t time_low;
4533 uint32_t time_mid, time_hi_and_version;
4534 uint32_t clock_seq[2];
4535 uint32_t node[6];
4536 int i;
4538 if (s == NULL) {
4539 return NT_STATUS_INVALID_PARAMETER;
4542 if (11 == sscanf(s, "%08x-%04x%04x-%02x%02x%02x%02x-%02x%02x%02x%02x",
4543 &time_low, &time_mid, &time_hi_and_version,
4544 &clock_seq[0], &clock_seq[1],
4545 &node[0], &node[1], &node[2], &node[3], &node[4], &node[5])) {
4546 status = NT_STATUS_OK;
4549 if (!NT_STATUS_IS_OK(status)) {
4550 return status;
4553 guid->time_low = time_low;
4554 guid->time_mid = time_mid;
4555 guid->time_hi_and_version = time_hi_and_version;
4556 guid->clock_seq[0] = clock_seq[0];
4557 guid->clock_seq[1] = clock_seq[1];
4558 for (i=0;i<6;i++) {
4559 guid->node[i] = node[i];
4562 return NT_STATUS_OK;
4565 _PUBLIC_ char *NS_GUID_string(TALLOC_CTX *mem_ctx, const struct GUID *guid)
4567 return talloc_asprintf(mem_ctx,
4568 "%08x-%04x%04x-%02x%02x%02x%02x-%02x%02x%02x%02x",
4569 guid->time_low, guid->time_mid,
4570 guid->time_hi_and_version,
4571 guid->clock_seq[0],
4572 guid->clock_seq[1],
4573 guid->node[0], guid->node[1],
4574 guid->node[2], guid->node[3],
4575 guid->node[4], guid->node[5]);