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/>.
25 #include "events/events.h"
27 #include "ldb_errors.h"
28 #include "../lib/util/util_ldb.h"
29 #include "../lib/crypto/crypto.h"
30 #include "dsdb/samdb/samdb.h"
31 #include "libcli/security/security.h"
32 #include "librpc/gen_ndr/ndr_security.h"
33 #include "librpc/gen_ndr/ndr_misc.h"
34 #include "../libds/common/flags.h"
35 #include "dsdb/common/proto.h"
36 #include "libcli/ldap/ldap_ndr.h"
37 #include "param/param.h"
38 #include "libcli/auth/libcli_auth.h"
39 #include "librpc/gen_ndr/ndr_drsblobs.h"
40 #include "system/locale.h"
43 search the sam for the specified attributes in a specific domain, filter on
44 objectSid being in domain_sid.
46 int samdb_search_domain(struct ldb_context *sam_ldb,
48 struct ldb_dn *basedn,
49 struct ldb_message ***res,
50 const char * const *attrs,
51 const struct dom_sid *domain_sid,
52 const char *format, ...) _PRINTF_ATTRIBUTE(7,8)
58 count = gendb_search_v(sam_ldb, mem_ctx, basedn,
59 res, attrs, format, ap);
65 struct dom_sid *entry_sid;
67 entry_sid = samdb_result_dom_sid(mem_ctx, (*res)[i], "objectSid");
69 if ((entry_sid == NULL) ||
70 (!dom_sid_in_domain(domain_sid, entry_sid))) {
71 /* Delete that entry from the result set */
72 (*res)[i] = (*res)[count-1];
74 talloc_free(entry_sid);
77 talloc_free(entry_sid);
85 search the sam for a single string attribute in exactly 1 record
87 const char *samdb_search_string_v(struct ldb_context *sam_ldb,
89 struct ldb_dn *basedn,
90 const char *attr_name,
91 const char *format, va_list ap) _PRINTF_ATTRIBUTE(5,0)
94 const char *attrs[2] = { NULL, NULL };
95 struct ldb_message **res = NULL;
99 count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
101 DEBUG(1,("samdb: search for %s %s not single valued (count=%d)\n",
102 attr_name, format, count));
109 return samdb_result_string(res[0], attr_name, NULL);
113 search the sam for a single string attribute in exactly 1 record
115 const char *samdb_search_string(struct ldb_context *sam_ldb,
117 struct ldb_dn *basedn,
118 const char *attr_name,
119 const char *format, ...) _PRINTF_ATTRIBUTE(5,6)
124 va_start(ap, format);
125 str = samdb_search_string_v(sam_ldb, mem_ctx, basedn, attr_name, format, ap);
131 struct ldb_dn *samdb_search_dn(struct ldb_context *sam_ldb,
133 struct ldb_dn *basedn,
134 const char *format, ...) _PRINTF_ATTRIBUTE(4,5)
138 struct ldb_message **res = NULL;
141 va_start(ap, format);
142 count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, NULL, format, ap);
145 if (count != 1) return NULL;
147 ret = talloc_steal(mem_ctx, res[0]->dn);
154 search the sam for a dom_sid attribute in exactly 1 record
156 struct dom_sid *samdb_search_dom_sid(struct ldb_context *sam_ldb,
158 struct ldb_dn *basedn,
159 const char *attr_name,
160 const char *format, ...) _PRINTF_ATTRIBUTE(5,6)
164 struct ldb_message **res;
165 const char *attrs[2] = { NULL, NULL };
168 attrs[0] = attr_name;
170 va_start(ap, format);
171 count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
174 DEBUG(1,("samdb: search for %s %s not single valued (count=%d)\n",
175 attr_name, format, count));
181 sid = samdb_result_dom_sid(mem_ctx, res[0], attr_name);
187 return the count of the number of records in the sam matching the query
189 int samdb_search_count(struct ldb_context *sam_ldb,
190 struct ldb_dn *basedn,
191 const char *format, ...) _PRINTF_ATTRIBUTE(3,4)
194 struct ldb_message **res;
195 const char *attrs[] = { NULL };
197 TALLOC_CTX *tmp_ctx = talloc_new(sam_ldb);
199 va_start(ap, format);
200 ret = gendb_search_v(sam_ldb, tmp_ctx, basedn, &res, attrs, format, ap);
202 talloc_free(tmp_ctx);
209 search the sam for a single integer attribute in exactly 1 record
211 uint_t samdb_search_uint(struct ldb_context *sam_ldb,
213 uint_t default_value,
214 struct ldb_dn *basedn,
215 const char *attr_name,
216 const char *format, ...) _PRINTF_ATTRIBUTE(6,7)
220 struct ldb_message **res;
221 const char *attrs[2] = { NULL, NULL };
223 attrs[0] = attr_name;
225 va_start(ap, format);
226 count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
230 return default_value;
233 return samdb_result_uint(res[0], attr_name, default_value);
237 search the sam for a single signed 64 bit integer attribute in exactly 1 record
239 int64_t samdb_search_int64(struct ldb_context *sam_ldb,
241 int64_t default_value,
242 struct ldb_dn *basedn,
243 const char *attr_name,
244 const char *format, ...) _PRINTF_ATTRIBUTE(6,7)
248 struct ldb_message **res;
249 const char *attrs[2] = { NULL, NULL };
251 attrs[0] = attr_name;
253 va_start(ap, format);
254 count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
258 return default_value;
261 return samdb_result_int64(res[0], attr_name, default_value);
265 search the sam for multipe records each giving a single string attribute
266 return the number of matches, or -1 on error
268 int samdb_search_string_multiple(struct ldb_context *sam_ldb,
270 struct ldb_dn *basedn,
272 const char *attr_name,
273 const char *format, ...) _PRINTF_ATTRIBUTE(6,7)
277 const char *attrs[2] = { NULL, NULL };
278 struct ldb_message **res = NULL;
280 attrs[0] = attr_name;
282 va_start(ap, format);
283 count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
290 /* make sure its single valued */
291 for (i=0;i<count;i++) {
292 if (res[i]->num_elements != 1) {
293 DEBUG(1,("samdb: search for %s %s not single valued\n",
300 *strs = talloc_array(mem_ctx, const char *, count+1);
306 for (i=0;i<count;i++) {
307 (*strs)[i] = samdb_result_string(res[i], attr_name, NULL);
309 (*strs)[count] = NULL;
315 pull a uint from a result set.
317 uint_t samdb_result_uint(const struct ldb_message *msg, const char *attr, uint_t default_value)
319 return ldb_msg_find_attr_as_uint(msg, attr, default_value);
323 pull a (signed) int64 from a result set.
325 int64_t samdb_result_int64(const struct ldb_message *msg, const char *attr, int64_t default_value)
327 return ldb_msg_find_attr_as_int64(msg, attr, default_value);
331 pull a string from a result set.
333 const char *samdb_result_string(const struct ldb_message *msg, const char *attr,
334 const char *default_value)
336 return ldb_msg_find_attr_as_string(msg, attr, default_value);
339 struct ldb_dn *samdb_result_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
340 const char *attr, struct ldb_dn *default_value)
342 struct ldb_dn *ret_dn = ldb_msg_find_attr_as_dn(ldb, mem_ctx, msg, attr);
344 return default_value;
350 pull a rid from a objectSid in a result set.
352 uint32_t samdb_result_rid_from_sid(TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
353 const char *attr, uint32_t default_value)
358 sid = samdb_result_dom_sid(mem_ctx, msg, attr);
360 return default_value;
362 rid = sid->sub_auths[sid->num_auths-1];
368 pull a dom_sid structure from a objectSid in a result set.
370 struct dom_sid *samdb_result_dom_sid(TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
373 const struct ldb_val *v;
375 enum ndr_err_code ndr_err;
376 v = ldb_msg_find_ldb_val(msg, attr);
380 sid = talloc(mem_ctx, struct dom_sid);
384 ndr_err = ndr_pull_struct_blob(v, sid, NULL, sid,
385 (ndr_pull_flags_fn_t)ndr_pull_dom_sid);
386 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
394 pull a guid structure from a objectGUID in a result set.
396 struct GUID samdb_result_guid(const struct ldb_message *msg, const char *attr)
398 const struct ldb_val *v;
402 v = ldb_msg_find_ldb_val(msg, attr);
403 if (!v) return GUID_zero();
405 status = GUID_from_ndr_blob(v, &guid);
406 if (!NT_STATUS_IS_OK(status)) {
414 pull a sid prefix from a objectSid in a result set.
415 this is used to find the domain sid for a user
417 struct dom_sid *samdb_result_sid_prefix(TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
420 struct dom_sid *sid = samdb_result_dom_sid(mem_ctx, msg, attr);
421 if (!sid || sid->num_auths < 1) return NULL;
427 pull a NTTIME in a result set.
429 NTTIME samdb_result_nttime(const struct ldb_message *msg, const char *attr,
430 NTTIME default_value)
432 return ldb_msg_find_attr_as_uint64(msg, attr, default_value);
436 * Windows stores 0 for lastLogoff.
437 * But when a MS DC return the lastLogoff (as Logoff Time)
438 * it returns 0x7FFFFFFFFFFFFFFF, not returning this value in this case
439 * cause windows 2008 and newer version to fail for SMB requests
441 NTTIME samdb_result_last_logoff(const struct ldb_message *msg)
443 NTTIME ret = ldb_msg_find_attr_as_uint64(msg, "lastLogoff",0);
446 ret = 0x7FFFFFFFFFFFFFFFULL;
452 * Windows uses both 0 and 9223372036854775807 (0x7FFFFFFFFFFFFFFFULL) to
453 * indicate an account doesn't expire.
455 * When Windows initially creates an account, it sets
456 * accountExpires = 9223372036854775807 (0x7FFFFFFFFFFFFFFF). However,
457 * when changing from an account having a specific expiration date to
458 * that account never expiring, it sets accountExpires = 0.
460 * Consolidate that logic here to allow clearer logic for account expiry in
461 * the rest of the code.
463 NTTIME samdb_result_account_expires(const struct ldb_message *msg)
465 NTTIME ret = ldb_msg_find_attr_as_uint64(msg, "accountExpires",
469 ret = 0x7FFFFFFFFFFFFFFFULL;
475 pull a uint64_t from a result set.
477 uint64_t samdb_result_uint64(const struct ldb_message *msg, const char *attr,
478 uint64_t default_value)
480 return ldb_msg_find_attr_as_uint64(msg, attr, default_value);
485 construct the allow_password_change field from the PwdLastSet attribute and the
486 domain password settings
488 NTTIME samdb_result_allow_password_change(struct ldb_context *sam_ldb,
490 struct ldb_dn *domain_dn,
491 struct ldb_message *msg,
494 uint64_t attr_time = samdb_result_uint64(msg, attr, 0);
497 if (attr_time == 0) {
501 minPwdAge = samdb_search_int64(sam_ldb, mem_ctx, 0, domain_dn, "minPwdAge", NULL);
503 /* yes, this is a -= not a += as minPwdAge is stored as the negative
504 of the number of 100-nano-seconds */
505 attr_time -= minPwdAge;
511 construct the force_password_change field from the PwdLastSet
512 attribute, the userAccountControl and the domain password settings
514 NTTIME samdb_result_force_password_change(struct ldb_context *sam_ldb,
516 struct ldb_dn *domain_dn,
517 struct ldb_message *msg)
519 uint64_t attr_time = samdb_result_uint64(msg, "pwdLastSet", 0);
520 uint32_t userAccountControl = samdb_result_uint64(msg, "userAccountControl", 0);
523 /* Machine accounts don't expire, and there is a flag for 'no expiry' */
524 if (!(userAccountControl & UF_NORMAL_ACCOUNT)
525 || (userAccountControl & UF_DONT_EXPIRE_PASSWD)) {
526 return 0x7FFFFFFFFFFFFFFFULL;
529 if (attr_time == 0) {
533 maxPwdAge = samdb_search_int64(sam_ldb, mem_ctx, 0, domain_dn, "maxPwdAge", NULL);
534 if (maxPwdAge == 0) {
535 return 0x7FFFFFFFFFFFFFFFULL;
537 attr_time -= maxPwdAge;
544 pull a samr_Password structutre from a result set.
546 struct samr_Password *samdb_result_hash(TALLOC_CTX *mem_ctx, const struct ldb_message *msg, const char *attr)
548 struct samr_Password *hash = NULL;
549 const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
550 if (val && (val->length >= sizeof(hash->hash))) {
551 hash = talloc(mem_ctx, struct samr_Password);
552 memcpy(hash->hash, val->data, MIN(val->length, sizeof(hash->hash)));
558 pull an array of samr_Password structutres from a result set.
560 uint_t samdb_result_hashes(TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
561 const char *attr, struct samr_Password **hashes)
564 const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
570 count = val->length / 16;
575 *hashes = talloc_array(mem_ctx, struct samr_Password, count);
580 for (i=0;i<count;i++) {
581 memcpy((*hashes)[i].hash, (i*16)+(char *)val->data, 16);
587 NTSTATUS samdb_result_passwords(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx, struct ldb_message *msg,
588 struct samr_Password **lm_pwd, struct samr_Password **nt_pwd)
590 struct samr_Password *lmPwdHash, *ntPwdHash;
593 num_nt = samdb_result_hashes(mem_ctx, msg, "unicodePwd", &ntPwdHash);
596 } else if (num_nt > 1) {
597 return NT_STATUS_INTERNAL_DB_CORRUPTION;
599 *nt_pwd = &ntPwdHash[0];
603 /* Ensure that if we have turned off LM
604 * authentication, that we never use the LM hash, even
606 if (lp_lanman_auth(lp_ctx)) {
608 num_lm = samdb_result_hashes(mem_ctx, msg, "dBCSPwd", &lmPwdHash);
611 } else if (num_lm > 1) {
612 return NT_STATUS_INTERNAL_DB_CORRUPTION;
614 *lm_pwd = &lmPwdHash[0];
624 pull a samr_LogonHours structutre from a result set.
626 struct samr_LogonHours samdb_result_logon_hours(TALLOC_CTX *mem_ctx, struct ldb_message *msg, const char *attr)
628 struct samr_LogonHours hours;
629 const int units_per_week = 168;
630 const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
632 hours.bits = talloc_array(mem_ctx, uint8_t, units_per_week);
636 hours.units_per_week = units_per_week;
637 memset(hours.bits, 0xFF, units_per_week);
639 memcpy(hours.bits, val->data, MIN(val->length, units_per_week));
645 pull a set of account_flags from a result set.
647 This requires that the attributes:
652 uint32_t samdb_result_acct_flags(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx,
653 struct ldb_message *msg, struct ldb_dn *domain_dn)
655 uint32_t userAccountControl = ldb_msg_find_attr_as_uint(msg, "userAccountControl", 0);
656 uint32_t acct_flags = ds_uf2acb(userAccountControl);
657 NTTIME must_change_time;
660 must_change_time = samdb_result_force_password_change(sam_ctx, mem_ctx,
663 /* Test account expire time */
664 unix_to_nt_time(&now, time(NULL));
665 /* check for expired password */
666 if (must_change_time < now) {
667 acct_flags |= ACB_PW_EXPIRED;
672 struct lsa_BinaryString samdb_result_parameters(TALLOC_CTX *mem_ctx,
673 struct ldb_message *msg,
676 struct lsa_BinaryString s;
677 const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
685 s.array = talloc_array(mem_ctx, uint16_t, val->length/2);
689 s.length = s.size = val->length/2;
690 memcpy(s.array, val->data, val->length);
695 /* Find an attribute, with a particular value */
697 /* The current callers of this function expect a very specific
698 * behaviour: In particular, objectClass subclass equivilance is not
699 * wanted. This means that we should not lookup the schema for the
700 * comparison function */
701 struct ldb_message_element *samdb_find_attribute(struct ldb_context *ldb,
702 const struct ldb_message *msg,
703 const char *name, const char *value)
706 struct ldb_message_element *el = ldb_msg_find_element(msg, name);
712 for (i=0;i<el->num_values;i++) {
713 if (ldb_attr_cmp(value, (char *)el->values[i].data) == 0) {
721 int samdb_find_or_add_value(struct ldb_context *ldb, struct ldb_message *msg, const char *name, const char *set_value)
723 if (samdb_find_attribute(ldb, msg, name, set_value) == NULL) {
724 return samdb_msg_add_string(ldb, msg, msg, name, set_value);
729 int samdb_find_or_add_attribute(struct ldb_context *ldb, struct ldb_message *msg, const char *name, const char *set_value)
731 struct ldb_message_element *el;
733 el = ldb_msg_find_element(msg, name);
738 return samdb_msg_add_string(ldb, msg, msg, name, set_value);
744 add a string element to a message
746 int samdb_msg_add_string(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
747 const char *attr_name, const char *str)
749 char *s = talloc_strdup(mem_ctx, str);
750 char *a = talloc_strdup(mem_ctx, attr_name);
751 if (s == NULL || a == NULL) {
752 return LDB_ERR_OPERATIONS_ERROR;
754 return ldb_msg_add_string(msg, a, s);
758 add a dom_sid element to a message
760 int samdb_msg_add_dom_sid(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
761 const char *attr_name, struct dom_sid *sid)
764 enum ndr_err_code ndr_err;
766 ndr_err = ndr_push_struct_blob(&v, mem_ctx,
767 lp_iconv_convenience(ldb_get_opaque(sam_ldb, "loadparm")),
769 (ndr_push_flags_fn_t)ndr_push_dom_sid);
770 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
773 return ldb_msg_add_value(msg, attr_name, &v, NULL);
778 add a delete element operation to a message
780 int samdb_msg_add_delete(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
781 const char *attr_name)
783 /* we use an empty replace rather than a delete, as it allows for
784 samdb_replace() to be used everywhere */
785 return ldb_msg_add_empty(msg, attr_name, LDB_FLAG_MOD_REPLACE, NULL);
789 add a add attribute value to a message
791 int samdb_msg_add_addval(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
792 const char *attr_name, const char *value)
794 struct ldb_message_element *el;
797 a = talloc_strdup(mem_ctx, attr_name);
800 v = talloc_strdup(mem_ctx, value);
803 ret = ldb_msg_add_string(msg, a, v);
806 el = ldb_msg_find_element(msg, a);
809 el->flags = LDB_FLAG_MOD_ADD;
814 add a delete attribute value to a message
816 int samdb_msg_add_delval(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
817 const char *attr_name, const char *value)
819 struct ldb_message_element *el;
822 a = talloc_strdup(mem_ctx, attr_name);
825 v = talloc_strdup(mem_ctx, value);
828 ret = ldb_msg_add_string(msg, a, v);
831 el = ldb_msg_find_element(msg, a);
834 el->flags = LDB_FLAG_MOD_DELETE;
839 add a int element to a message
841 int samdb_msg_add_int(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
842 const char *attr_name, int v)
844 const char *s = talloc_asprintf(mem_ctx, "%d", v);
845 return samdb_msg_add_string(sam_ldb, mem_ctx, msg, attr_name, s);
849 add a uint_t element to a message
851 int samdb_msg_add_uint(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
852 const char *attr_name, uint_t v)
854 const char *s = talloc_asprintf(mem_ctx, "%u", v);
855 return samdb_msg_add_string(sam_ldb, mem_ctx, msg, attr_name, s);
859 add a (signed) int64_t element to a message
861 int samdb_msg_add_int64(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
862 const char *attr_name, int64_t v)
864 const char *s = talloc_asprintf(mem_ctx, "%lld", (long long)v);
865 return samdb_msg_add_string(sam_ldb, mem_ctx, msg, attr_name, s);
869 add a uint64_t element to a message
871 int samdb_msg_add_uint64(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
872 const char *attr_name, uint64_t v)
874 const char *s = talloc_asprintf(mem_ctx, "%llu", (unsigned long long)v);
875 return samdb_msg_add_string(sam_ldb, mem_ctx, msg, attr_name, s);
879 add a samr_Password element to a message
881 int samdb_msg_add_hash(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
882 const char *attr_name, struct samr_Password *hash)
885 val.data = talloc_memdup(mem_ctx, hash->hash, 16);
890 return ldb_msg_add_value(msg, attr_name, &val, NULL);
894 add a samr_Password array to a message
896 int samdb_msg_add_hashes(TALLOC_CTX *mem_ctx, struct ldb_message *msg,
897 const char *attr_name, struct samr_Password *hashes, uint_t count)
901 val.data = talloc_array_size(mem_ctx, 16, count);
902 val.length = count*16;
906 for (i=0;i<count;i++) {
907 memcpy(i*16 + (char *)val.data, hashes[i].hash, 16);
909 return ldb_msg_add_value(msg, attr_name, &val, NULL);
913 add a acct_flags element to a message
915 int samdb_msg_add_acct_flags(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
916 const char *attr_name, uint32_t v)
918 return samdb_msg_add_uint(sam_ldb, mem_ctx, msg, attr_name, ds_acb2uf(v));
922 add a logon_hours element to a message
924 int samdb_msg_add_logon_hours(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
925 const char *attr_name, struct samr_LogonHours *hours)
928 val.length = hours->units_per_week / 8;
929 val.data = hours->bits;
930 return ldb_msg_add_value(msg, attr_name, &val, NULL);
934 add a parameters element to a message
936 int samdb_msg_add_parameters(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
937 const char *attr_name, struct lsa_BinaryString *parameters)
940 val.length = parameters->length * 2;
941 val.data = (uint8_t *)parameters->array;
942 return ldb_msg_add_value(msg, attr_name, &val, NULL);
945 add a general value element to a message
947 int samdb_msg_add_value(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
948 const char *attr_name, const struct ldb_val *val)
950 return ldb_msg_add_value(msg, attr_name, val, NULL);
954 sets a general value element to a message
956 int samdb_msg_set_value(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
957 const char *attr_name, const struct ldb_val *val)
959 struct ldb_message_element *el;
961 el = ldb_msg_find_element(msg, attr_name);
965 return ldb_msg_add_value(msg, attr_name, val, NULL);
969 set a string element in a message
971 int samdb_msg_set_string(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
972 const char *attr_name, const char *str)
974 struct ldb_message_element *el;
976 el = ldb_msg_find_element(msg, attr_name);
980 return samdb_msg_add_string(sam_ldb, mem_ctx, msg, attr_name, str);
984 replace elements in a record
986 int samdb_replace(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg)
990 /* mark all the message elements as LDB_FLAG_MOD_REPLACE */
991 for (i=0;i<msg->num_elements;i++) {
992 msg->elements[i].flags = LDB_FLAG_MOD_REPLACE;
995 /* modify the samdb record */
996 return ldb_modify(sam_ldb, msg);
1000 * Handle ldb_request in transaction
1002 static int dsdb_autotransaction_request(struct ldb_context *sam_ldb,
1003 struct ldb_request *req)
1007 ret = ldb_transaction_start(sam_ldb);
1008 if (ret != LDB_SUCCESS) {
1012 ret = ldb_request(sam_ldb, req);
1013 if (ret == LDB_SUCCESS) {
1014 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
1017 if (ret == LDB_SUCCESS) {
1018 return ldb_transaction_commit(sam_ldb);
1020 ldb_transaction_cancel(sam_ldb);
1026 * replace elements in a record using LDB_CONTROL_AS_SYSTEM
1027 * used to skip access checks on operations
1028 * that are performed by the system
1030 int samdb_replace_as_system(struct ldb_context *sam_ldb,
1031 TALLOC_CTX *mem_ctx,
1032 struct ldb_message *msg)
1036 struct ldb_request *req = NULL;
1038 /* mark all the message elements as LDB_FLAG_MOD_REPLACE */
1039 for (i=0;i<msg->num_elements;i++) {
1040 msg->elements[i].flags = LDB_FLAG_MOD_REPLACE;
1044 ldb_ret = ldb_msg_sanity_check(sam_ldb, msg);
1045 if (ldb_ret != LDB_SUCCESS) {
1049 ldb_ret = ldb_build_mod_req(&req, sam_ldb, mem_ctx,
1053 ldb_op_default_callback,
1056 if (ldb_ret != LDB_SUCCESS) {
1061 ldb_ret = ldb_request_add_control(req, LDB_CONTROL_AS_SYSTEM_OID, false, NULL);
1062 if (ldb_ret != LDB_SUCCESS) {
1067 /* do request and auto start a transaction */
1068 ldb_ret = dsdb_autotransaction_request(sam_ldb, req);
1075 return a default security descriptor
1077 struct security_descriptor *samdb_default_security_descriptor(TALLOC_CTX *mem_ctx)
1079 struct security_descriptor *sd;
1081 sd = security_descriptor_initialise(mem_ctx);
1086 struct ldb_dn *samdb_base_dn(struct ldb_context *sam_ctx)
1088 return ldb_get_default_basedn(sam_ctx);
1091 struct ldb_dn *samdb_config_dn(struct ldb_context *sam_ctx)
1093 return ldb_get_config_basedn(sam_ctx);
1096 struct ldb_dn *samdb_schema_dn(struct ldb_context *sam_ctx)
1098 return ldb_get_schema_basedn(sam_ctx);
1101 struct ldb_dn *samdb_aggregate_schema_dn(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx)
1103 struct ldb_dn *schema_dn = ldb_get_schema_basedn(sam_ctx);
1104 struct ldb_dn *aggregate_dn;
1109 aggregate_dn = ldb_dn_copy(mem_ctx, schema_dn);
1110 if (!aggregate_dn) {
1113 if (!ldb_dn_add_child_fmt(aggregate_dn, "CN=Aggregate")) {
1116 return aggregate_dn;
1119 struct ldb_dn *samdb_root_dn(struct ldb_context *sam_ctx)
1121 return ldb_get_root_basedn(sam_ctx);
1124 struct ldb_dn *samdb_partitions_dn(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx)
1126 struct ldb_dn *new_dn;
1128 new_dn = ldb_dn_copy(mem_ctx, samdb_config_dn(sam_ctx));
1129 if ( ! ldb_dn_add_child_fmt(new_dn, "CN=Partitions")) {
1130 talloc_free(new_dn);
1136 struct ldb_dn *samdb_sites_dn(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx)
1138 struct ldb_dn *new_dn;
1140 new_dn = ldb_dn_copy(mem_ctx, samdb_config_dn(sam_ctx));
1141 if ( ! ldb_dn_add_child_fmt(new_dn, "CN=Sites")) {
1142 talloc_free(new_dn);
1149 work out the domain sid for the current open ldb
1151 const struct dom_sid *samdb_domain_sid(struct ldb_context *ldb)
1153 TALLOC_CTX *tmp_ctx;
1154 const struct dom_sid *domain_sid;
1155 const char *attrs[] = {
1159 struct ldb_result *res;
1162 /* see if we have a cached copy */
1163 domain_sid = (struct dom_sid *)ldb_get_opaque(ldb, "cache.domain_sid");
1168 tmp_ctx = talloc_new(ldb);
1169 if (tmp_ctx == NULL) {
1173 ret = ldb_search(ldb, tmp_ctx, &res, ldb_get_default_basedn(ldb), LDB_SCOPE_BASE, attrs, "objectSid=*");
1175 if (ret != LDB_SUCCESS) {
1179 if (res->count != 1) {
1183 domain_sid = samdb_result_dom_sid(tmp_ctx, res->msgs[0], "objectSid");
1184 if (domain_sid == NULL) {
1188 /* cache the domain_sid in the ldb */
1189 if (ldb_set_opaque(ldb, "cache.domain_sid", discard_const_p(struct dom_sid, domain_sid)) != LDB_SUCCESS) {
1193 talloc_steal(ldb, domain_sid);
1194 talloc_free(tmp_ctx);
1199 DEBUG(1,("Failed to find domain_sid for open ldb\n"));
1200 talloc_free(tmp_ctx);
1204 bool samdb_set_domain_sid(struct ldb_context *ldb, const struct dom_sid *dom_sid_in)
1206 TALLOC_CTX *tmp_ctx;
1207 struct dom_sid *dom_sid_new;
1208 struct dom_sid *dom_sid_old;
1210 /* see if we have a cached copy */
1211 dom_sid_old = talloc_get_type(ldb_get_opaque(ldb,
1212 "cache.domain_sid"), struct dom_sid);
1214 tmp_ctx = talloc_new(ldb);
1215 if (tmp_ctx == NULL) {
1219 dom_sid_new = dom_sid_dup(tmp_ctx, dom_sid_in);
1224 /* cache the domain_sid in the ldb */
1225 if (ldb_set_opaque(ldb, "cache.domain_sid", dom_sid_new) != LDB_SUCCESS) {
1229 talloc_steal(ldb, dom_sid_new);
1230 talloc_free(tmp_ctx);
1231 talloc_free(dom_sid_old);
1236 DEBUG(1,("Failed to set our own cached domain SID in the ldb!\n"));
1237 talloc_free(tmp_ctx);
1241 /* Obtain the short name of the flexible single master operator
1242 * (FSMO), such as the PDC Emulator */
1243 const char *samdb_result_fsmo_name(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
1246 /* Format is cn=NTDS Settings,cn=<NETBIOS name of FSMO>,.... */
1247 struct ldb_dn *fsmo_dn = ldb_msg_find_attr_as_dn(ldb, mem_ctx, msg, attr);
1248 const struct ldb_val *val = ldb_dn_get_component_val(fsmo_dn, 1);
1249 const char *name = ldb_dn_get_component_name(fsmo_dn, 1);
1251 if (!name || (ldb_attr_cmp(name, "cn") != 0)) {
1252 /* Ensure this matches the format. This gives us a
1253 * bit more confidence that a 'cn' value will be a
1258 return (char *)val->data;
1264 work out the ntds settings dn for the current open ldb
1266 struct ldb_dn *samdb_ntds_settings_dn(struct ldb_context *ldb)
1268 TALLOC_CTX *tmp_ctx;
1269 const char *root_attrs[] = { "dsServiceName", NULL };
1271 struct ldb_result *root_res;
1272 struct ldb_dn *settings_dn;
1274 /* see if we have a cached copy */
1275 settings_dn = (struct ldb_dn *)ldb_get_opaque(ldb, "cache.settings_dn");
1280 tmp_ctx = talloc_new(ldb);
1281 if (tmp_ctx == NULL) {
1285 ret = ldb_search(ldb, tmp_ctx, &root_res, ldb_dn_new(tmp_ctx, ldb, ""), LDB_SCOPE_BASE, root_attrs, NULL);
1287 DEBUG(1,("Searching for dsServiceName in rootDSE failed: %s\n",
1288 ldb_errstring(ldb)));
1292 if (root_res->count != 1) {
1296 settings_dn = ldb_msg_find_attr_as_dn(ldb, tmp_ctx, root_res->msgs[0], "dsServiceName");
1298 /* cache the domain_sid in the ldb */
1299 if (ldb_set_opaque(ldb, "cache.settings_dn", settings_dn) != LDB_SUCCESS) {
1303 talloc_steal(ldb, settings_dn);
1304 talloc_free(tmp_ctx);
1309 DEBUG(1,("Failed to find our own NTDS Settings DN in the ldb!\n"));
1310 talloc_free(tmp_ctx);
1315 work out the ntds settings invocationId for the current open ldb
1317 const struct GUID *samdb_ntds_invocation_id(struct ldb_context *ldb)
1319 TALLOC_CTX *tmp_ctx;
1320 const char *attrs[] = { "invocationId", NULL };
1322 struct ldb_result *res;
1323 struct GUID *invocation_id;
1325 /* see if we have a cached copy */
1326 invocation_id = (struct GUID *)ldb_get_opaque(ldb, "cache.invocation_id");
1327 if (invocation_id) {
1328 return invocation_id;
1331 tmp_ctx = talloc_new(ldb);
1332 if (tmp_ctx == NULL) {
1336 ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb), LDB_SCOPE_BASE, attrs, NULL);
1341 if (res->count != 1) {
1345 invocation_id = talloc(tmp_ctx, struct GUID);
1346 if (!invocation_id) {
1350 *invocation_id = samdb_result_guid(res->msgs[0], "invocationId");
1352 /* cache the domain_sid in the ldb */
1353 if (ldb_set_opaque(ldb, "cache.invocation_id", invocation_id) != LDB_SUCCESS) {
1357 talloc_steal(ldb, invocation_id);
1358 talloc_free(tmp_ctx);
1360 return invocation_id;
1363 DEBUG(1,("Failed to find our own NTDS Settings invocationId in the ldb!\n"));
1364 talloc_free(tmp_ctx);
1368 bool samdb_set_ntds_invocation_id(struct ldb_context *ldb, const struct GUID *invocation_id_in)
1370 TALLOC_CTX *tmp_ctx;
1371 struct GUID *invocation_id_new;
1372 struct GUID *invocation_id_old;
1374 /* see if we have a cached copy */
1375 invocation_id_old = (struct GUID *)ldb_get_opaque(ldb,
1376 "cache.invocation_id");
1378 tmp_ctx = talloc_new(ldb);
1379 if (tmp_ctx == NULL) {
1383 invocation_id_new = talloc(tmp_ctx, struct GUID);
1384 if (!invocation_id_new) {
1388 *invocation_id_new = *invocation_id_in;
1390 /* cache the domain_sid in the ldb */
1391 if (ldb_set_opaque(ldb, "cache.invocation_id", invocation_id_new) != LDB_SUCCESS) {
1395 talloc_steal(ldb, invocation_id_new);
1396 talloc_free(tmp_ctx);
1397 talloc_free(invocation_id_old);
1402 DEBUG(1,("Failed to set our own cached invocationId in the ldb!\n"));
1403 talloc_free(tmp_ctx);
1408 work out the ntds settings objectGUID for the current open ldb
1410 const struct GUID *samdb_ntds_objectGUID(struct ldb_context *ldb)
1412 TALLOC_CTX *tmp_ctx;
1413 const char *attrs[] = { "objectGUID", NULL };
1415 struct ldb_result *res;
1416 struct GUID *ntds_guid;
1418 /* see if we have a cached copy */
1419 ntds_guid = (struct GUID *)ldb_get_opaque(ldb, "cache.ntds_guid");
1424 tmp_ctx = talloc_new(ldb);
1425 if (tmp_ctx == NULL) {
1429 ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb), LDB_SCOPE_BASE, attrs, NULL);
1434 if (res->count != 1) {
1438 ntds_guid = talloc(tmp_ctx, struct GUID);
1443 *ntds_guid = samdb_result_guid(res->msgs[0], "objectGUID");
1445 /* cache the domain_sid in the ldb */
1446 if (ldb_set_opaque(ldb, "cache.ntds_guid", ntds_guid) != LDB_SUCCESS) {
1450 talloc_steal(ldb, ntds_guid);
1451 talloc_free(tmp_ctx);
1456 DEBUG(1,("Failed to find our own NTDS Settings objectGUID in the ldb!\n"));
1457 talloc_free(tmp_ctx);
1461 bool samdb_set_ntds_objectGUID(struct ldb_context *ldb, const struct GUID *ntds_guid_in)
1463 TALLOC_CTX *tmp_ctx;
1464 struct GUID *ntds_guid_new;
1465 struct GUID *ntds_guid_old;
1467 /* see if we have a cached copy */
1468 ntds_guid_old = (struct GUID *)ldb_get_opaque(ldb, "cache.ntds_guid");
1470 tmp_ctx = talloc_new(ldb);
1471 if (tmp_ctx == NULL) {
1475 ntds_guid_new = talloc(tmp_ctx, struct GUID);
1476 if (!ntds_guid_new) {
1480 *ntds_guid_new = *ntds_guid_in;
1482 /* cache the domain_sid in the ldb */
1483 if (ldb_set_opaque(ldb, "cache.ntds_guid", ntds_guid_new) != LDB_SUCCESS) {
1487 talloc_steal(ldb, ntds_guid_new);
1488 talloc_free(tmp_ctx);
1489 talloc_free(ntds_guid_old);
1494 DEBUG(1,("Failed to set our own cached invocationId in the ldb!\n"));
1495 talloc_free(tmp_ctx);
1500 work out the server dn for the current open ldb
1502 struct ldb_dn *samdb_server_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
1504 return ldb_dn_get_parent(mem_ctx, samdb_ntds_settings_dn(ldb));
1508 work out the server dn for the current open ldb
1510 struct ldb_dn *samdb_server_site_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
1512 struct ldb_dn *server_dn;
1513 struct ldb_dn *server_site_dn;
1515 server_dn = samdb_server_dn(ldb, mem_ctx);
1516 if (!server_dn) return NULL;
1518 server_site_dn = ldb_dn_get_parent(mem_ctx, server_dn);
1520 talloc_free(server_dn);
1521 return server_site_dn;
1525 find a 'reference' DN that points at another object
1526 (eg. serverReference, rIDManagerReference etc)
1528 int samdb_reference_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn *base,
1529 const char *attribute, struct ldb_dn **dn)
1531 const char *attrs[2];
1532 struct ldb_result *res;
1535 attrs[0] = attribute;
1538 ret = ldb_search(ldb, mem_ctx, &res, base, LDB_SCOPE_BASE, attrs, NULL);
1539 if (ret != LDB_SUCCESS) {
1542 if (res->count != 1) {
1544 return LDB_ERR_NO_SUCH_OBJECT;
1547 *dn = ldb_msg_find_attr_as_dn(ldb, mem_ctx, res->msgs[0], attribute);
1550 return LDB_ERR_NO_SUCH_ATTRIBUTE;
1558 find our machine account via the serverReference attribute in the
1561 int samdb_server_reference_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn **dn)
1563 struct ldb_dn *server_dn;
1566 server_dn = samdb_server_dn(ldb, mem_ctx);
1567 if (server_dn == NULL) {
1568 return LDB_ERR_NO_SUCH_OBJECT;
1571 ret = samdb_reference_dn(ldb, mem_ctx, server_dn, "serverReference", dn);
1572 talloc_free(server_dn);
1578 find the RID Manager$ DN via the rIDManagerReference attribute in the
1581 int samdb_rid_manager_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn **dn)
1583 return samdb_reference_dn(ldb, mem_ctx, samdb_base_dn(ldb), "rIDManagerReference", dn);
1587 find the RID Set DN via the rIDSetReferences attribute in our
1590 int samdb_rid_set_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn **dn)
1592 struct ldb_dn *server_ref_dn;
1595 ret = samdb_server_reference_dn(ldb, mem_ctx, &server_ref_dn);
1596 if (ret != LDB_SUCCESS) {
1599 ret = samdb_reference_dn(ldb, mem_ctx, server_ref_dn, "rIDSetReferences", dn);
1600 talloc_free(server_ref_dn);
1604 const char *samdb_server_site_name(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
1606 const struct ldb_val *val = ldb_dn_get_rdn_val(samdb_server_site_dn(ldb, mem_ctx));
1609 return (const char *) val->data;
1615 work out if we are the PDC for the domain of the current open ldb
1617 bool samdb_is_pdc(struct ldb_context *ldb)
1619 const char *dom_attrs[] = { "fSMORoleOwner", NULL };
1621 struct ldb_result *dom_res;
1622 TALLOC_CTX *tmp_ctx;
1626 tmp_ctx = talloc_new(ldb);
1627 if (tmp_ctx == NULL) {
1628 DEBUG(1, ("talloc_new failed in samdb_is_pdc"));
1632 ret = ldb_search(ldb, tmp_ctx, &dom_res, ldb_get_default_basedn(ldb), LDB_SCOPE_BASE, dom_attrs, NULL);
1634 DEBUG(1,("Searching for fSMORoleOwner in %s failed: %s\n",
1635 ldb_dn_get_linearized(ldb_get_default_basedn(ldb)),
1636 ldb_errstring(ldb)));
1639 if (dom_res->count != 1) {
1643 pdc = ldb_msg_find_attr_as_dn(ldb, tmp_ctx, dom_res->msgs[0], "fSMORoleOwner");
1645 if (ldb_dn_compare(samdb_ntds_settings_dn(ldb), pdc) == 0) {
1651 talloc_free(tmp_ctx);
1656 DEBUG(1,("Failed to find if we are the PDC for this ldb\n"));
1657 talloc_free(tmp_ctx);
1662 work out if we are a Global Catalog server for the domain of the current open ldb
1664 bool samdb_is_gc(struct ldb_context *ldb)
1666 const char *attrs[] = { "options", NULL };
1668 struct ldb_result *res;
1669 TALLOC_CTX *tmp_ctx;
1671 tmp_ctx = talloc_new(ldb);
1672 if (tmp_ctx == NULL) {
1673 DEBUG(1, ("talloc_new failed in samdb_is_pdc"));
1677 /* Query cn=ntds settings,.... */
1678 ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb), LDB_SCOPE_BASE, attrs, NULL);
1680 talloc_free(tmp_ctx);
1683 if (res->count != 1) {
1684 talloc_free(tmp_ctx);
1688 options = ldb_msg_find_attr_as_int(res->msgs[0], "options", 0);
1689 talloc_free(tmp_ctx);
1691 /* if options attribute has the 0x00000001 flag set, then enable the global catlog */
1692 if (options & 0x000000001) {
1698 /* Find a domain object in the parents of a particular DN. */
1699 int samdb_search_for_parent_domain(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn *dn,
1700 struct ldb_dn **parent_dn, const char **errstring)
1702 TALLOC_CTX *local_ctx;
1703 struct ldb_dn *sdn = dn;
1704 struct ldb_result *res = NULL;
1706 const char *attrs[] = { NULL };
1708 local_ctx = talloc_new(mem_ctx);
1709 if (local_ctx == NULL) return LDB_ERR_OPERATIONS_ERROR;
1711 while ((sdn = ldb_dn_get_parent(local_ctx, sdn))) {
1712 ret = ldb_search(ldb, local_ctx, &res, sdn, LDB_SCOPE_BASE, attrs,
1713 "(|(objectClass=domain)(objectClass=builtinDomain))");
1714 if (ret == LDB_SUCCESS) {
1715 if (res->count == 1) {
1723 if (ret != LDB_SUCCESS) {
1724 *errstring = talloc_asprintf(mem_ctx, "Error searching for parent domain of %s, failed searching for %s: %s",
1725 ldb_dn_get_linearized(dn),
1726 ldb_dn_get_linearized(sdn),
1727 ldb_errstring(ldb));
1728 talloc_free(local_ctx);
1731 if (res->count != 1) {
1732 *errstring = talloc_asprintf(mem_ctx, "Invalid dn (%s), not child of a domain object",
1733 ldb_dn_get_linearized(dn));
1734 DEBUG(0,(__location__ ": %s\n", *errstring));
1735 talloc_free(local_ctx);
1736 return LDB_ERR_CONSTRAINT_VIOLATION;
1739 *parent_dn = talloc_steal(mem_ctx, res->msgs[0]->dn);
1740 talloc_free(local_ctx);
1746 * Performs checks on a user password (plaintext UNIX format - attribute
1747 * "password"). The remaining parameters have to be extracted from the domain
1750 * Result codes from "enum samr_ValidationStatus" (consider "samr.idl")
1752 enum samr_ValidationStatus samdb_check_password(const DATA_BLOB *password,
1753 const uint32_t pwdProperties,
1754 const uint32_t minPwdLength)
1756 /* checks if the "minPwdLength" property is satisfied */
1757 if (minPwdLength > password->length)
1758 return SAMR_VALIDATION_STATUS_PWD_TOO_SHORT;
1760 /* checks the password complexity */
1761 if (((pwdProperties & DOMAIN_PASSWORD_COMPLEX) != 0)
1762 && (password->data != NULL)
1763 && (!check_password_quality((const char *) password->data)))
1764 return SAMR_VALIDATION_STATUS_NOT_COMPLEX_ENOUGH;
1766 return SAMR_VALIDATION_STATUS_SUCCESS;
1770 * Sets the user password using plaintext UTF16 (attribute "new_password") or
1771 * LM (attribute "lmNewHash") or NT (attribute "ntNewHash") hash. Also pass
1772 * as parameter if it's a user change or not ("userChange"). The "rejectReason"
1773 * gives some more informations if the changed failed.
1775 * The caller should have a LDB transaction wrapping this.
1777 * Results: NT_STATUS_OK, NT_STATUS_INTERNAL_DB_CORRUPTION,
1778 * NT_STATUS_INVALID_PARAMETER, NT_STATUS_UNSUCCESSFUL,
1779 * NT_STATUS_PASSWORD_RESTRICTION
1781 NTSTATUS samdb_set_password(struct ldb_context *ctx, TALLOC_CTX *mem_ctx,
1782 struct ldb_dn *user_dn, struct ldb_dn *domain_dn,
1783 struct ldb_message *mod,
1784 const DATA_BLOB *new_password,
1785 struct samr_Password *param_lmNewHash,
1786 struct samr_Password *param_ntNewHash,
1788 enum samPwdChangeReason *reject_reason,
1789 struct samr_DomInfo1 **_dominfo)
1791 const char * const user_attrs[] = { "userAccountControl",
1794 "dBCSPwd", "unicodePwd",
1796 "pwdLastSet", NULL };
1797 const char * const domain_attrs[] = { "minPwdLength", "pwdProperties",
1799 "maxPwdAge", "minPwdAge", NULL };
1801 uint32_t minPwdLength, pwdProperties, pwdHistoryLength;
1802 int64_t maxPwdAge, minPwdAge;
1803 uint32_t userAccountControl;
1804 struct samr_Password *sambaLMPwdHistory, *sambaNTPwdHistory,
1805 *lmPwdHash, *ntPwdHash, *lmNewHash, *ntNewHash;
1806 struct samr_Password local_lmNewHash, local_ntNewHash;
1807 int sambaLMPwdHistory_len, sambaNTPwdHistory_len;
1808 struct dom_sid *domain_sid;
1809 struct ldb_message **res;
1812 time_t now = time(NULL);
1816 /* we need to know the time to compute password age */
1817 unix_to_nt_time(&now_nt, now);
1819 /* pull all the user parameters */
1820 count = gendb_search_dn(ctx, mem_ctx, user_dn, &res, user_attrs);
1822 return NT_STATUS_INTERNAL_DB_CORRUPTION;
1824 userAccountControl = samdb_result_uint(res[0], "userAccountControl", 0);
1825 sambaLMPwdHistory_len = samdb_result_hashes(mem_ctx, res[0],
1826 "lmPwdHistory", &sambaLMPwdHistory);
1827 sambaNTPwdHistory_len = samdb_result_hashes(mem_ctx, res[0],
1828 "ntPwdHistory", &sambaNTPwdHistory);
1829 lmPwdHash = samdb_result_hash(mem_ctx, res[0], "dBCSPwd");
1830 ntPwdHash = samdb_result_hash(mem_ctx, res[0], "unicodePwd");
1831 pwdLastSet = samdb_result_uint64(res[0], "pwdLastSet", 0);
1833 /* Copy parameters */
1834 lmNewHash = param_lmNewHash;
1835 ntNewHash = param_ntNewHash;
1837 /* Only non-trust accounts have restrictions (possibly this
1838 * test is the wrong way around, but I like to be restrictive
1840 restrictions = !(userAccountControl & (UF_INTERDOMAIN_TRUST_ACCOUNT
1841 |UF_WORKSTATION_TRUST_ACCOUNT
1842 |UF_SERVER_TRUST_ACCOUNT));
1844 if (domain_dn != NULL) {
1845 /* pull the domain parameters */
1846 count = gendb_search_dn(ctx, mem_ctx, domain_dn, &res,
1849 DEBUG(2, ("samdb_set_password: Domain DN %s is invalid, for user %s\n",
1850 ldb_dn_get_linearized(domain_dn),
1851 ldb_dn_get_linearized(user_dn)));
1852 return NT_STATUS_NO_SUCH_DOMAIN;
1855 /* work out the domain sid, and pull the domain from there */
1856 domain_sid = samdb_result_sid_prefix(mem_ctx, res[0],
1858 if (domain_sid == NULL) {
1859 return NT_STATUS_INTERNAL_DB_CORRUPTION;
1862 count = gendb_search(ctx, mem_ctx, NULL, &res, domain_attrs,
1864 ldap_encode_ndr_dom_sid(mem_ctx, domain_sid));
1866 DEBUG(2, ("samdb_set_password: Could not find domain to match SID: %s, for user %s\n",
1867 dom_sid_string(mem_ctx, domain_sid),
1868 ldb_dn_get_linearized(user_dn)));
1869 return NT_STATUS_NO_SUCH_DOMAIN;
1873 minPwdLength = samdb_result_uint(res[0], "minPwdLength", 0);
1874 pwdProperties = samdb_result_uint(res[0], "pwdProperties", 0);
1875 pwdHistoryLength = samdb_result_uint(res[0], "pwdHistoryLength", 0);
1876 maxPwdAge = samdb_result_int64(res[0], "maxPwdAge", 0);
1877 minPwdAge = samdb_result_int64(res[0], "minPwdAge", 0);
1879 if ((userAccountControl & UF_PASSWD_NOTREQD) != 0) {
1880 /* see [MS-ADTS] 2.2.15 */
1884 if (_dominfo != NULL) {
1885 struct samr_DomInfo1 *dominfo;
1886 /* on failure we need to fill in the reject reasons */
1887 dominfo = talloc(mem_ctx, struct samr_DomInfo1);
1888 if (dominfo == NULL) {
1889 return NT_STATUS_NO_MEMORY;
1891 dominfo->min_password_length = minPwdLength;
1892 dominfo->password_properties = pwdProperties;
1893 dominfo->password_history_length = pwdHistoryLength;
1894 dominfo->max_password_age = maxPwdAge;
1895 dominfo->min_password_age = minPwdAge;
1896 *_dominfo = dominfo;
1899 if ((restrictions != 0) && (new_password != 0)) {
1902 /* checks if the "minPwdLength" property is satisfied */
1903 if ((restrictions != 0)
1904 && (minPwdLength > utf16_len_n(
1905 new_password->data, new_password->length)/2)) {
1906 if (reject_reason) {
1907 *reject_reason = SAM_PWD_CHANGE_PASSWORD_TOO_SHORT;
1909 return NT_STATUS_PASSWORD_RESTRICTION;
1912 /* Create the NT hash */
1913 mdfour(local_ntNewHash.hash, new_password->data,
1914 new_password->length);
1916 ntNewHash = &local_ntNewHash;
1918 /* Only check complexity if we can convert it at all. Assuming unconvertable passwords are 'strong' */
1919 if (convert_string_talloc_convenience(mem_ctx,
1920 lp_iconv_convenience(ldb_get_opaque(ctx, "loadparm")),
1922 new_password->data, new_password->length,
1923 (void **)&new_pass, NULL, false)) {
1925 /* checks the password complexity */
1926 if ((restrictions != 0)
1928 & DOMAIN_PASSWORD_COMPLEX) != 0)
1929 && (!check_password_quality(new_pass))) {
1930 if (reject_reason) {
1931 *reject_reason = SAM_PWD_CHANGE_NOT_COMPLEX;
1933 return NT_STATUS_PASSWORD_RESTRICTION;
1936 /* compute the new lm hashes (for checking history - case insenitivly!) */
1937 if (E_deshash(new_pass, local_lmNewHash.hash)) {
1938 lmNewHash = &local_lmNewHash;
1943 if ((restrictions != 0) && user_change) {
1944 /* are all password changes disallowed? */
1945 if ((pwdProperties & DOMAIN_REFUSE_PASSWORD_CHANGE) != 0) {
1946 if (reject_reason) {
1947 *reject_reason = SAM_PWD_CHANGE_NO_ERROR;
1949 return NT_STATUS_PASSWORD_RESTRICTION;
1952 /* can this user change the password? */
1953 if ((userAccountControl & UF_PASSWD_CANT_CHANGE) != 0) {
1954 if (reject_reason) {
1955 *reject_reason = SAM_PWD_CHANGE_NO_ERROR;
1957 return NT_STATUS_PASSWORD_RESTRICTION;
1960 /* Password minimum age: yes, this is a minus. The ages are in negative 100nsec units! */
1961 if (pwdLastSet - minPwdAge > now_nt) {
1962 if (reject_reason) {
1963 *reject_reason = SAM_PWD_CHANGE_NO_ERROR;
1965 return NT_STATUS_PASSWORD_RESTRICTION;
1968 /* check the immediately past password */
1969 if (pwdHistoryLength > 0) {
1970 if (lmNewHash && lmPwdHash && memcmp(lmNewHash->hash,
1971 lmPwdHash->hash, 16) == 0) {
1972 if (reject_reason) {
1973 *reject_reason = SAM_PWD_CHANGE_PWD_IN_HISTORY;
1975 return NT_STATUS_PASSWORD_RESTRICTION;
1977 if (ntNewHash && ntPwdHash && memcmp(ntNewHash->hash,
1978 ntPwdHash->hash, 16) == 0) {
1979 if (reject_reason) {
1980 *reject_reason = SAM_PWD_CHANGE_PWD_IN_HISTORY;
1982 return NT_STATUS_PASSWORD_RESTRICTION;
1986 /* check the password history */
1987 sambaLMPwdHistory_len = MIN(sambaLMPwdHistory_len,
1989 sambaNTPwdHistory_len = MIN(sambaNTPwdHistory_len,
1992 for (i=0; lmNewHash && i<sambaLMPwdHistory_len;i++) {
1993 if (memcmp(lmNewHash->hash, sambaLMPwdHistory[i].hash,
1995 if (reject_reason) {
1996 *reject_reason = SAM_PWD_CHANGE_PWD_IN_HISTORY;
1998 return NT_STATUS_PASSWORD_RESTRICTION;
2001 for (i=0; ntNewHash && i<sambaNTPwdHistory_len;i++) {
2002 if (memcmp(ntNewHash->hash, sambaNTPwdHistory[i].hash,
2004 if (reject_reason) {
2005 *reject_reason = SAM_PWD_CHANGE_PWD_IN_HISTORY;
2007 return NT_STATUS_PASSWORD_RESTRICTION;
2012 #define CHECK_RET(x) do { if (x != 0) return NT_STATUS_NO_MEMORY; } while(0)
2014 /* the password is acceptable. Start forming the new fields */
2015 if (new_password != NULL) {
2016 /* if we know the cleartext UTF16 password, then set it.
2017 * Modules in ldb will set all the appropriate
2019 CHECK_RET(ldb_msg_add_value(mod, "clearTextPassword", new_password, NULL));
2021 /* we don't have the cleartext, so set what we have of the
2025 CHECK_RET(samdb_msg_add_hash(ctx, mem_ctx, mod, "dBCSPwd", lmNewHash));
2029 CHECK_RET(samdb_msg_add_hash(ctx, mem_ctx, mod, "unicodePwd", ntNewHash));
2033 if (reject_reason) {
2034 *reject_reason = SAM_PWD_CHANGE_NO_ERROR;
2036 return NT_STATUS_OK;
2041 * Sets the user password using plaintext UTF16 (attribute "new_password") or
2042 * LM (attribute "lmNewHash") or NT (attribute "ntNewHash") hash. Also pass
2043 * as parameter if it's a user change or not ("userChange"). The "rejectReason"
2044 * gives some more informations if the changed failed.
2046 * This wrapper function for "samdb_set_password" takes a SID as input rather
2049 * This call encapsulates a new LDB transaction for changing the password;
2050 * therefore the user hasn't to start a new one.
2052 * Results: NT_STATUS_OK, NT_STATUS_INTERNAL_DB_CORRUPTION,
2053 * NT_STATUS_INVALID_PARAMETER, NT_STATUS_UNSUCCESSFUL,
2054 * NT_STATUS_PASSWORD_RESTRICTION
2056 NTSTATUS samdb_set_password_sid(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
2057 const struct dom_sid *user_sid,
2058 const DATA_BLOB *new_password,
2059 struct samr_Password *lmNewHash,
2060 struct samr_Password *ntNewHash,
2062 enum samPwdChangeReason *reject_reason,
2063 struct samr_DomInfo1 **_dominfo)
2066 struct ldb_dn *user_dn;
2067 struct ldb_message *msg;
2070 ret = ldb_transaction_start(ldb);
2071 if (ret != LDB_SUCCESS) {
2072 DEBUG(1, ("Failed to start transaction: %s\n", ldb_errstring(ldb)));
2073 return NT_STATUS_TRANSACTION_ABORTED;
2076 user_dn = samdb_search_dn(ldb, mem_ctx, NULL,
2077 "(&(objectSid=%s)(objectClass=user))",
2078 ldap_encode_ndr_dom_sid(mem_ctx, user_sid));
2080 ldb_transaction_cancel(ldb);
2081 DEBUG(3, ("samdb_set_password_sid: SID %s not found in samdb, returning NO_SUCH_USER\n",
2082 dom_sid_string(mem_ctx, user_sid)));
2083 return NT_STATUS_NO_SUCH_USER;
2086 msg = ldb_msg_new(mem_ctx);
2088 ldb_transaction_cancel(ldb);
2089 talloc_free(user_dn);
2090 return NT_STATUS_NO_MEMORY;
2093 msg->dn = ldb_dn_copy(msg, user_dn);
2095 ldb_transaction_cancel(ldb);
2096 talloc_free(user_dn);
2098 return NT_STATUS_NO_MEMORY;
2101 nt_status = samdb_set_password(ldb, mem_ctx,
2104 lmNewHash, ntNewHash,
2106 reject_reason, _dominfo);
2107 if (!NT_STATUS_IS_OK(nt_status)) {
2108 ldb_transaction_cancel(ldb);
2109 talloc_free(user_dn);
2114 /* modify the samdb record */
2115 ret = samdb_replace(ldb, mem_ctx, msg);
2116 if (ret != LDB_SUCCESS) {
2117 ldb_transaction_cancel(ldb);
2118 talloc_free(user_dn);
2120 return NT_STATUS_ACCESS_DENIED;
2125 ret = ldb_transaction_commit(ldb);
2126 if (ret != LDB_SUCCESS) {
2127 DEBUG(0,("Failed to commit transaction to change password on %s: %s\n",
2128 ldb_dn_get_linearized(user_dn),
2129 ldb_errstring(ldb)));
2130 talloc_free(user_dn);
2131 return NT_STATUS_TRANSACTION_ABORTED;
2134 talloc_free(user_dn);
2135 return NT_STATUS_OK;
2139 NTSTATUS samdb_create_foreign_security_principal(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx,
2140 struct dom_sid *sid, struct ldb_dn **ret_dn)
2142 struct ldb_message *msg;
2143 struct ldb_dn *basedn;
2147 sidstr = dom_sid_string(mem_ctx, sid);
2148 NT_STATUS_HAVE_NO_MEMORY(sidstr);
2150 /* We might have to create a ForeignSecurityPrincipal, even if this user
2151 * is in our own domain */
2153 msg = ldb_msg_new(sidstr);
2155 talloc_free(sidstr);
2156 return NT_STATUS_NO_MEMORY;
2159 ret = dsdb_wellknown_dn(sam_ctx, sidstr, samdb_base_dn(sam_ctx),
2160 DS_GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER,
2162 if (ret != LDB_SUCCESS) {
2163 DEBUG(0, ("Failed to find DN for "
2164 "ForeignSecurityPrincipal container - %s\n", ldb_errstring(sam_ctx)));
2165 talloc_free(sidstr);
2166 return NT_STATUS_INTERNAL_DB_CORRUPTION;
2169 /* add core elements to the ldb_message for the alias */
2171 if ( ! ldb_dn_add_child_fmt(msg->dn, "CN=%s", sidstr)) {
2172 talloc_free(sidstr);
2173 return NT_STATUS_NO_MEMORY;
2176 samdb_msg_add_string(sam_ctx, msg, msg,
2178 "foreignSecurityPrincipal");
2180 /* create the alias */
2181 ret = ldb_add(sam_ctx, msg);
2182 if (ret != LDB_SUCCESS) {
2183 DEBUG(0,("Failed to create foreignSecurityPrincipal "
2185 ldb_dn_get_linearized(msg->dn),
2186 ldb_errstring(sam_ctx)));
2187 talloc_free(sidstr);
2188 return NT_STATUS_INTERNAL_DB_CORRUPTION;
2191 *ret_dn = talloc_steal(mem_ctx, msg->dn);
2192 talloc_free(sidstr);
2194 return NT_STATUS_OK;
2199 Find the DN of a domain, assuming it to be a dotted.dns name
2202 struct ldb_dn *samdb_dns_domain_to_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const char *dns_domain)
2205 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
2206 const char *binary_encoded;
2207 const char **split_realm;
2214 split_realm = (const char **)str_list_make(tmp_ctx, dns_domain, ".");
2216 talloc_free(tmp_ctx);
2219 dn = ldb_dn_new(mem_ctx, ldb, NULL);
2220 for (i=0; split_realm[i]; i++) {
2221 binary_encoded = ldb_binary_encode_string(tmp_ctx, split_realm[i]);
2222 if (!ldb_dn_add_base_fmt(dn, "dc=%s", binary_encoded)) {
2223 DEBUG(2, ("Failed to add dc=%s element to DN %s\n",
2224 binary_encoded, ldb_dn_get_linearized(dn)));
2225 talloc_free(tmp_ctx);
2229 if (!ldb_dn_validate(dn)) {
2230 DEBUG(2, ("Failed to validated DN %s\n",
2231 ldb_dn_get_linearized(dn)));
2232 talloc_free(tmp_ctx);
2235 talloc_free(tmp_ctx);
2240 Find the DN of a domain, be it the netbios or DNS name
2242 struct ldb_dn *samdb_domain_to_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
2243 const char *domain_name)
2245 const char * const domain_ref_attrs[] = {
2248 const char * const domain_ref2_attrs[] = {
2251 struct ldb_result *res_domain_ref;
2252 char *escaped_domain = ldb_binary_encode_string(mem_ctx, domain_name);
2253 /* find the domain's DN */
2254 int ret_domain = ldb_search(ldb, mem_ctx,
2256 samdb_partitions_dn(ldb, mem_ctx),
2259 "(&(nETBIOSName=%s)(objectclass=crossRef))",
2261 if (ret_domain != 0) {
2265 if (res_domain_ref->count == 0) {
2266 ret_domain = ldb_search(ldb, mem_ctx,
2268 samdb_dns_domain_to_dn(ldb, mem_ctx, domain_name),
2271 "(objectclass=domain)");
2272 if (ret_domain != 0) {
2276 if (res_domain_ref->count == 1) {
2277 return res_domain_ref->msgs[0]->dn;
2282 if (res_domain_ref->count > 1) {
2283 DEBUG(0,("Found %d records matching domain [%s]\n",
2284 ret_domain, domain_name));
2288 return samdb_result_dn(ldb, mem_ctx, res_domain_ref->msgs[0], "nCName", NULL);
2294 use a GUID to find a DN
2296 int dsdb_find_dn_by_guid(struct ldb_context *ldb,
2297 TALLOC_CTX *mem_ctx,
2298 const char *guid_str, struct ldb_dn **dn)
2301 struct ldb_result *res;
2302 const char *attrs[] = { NULL };
2303 struct ldb_request *search_req;
2305 struct ldb_search_options_control *options;
2307 expression = talloc_asprintf(mem_ctx, "objectGUID=%s", guid_str);
2309 DEBUG(0, (__location__ ": out of memory\n"));
2310 return LDB_ERR_OPERATIONS_ERROR;
2313 res = talloc_zero(expression, struct ldb_result);
2315 DEBUG(0, (__location__ ": out of memory\n"));
2316 talloc_free(expression);
2317 return LDB_ERR_OPERATIONS_ERROR;
2320 ret = ldb_build_search_req(&search_req, ldb, expression,
2321 ldb_get_default_basedn(ldb),
2325 res, ldb_search_default_callback,
2327 if (ret != LDB_SUCCESS) {
2328 talloc_free(expression);
2332 /* we need to cope with cross-partition links, so search for
2333 the GUID over all partitions */
2334 options = talloc(search_req, struct ldb_search_options_control);
2335 if (options == NULL) {
2336 DEBUG(0, (__location__ ": out of memory\n"));
2337 talloc_free(expression);
2338 return LDB_ERR_OPERATIONS_ERROR;
2340 options->search_options = LDB_SEARCH_OPTION_PHANTOM_ROOT;
2342 ret = ldb_request_add_control(search_req, LDB_CONTROL_EXTENDED_DN_OID, true, NULL);
2343 if (ret != LDB_SUCCESS) {
2344 talloc_free(expression);
2348 ret = ldb_request_add_control(search_req,
2349 LDB_CONTROL_SEARCH_OPTIONS_OID,
2351 if (ret != LDB_SUCCESS) {
2352 talloc_free(expression);
2356 ret = ldb_request(ldb, search_req);
2357 if (ret != LDB_SUCCESS) {
2358 talloc_free(expression);
2362 ret = ldb_wait(search_req->handle, LDB_WAIT_ALL);
2363 if (ret != LDB_SUCCESS) {
2364 talloc_free(expression);
2368 /* this really should be exactly 1, but there is a bug in the
2369 partitions module that can return two here with the
2370 search_options control set */
2371 if (res->count < 1) {
2372 talloc_free(expression);
2373 return LDB_ERR_NO_SUCH_OBJECT;
2376 *dn = talloc_steal(mem_ctx, res->msgs[0]->dn);
2377 talloc_free(expression);
2383 search for attrs on one DN, allowing for deleted objects
2385 int dsdb_search_dn_with_deleted(struct ldb_context *ldb,
2386 TALLOC_CTX *mem_ctx,
2387 struct ldb_result **_res,
2388 struct ldb_dn *basedn,
2389 const char * const *attrs)
2392 struct ldb_request *req;
2393 TALLOC_CTX *tmp_ctx;
2394 struct ldb_result *res;
2396 tmp_ctx = talloc_new(mem_ctx);
2398 res = talloc_zero(tmp_ctx, struct ldb_result);
2400 talloc_free(tmp_ctx);
2401 return LDB_ERR_OPERATIONS_ERROR;
2404 ret = ldb_build_search_req(&req, ldb, tmp_ctx,
2411 ldb_search_default_callback,
2413 if (ret != LDB_SUCCESS) {
2414 talloc_free(tmp_ctx);
2418 ret = ldb_request_add_control(req, LDB_CONTROL_SHOW_DELETED_OID, true, NULL);
2419 if (ret != LDB_SUCCESS) {
2420 talloc_free(tmp_ctx);
2424 ret = ldb_request(ldb, req);
2425 if (ret == LDB_SUCCESS) {
2426 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
2429 *_res = talloc_steal(mem_ctx, res);
2430 talloc_free(tmp_ctx);
2436 use a DN to find a GUID with a given attribute name
2438 int dsdb_find_guid_attr_by_dn(struct ldb_context *ldb,
2439 struct ldb_dn *dn, const char *attribute,
2443 struct ldb_result *res;
2444 const char *attrs[2];
2445 TALLOC_CTX *tmp_ctx = talloc_new(ldb);
2447 attrs[0] = attribute;
2450 ret = dsdb_search_dn_with_deleted(ldb, tmp_ctx, &res, dn, attrs);
2451 if (ret != LDB_SUCCESS) {
2452 talloc_free(tmp_ctx);
2455 if (res->count < 1) {
2456 talloc_free(tmp_ctx);
2457 return LDB_ERR_NO_SUCH_OBJECT;
2459 *guid = samdb_result_guid(res->msgs[0], attribute);
2460 talloc_free(tmp_ctx);
2465 use a DN to find a GUID
2467 int dsdb_find_guid_by_dn(struct ldb_context *ldb,
2468 struct ldb_dn *dn, struct GUID *guid)
2470 return dsdb_find_guid_attr_by_dn(ldb, dn, "objectGUID", guid);
2476 adds the given GUID to the given ldb_message. This value is added
2477 for the given attr_name (may be either "objectGUID" or "parentGUID").
2479 int dsdb_msg_add_guid(struct ldb_message *msg,
2481 const char *attr_name)
2486 TALLOC_CTX *tmp_ctx = talloc_init("dsdb_msg_add_guid");
2488 status = GUID_to_ndr_blob(guid, tmp_ctx, &v);
2489 if (!NT_STATUS_IS_OK(status)) {
2490 ret = LDB_ERR_OPERATIONS_ERROR;
2494 ret = ldb_msg_add_steal_value(msg, attr_name, &v);
2495 if (ret != LDB_SUCCESS) {
2496 DEBUG(4,(__location__ ": Failed to add %s to the message\n",
2504 talloc_free(tmp_ctx);
2511 use a DN to find a SID
2513 int dsdb_find_sid_by_dn(struct ldb_context *ldb,
2514 struct ldb_dn *dn, struct dom_sid *sid)
2517 struct ldb_result *res;
2518 const char *attrs[] = { "objectSID", NULL };
2519 TALLOC_CTX *tmp_ctx = talloc_new(ldb);
2524 ret = dsdb_search_dn_with_deleted(ldb, tmp_ctx, &res, dn, attrs);
2525 if (ret != LDB_SUCCESS) {
2526 talloc_free(tmp_ctx);
2529 if (res->count < 1) {
2530 talloc_free(tmp_ctx);
2531 return LDB_ERR_NO_SUCH_OBJECT;
2533 s = samdb_result_dom_sid(tmp_ctx, res->msgs[0], "objectSID");
2535 talloc_free(tmp_ctx);
2536 return LDB_ERR_NO_SUCH_OBJECT;
2539 talloc_free(tmp_ctx);
2546 load a repsFromTo blob list for a given partition GUID
2547 attr must be "repsFrom" or "repsTo"
2549 WERROR dsdb_loadreps(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx, struct ldb_dn *dn,
2550 const char *attr, struct repsFromToBlob **r, uint32_t *count)
2552 const char *attrs[] = { attr, NULL };
2553 struct ldb_result *res = NULL;
2554 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
2556 struct ldb_message_element *el;
2561 if (ldb_search(sam_ctx, tmp_ctx, &res, dn, LDB_SCOPE_BASE, attrs, NULL) != LDB_SUCCESS ||
2563 DEBUG(0,("dsdb_loadreps: failed to read partition object\n"));
2564 talloc_free(tmp_ctx);
2565 return WERR_DS_DRA_INTERNAL_ERROR;
2568 el = ldb_msg_find_element(res->msgs[0], attr);
2570 /* it's OK to be empty */
2571 talloc_free(tmp_ctx);
2575 *count = el->num_values;
2576 *r = talloc_array(mem_ctx, struct repsFromToBlob, *count);
2578 talloc_free(tmp_ctx);
2579 return WERR_DS_DRA_INTERNAL_ERROR;
2582 for (i=0; i<(*count); i++) {
2583 enum ndr_err_code ndr_err;
2584 ndr_err = ndr_pull_struct_blob(&el->values[i],
2585 mem_ctx, lp_iconv_convenience(ldb_get_opaque(sam_ctx, "loadparm")),
2587 (ndr_pull_flags_fn_t)ndr_pull_repsFromToBlob);
2588 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2589 talloc_free(tmp_ctx);
2590 return WERR_DS_DRA_INTERNAL_ERROR;
2594 talloc_free(tmp_ctx);
2600 save the repsFromTo blob list for a given partition GUID
2601 attr must be "repsFrom" or "repsTo"
2603 WERROR dsdb_savereps(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx, struct ldb_dn *dn,
2604 const char *attr, struct repsFromToBlob *r, uint32_t count)
2606 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
2607 struct ldb_message *msg;
2608 struct ldb_message_element *el;
2611 msg = ldb_msg_new(tmp_ctx);
2613 if (ldb_msg_add_empty(msg, attr, LDB_FLAG_MOD_REPLACE, &el) != LDB_SUCCESS) {
2617 el->values = talloc_array(msg, struct ldb_val, count);
2622 for (i=0; i<count; i++) {
2624 enum ndr_err_code ndr_err;
2626 ndr_err = ndr_push_struct_blob(&v, tmp_ctx, lp_iconv_convenience(ldb_get_opaque(sam_ctx, "loadparm")),
2628 (ndr_push_flags_fn_t)ndr_push_repsFromToBlob);
2629 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2637 if (ldb_modify(sam_ctx, msg) != LDB_SUCCESS) {
2638 DEBUG(0,("Failed to store %s - %s\n", attr, ldb_errstring(sam_ctx)));
2642 talloc_free(tmp_ctx);
2647 talloc_free(tmp_ctx);
2648 return WERR_DS_DRA_INTERNAL_ERROR;
2653 load the uSNHighest attribute from the @REPLCHANGED object for a
2656 int dsdb_load_partition_usn(struct ldb_context *ldb, struct ldb_dn *dn, uint64_t *uSN)
2658 struct ldb_request *req;
2660 TALLOC_CTX *tmp_ctx = talloc_new(ldb);
2661 struct dsdb_control_current_partition *p_ctrl;
2662 struct ldb_result *res;
2664 res = talloc_zero(tmp_ctx, struct ldb_result);
2666 talloc_free(tmp_ctx);
2667 return LDB_ERR_OPERATIONS_ERROR;
2670 ret = ldb_build_search_req(&req, ldb, tmp_ctx,
2671 ldb_dn_new(tmp_ctx, ldb, "@REPLCHANGED"),
2675 res, ldb_search_default_callback,
2677 if (ret != LDB_SUCCESS) {
2678 talloc_free(tmp_ctx);
2682 p_ctrl = talloc(req, struct dsdb_control_current_partition);
2683 if (p_ctrl == NULL) {
2685 return LDB_ERR_OPERATIONS_ERROR;
2687 p_ctrl->version = DSDB_CONTROL_CURRENT_PARTITION_VERSION;
2691 ret = ldb_request_add_control(req,
2692 DSDB_CONTROL_CURRENT_PARTITION_OID,
2694 if (ret != LDB_SUCCESS) {
2695 talloc_free(tmp_ctx);
2699 /* Run the new request */
2700 ret = ldb_request(ldb, req);
2702 if (ret == LDB_SUCCESS) {
2703 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
2706 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
2707 /* it hasn't been created yet, which means
2708 an implicit value of zero */
2710 talloc_free(tmp_ctx);
2714 if (ret != LDB_SUCCESS) {
2715 talloc_free(tmp_ctx);
2719 if (res->count < 1) {
2722 *uSN = ldb_msg_find_attr_as_uint64(res->msgs[0], "uSNHighest", 0);
2725 talloc_free(tmp_ctx);
2731 save the uSNHighest attribute in the @REPLCHANGED object for a
2734 int dsdb_save_partition_usn(struct ldb_context *ldb, struct ldb_dn *dn, uint64_t uSN)
2736 struct ldb_request *req;
2737 struct ldb_message *msg;
2738 struct dsdb_control_current_partition *p_ctrl;
2741 msg = ldb_msg_new(ldb);
2743 return LDB_ERR_OPERATIONS_ERROR;
2746 msg->dn = ldb_dn_new(msg, ldb, "@REPLCHANGED");
2747 if (msg->dn == NULL) {
2749 return LDB_ERR_OPERATIONS_ERROR;
2752 ret = ldb_msg_add_fmt(msg, "uSNHighest", "%llu", (unsigned long long)uSN);
2753 if (ret != LDB_SUCCESS) {
2757 msg->elements[0].flags = LDB_FLAG_MOD_REPLACE;
2760 p_ctrl = talloc(msg, struct dsdb_control_current_partition);
2761 if (p_ctrl == NULL) {
2763 return LDB_ERR_OPERATIONS_ERROR;
2765 p_ctrl->version = DSDB_CONTROL_CURRENT_PARTITION_VERSION;
2768 ret = ldb_build_mod_req(&req, ldb, msg,
2771 NULL, ldb_op_default_callback,
2774 if (ret != LDB_SUCCESS) {
2779 ret = ldb_request_add_control(req,
2780 DSDB_CONTROL_CURRENT_PARTITION_OID,
2782 if (ret != LDB_SUCCESS) {
2787 /* Run the new request */
2788 ret = ldb_request(ldb, req);
2790 if (ret == LDB_SUCCESS) {
2791 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
2793 if (ret == LDB_ERR_NO_SUCH_OBJECT) {
2794 ret = ldb_build_add_req(&req, ldb, msg,
2797 NULL, ldb_op_default_callback,
2807 int drsuapi_DsReplicaCursor2_compare(const struct drsuapi_DsReplicaCursor2 *c1,
2808 const struct drsuapi_DsReplicaCursor2 *c2)
2810 return GUID_compare(&c1->source_dsa_invocation_id, &c2->source_dsa_invocation_id);
2813 int drsuapi_DsReplicaCursor_compare(const struct drsuapi_DsReplicaCursor *c1,
2814 const struct drsuapi_DsReplicaCursor *c2)
2816 return GUID_compare(&c1->source_dsa_invocation_id, &c2->source_dsa_invocation_id);
2820 see if we are a RODC
2822 TODO: This should take a sam_ctx, and lookup the right object (with
2825 bool samdb_rodc(struct loadparm_context *lp_ctx)
2827 return lp_parm_bool(lp_ctx, NULL, "repl", "RODC", false);
2832 return NTDS options flags. See MS-ADTS 7.1.1.2.2.1.2.1.1
2834 flags are DS_NTDS_OPTION_*
2836 int samdb_ntds_options(struct ldb_context *ldb, uint32_t *options)
2838 TALLOC_CTX *tmp_ctx;
2839 const char *attrs[] = { "options", NULL };
2841 struct ldb_result *res;
2843 tmp_ctx = talloc_new(ldb);
2844 if (tmp_ctx == NULL) {
2848 ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb), LDB_SCOPE_BASE, attrs, NULL);
2853 if (res->count != 1) {
2857 *options = samdb_result_uint(res->msgs[0], "options", 0);
2859 talloc_free(tmp_ctx);
2864 DEBUG(1,("Failed to find our own NTDS Settings objectGUID in the ldb!\n"));
2865 talloc_free(tmp_ctx);
2866 return LDB_ERR_NO_SUCH_OBJECT;
2870 * Function which generates a "lDAPDisplayName" attribute from a "CN" one.
2871 * Algorithm implemented according to MS-ADTS 3.1.1.2.3.4
2873 const char *samdb_cn_to_lDAPDisplayName(TALLOC_CTX *mem_ctx, const char *cn)
2875 char **tokens, *ret;
2878 tokens = str_list_make(mem_ctx, cn, " -_");
2882 /* "tolower()" and "toupper()" should also work properly on 0x00 */
2883 tokens[0][0] = tolower(tokens[0][0]);
2884 for (i = 1; i < str_list_length((const char **)tokens); i++)
2885 tokens[i][0] = toupper(tokens[i][0]);
2887 ret = talloc_strdup(mem_ctx, tokens[0]);
2888 for (i = 1; i < str_list_length((const char **)tokens); i++)
2889 ret = talloc_asprintf_append_buffer(ret, "%s", tokens[i]);
2891 talloc_free(tokens);
2897 return domain functional level
2898 returns DS_DOMAIN_FUNCTION_*
2900 int dsdb_functional_level(struct ldb_context *ldb)
2902 int *domainFunctionality =
2903 talloc_get_type(ldb_get_opaque(ldb, "domainFunctionality"), int);
2904 if (!domainFunctionality) {
2905 DEBUG(0,(__location__ ": WARNING: domainFunctionality not setup\n"));
2906 return DS_DOMAIN_FUNCTION_2000;
2908 return *domainFunctionality;
2912 set a GUID in an extended DN structure
2914 int dsdb_set_extended_dn_guid(struct ldb_dn *dn, const struct GUID *guid, const char *component_name)
2920 status = GUID_to_ndr_blob(guid, dn, &v);
2921 if (!NT_STATUS_IS_OK(status)) {
2922 return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
2925 ret = ldb_dn_set_extended_component(dn, component_name, &v);
2931 return a GUID from a extended DN structure
2933 NTSTATUS dsdb_get_extended_dn_guid(struct ldb_dn *dn, struct GUID *guid, const char *component_name)
2935 const struct ldb_val *v;
2937 v = ldb_dn_get_extended_component(dn, component_name);
2939 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2942 return GUID_from_ndr_blob(v, guid);
2946 return a uint64_t from a extended DN structure
2948 NTSTATUS dsdb_get_extended_dn_uint64(struct ldb_dn *dn, uint64_t *val, const char *component_name)
2950 const struct ldb_val *v;
2953 v = ldb_dn_get_extended_component(dn, component_name);
2955 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2957 s = talloc_strndup(dn, (const char *)v->data, v->length);
2958 NT_STATUS_HAVE_NO_MEMORY(s);
2960 *val = strtoull(s, NULL, 0);
2963 return NT_STATUS_OK;
2967 return a NTTIME from a extended DN structure
2969 NTSTATUS dsdb_get_extended_dn_nttime(struct ldb_dn *dn, NTTIME *nttime, const char *component_name)
2971 return dsdb_get_extended_dn_uint64(dn, nttime, component_name);
2975 return a uint32_t from a extended DN structure
2977 NTSTATUS dsdb_get_extended_dn_uint32(struct ldb_dn *dn, uint32_t *val, const char *component_name)
2979 const struct ldb_val *v;
2982 v = ldb_dn_get_extended_component(dn, component_name);
2984 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
2987 s = talloc_strndup(dn, (const char *)v->data, v->length);
2988 NT_STATUS_HAVE_NO_MEMORY(s);
2990 *val = strtoul(s, NULL, 0);
2993 return NT_STATUS_OK;
2997 return RMD_FLAGS directly from a ldb_dn
2998 returns 0 if not found
3000 uint32_t dsdb_dn_rmd_flags(struct ldb_dn *dn)
3002 const struct ldb_val *v;
3004 v = ldb_dn_get_extended_component(dn, "RMD_FLAGS");
3005 if (!v || v->length > sizeof(buf)-1) return 0;
3006 strncpy(buf, (const char *)v->data, v->length);
3008 return strtoul(buf, NULL, 10);
3012 return RMD_FLAGS directly from a ldb_val for a DN
3013 returns 0 if RMD_FLAGS is not found
3015 uint32_t dsdb_dn_val_rmd_flags(struct ldb_val *val)
3021 if (val->length < 13) {
3024 p = memmem(val->data, val->length-2, "<RMD_FLAGS=", 11);
3028 flags = strtoul(p+11, &end, 10);
3029 if (!end || *end != '>') {
3030 /* it must end in a > */
3037 return true if a ldb_val containing a DN in storage form is deleted
3039 bool dsdb_dn_is_deleted_val(struct ldb_val *val)
3041 return (dsdb_dn_val_rmd_flags(val) & DSDB_RMD_FLAG_DELETED) != 0;
3045 return true if a ldb_val containing a DN in storage form is
3046 in the upgraded w2k3 linked attribute format
3048 bool dsdb_dn_is_upgraded_link_val(struct ldb_val *val)
3050 return memmem(val->data, val->length, "<RMD_ADDTIME=", 13) != NULL;
3054 return a DN for a wellknown GUID
3056 int dsdb_wellknown_dn(struct ldb_context *samdb, TALLOC_CTX *mem_ctx,
3057 struct ldb_dn *nc_root, const char *wk_guid,
3058 struct ldb_dn **wkguid_dn)
3060 TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
3061 const char *attrs[] = { NULL };
3064 struct ldb_result *res;
3066 /* construct the magic WKGUID DN */
3067 dn = ldb_dn_new_fmt(tmp_ctx, samdb, "<WKGUID=%s,%s>",
3068 wk_guid, ldb_dn_get_linearized(nc_root));
3070 talloc_free(tmp_ctx);
3071 return LDB_ERR_OPERATIONS_ERROR;
3074 ret = dsdb_search_dn_with_deleted(samdb, tmp_ctx, &res, dn, attrs);
3075 if (ret != LDB_SUCCESS) {
3076 talloc_free(tmp_ctx);
3080 (*wkguid_dn) = talloc_steal(mem_ctx, res->msgs[0]->dn);
3081 talloc_free(tmp_ctx);
3086 static int dsdb_dn_compare_ptrs(struct ldb_dn **dn1, struct ldb_dn **dn2)
3088 return ldb_dn_compare(*dn1, *dn2);
3092 find a NC root given a DN within the NC
3094 int dsdb_find_nc_root(struct ldb_context *samdb, TALLOC_CTX *mem_ctx, struct ldb_dn *dn,
3095 struct ldb_dn **nc_root)
3097 const char *root_attrs[] = { "namingContexts", NULL };
3098 TALLOC_CTX *tmp_ctx;
3100 struct ldb_message_element *el;
3101 struct ldb_result *root_res;
3103 struct ldb_dn **nc_dns;
3105 tmp_ctx = talloc_new(samdb);
3106 if (tmp_ctx == NULL) {
3107 return LDB_ERR_OPERATIONS_ERROR;
3110 ret = ldb_search(samdb, tmp_ctx, &root_res,
3111 ldb_dn_new(tmp_ctx, samdb, ""), LDB_SCOPE_BASE, root_attrs, NULL);
3113 DEBUG(1,("Searching for namingContexts in rootDSE failed: %s\n", ldb_errstring(samdb)));
3114 talloc_free(tmp_ctx);
3118 el = ldb_msg_find_element(root_res->msgs[0], "namingContexts");
3120 DEBUG(1,("Finding namingContexts element in root_res failed: %s\n",
3121 ldb_errstring(samdb)));
3122 talloc_free(tmp_ctx);
3123 return LDB_ERR_NO_SUCH_ATTRIBUTE;
3126 nc_dns = talloc_array(tmp_ctx, struct ldb_dn *, el->num_values);
3128 talloc_free(tmp_ctx);
3129 return LDB_ERR_OPERATIONS_ERROR;
3132 for (i=0; i<el->num_values; i++) {
3133 nc_dns[i] = ldb_dn_from_ldb_val(nc_dns, samdb, &el->values[i]);
3134 if (nc_dns[i] == NULL) {
3135 talloc_free(tmp_ctx);
3136 return LDB_ERR_OPERATIONS_ERROR;
3140 qsort(nc_dns, el->num_values, sizeof(nc_dns[0]), (comparison_fn_t)dsdb_dn_compare_ptrs);
3142 for (i=0; i<el->num_values; i++) {
3143 if (ldb_dn_compare_base(nc_dns[i], dn) == 0) {
3144 (*nc_root) = talloc_steal(mem_ctx, nc_dns[i]);
3145 talloc_free(tmp_ctx);
3150 talloc_free(tmp_ctx);
3151 return LDB_ERR_NO_SUCH_OBJECT;
3156 find the deleted objects DN for any object, by looking for the NC
3157 root, then looking up the wellknown GUID
3159 int dsdb_get_deleted_objects_dn(struct ldb_context *ldb,
3160 TALLOC_CTX *mem_ctx, struct ldb_dn *obj_dn,
3161 struct ldb_dn **do_dn)
3163 struct ldb_dn *nc_root;
3166 ret = dsdb_find_nc_root(ldb, mem_ctx, obj_dn, &nc_root);
3167 if (ret != LDB_SUCCESS) {
3171 ret = dsdb_wellknown_dn(ldb, mem_ctx, nc_root, DS_GUID_DELETED_OBJECTS_CONTAINER, do_dn);
3172 talloc_free(nc_root);
3177 return the tombstoneLifetime, in days
3179 int dsdb_tombstone_lifetime(struct ldb_context *ldb, uint32_t *lifetime)
3182 dn = samdb_config_dn(ldb);
3184 return LDB_ERR_NO_SUCH_OBJECT;
3186 dn = ldb_dn_copy(ldb, dn);
3188 return LDB_ERR_OPERATIONS_ERROR;
3190 /* see MS-ADTS section 7.1.1.2.4.1.1. There doesn't appear to
3191 be a wellknown GUID for this */
3192 if (!ldb_dn_add_child_fmt(dn, "CN=Directory Service,CN=Windows NT")) {
3194 return LDB_ERR_OPERATIONS_ERROR;
3197 *lifetime = samdb_search_uint(ldb, dn, 180, dn, "tombstoneLifetime", "objectClass=nTDSService");
3203 compare a ldb_val to a string case insensitively
3205 int samdb_ldb_val_case_cmp(const char *s, struct ldb_val *v)
3207 size_t len = strlen(s);
3209 if (len > v->length) return 1;
3210 ret = strncasecmp(s, (const char *)v->data, v->length);
3211 if (ret != 0) return ret;
3212 if (v->length > len && v->data[len] != 0) {