7c2414a23f49382b1fbd90aba7160d348e4f1fb9
[samba.git] / source4 / dsdb / common / util.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Samba utility functions
4
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
9
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.
14
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.
19
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/>.
22 */
23
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 "dsdb/samdb/ldb_modules/util.h"
46
47 /*
48   search the sam for the specified attributes in a specific domain, filter on
49   objectSid being in domain_sid.
50 */
51 int samdb_search_domain(struct ldb_context *sam_ldb,
52                         TALLOC_CTX *mem_ctx, 
53                         struct ldb_dn *basedn,
54                         struct ldb_message ***res,
55                         const char * const *attrs,
56                         const struct dom_sid *domain_sid,
57                         const char *format, ...)  _PRINTF_ATTRIBUTE(7,8)
58 {
59         va_list ap;
60         int i, count;
61
62         va_start(ap, format);
63         count = gendb_search_v(sam_ldb, mem_ctx, basedn,
64                                res, attrs, format, ap);
65         va_end(ap);
66
67         i=0;
68
69         while (i<count) {
70                 struct dom_sid *entry_sid;
71
72                 entry_sid = samdb_result_dom_sid(mem_ctx, (*res)[i], "objectSid");
73
74                 if ((entry_sid == NULL) ||
75                     (!dom_sid_in_domain(domain_sid, entry_sid))) {
76                         /* Delete that entry from the result set */
77                         (*res)[i] = (*res)[count-1];
78                         count -= 1;
79                         talloc_free(entry_sid);
80                         continue;
81                 }
82                 talloc_free(entry_sid);
83                 i += 1;
84         }
85
86         return count;
87 }
88
89 /*
90   search the sam for a single string attribute in exactly 1 record
91 */
92 const char *samdb_search_string_v(struct ldb_context *sam_ldb,
93                                   TALLOC_CTX *mem_ctx,
94                                   struct ldb_dn *basedn,
95                                   const char *attr_name,
96                                   const char *format, va_list ap) _PRINTF_ATTRIBUTE(5,0)
97 {
98         int count;
99         const char *attrs[2] = { NULL, NULL };
100         struct ldb_message **res = NULL;
101
102         attrs[0] = attr_name;
103
104         count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
105         if (count > 1) {                
106                 DEBUG(1,("samdb: search for %s %s not single valued (count=%d)\n", 
107                          attr_name, format, count));
108         }
109         if (count != 1) {
110                 talloc_free(res);
111                 return NULL;
112         }
113
114         return samdb_result_string(res[0], attr_name, NULL);
115 }
116
117 /*
118   search the sam for a single string attribute in exactly 1 record
119 */
120 const char *samdb_search_string(struct ldb_context *sam_ldb,
121                                 TALLOC_CTX *mem_ctx,
122                                 struct ldb_dn *basedn,
123                                 const char *attr_name,
124                                 const char *format, ...) _PRINTF_ATTRIBUTE(5,6)
125 {
126         va_list ap;
127         const char *str;
128
129         va_start(ap, format);
130         str = samdb_search_string_v(sam_ldb, mem_ctx, basedn, attr_name, format, ap);
131         va_end(ap);
132
133         return str;
134 }
135
136 struct ldb_dn *samdb_search_dn(struct ldb_context *sam_ldb,
137                                TALLOC_CTX *mem_ctx,
138                                struct ldb_dn *basedn,
139                                const char *format, ...) _PRINTF_ATTRIBUTE(4,5)
140 {
141         va_list ap;
142         struct ldb_dn *ret;
143         struct ldb_message **res = NULL;
144         int count;
145
146         va_start(ap, format);
147         count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, NULL, format, ap);
148         va_end(ap);
149
150         if (count != 1) return NULL;
151
152         ret = talloc_steal(mem_ctx, res[0]->dn);
153         talloc_free(res);
154
155         return ret;
156 }
157
158 /*
159   search the sam for a dom_sid attribute in exactly 1 record
160 */
161 struct dom_sid *samdb_search_dom_sid(struct ldb_context *sam_ldb,
162                                      TALLOC_CTX *mem_ctx,
163                                      struct ldb_dn *basedn,
164                                      const char *attr_name,
165                                      const char *format, ...) _PRINTF_ATTRIBUTE(5,6)
166 {
167         va_list ap;
168         int count;
169         struct ldb_message **res;
170         const char *attrs[2] = { NULL, NULL };
171         struct dom_sid *sid;
172
173         attrs[0] = attr_name;
174
175         va_start(ap, format);
176         count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
177         va_end(ap);
178         if (count > 1) {                
179                 DEBUG(1,("samdb: search for %s %s not single valued (count=%d)\n", 
180                          attr_name, format, count));
181         }
182         if (count != 1) {
183                 talloc_free(res);
184                 return NULL;
185         }
186         sid = samdb_result_dom_sid(mem_ctx, res[0], attr_name);
187         talloc_free(res);
188         return sid;     
189 }
190
191 /*
192   return the count of the number of records in the sam matching the query
193 */
194 int samdb_search_count(struct ldb_context *sam_ldb,
195                        struct ldb_dn *basedn,
196                        const char *format, ...) _PRINTF_ATTRIBUTE(3,4)
197 {
198         va_list ap;
199         struct ldb_message **res;
200         const char *attrs[] = { NULL };
201         int ret;
202         TALLOC_CTX *tmp_ctx = talloc_new(sam_ldb);
203
204         va_start(ap, format);
205         ret = gendb_search_v(sam_ldb, tmp_ctx, basedn, &res, attrs, format, ap);
206         va_end(ap);
207         talloc_free(tmp_ctx);
208
209         return ret;
210 }
211
212
213 /*
214   search the sam for a single integer attribute in exactly 1 record
215 */
216 unsigned int samdb_search_uint(struct ldb_context *sam_ldb,
217                          TALLOC_CTX *mem_ctx,
218                          unsigned int default_value,
219                          struct ldb_dn *basedn,
220                          const char *attr_name,
221                          const char *format, ...) _PRINTF_ATTRIBUTE(6,7)
222 {
223         va_list ap;
224         int count;
225         struct ldb_message **res;
226         const char *attrs[2] = { NULL, NULL };
227
228         attrs[0] = attr_name;
229
230         va_start(ap, format);
231         count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
232         va_end(ap);
233
234         if (count != 1) {
235                 return default_value;
236         }
237
238         return samdb_result_uint(res[0], attr_name, default_value);
239 }
240
241 /*
242   search the sam for a single signed 64 bit integer attribute in exactly 1 record
243 */
244 int64_t samdb_search_int64(struct ldb_context *sam_ldb,
245                            TALLOC_CTX *mem_ctx,
246                            int64_t default_value,
247                            struct ldb_dn *basedn,
248                            const char *attr_name,
249                            const char *format, ...) _PRINTF_ATTRIBUTE(6,7)
250 {
251         va_list ap;
252         int count;
253         struct ldb_message **res;
254         const char *attrs[2] = { NULL, NULL };
255
256         attrs[0] = attr_name;
257
258         va_start(ap, format);
259         count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
260         va_end(ap);
261
262         if (count != 1) {
263                 return default_value;
264         }
265
266         return samdb_result_int64(res[0], attr_name, default_value);
267 }
268
269 /*
270   search the sam for multipe records each giving a single string attribute
271   return the number of matches, or -1 on error
272 */
273 int samdb_search_string_multiple(struct ldb_context *sam_ldb,
274                                  TALLOC_CTX *mem_ctx,
275                                  struct ldb_dn *basedn,
276                                  const char ***strs,
277                                  const char *attr_name,
278                                  const char *format, ...) _PRINTF_ATTRIBUTE(6,7)
279 {
280         va_list ap;
281         int count, i;
282         const char *attrs[2] = { NULL, NULL };
283         struct ldb_message **res = NULL;
284
285         attrs[0] = attr_name;
286
287         va_start(ap, format);
288         count = gendb_search_v(sam_ldb, mem_ctx, basedn, &res, attrs, format, ap);
289         va_end(ap);
290
291         if (count <= 0) {
292                 return count;
293         }
294
295         /* make sure its single valued */
296         for (i=0;i<count;i++) {
297                 if (res[i]->num_elements != 1) {
298                         DEBUG(1,("samdb: search for %s %s not single valued\n", 
299                                  attr_name, format));
300                         talloc_free(res);
301                         return -1;
302                 }
303         }
304
305         *strs = talloc_array(mem_ctx, const char *, count+1);
306         if (! *strs) {
307                 talloc_free(res);
308                 return -1;
309         }
310
311         for (i=0;i<count;i++) {
312                 (*strs)[i] = samdb_result_string(res[i], attr_name, NULL);
313         }
314         (*strs)[count] = NULL;
315
316         return count;
317 }
318
319 /*
320   pull a uint from a result set. 
321 */
322 unsigned int samdb_result_uint(const struct ldb_message *msg, const char *attr, unsigned int default_value)
323 {
324         return ldb_msg_find_attr_as_uint(msg, attr, default_value);
325 }
326
327 /*
328   pull a (signed) int64 from a result set. 
329 */
330 int64_t samdb_result_int64(const struct ldb_message *msg, const char *attr, int64_t default_value)
331 {
332         return ldb_msg_find_attr_as_int64(msg, attr, default_value);
333 }
334
335 /*
336   pull a string from a result set. 
337 */
338 const char *samdb_result_string(const struct ldb_message *msg, const char *attr, 
339                                 const char *default_value)
340 {
341         return ldb_msg_find_attr_as_string(msg, attr, default_value);
342 }
343
344 struct ldb_dn *samdb_result_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
345                                const char *attr, struct ldb_dn *default_value)
346 {
347         struct ldb_dn *ret_dn = ldb_msg_find_attr_as_dn(ldb, mem_ctx, msg, attr);
348         if (!ret_dn) {
349                 return default_value;
350         }
351         return ret_dn;
352 }
353
354 /*
355   pull a rid from a objectSid in a result set. 
356 */
357 uint32_t samdb_result_rid_from_sid(TALLOC_CTX *mem_ctx, const struct ldb_message *msg, 
358                                    const char *attr, uint32_t default_value)
359 {
360         struct dom_sid *sid;
361         uint32_t rid;
362
363         sid = samdb_result_dom_sid(mem_ctx, msg, attr);
364         if (sid == NULL) {
365                 return default_value;
366         }
367         rid = sid->sub_auths[sid->num_auths-1];
368         talloc_free(sid);
369         return rid;
370 }
371
372 /*
373   pull a dom_sid structure from a objectSid in a result set. 
374 */
375 struct dom_sid *samdb_result_dom_sid(TALLOC_CTX *mem_ctx, const struct ldb_message *msg, 
376                                      const char *attr)
377 {
378         const struct ldb_val *v;
379         struct dom_sid *sid;
380         enum ndr_err_code ndr_err;
381         v = ldb_msg_find_ldb_val(msg, attr);
382         if (v == NULL) {
383                 return NULL;
384         }
385         sid = talloc(mem_ctx, struct dom_sid);
386         if (sid == NULL) {
387                 return NULL;
388         }
389         ndr_err = ndr_pull_struct_blob(v, sid, sid,
390                                        (ndr_pull_flags_fn_t)ndr_pull_dom_sid);
391         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
392                 talloc_free(sid);
393                 return NULL;
394         }
395         return sid;
396 }
397
398 /*
399   pull a guid structure from a objectGUID in a result set. 
400 */
401 struct GUID samdb_result_guid(const struct ldb_message *msg, const char *attr)
402 {
403         const struct ldb_val *v;
404         struct GUID guid;
405         NTSTATUS status;
406
407         v = ldb_msg_find_ldb_val(msg, attr);
408         if (!v) return GUID_zero();
409
410         status = GUID_from_ndr_blob(v, &guid);
411         if (!NT_STATUS_IS_OK(status)) {
412                 return GUID_zero();
413         }
414
415         return guid;
416 }
417
418 /*
419   pull a sid prefix from a objectSid in a result set. 
420   this is used to find the domain sid for a user
421 */
422 struct dom_sid *samdb_result_sid_prefix(TALLOC_CTX *mem_ctx, const struct ldb_message *msg, 
423                                         const char *attr)
424 {
425         struct dom_sid *sid = samdb_result_dom_sid(mem_ctx, msg, attr);
426         if (!sid || sid->num_auths < 1) return NULL;
427         sid->num_auths--;
428         return sid;
429 }
430
431 /*
432   pull a NTTIME in a result set. 
433 */
434 NTTIME samdb_result_nttime(const struct ldb_message *msg, const char *attr,
435                            NTTIME default_value)
436 {
437         return ldb_msg_find_attr_as_uint64(msg, attr, default_value);
438 }
439
440 /*
441  * Windows stores 0 for lastLogoff.
442  * But when a MS DC return the lastLogoff (as Logoff Time)
443  * it returns 0x7FFFFFFFFFFFFFFF, not returning this value in this case
444  * cause windows 2008 and newer version to fail for SMB requests
445  */
446 NTTIME samdb_result_last_logoff(const struct ldb_message *msg)
447 {
448         NTTIME ret = ldb_msg_find_attr_as_uint64(msg, "lastLogoff",0);
449
450         if (ret == 0)
451                 ret = 0x7FFFFFFFFFFFFFFFULL;
452
453         return ret;
454 }
455
456 /*
457  * Windows uses both 0 and 9223372036854775807 (0x7FFFFFFFFFFFFFFFULL) to
458  * indicate an account doesn't expire.
459  *
460  * When Windows initially creates an account, it sets
461  * accountExpires = 9223372036854775807 (0x7FFFFFFFFFFFFFFF).  However,
462  * when changing from an account having a specific expiration date to
463  * that account never expiring, it sets accountExpires = 0.
464  *
465  * Consolidate that logic here to allow clearer logic for account expiry in
466  * the rest of the code.
467  */
468 NTTIME samdb_result_account_expires(const struct ldb_message *msg)
469 {
470         NTTIME ret = ldb_msg_find_attr_as_uint64(msg, "accountExpires",
471                                                  0);
472
473         if (ret == 0)
474                 ret = 0x7FFFFFFFFFFFFFFFULL;
475
476         return ret;
477 }
478
479 /*
480   pull a uint64_t from a result set. 
481 */
482 uint64_t samdb_result_uint64(const struct ldb_message *msg, const char *attr,
483                              uint64_t default_value)
484 {
485         return ldb_msg_find_attr_as_uint64(msg, attr, default_value);
486 }
487
488
489 /*
490   construct the allow_password_change field from the PwdLastSet attribute and the 
491   domain password settings
492 */
493 NTTIME samdb_result_allow_password_change(struct ldb_context *sam_ldb, 
494                                           TALLOC_CTX *mem_ctx, 
495                                           struct ldb_dn *domain_dn, 
496                                           struct ldb_message *msg, 
497                                           const char *attr)
498 {
499         uint64_t attr_time = samdb_result_uint64(msg, attr, 0);
500         int64_t minPwdAge;
501
502         if (attr_time == 0) {
503                 return 0;
504         }
505
506         minPwdAge = samdb_search_int64(sam_ldb, mem_ctx, 0, domain_dn, "minPwdAge", NULL);
507
508         /* yes, this is a -= not a += as minPwdAge is stored as the negative
509            of the number of 100-nano-seconds */
510         attr_time -= minPwdAge;
511
512         return attr_time;
513 }
514
515 /*
516   construct the force_password_change field from the PwdLastSet
517   attribute, the userAccountControl and the domain password settings
518 */
519 NTTIME samdb_result_force_password_change(struct ldb_context *sam_ldb, 
520                                           TALLOC_CTX *mem_ctx, 
521                                           struct ldb_dn *domain_dn, 
522                                           struct ldb_message *msg)
523 {
524         int64_t attr_time = samdb_result_int64(msg, "pwdLastSet", 0);
525         uint32_t userAccountControl = ldb_msg_find_attr_as_uint(msg,
526                                                                 "userAccountControl",
527                                                                 0);
528         int64_t maxPwdAge;
529
530         /* Machine accounts don't expire, and there is a flag for 'no expiry' */
531         if (!(userAccountControl & UF_NORMAL_ACCOUNT)
532             || (userAccountControl & UF_DONT_EXPIRE_PASSWD)) {
533                 return 0x7FFFFFFFFFFFFFFFULL;
534         }
535
536         if (attr_time == 0) {
537                 return 0;
538         }
539         if (attr_time == -1) {
540                 return 0x7FFFFFFFFFFFFFFFULL;
541         }
542
543         maxPwdAge = samdb_search_int64(sam_ldb, mem_ctx, 0, domain_dn,
544                                        "maxPwdAge", NULL);
545         if (maxPwdAge == 0) {
546                 return 0x7FFFFFFFFFFFFFFFULL;
547         } else {
548                 attr_time -= maxPwdAge;
549         }
550
551         return attr_time;
552 }
553
554 /*
555   pull a samr_Password structutre from a result set. 
556 */
557 struct samr_Password *samdb_result_hash(TALLOC_CTX *mem_ctx, const struct ldb_message *msg, const char *attr)
558 {
559         struct samr_Password *hash = NULL;
560         const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
561         if (val && (val->length >= sizeof(hash->hash))) {
562                 hash = talloc(mem_ctx, struct samr_Password);
563                 memcpy(hash->hash, val->data, MIN(val->length, sizeof(hash->hash)));
564         }
565         return hash;
566 }
567
568 /*
569   pull an array of samr_Password structures from a result set.
570 */
571 unsigned int samdb_result_hashes(TALLOC_CTX *mem_ctx, const struct ldb_message *msg,
572                            const char *attr, struct samr_Password **hashes)
573 {
574         unsigned int count, i;
575         const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
576
577         *hashes = NULL;
578         if (!val) {
579                 return 0;
580         }
581         count = val->length / 16;
582         if (count == 0) {
583                 return 0;
584         }
585
586         *hashes = talloc_array(mem_ctx, struct samr_Password, count);
587         if (! *hashes) {
588                 return 0;
589         }
590
591         for (i=0;i<count;i++) {
592                 memcpy((*hashes)[i].hash, (i*16)+(char *)val->data, 16);
593         }
594
595         return count;
596 }
597
598 NTSTATUS samdb_result_passwords(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx, struct ldb_message *msg,
599                                 struct samr_Password **lm_pwd, struct samr_Password **nt_pwd) 
600 {
601         struct samr_Password *lmPwdHash, *ntPwdHash;
602         if (nt_pwd) {
603                 unsigned int num_nt;
604                 num_nt = samdb_result_hashes(mem_ctx, msg, "unicodePwd", &ntPwdHash);
605                 if (num_nt == 0) {
606                         *nt_pwd = NULL;
607                 } else if (num_nt > 1) {
608                         return NT_STATUS_INTERNAL_DB_CORRUPTION;
609                 } else {
610                         *nt_pwd = &ntPwdHash[0];
611                 }
612         }
613         if (lm_pwd) {
614                 /* Ensure that if we have turned off LM
615                  * authentication, that we never use the LM hash, even
616                  * if we store it */
617                 if (lpcfg_lanman_auth(lp_ctx)) {
618                         unsigned int num_lm;
619                         num_lm = samdb_result_hashes(mem_ctx, msg, "dBCSPwd", &lmPwdHash);
620                         if (num_lm == 0) {
621                                 *lm_pwd = NULL;
622                         } else if (num_lm > 1) {
623                                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
624                         } else {
625                                 *lm_pwd = &lmPwdHash[0];
626                         }
627                 } else {
628                         *lm_pwd = NULL;
629                 }
630         }
631         return NT_STATUS_OK;
632 }
633
634 /*
635   pull a samr_LogonHours structutre from a result set. 
636 */
637 struct samr_LogonHours samdb_result_logon_hours(TALLOC_CTX *mem_ctx, struct ldb_message *msg, const char *attr)
638 {
639         struct samr_LogonHours hours;
640         size_t units_per_week = 168;
641         const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
642
643         ZERO_STRUCT(hours);
644
645         if (val) {
646                 units_per_week = val->length * 8;
647         }
648
649         hours.bits = talloc_array(mem_ctx, uint8_t, units_per_week/8);
650         if (!hours.bits) {
651                 return hours;
652         }
653         hours.units_per_week = units_per_week;
654         memset(hours.bits, 0xFF, units_per_week/8);
655         if (val) {
656                 memcpy(hours.bits, val->data, val->length);
657         }
658
659         return hours;
660 }
661
662 /*
663   pull a set of account_flags from a result set. 
664
665   This requires that the attributes: 
666    pwdLastSet
667    userAccountControl
668   be included in 'msg'
669 */
670 uint32_t samdb_result_acct_flags(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx, 
671                                  struct ldb_message *msg, struct ldb_dn *domain_dn)
672 {
673         uint32_t userAccountControl = ldb_msg_find_attr_as_uint(msg, "userAccountControl", 0);
674         uint32_t acct_flags = ds_uf2acb(userAccountControl);
675         NTTIME must_change_time;
676         NTTIME now;
677
678         must_change_time = samdb_result_force_password_change(sam_ctx, mem_ctx, 
679                                                               domain_dn, msg);
680
681         /* Test account expire time */
682         unix_to_nt_time(&now, time(NULL));
683         /* check for expired password */
684         if (must_change_time < now) {
685                 acct_flags |= ACB_PW_EXPIRED;
686         }
687         return acct_flags;
688 }
689
690 struct lsa_BinaryString samdb_result_parameters(TALLOC_CTX *mem_ctx,
691                                                 struct ldb_message *msg,
692                                                 const char *attr)
693 {
694         struct lsa_BinaryString s;
695         const struct ldb_val *val = ldb_msg_find_ldb_val(msg, attr);
696
697         ZERO_STRUCT(s);
698
699         if (!val) {
700                 return s;
701         }
702
703         s.array = talloc_array(mem_ctx, uint16_t, val->length/2);
704         if (!s.array) {
705                 return s;
706         }
707         s.length = s.size = val->length;
708         memcpy(s.array, val->data, val->length);
709
710         return s;
711 }
712
713 /* Find an attribute, with a particular value */
714
715 /* The current callers of this function expect a very specific
716  * behaviour: In particular, objectClass subclass equivilance is not
717  * wanted.  This means that we should not lookup the schema for the
718  * comparison function */
719 struct ldb_message_element *samdb_find_attribute(struct ldb_context *ldb, 
720                                                  const struct ldb_message *msg, 
721                                                  const char *name, const char *value)
722 {
723         unsigned int i;
724         struct ldb_message_element *el = ldb_msg_find_element(msg, name);
725
726         if (!el) {
727                 return NULL;
728         }
729
730         for (i=0;i<el->num_values;i++) {
731                 if (ldb_attr_cmp(value, (char *)el->values[i].data) == 0) {
732                         return el;
733                 }
734         }
735
736         return NULL;
737 }
738
739 /*
740  * This is intended for use by the "password hash" module since there
741  * password changes can be specified through one message element with the
742  * new password (to set) and another one with the old password (to unset).
743  *
744  * The first which sets a password (new value) can have flags
745  * (LDB_FLAG_MOD_ADD, LDB_FLAG_MOD_REPLACE) but also none (on "add" operations
746  * for entries). The latter (old value) has always specified
747  * LDB_FLAG_MOD_DELETE.
748  *
749  * Returns LDB_ERR_NO_SUCH_ATTRIBUTE if the attribute which should be deleted
750  * doesn't contain only one value (this is the Windows Server behaviour)
751  * otherwise LDB_SUCCESS.
752  */
753 int samdb_msg_find_old_and_new_ldb_val(const struct ldb_message *msg,
754                                        const char *name,
755                                        const struct ldb_val **new_val,
756                                        const struct ldb_val **old_val)
757 {
758         unsigned int i;
759
760         *new_val = NULL;
761         *old_val = NULL;
762
763         if (msg == NULL) {
764                 return LDB_SUCCESS;
765         }
766
767         for (i = 0; i < msg->num_elements; i++) {
768                 if (ldb_attr_cmp(msg->elements[i].name, name) == 0) {
769                         if (LDB_FLAG_MOD_TYPE(msg->elements[i].flags) == LDB_FLAG_MOD_DELETE) {
770                                 *old_val = &msg->elements[i].values[0];
771                         } else {
772                                 *new_val = &msg->elements[i].values[0];
773                         }
774                 }
775         }
776
777         return LDB_SUCCESS;
778 }
779
780 int samdb_find_or_add_value(struct ldb_context *ldb, struct ldb_message *msg, const char *name, const char *set_value)
781 {
782         if (samdb_find_attribute(ldb, msg, name, set_value) == NULL) {
783                 return samdb_msg_add_string(ldb, msg, msg, name, set_value);
784         }
785         return LDB_SUCCESS;
786 }
787
788 int samdb_find_or_add_attribute(struct ldb_context *ldb, struct ldb_message *msg, const char *name, const char *set_value)
789 {
790         struct ldb_message_element *el;
791
792         el = ldb_msg_find_element(msg, name);
793         if (el) {
794                 return LDB_SUCCESS;
795         }
796
797         return samdb_msg_add_string(ldb, msg, msg, name, set_value);
798 }
799
800
801
802 /*
803   add a string element to a message
804 */
805 int samdb_msg_add_string(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
806                          const char *attr_name, const char *str)
807 {
808         char *s = talloc_strdup(mem_ctx, str);
809         char *a = talloc_strdup(mem_ctx, attr_name);
810         if (s == NULL || a == NULL) {
811                 return ldb_oom(sam_ldb);
812         }
813         return ldb_msg_add_string(msg, a, s);
814 }
815
816 /*
817   add a dom_sid element to a message
818 */
819 int samdb_msg_add_dom_sid(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
820                          const char *attr_name, struct dom_sid *sid)
821 {
822         struct ldb_val v;
823         enum ndr_err_code ndr_err;
824
825         ndr_err = ndr_push_struct_blob(&v, mem_ctx, 
826                                        sid,
827                                        (ndr_push_flags_fn_t)ndr_push_dom_sid);
828         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
829                 return ldb_operr(sam_ldb);
830         }
831         return ldb_msg_add_value(msg, attr_name, &v, NULL);
832 }
833
834
835 /*
836   add a delete element operation to a message
837 */
838 int samdb_msg_add_delete(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
839                          const char *attr_name)
840 {
841         /* we use an empty replace rather than a delete, as it allows for 
842            dsdb_replace() to be used everywhere */
843         return ldb_msg_add_empty(msg, attr_name, LDB_FLAG_MOD_REPLACE, NULL);
844 }
845
846 /*
847   add an add attribute value to a message or enhance an existing attribute
848   which has the same name and the add flag set.
849 */
850 int samdb_msg_add_addval(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx,
851                          struct ldb_message *msg, const char *attr_name,
852                          const char *value)
853 {
854         struct ldb_message_element *el;
855         struct ldb_val val, *vals;
856         char *v;
857         unsigned int i;
858         bool found = false;
859         int ret;
860
861         v = talloc_strdup(mem_ctx, value);
862         if (v == NULL) {
863                 return ldb_oom(sam_ldb);
864         }
865
866         val.data = (uint8_t *) v;
867         val.length = strlen(v);
868
869         if (val.length == 0) {
870                 /* allow empty strings as non-existent attributes */
871                 return LDB_SUCCESS;
872         }
873
874         for (i = 0; i < msg->num_elements; i++) {
875                 el = &msg->elements[i];
876                 if ((ldb_attr_cmp(el->name, attr_name) == 0) &&
877                     (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_ADD)) {
878                         found = true;
879                         break;
880                 }
881         }
882         if (!found) {
883                 ret = ldb_msg_add_empty(msg, attr_name, LDB_FLAG_MOD_ADD,
884                                         &el);
885                 if (ret != LDB_SUCCESS) {
886                         return ret;
887                 }
888         }
889
890         vals = talloc_realloc(msg, el->values, struct ldb_val,
891                               el->num_values + 1);
892         if (vals == NULL) {
893                 return ldb_oom(sam_ldb);
894         }
895         el->values = vals;
896         el->values[el->num_values] = val;
897         ++(el->num_values);
898
899         return LDB_SUCCESS;
900 }
901
902 /*
903   add a delete attribute value to a message or enhance an existing attribute
904   which has the same name and the delete flag set.
905 */
906 int samdb_msg_add_delval(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx,
907                          struct ldb_message *msg, const char *attr_name,
908                          const char *value)
909 {
910         struct ldb_message_element *el;
911         struct ldb_val val, *vals;
912         char *v;
913         unsigned int i;
914         bool found = false;
915         int ret;
916
917         v = talloc_strdup(mem_ctx, value);
918         if (v == NULL) {
919                 return ldb_oom(sam_ldb);
920         }
921
922         val.data = (uint8_t *) v;
923         val.length = strlen(v);
924
925         if (val.length == 0) {
926                 /* allow empty strings as non-existent attributes */
927                 return LDB_SUCCESS;
928         }
929
930         for (i = 0; i < msg->num_elements; i++) {
931                 el = &msg->elements[i];
932                 if ((ldb_attr_cmp(el->name, attr_name) == 0) &&
933                     (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_DELETE)) {
934                         found = true;
935                         break;
936                 }
937         }
938         if (!found) {
939                 ret = ldb_msg_add_empty(msg, attr_name, LDB_FLAG_MOD_DELETE,
940                                         &el);
941                 if (ret != LDB_SUCCESS) {
942                         return ret;
943                 }
944         }
945
946         vals = talloc_realloc(msg, el->values, struct ldb_val,
947                               el->num_values + 1);
948         if (vals == NULL) {
949                 return ldb_oom(sam_ldb);
950         }
951         el->values = vals;
952         el->values[el->num_values] = val;
953         ++(el->num_values);
954
955         return LDB_SUCCESS;
956 }
957
958 /*
959   add a int element to a message
960 */
961 int samdb_msg_add_int(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
962                        const char *attr_name, int v)
963 {
964         const char *s = talloc_asprintf(mem_ctx, "%d", v);
965         return samdb_msg_add_string(sam_ldb, mem_ctx, msg, attr_name, s);
966 }
967
968 /*
969   add a unsigned int element to a message
970 */
971 int samdb_msg_add_uint(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
972                        const char *attr_name, unsigned int v)
973 {
974         return samdb_msg_add_int(sam_ldb, mem_ctx, msg, attr_name, (int)v);
975 }
976
977 /*
978   add a (signed) int64_t element to a message
979 */
980 int samdb_msg_add_int64(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
981                         const char *attr_name, int64_t v)
982 {
983         const char *s = talloc_asprintf(mem_ctx, "%lld", (long long)v);
984         return samdb_msg_add_string(sam_ldb, mem_ctx, msg, attr_name, s);
985 }
986
987 /*
988   add a uint64_t element to a message
989 */
990 int samdb_msg_add_uint64(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
991                         const char *attr_name, uint64_t v)
992 {
993         return samdb_msg_add_int64(sam_ldb, mem_ctx, msg, attr_name, (int64_t)v);
994 }
995
996 /*
997   add a samr_Password element to a message
998 */
999 int samdb_msg_add_hash(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
1000                        const char *attr_name, const struct samr_Password *hash)
1001 {
1002         struct ldb_val val;
1003         val.data = talloc_memdup(mem_ctx, hash->hash, 16);
1004         if (!val.data) {
1005                 return ldb_oom(sam_ldb);
1006         }
1007         val.length = 16;
1008         return ldb_msg_add_value(msg, attr_name, &val, NULL);
1009 }
1010
1011 /*
1012   add a samr_Password array to a message
1013 */
1014 int samdb_msg_add_hashes(struct ldb_context *ldb,
1015                          TALLOC_CTX *mem_ctx, struct ldb_message *msg,
1016                          const char *attr_name, struct samr_Password *hashes,
1017                          unsigned int count)
1018 {
1019         struct ldb_val val;
1020         unsigned int i;
1021         val.data = talloc_array_size(mem_ctx, 16, count);
1022         val.length = count*16;
1023         if (!val.data) {
1024                 return ldb_oom(ldb);
1025         }
1026         for (i=0;i<count;i++) {
1027                 memcpy(i*16 + (char *)val.data, hashes[i].hash, 16);
1028         }
1029         return ldb_msg_add_value(msg, attr_name, &val, NULL);
1030 }
1031
1032 /*
1033   add a acct_flags element to a message
1034 */
1035 int samdb_msg_add_acct_flags(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
1036                              const char *attr_name, uint32_t v)
1037 {
1038         return samdb_msg_add_uint(sam_ldb, mem_ctx, msg, attr_name, ds_acb2uf(v));
1039 }
1040
1041 /*
1042   add a logon_hours element to a message
1043 */
1044 int samdb_msg_add_logon_hours(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
1045                               const char *attr_name, struct samr_LogonHours *hours)
1046 {
1047         struct ldb_val val;
1048         val.length = hours->units_per_week / 8;
1049         val.data = hours->bits;
1050         return ldb_msg_add_value(msg, attr_name, &val, NULL);
1051 }
1052
1053 /*
1054   add a parameters element to a message
1055 */
1056 int samdb_msg_add_parameters(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
1057                              const char *attr_name, struct lsa_BinaryString *parameters)
1058 {
1059         struct ldb_val val;
1060         val.length = parameters->length;
1061         val.data = (uint8_t *)parameters->array;
1062         return ldb_msg_add_value(msg, attr_name, &val, NULL);
1063 }
1064 /*
1065   add a general value element to a message
1066 */
1067 int samdb_msg_add_value(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
1068                               const char *attr_name, const struct ldb_val *val)
1069 {
1070         return ldb_msg_add_value(msg, attr_name, val, NULL);
1071 }
1072
1073 /*
1074   sets a general value element to a message
1075 */
1076 int samdb_msg_set_value(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
1077                         const char *attr_name, const struct ldb_val *val)
1078 {
1079         struct ldb_message_element *el;
1080
1081         el = ldb_msg_find_element(msg, attr_name);
1082         if (el) {
1083                 el->num_values = 0;
1084         }
1085         return ldb_msg_add_value(msg, attr_name, val, NULL);
1086 }
1087
1088 /*
1089   set a string element in a message
1090 */
1091 int samdb_msg_set_string(struct ldb_context *sam_ldb, TALLOC_CTX *mem_ctx, struct ldb_message *msg,
1092                          const char *attr_name, const char *str)
1093 {
1094         struct ldb_message_element *el;
1095
1096         el = ldb_msg_find_element(msg, attr_name);
1097         if (el) {
1098                 el->num_values = 0;
1099         }
1100         return samdb_msg_add_string(sam_ldb, mem_ctx, msg, attr_name, str);
1101 }
1102
1103 /*
1104  * Handle ldb_request in transaction
1105  */
1106 static int dsdb_autotransaction_request(struct ldb_context *sam_ldb,
1107                                         struct ldb_request *req)
1108 {
1109         int ret;
1110
1111         ret = ldb_transaction_start(sam_ldb);
1112         if (ret != LDB_SUCCESS) {
1113                 return ret;
1114         }
1115
1116         ret = ldb_request(sam_ldb, req);
1117         if (ret == LDB_SUCCESS) {
1118                 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
1119         }
1120
1121         if (ret == LDB_SUCCESS) {
1122                 return ldb_transaction_commit(sam_ldb);
1123         }
1124         ldb_transaction_cancel(sam_ldb);
1125
1126         return ret;
1127 }
1128
1129 /*
1130   return a default security descriptor
1131 */
1132 struct security_descriptor *samdb_default_security_descriptor(TALLOC_CTX *mem_ctx)
1133 {
1134         struct security_descriptor *sd;
1135
1136         sd = security_descriptor_initialise(mem_ctx);
1137
1138         return sd;
1139 }
1140
1141 struct ldb_dn *samdb_aggregate_schema_dn(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx) 
1142 {
1143         struct ldb_dn *schema_dn = ldb_get_schema_basedn(sam_ctx);
1144         struct ldb_dn *aggregate_dn;
1145         if (!schema_dn) {
1146                 return NULL;
1147         }
1148
1149         aggregate_dn = ldb_dn_copy(mem_ctx, schema_dn);
1150         if (!aggregate_dn) {
1151                 return NULL;
1152         }
1153         if (!ldb_dn_add_child_fmt(aggregate_dn, "CN=Aggregate")) {
1154                 return NULL;
1155         }
1156         return aggregate_dn;
1157 }
1158
1159 struct ldb_dn *samdb_partitions_dn(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx)
1160 {
1161         struct ldb_dn *new_dn;
1162
1163         new_dn = ldb_dn_copy(mem_ctx, ldb_get_config_basedn(sam_ctx));
1164         if ( ! ldb_dn_add_child_fmt(new_dn, "CN=Partitions")) {
1165                 talloc_free(new_dn);
1166                 return NULL;
1167         }
1168         return new_dn;
1169 }
1170
1171 struct ldb_dn *samdb_infrastructure_dn(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx)
1172 {
1173        struct ldb_dn *new_dn;
1174
1175        new_dn = ldb_dn_copy(mem_ctx, ldb_get_default_basedn(sam_ctx));
1176        if ( ! ldb_dn_add_child_fmt(new_dn, "CN=Infrastructure")) {
1177                talloc_free(new_dn);
1178                return NULL;
1179        }
1180        return new_dn;
1181 }
1182
1183 struct ldb_dn *samdb_sites_dn(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx)
1184 {
1185         struct ldb_dn *new_dn;
1186
1187         new_dn = ldb_dn_copy(mem_ctx, ldb_get_config_basedn(sam_ctx));
1188         if ( ! ldb_dn_add_child_fmt(new_dn, "CN=Sites")) {
1189                 talloc_free(new_dn);
1190                 return NULL;
1191         }
1192         return new_dn;
1193 }
1194
1195 /*
1196   work out the domain sid for the current open ldb
1197 */
1198 const struct dom_sid *samdb_domain_sid(struct ldb_context *ldb)
1199 {
1200         TALLOC_CTX *tmp_ctx;
1201         const struct dom_sid *domain_sid;
1202         const char *attrs[] = {
1203                 "objectSid",
1204                 NULL
1205         };
1206         struct ldb_result *res;
1207         int ret;
1208
1209         /* see if we have a cached copy */
1210         domain_sid = (struct dom_sid *)ldb_get_opaque(ldb, "cache.domain_sid");
1211         if (domain_sid) {
1212                 return domain_sid;
1213         }
1214
1215         tmp_ctx = talloc_new(ldb);
1216         if (tmp_ctx == NULL) {
1217                 goto failed;
1218         }
1219
1220         ret = ldb_search(ldb, tmp_ctx, &res, ldb_get_default_basedn(ldb), LDB_SCOPE_BASE, attrs, "objectSid=*");
1221
1222         if (ret != LDB_SUCCESS) {
1223                 goto failed;
1224         }
1225
1226         if (res->count != 1) {
1227                 goto failed;
1228         }
1229
1230         domain_sid = samdb_result_dom_sid(tmp_ctx, res->msgs[0], "objectSid");
1231         if (domain_sid == NULL) {
1232                 goto failed;
1233         }
1234
1235         /* cache the domain_sid in the ldb */
1236         if (ldb_set_opaque(ldb, "cache.domain_sid", discard_const_p(struct dom_sid, domain_sid)) != LDB_SUCCESS) {
1237                 goto failed;
1238         }
1239
1240         talloc_steal(ldb, domain_sid);
1241         talloc_free(tmp_ctx);
1242
1243         return domain_sid;
1244
1245 failed:
1246         talloc_free(tmp_ctx);
1247         return NULL;
1248 }
1249
1250 /*
1251   get domain sid from cache
1252 */
1253 const struct dom_sid *samdb_domain_sid_cache_only(struct ldb_context *ldb)
1254 {
1255         return (struct dom_sid *)ldb_get_opaque(ldb, "cache.domain_sid");
1256 }
1257
1258 bool samdb_set_domain_sid(struct ldb_context *ldb, const struct dom_sid *dom_sid_in)
1259 {
1260         TALLOC_CTX *tmp_ctx;
1261         struct dom_sid *dom_sid_new;
1262         struct dom_sid *dom_sid_old;
1263
1264         /* see if we have a cached copy */
1265         dom_sid_old = talloc_get_type(ldb_get_opaque(ldb, 
1266                                                      "cache.domain_sid"), struct dom_sid);
1267
1268         tmp_ctx = talloc_new(ldb);
1269         if (tmp_ctx == NULL) {
1270                 goto failed;
1271         }
1272
1273         dom_sid_new = dom_sid_dup(tmp_ctx, dom_sid_in);
1274         if (!dom_sid_new) {
1275                 goto failed;
1276         }
1277
1278         /* cache the domain_sid in the ldb */
1279         if (ldb_set_opaque(ldb, "cache.domain_sid", dom_sid_new) != LDB_SUCCESS) {
1280                 goto failed;
1281         }
1282
1283         talloc_steal(ldb, dom_sid_new);
1284         talloc_free(tmp_ctx);
1285         talloc_free(dom_sid_old);
1286
1287         return true;
1288
1289 failed:
1290         DEBUG(1,("Failed to set our own cached domain SID in the ldb!\n"));
1291         talloc_free(tmp_ctx);
1292         return false;
1293 }
1294
1295 bool samdb_set_ntds_settings_dn(struct ldb_context *ldb, struct ldb_dn *ntds_settings_dn_in)
1296 {
1297         TALLOC_CTX *tmp_ctx;
1298         struct ldb_dn *ntds_settings_dn_new;
1299         struct ldb_dn *ntds_settings_dn_old;
1300
1301         /* see if we have a cached copy */
1302         ntds_settings_dn_old = talloc_get_type(ldb_get_opaque(ldb, 
1303                                                               "cache.ntds_settings_dn"), struct ldb_dn);
1304
1305         tmp_ctx = talloc_new(ldb);
1306         if (tmp_ctx == NULL) {
1307                 goto failed;
1308         }
1309
1310         ntds_settings_dn_new = ldb_dn_copy(tmp_ctx, ntds_settings_dn_in);
1311         if (!ntds_settings_dn_new) {
1312                 goto failed;
1313         }
1314
1315         /* cache the domain_sid in the ldb */
1316         if (ldb_set_opaque(ldb, "cache.ntds_settings_dn", ntds_settings_dn_new) != LDB_SUCCESS) {
1317                 goto failed;
1318         }
1319
1320         talloc_steal(ldb, ntds_settings_dn_new);
1321         talloc_free(tmp_ctx);
1322         talloc_free(ntds_settings_dn_old);
1323
1324         return true;
1325
1326 failed:
1327         DEBUG(1,("Failed to set our NTDS Settings DN in the ldb!\n"));
1328         talloc_free(tmp_ctx);
1329         return false;
1330 }
1331
1332 /* Obtain the short name of the flexible single master operator
1333  * (FSMO), such as the PDC Emulator */
1334 const char *samdb_result_fsmo_name(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const struct ldb_message *msg, 
1335                              const char *attr)
1336 {
1337         /* Format is cn=NTDS Settings,cn=<NETBIOS name of FSMO>,.... */
1338         struct ldb_dn *fsmo_dn = ldb_msg_find_attr_as_dn(ldb, mem_ctx, msg, attr);
1339         const struct ldb_val *val = ldb_dn_get_component_val(fsmo_dn, 1);
1340         const char *name = ldb_dn_get_component_name(fsmo_dn, 1);
1341
1342         if (!name || (ldb_attr_cmp(name, "cn") != 0)) {
1343                 /* Ensure this matches the format.  This gives us a
1344                  * bit more confidence that a 'cn' value will be a
1345                  * ascii string */
1346                 return NULL;
1347         }
1348         if (val) {
1349                 return (char *)val->data;
1350         }
1351         return NULL;
1352 }
1353
1354 /*
1355   work out the ntds settings dn for the current open ldb
1356 */
1357 struct ldb_dn *samdb_ntds_settings_dn(struct ldb_context *ldb)
1358 {
1359         TALLOC_CTX *tmp_ctx;
1360         const char *root_attrs[] = { "dsServiceName", NULL };
1361         int ret;
1362         struct ldb_result *root_res;
1363         struct ldb_dn *settings_dn;
1364
1365         /* see if we have a cached copy */
1366         settings_dn = (struct ldb_dn *)ldb_get_opaque(ldb, "cache.ntds_settings_dn");
1367         if (settings_dn) {
1368                 return settings_dn;
1369         }
1370
1371         tmp_ctx = talloc_new(ldb);
1372         if (tmp_ctx == NULL) {
1373                 goto failed;
1374         }
1375
1376         ret = ldb_search(ldb, tmp_ctx, &root_res, ldb_dn_new(tmp_ctx, ldb, ""), LDB_SCOPE_BASE, root_attrs, NULL);
1377         if (ret) {
1378                 DEBUG(1,("Searching for dsServiceName in rootDSE failed: %s\n", 
1379                          ldb_errstring(ldb)));
1380                 goto failed;
1381         }
1382
1383         if (root_res->count != 1) {
1384                 goto failed;
1385         }
1386
1387         settings_dn = ldb_msg_find_attr_as_dn(ldb, tmp_ctx, root_res->msgs[0], "dsServiceName");
1388
1389         /* cache the domain_sid in the ldb */
1390         if (ldb_set_opaque(ldb, "cache.settings_dn", settings_dn) != LDB_SUCCESS) {
1391                 goto failed;
1392         }
1393
1394         talloc_steal(ldb, settings_dn);
1395         talloc_free(tmp_ctx);
1396
1397         return settings_dn;
1398
1399 failed:
1400         DEBUG(1,("Failed to find our own NTDS Settings DN in the ldb!\n"));
1401         talloc_free(tmp_ctx);
1402         return NULL;
1403 }
1404
1405 /*
1406   work out the ntds settings invocationId for the current open ldb
1407 */
1408 const struct GUID *samdb_ntds_invocation_id(struct ldb_context *ldb)
1409 {
1410         TALLOC_CTX *tmp_ctx;
1411         const char *attrs[] = { "invocationId", NULL };
1412         int ret;
1413         struct ldb_result *res;
1414         struct GUID *invocation_id;
1415
1416         /* see if we have a cached copy */
1417         invocation_id = (struct GUID *)ldb_get_opaque(ldb, "cache.invocation_id");
1418         if (invocation_id) {
1419                 return invocation_id;
1420         }
1421
1422         tmp_ctx = talloc_new(ldb);
1423         if (tmp_ctx == NULL) {
1424                 goto failed;
1425         }
1426
1427         ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb), LDB_SCOPE_BASE, attrs, NULL);
1428         if (ret) {
1429                 goto failed;
1430         }
1431
1432         if (res->count != 1) {
1433                 goto failed;
1434         }
1435
1436         invocation_id = talloc(tmp_ctx, struct GUID);
1437         if (!invocation_id) {
1438                 goto failed;
1439         }
1440
1441         *invocation_id = samdb_result_guid(res->msgs[0], "invocationId");
1442
1443         /* cache the domain_sid in the ldb */
1444         if (ldb_set_opaque(ldb, "cache.invocation_id", invocation_id) != LDB_SUCCESS) {
1445                 goto failed;
1446         }
1447
1448         talloc_steal(ldb, invocation_id);
1449         talloc_free(tmp_ctx);
1450
1451         return invocation_id;
1452
1453 failed:
1454         DEBUG(1,("Failed to find our own NTDS Settings invocationId in the ldb!\n"));
1455         talloc_free(tmp_ctx);
1456         return NULL;
1457 }
1458
1459 bool samdb_set_ntds_invocation_id(struct ldb_context *ldb, const struct GUID *invocation_id_in)
1460 {
1461         TALLOC_CTX *tmp_ctx;
1462         struct GUID *invocation_id_new;
1463         struct GUID *invocation_id_old;
1464
1465         /* see if we have a cached copy */
1466         invocation_id_old = (struct GUID *)ldb_get_opaque(ldb, 
1467                                                          "cache.invocation_id");
1468
1469         tmp_ctx = talloc_new(ldb);
1470         if (tmp_ctx == NULL) {
1471                 goto failed;
1472         }
1473
1474         invocation_id_new = talloc(tmp_ctx, struct GUID);
1475         if (!invocation_id_new) {
1476                 goto failed;
1477         }
1478
1479         *invocation_id_new = *invocation_id_in;
1480
1481         /* cache the domain_sid in the ldb */
1482         if (ldb_set_opaque(ldb, "cache.invocation_id", invocation_id_new) != LDB_SUCCESS) {
1483                 goto failed;
1484         }
1485
1486         talloc_steal(ldb, invocation_id_new);
1487         talloc_free(tmp_ctx);
1488         talloc_free(invocation_id_old);
1489
1490         return true;
1491
1492 failed:
1493         DEBUG(1,("Failed to set our own cached invocationId in the ldb!\n"));
1494         talloc_free(tmp_ctx);
1495         return false;
1496 }
1497
1498 /*
1499   work out the ntds settings objectGUID for the current open ldb
1500 */
1501 const struct GUID *samdb_ntds_objectGUID(struct ldb_context *ldb)
1502 {
1503         TALLOC_CTX *tmp_ctx;
1504         const char *attrs[] = { "objectGUID", NULL };
1505         int ret;
1506         struct ldb_result *res;
1507         struct GUID *ntds_guid;
1508
1509         /* see if we have a cached copy */
1510         ntds_guid = (struct GUID *)ldb_get_opaque(ldb, "cache.ntds_guid");
1511         if (ntds_guid) {
1512                 return ntds_guid;
1513         }
1514
1515         tmp_ctx = talloc_new(ldb);
1516         if (tmp_ctx == NULL) {
1517                 goto failed;
1518         }
1519
1520         ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb), LDB_SCOPE_BASE, attrs, NULL);
1521         if (ret) {
1522                 goto failed;
1523         }
1524
1525         if (res->count != 1) {
1526                 goto failed;
1527         }
1528
1529         ntds_guid = talloc(tmp_ctx, struct GUID);
1530         if (!ntds_guid) {
1531                 goto failed;
1532         }
1533
1534         *ntds_guid = samdb_result_guid(res->msgs[0], "objectGUID");
1535
1536         /* cache the domain_sid in the ldb */
1537         if (ldb_set_opaque(ldb, "cache.ntds_guid", ntds_guid) != LDB_SUCCESS) {
1538                 goto failed;
1539         }
1540
1541         talloc_steal(ldb, ntds_guid);
1542         talloc_free(tmp_ctx);
1543
1544         return ntds_guid;
1545
1546 failed:
1547         DEBUG(1,("Failed to find our own NTDS Settings objectGUID in the ldb!\n"));
1548         talloc_free(tmp_ctx);
1549         return NULL;
1550 }
1551
1552 bool samdb_set_ntds_objectGUID(struct ldb_context *ldb, const struct GUID *ntds_guid_in)
1553 {
1554         TALLOC_CTX *tmp_ctx;
1555         struct GUID *ntds_guid_new;
1556         struct GUID *ntds_guid_old;
1557
1558         /* see if we have a cached copy */
1559         ntds_guid_old = (struct GUID *)ldb_get_opaque(ldb, "cache.ntds_guid");
1560
1561         tmp_ctx = talloc_new(ldb);
1562         if (tmp_ctx == NULL) {
1563                 goto failed;
1564         }
1565
1566         ntds_guid_new = talloc(tmp_ctx, struct GUID);
1567         if (!ntds_guid_new) {
1568                 goto failed;
1569         }
1570
1571         *ntds_guid_new = *ntds_guid_in;
1572
1573         /* cache the domain_sid in the ldb */
1574         if (ldb_set_opaque(ldb, "cache.ntds_guid", ntds_guid_new) != LDB_SUCCESS) {
1575                 goto failed;
1576         }
1577
1578         talloc_steal(ldb, ntds_guid_new);
1579         talloc_free(tmp_ctx);
1580         talloc_free(ntds_guid_old);
1581
1582         return true;
1583
1584 failed:
1585         DEBUG(1,("Failed to set our own cached invocationId in the ldb!\n"));
1586         talloc_free(tmp_ctx);
1587         return false;
1588 }
1589
1590 /*
1591   work out the server dn for the current open ldb
1592 */
1593 struct ldb_dn *samdb_server_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
1594 {
1595         return ldb_dn_get_parent(mem_ctx, samdb_ntds_settings_dn(ldb));
1596 }
1597
1598 /*
1599   work out the server dn for the current open ldb
1600 */
1601 struct ldb_dn *samdb_server_site_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
1602 {
1603         struct ldb_dn *server_dn;
1604         struct ldb_dn *servers_dn;
1605         struct ldb_dn *server_site_dn;
1606
1607         /* TODO: there must be a saner way to do this!! */
1608         server_dn = samdb_server_dn(ldb, mem_ctx);
1609         if (!server_dn) return NULL;
1610
1611         servers_dn = ldb_dn_get_parent(mem_ctx, server_dn);
1612         talloc_free(server_dn);
1613         if (!servers_dn) return NULL;
1614
1615         server_site_dn = ldb_dn_get_parent(mem_ctx, servers_dn);
1616         talloc_free(servers_dn);
1617
1618         return server_site_dn;
1619 }
1620
1621 /*
1622   find a 'reference' DN that points at another object
1623   (eg. serverReference, rIDManagerReference etc)
1624  */
1625 int samdb_reference_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn *base,
1626                        const char *attribute, struct ldb_dn **dn)
1627 {
1628         const char *attrs[2];
1629         struct ldb_result *res;
1630         int ret;
1631
1632         attrs[0] = attribute;
1633         attrs[1] = NULL;
1634
1635         ret = ldb_search(ldb, mem_ctx, &res, base, LDB_SCOPE_BASE, attrs, NULL);
1636         if (ret != LDB_SUCCESS) {
1637                 return ret;
1638         }
1639         if (res->count != 1) {
1640                 talloc_free(res);
1641                 return LDB_ERR_NO_SUCH_OBJECT;
1642         }
1643
1644         *dn = ldb_msg_find_attr_as_dn(ldb, mem_ctx, res->msgs[0], attribute);
1645         if (!*dn) {
1646                 talloc_free(res);
1647                 return LDB_ERR_NO_SUCH_ATTRIBUTE;
1648         }
1649
1650         talloc_free(res);
1651         return LDB_SUCCESS;
1652 }
1653
1654 /*
1655   find our machine account via the serverReference attribute in the
1656   server DN
1657  */
1658 int samdb_server_reference_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn **dn)
1659 {
1660         struct ldb_dn *server_dn;
1661         int ret;
1662
1663         server_dn = samdb_server_dn(ldb, mem_ctx);
1664         if (server_dn == NULL) {
1665                 return LDB_ERR_NO_SUCH_OBJECT;
1666         }
1667
1668         ret = samdb_reference_dn(ldb, mem_ctx, server_dn, "serverReference", dn);
1669         talloc_free(server_dn);
1670
1671         return ret;
1672 }
1673
1674 /*
1675   find the RID Manager$ DN via the rIDManagerReference attribute in the
1676   base DN
1677  */
1678 int samdb_rid_manager_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn **dn)
1679 {
1680         return samdb_reference_dn(ldb, mem_ctx, ldb_get_default_basedn(ldb),
1681                                   "rIDManagerReference", dn);
1682 }
1683
1684 /*
1685   find the RID Set DN via the rIDSetReferences attribute in our
1686   machine account DN
1687  */
1688 int samdb_rid_set_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn **dn)
1689 {
1690         struct ldb_dn *server_ref_dn;
1691         int ret;
1692
1693         ret = samdb_server_reference_dn(ldb, mem_ctx, &server_ref_dn);
1694         if (ret != LDB_SUCCESS) {
1695                 return ret;
1696         }
1697         ret = samdb_reference_dn(ldb, mem_ctx, server_ref_dn, "rIDSetReferences", dn);
1698         talloc_free(server_ref_dn);
1699         return ret;
1700 }
1701
1702 const char *samdb_server_site_name(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
1703 {
1704         const struct ldb_val *val = ldb_dn_get_rdn_val(samdb_server_site_dn(ldb,
1705                                                                             mem_ctx));
1706
1707         if (val == NULL) {
1708                 return NULL;
1709         }
1710
1711         return (const char *) val->data;
1712 }
1713
1714 /*
1715  * Finds the client site by using the client's IP address.
1716  * The "subnet_name" returns the name of the subnet if parameter != NULL
1717  */
1718 const char *samdb_client_site_name(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
1719                                    const char *ip_address, char **subnet_name)
1720 {
1721         const char *attrs[] = { "cn", "siteObject", NULL };
1722         struct ldb_dn *sites_container_dn, *subnets_dn, *sites_dn;
1723         struct ldb_result *res;
1724         const struct ldb_val *val;
1725         const char *site_name = NULL, *l_subnet_name = NULL;
1726         const char *allow_list[2] = { NULL, NULL };
1727         unsigned int i, count;
1728         int cnt, ret;
1729
1730         /*
1731          * if we don't have a client ip e.g. ncalrpc
1732          * the server site is the client site
1733          */
1734         if (ip_address == NULL) {
1735                 return samdb_server_site_name(ldb, mem_ctx);
1736         }
1737
1738         sites_container_dn = samdb_sites_dn(ldb, mem_ctx);
1739         if (sites_container_dn == NULL) {
1740                 return NULL;
1741         }
1742
1743         subnets_dn = ldb_dn_copy(mem_ctx, sites_container_dn);
1744         if ( ! ldb_dn_add_child_fmt(subnets_dn, "CN=Subnets")) {
1745                 talloc_free(sites_container_dn);
1746                 talloc_free(subnets_dn);
1747                 return NULL;
1748         }
1749
1750         ret = ldb_search(ldb, mem_ctx, &res, subnets_dn, LDB_SCOPE_ONELEVEL,
1751                          attrs, NULL);
1752         if (ret == LDB_ERR_NO_SUCH_OBJECT) {
1753                 count = 0;
1754         } else if (ret != LDB_SUCCESS) {
1755                 talloc_free(sites_container_dn);
1756                 talloc_free(subnets_dn);
1757                 return NULL;
1758         } else {
1759                 count = res->count;
1760         }
1761
1762         for (i = 0; i < count; i++) {
1763                 l_subnet_name = ldb_msg_find_attr_as_string(res->msgs[i], "cn",
1764                                                             NULL);
1765
1766                 allow_list[0] = l_subnet_name;
1767
1768                 if (allow_access(mem_ctx, NULL, allow_list, "", ip_address)) {
1769                         sites_dn = ldb_msg_find_attr_as_dn(ldb, mem_ctx,
1770                                                            res->msgs[i],
1771                                                            "siteObject");
1772                         if (sites_dn == NULL) {
1773                                 /* No reference, maybe another subnet matches */
1774                                 continue;
1775                         }
1776
1777                         /* "val" cannot be NULL here since "sites_dn" != NULL */
1778                         val = ldb_dn_get_rdn_val(sites_dn);
1779                         site_name = talloc_strdup(mem_ctx,
1780                                                   (const char *) val->data);
1781
1782                         talloc_free(sites_dn);
1783
1784                         break;
1785                 }
1786         }
1787
1788         if (site_name == NULL) {
1789                 /* This is the Windows Server fallback rule: when no subnet
1790                  * exists and we have only one site available then use it (it
1791                  * is for sure the same as our server site). If more sites do
1792                  * exist then we don't know which one to use and set the site
1793                  * name to "". */
1794                 cnt = samdb_search_count(ldb, sites_container_dn,
1795                                          "(objectClass=site)");
1796                 if (cnt == 1) {
1797                         site_name = samdb_server_site_name(ldb, mem_ctx);
1798                 } else {
1799                         site_name = talloc_strdup(mem_ctx, "");
1800                 }
1801                 l_subnet_name = NULL;
1802         }
1803
1804         if (subnet_name != NULL) {
1805                 *subnet_name = talloc_strdup(mem_ctx, l_subnet_name);
1806         }
1807
1808         talloc_free(sites_container_dn);
1809         talloc_free(subnets_dn);
1810         talloc_free(res);
1811
1812         return site_name;
1813 }
1814
1815 /*
1816   work out if we are the PDC for the domain of the current open ldb
1817 */
1818 bool samdb_is_pdc(struct ldb_context *ldb)
1819 {
1820         const char *dom_attrs[] = { "fSMORoleOwner", NULL };
1821         int ret;
1822         struct ldb_result *dom_res;
1823         TALLOC_CTX *tmp_ctx;
1824         bool is_pdc;
1825         struct ldb_dn *pdc;
1826
1827         tmp_ctx = talloc_new(ldb);
1828         if (tmp_ctx == NULL) {
1829                 DEBUG(1, ("talloc_new failed in samdb_is_pdc"));
1830                 return false;
1831         }
1832
1833         ret = ldb_search(ldb, tmp_ctx, &dom_res, ldb_get_default_basedn(ldb), LDB_SCOPE_BASE, dom_attrs, NULL);
1834         if (ret != LDB_SUCCESS) {
1835                 DEBUG(1,("Searching for fSMORoleOwner in %s failed: %s\n", 
1836                          ldb_dn_get_linearized(ldb_get_default_basedn(ldb)), 
1837                          ldb_errstring(ldb)));
1838                 goto failed;
1839         }
1840         if (dom_res->count != 1) {
1841                 goto failed;
1842         }
1843
1844         pdc = ldb_msg_find_attr_as_dn(ldb, tmp_ctx, dom_res->msgs[0], "fSMORoleOwner");
1845
1846         if (ldb_dn_compare(samdb_ntds_settings_dn(ldb), pdc) == 0) {
1847                 is_pdc = true;
1848         } else {
1849                 is_pdc = false;
1850         }
1851
1852         talloc_free(tmp_ctx);
1853
1854         return is_pdc;
1855
1856 failed:
1857         DEBUG(1,("Failed to find if we are the PDC for this ldb\n"));
1858         talloc_free(tmp_ctx);
1859         return false;
1860 }
1861
1862 /*
1863   work out if we are a Global Catalog server for the domain of the current open ldb
1864 */
1865 bool samdb_is_gc(struct ldb_context *ldb)
1866 {
1867         const char *attrs[] = { "options", NULL };
1868         int ret, options;
1869         struct ldb_result *res;
1870         TALLOC_CTX *tmp_ctx;
1871
1872         tmp_ctx = talloc_new(ldb);
1873         if (tmp_ctx == NULL) {
1874                 DEBUG(1, ("talloc_new failed in samdb_is_pdc"));
1875                 return false;
1876         }
1877
1878         /* Query cn=ntds settings,.... */
1879         ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb), LDB_SCOPE_BASE, attrs, NULL);
1880         if (ret != LDB_SUCCESS) {
1881                 talloc_free(tmp_ctx);
1882                 return false;
1883         }
1884         if (res->count != 1) {
1885                 talloc_free(tmp_ctx);
1886                 return false;
1887         }
1888
1889         options = ldb_msg_find_attr_as_int(res->msgs[0], "options", 0);
1890         talloc_free(tmp_ctx);
1891
1892         /* if options attribute has the 0x00000001 flag set, then enable the global catlog */
1893         if (options & 0x000000001) {
1894                 return true;
1895         }
1896         return false;
1897 }
1898
1899 /* Find a domain object in the parents of a particular DN.  */
1900 int samdb_search_for_parent_domain(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, struct ldb_dn *dn,
1901                                    struct ldb_dn **parent_dn, const char **errstring)
1902 {
1903         TALLOC_CTX *local_ctx;
1904         struct ldb_dn *sdn = dn;
1905         struct ldb_result *res = NULL;
1906         int ret = LDB_SUCCESS;
1907         const char *attrs[] = { NULL };
1908
1909         local_ctx = talloc_new(mem_ctx);
1910         if (local_ctx == NULL) return ldb_oom(ldb);
1911
1912         while ((sdn = ldb_dn_get_parent(local_ctx, sdn))) {
1913                 ret = ldb_search(ldb, local_ctx, &res, sdn, LDB_SCOPE_BASE, attrs,
1914                                  "(|(objectClass=domain)(objectClass=builtinDomain))");
1915                 if (ret == LDB_SUCCESS) {
1916                         if (res->count == 1) {
1917                                 break;
1918                         }
1919                 } else {
1920                         break;
1921                 }
1922         }
1923
1924         if (ret != LDB_SUCCESS) {
1925                 *errstring = talloc_asprintf(mem_ctx, "Error searching for parent domain of %s, failed searching for %s: %s",
1926                                              ldb_dn_get_linearized(dn),
1927                                              ldb_dn_get_linearized(sdn),
1928                                              ldb_errstring(ldb));
1929                 talloc_free(local_ctx);
1930                 return ret;
1931         }
1932         if (res->count != 1) {
1933                 *errstring = talloc_asprintf(mem_ctx, "Invalid dn (%s), not child of a domain object",
1934                                              ldb_dn_get_linearized(dn));
1935                 DEBUG(0,(__location__ ": %s\n", *errstring));
1936                 talloc_free(local_ctx);
1937                 return LDB_ERR_CONSTRAINT_VIOLATION;
1938         }
1939
1940         *parent_dn = talloc_steal(mem_ctx, res->msgs[0]->dn);
1941         talloc_free(local_ctx);
1942         return ret;
1943 }
1944
1945
1946 /*
1947  * Performs checks on a user password (plaintext UNIX format - attribute
1948  * "password"). The remaining parameters have to be extracted from the domain
1949  * object in the AD.
1950  *
1951  * Result codes from "enum samr_ValidationStatus" (consider "samr.idl")
1952  */
1953 enum samr_ValidationStatus samdb_check_password(const DATA_BLOB *password,
1954                                                 const uint32_t pwdProperties,
1955                                                 const uint32_t minPwdLength)
1956 {
1957         /* checks if the "minPwdLength" property is satisfied */
1958         if (minPwdLength > password->length)
1959                 return SAMR_VALIDATION_STATUS_PWD_TOO_SHORT;
1960
1961         /* checks the password complexity */
1962         if (((pwdProperties & DOMAIN_PASSWORD_COMPLEX) != 0)
1963                         && (password->data != NULL)
1964                         && (!check_password_quality((const char *) password->data)))
1965                 return SAMR_VALIDATION_STATUS_NOT_COMPLEX_ENOUGH;
1966
1967         return SAMR_VALIDATION_STATUS_SUCCESS;
1968 }
1969
1970 /*
1971  * Callback for "samdb_set_password" password change
1972  */
1973 int samdb_set_password_callback(struct ldb_request *req, struct ldb_reply *ares)
1974 {
1975         int ret;
1976
1977         if (!ares) {
1978                 return ldb_request_done(req, LDB_ERR_OPERATIONS_ERROR);
1979         }
1980
1981         if (ares->error != LDB_SUCCESS) {
1982                 ret = ares->error;
1983                 req->context = talloc_steal(req,
1984                                             ldb_reply_get_control(ares, DSDB_CONTROL_PASSWORD_CHANGE_STATUS_OID));
1985                 talloc_free(ares);
1986                 return ldb_request_done(req, ret);
1987         }
1988
1989         if (ares->type != LDB_REPLY_DONE) {
1990                 talloc_free(ares);
1991                 return ldb_request_done(req, LDB_ERR_OPERATIONS_ERROR);
1992         }
1993
1994         req->context = talloc_steal(req,
1995                                     ldb_reply_get_control(ares, DSDB_CONTROL_PASSWORD_CHANGE_STATUS_OID));
1996         talloc_free(ares);
1997         return ldb_request_done(req, LDB_SUCCESS);
1998 }
1999
2000 /*
2001  * Sets the user password using plaintext UTF16 (attribute "new_password") or
2002  * LM (attribute "lmNewHash") or NT (attribute "ntNewHash") hash. Also pass
2003  * the old LM and/or NT hash (attributes "lmOldHash"/"ntOldHash") if it is a
2004  * user change or not. The "rejectReason" gives some more informations if the
2005  * change failed.
2006  *
2007  * Results: NT_STATUS_OK, NT_STATUS_INVALID_PARAMETER, NT_STATUS_UNSUCCESSFUL,
2008  *   NT_STATUS_WRONG_PASSWORD, NT_STATUS_PASSWORD_RESTRICTION
2009  */
2010 NTSTATUS samdb_set_password(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
2011                             struct ldb_dn *user_dn, struct ldb_dn *domain_dn,
2012                             const DATA_BLOB *new_password,
2013                             const struct samr_Password *lmNewHash,
2014                             const struct samr_Password *ntNewHash,
2015                             const struct samr_Password *lmOldHash,
2016                             const struct samr_Password *ntOldHash,
2017                             enum samPwdChangeReason *reject_reason,
2018                             struct samr_DomInfo1 **_dominfo)
2019 {
2020         struct ldb_message *msg;
2021         struct ldb_message_element *el;
2022         struct ldb_request *req;
2023         struct dsdb_control_password_change_status *pwd_stat = NULL;
2024         int ret;
2025         NTSTATUS status = NT_STATUS_OK;
2026
2027 #define CHECK_RET(x) \
2028         if (x != LDB_SUCCESS) { \
2029                 talloc_free(msg); \
2030                 return NT_STATUS_NO_MEMORY; \
2031         }
2032
2033         msg = ldb_msg_new(mem_ctx);
2034         if (msg == NULL) {
2035                 return NT_STATUS_NO_MEMORY;
2036         }
2037         msg->dn = user_dn;
2038         if ((new_password != NULL)
2039                         && ((lmNewHash == NULL) && (ntNewHash == NULL))) {
2040                 /* we have the password as plaintext UTF16 */
2041                 CHECK_RET(samdb_msg_add_value(ldb, mem_ctx, msg,
2042                         "clearTextPassword", new_password));
2043                 el = ldb_msg_find_element(msg, "clearTextPassword");
2044                 el->flags = LDB_FLAG_MOD_REPLACE;
2045         } else if ((new_password == NULL)
2046                         && ((lmNewHash != NULL) || (ntNewHash != NULL))) {
2047                 /* we have a password as LM and/or NT hash */
2048                 if (lmNewHash != NULL) {
2049                         CHECK_RET(samdb_msg_add_hash(ldb, mem_ctx, msg,
2050                                 "dBCSPwd", lmNewHash));
2051                         el = ldb_msg_find_element(msg, "dBCSPwd");
2052                         el->flags = LDB_FLAG_MOD_REPLACE;
2053                 }
2054                 if (ntNewHash != NULL) {
2055                         CHECK_RET(samdb_msg_add_hash(ldb, mem_ctx, msg,
2056                                 "unicodePwd", ntNewHash));
2057                         el = ldb_msg_find_element(msg, "unicodePwd");
2058                         el->flags = LDB_FLAG_MOD_REPLACE;
2059                 }
2060         } else {
2061                 /* the password wasn't specified correctly */
2062                 talloc_free(msg);
2063                 return NT_STATUS_INVALID_PARAMETER;
2064         }
2065
2066         /* build modify request */
2067         ret = ldb_build_mod_req(&req, ldb, mem_ctx, msg, NULL, NULL,
2068                                 samdb_set_password_callback, NULL);
2069         if (ret != LDB_SUCCESS) {
2070                 talloc_free(msg);
2071                 return NT_STATUS_NO_MEMORY;
2072         }
2073
2074         /* A password change operation */
2075         if ((ntOldHash != NULL) || (lmOldHash != NULL)) {
2076                 struct dsdb_control_password_change *change;
2077
2078                 change = talloc(req, struct dsdb_control_password_change);
2079                 if (change == NULL) {
2080                         talloc_free(req);
2081                         talloc_free(msg);
2082                         return NT_STATUS_NO_MEMORY;
2083                 }
2084
2085                 change->old_nt_pwd_hash = ntOldHash;
2086                 change->old_lm_pwd_hash = lmOldHash;
2087
2088                 ret = ldb_request_add_control(req,
2089                                               DSDB_CONTROL_PASSWORD_CHANGE_OID,
2090                                               true, change);
2091                 if (ret != LDB_SUCCESS) {
2092                         talloc_free(req);
2093                         talloc_free(msg);
2094                         return NT_STATUS_NO_MEMORY;
2095                 }
2096         }
2097         ret = ldb_request_add_control(req,
2098                                       DSDB_CONTROL_PASSWORD_HASH_VALUES_OID,
2099                                       true, NULL);
2100         if (ret != LDB_SUCCESS) {
2101                 talloc_free(req);
2102                 talloc_free(msg);
2103                 return NT_STATUS_NO_MEMORY;
2104         }
2105         ret = ldb_request_add_control(req,
2106                                       DSDB_CONTROL_PASSWORD_CHANGE_STATUS_OID,
2107                                       true, NULL);
2108         if (ret != LDB_SUCCESS) {
2109                 talloc_free(req);
2110                 talloc_free(msg);
2111                 return NT_STATUS_NO_MEMORY;
2112         }
2113
2114         ret = dsdb_autotransaction_request(ldb, req);
2115
2116         if (req->context != NULL) {
2117                 pwd_stat = talloc_steal(mem_ctx,
2118                                         ((struct ldb_control *)req->context)->data);
2119         }
2120
2121         talloc_free(req);
2122         talloc_free(msg);
2123
2124         /* Sets the domain info (if requested) */
2125         if (_dominfo != NULL) {
2126                 struct samr_DomInfo1 *dominfo;
2127
2128                 dominfo = talloc_zero(mem_ctx, struct samr_DomInfo1);
2129                 if (dominfo == NULL) {
2130                         return NT_STATUS_NO_MEMORY;
2131                 }
2132
2133                 if (pwd_stat != NULL) {
2134                         dominfo->min_password_length     = pwd_stat->domain_data.minPwdLength;
2135                         dominfo->password_properties     = pwd_stat->domain_data.pwdProperties;
2136                         dominfo->password_history_length = pwd_stat->domain_data.pwdHistoryLength;
2137                         dominfo->max_password_age        = pwd_stat->domain_data.maxPwdAge;
2138                         dominfo->min_password_age        = pwd_stat->domain_data.minPwdAge;
2139                 }
2140
2141                 *_dominfo = dominfo;
2142         }
2143
2144         if (reject_reason != NULL) {
2145                 if (pwd_stat != NULL) {
2146                         *reject_reason = pwd_stat->reject_reason;
2147                 } else {
2148                         *reject_reason = SAM_PWD_CHANGE_NO_ERROR;
2149                 }
2150         }
2151
2152         if (pwd_stat != NULL) {
2153                 talloc_free(pwd_stat);
2154         }
2155
2156         if (ret == LDB_ERR_CONSTRAINT_VIOLATION) {
2157                 const char *errmsg = ldb_errstring(ldb);
2158                 char *endptr = NULL;
2159                 WERROR werr = WERR_GENERAL_FAILURE;
2160                 status = NT_STATUS_UNSUCCESSFUL;
2161                 if (errmsg != NULL) {
2162                         werr = W_ERROR(strtol(errmsg, &endptr, 16));
2163                 }
2164                 if (endptr != errmsg) {
2165                         if (W_ERROR_EQUAL(werr, WERR_INVALID_PASSWORD)) {
2166                                 status = NT_STATUS_WRONG_PASSWORD;
2167                         }
2168                         if (W_ERROR_EQUAL(werr, WERR_PASSWORD_RESTRICTION)) {
2169                                 status = NT_STATUS_PASSWORD_RESTRICTION;
2170                         }
2171                 }
2172         } else if (ret == LDB_ERR_NO_SUCH_OBJECT) {
2173                 /* don't let the caller know if an account doesn't exist */
2174                 status = NT_STATUS_WRONG_PASSWORD;
2175         } else if (ret != LDB_SUCCESS) {
2176                 status = NT_STATUS_UNSUCCESSFUL;
2177         }
2178
2179         return status;
2180 }
2181
2182 /*
2183  * Sets the user password using plaintext UTF16 (attribute "new_password") or
2184  * LM (attribute "lmNewHash") or NT (attribute "ntNewHash") hash. Also pass
2185  * the old LM and/or NT hash (attributes "lmOldHash"/"ntOldHash") if it is a
2186  * user change or not. The "rejectReason" gives some more informations if the
2187  * change failed.
2188  *
2189  * This wrapper function for "samdb_set_password" takes a SID as input rather
2190  * than a user DN.
2191  *
2192  * This call encapsulates a new LDB transaction for changing the password;
2193  * therefore the user hasn't to start a new one.
2194  *
2195  * Results: NT_STATUS_OK, NT_STATUS_INTERNAL_DB_CORRUPTION,
2196  *   NT_STATUS_INVALID_PARAMETER, NT_STATUS_UNSUCCESSFUL,
2197  *   NT_STATUS_WRONG_PASSWORD, NT_STATUS_PASSWORD_RESTRICTION,
2198  *   NT_STATUS_TRANSACTION_ABORTED, NT_STATUS_NO_SUCH_USER
2199  */
2200 NTSTATUS samdb_set_password_sid(struct ldb_context *ldb, TALLOC_CTX *mem_ctx,
2201                                 const struct dom_sid *user_sid,
2202                                 const DATA_BLOB *new_password,
2203                                 const struct samr_Password *lmNewHash,
2204                                 const struct samr_Password *ntNewHash,
2205                                 const struct samr_Password *lmOldHash,
2206                                 const struct samr_Password *ntOldHash,
2207                                 enum samPwdChangeReason *reject_reason,
2208                                 struct samr_DomInfo1 **_dominfo) 
2209 {
2210         NTSTATUS nt_status;
2211         struct ldb_dn *user_dn;
2212         int ret;
2213
2214         ret = ldb_transaction_start(ldb);
2215         if (ret != LDB_SUCCESS) {
2216                 DEBUG(1, ("Failed to start transaction: %s\n", ldb_errstring(ldb)));
2217                 return NT_STATUS_TRANSACTION_ABORTED;
2218         }
2219
2220         user_dn = samdb_search_dn(ldb, mem_ctx, NULL,
2221                                   "(&(objectSid=%s)(objectClass=user))", 
2222                                   ldap_encode_ndr_dom_sid(mem_ctx, user_sid));
2223         if (!user_dn) {
2224                 ldb_transaction_cancel(ldb);
2225                 DEBUG(3, ("samdb_set_password_sid: SID %s not found in samdb, returning NO_SUCH_USER\n",
2226                           dom_sid_string(mem_ctx, user_sid)));
2227                 return NT_STATUS_NO_SUCH_USER;
2228         }
2229
2230         nt_status = samdb_set_password(ldb, mem_ctx,
2231                                        user_dn, NULL,
2232                                        new_password,
2233                                        lmNewHash, ntNewHash,
2234                                        lmOldHash, ntOldHash,
2235                                        reject_reason, _dominfo);
2236         if (!NT_STATUS_IS_OK(nt_status)) {
2237                 ldb_transaction_cancel(ldb);
2238                 talloc_free(user_dn);
2239                 return nt_status;
2240         }
2241
2242         ret = ldb_transaction_commit(ldb);
2243         if (ret != LDB_SUCCESS) {
2244                 DEBUG(0,("Failed to commit transaction to change password on %s: %s\n",
2245                          ldb_dn_get_linearized(user_dn),
2246                          ldb_errstring(ldb)));
2247                 talloc_free(user_dn);
2248                 return NT_STATUS_TRANSACTION_ABORTED;
2249         }
2250
2251         talloc_free(user_dn);
2252         return NT_STATUS_OK;
2253 }
2254
2255
2256 NTSTATUS samdb_create_foreign_security_principal(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx, 
2257                                                  struct dom_sid *sid, struct ldb_dn **ret_dn) 
2258 {
2259         struct ldb_message *msg;
2260         struct ldb_dn *basedn;
2261         char *sidstr;
2262         int ret;
2263
2264         sidstr = dom_sid_string(mem_ctx, sid);
2265         NT_STATUS_HAVE_NO_MEMORY(sidstr);
2266
2267         /* We might have to create a ForeignSecurityPrincipal, even if this user
2268          * is in our own domain */
2269
2270         msg = ldb_msg_new(sidstr);
2271         if (msg == NULL) {
2272                 talloc_free(sidstr);
2273                 return NT_STATUS_NO_MEMORY;
2274         }
2275
2276         ret = dsdb_wellknown_dn(sam_ctx, sidstr,
2277                                 ldb_get_default_basedn(sam_ctx),
2278                                 DS_GUID_FOREIGNSECURITYPRINCIPALS_CONTAINER,
2279                                 &basedn);
2280         if (ret != LDB_SUCCESS) {
2281                 DEBUG(0, ("Failed to find DN for "
2282                           "ForeignSecurityPrincipal container - %s\n", ldb_errstring(sam_ctx)));
2283                 talloc_free(sidstr);
2284                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
2285         }
2286
2287         /* add core elements to the ldb_message for the alias */
2288         msg->dn = basedn;
2289         if ( ! ldb_dn_add_child_fmt(msg->dn, "CN=%s", sidstr)) {
2290                 talloc_free(sidstr);
2291                 return NT_STATUS_NO_MEMORY;
2292         }
2293
2294         samdb_msg_add_string(sam_ctx, msg, msg,
2295                              "objectClass",
2296                              "foreignSecurityPrincipal");
2297
2298         /* create the alias */
2299         ret = ldb_add(sam_ctx, msg);
2300         if (ret != LDB_SUCCESS) {
2301                 DEBUG(0,("Failed to create foreignSecurityPrincipal "
2302                          "record %s: %s\n", 
2303                          ldb_dn_get_linearized(msg->dn),
2304                          ldb_errstring(sam_ctx)));
2305                 talloc_free(sidstr);
2306                 return NT_STATUS_INTERNAL_DB_CORRUPTION;
2307         }
2308
2309         *ret_dn = talloc_steal(mem_ctx, msg->dn);
2310         talloc_free(sidstr);
2311
2312         return NT_STATUS_OK;
2313 }
2314
2315
2316 /*
2317   Find the DN of a domain, assuming it to be a dotted.dns name
2318 */
2319
2320 struct ldb_dn *samdb_dns_domain_to_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, const char *dns_domain) 
2321 {
2322         unsigned int i;
2323         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
2324         const char *binary_encoded;
2325         const char **split_realm;
2326         struct ldb_dn *dn;
2327
2328         if (!tmp_ctx) {
2329                 return NULL;
2330         }
2331
2332         split_realm = (const char **)str_list_make(tmp_ctx, dns_domain, ".");
2333         if (!split_realm) {
2334                 talloc_free(tmp_ctx);
2335                 return NULL;
2336         }
2337         dn = ldb_dn_new(mem_ctx, ldb, NULL);
2338         for (i=0; split_realm[i]; i++) {
2339                 binary_encoded = ldb_binary_encode_string(tmp_ctx, split_realm[i]);
2340                 if (!ldb_dn_add_base_fmt(dn, "dc=%s", binary_encoded)) {
2341                         DEBUG(2, ("Failed to add dc=%s element to DN %s\n",
2342                                   binary_encoded, ldb_dn_get_linearized(dn)));
2343                         talloc_free(tmp_ctx);
2344                         return NULL;
2345                 }
2346         }
2347         if (!ldb_dn_validate(dn)) {
2348                 DEBUG(2, ("Failed to validated DN %s\n",
2349                           ldb_dn_get_linearized(dn)));
2350                 talloc_free(tmp_ctx);
2351                 return NULL;
2352         }
2353         talloc_free(tmp_ctx);
2354         return dn;
2355 }
2356
2357 /*
2358   Find the DN of a domain, be it the netbios or DNS name 
2359 */
2360 struct ldb_dn *samdb_domain_to_dn(struct ldb_context *ldb, TALLOC_CTX *mem_ctx, 
2361                                   const char *domain_name) 
2362 {
2363         const char * const domain_ref_attrs[] = {
2364                 "ncName", NULL
2365         };
2366         const char * const domain_ref2_attrs[] = {
2367                 NULL
2368         };
2369         struct ldb_result *res_domain_ref;
2370         char *escaped_domain = ldb_binary_encode_string(mem_ctx, domain_name);
2371         /* find the domain's DN */
2372         int ret_domain = ldb_search(ldb, mem_ctx,
2373                                             &res_domain_ref, 
2374                                             samdb_partitions_dn(ldb, mem_ctx), 
2375                                             LDB_SCOPE_ONELEVEL, 
2376                                             domain_ref_attrs,
2377                                             "(&(nETBIOSName=%s)(objectclass=crossRef))", 
2378                                             escaped_domain);
2379         if (ret_domain != LDB_SUCCESS) {
2380                 return NULL;
2381         }
2382
2383         if (res_domain_ref->count == 0) {
2384                 ret_domain = ldb_search(ldb, mem_ctx,
2385                                                 &res_domain_ref, 
2386                                                 samdb_dns_domain_to_dn(ldb, mem_ctx, domain_name),
2387                                                 LDB_SCOPE_BASE,
2388                                                 domain_ref2_attrs,
2389                                                 "(objectclass=domain)");
2390                 if (ret_domain != LDB_SUCCESS) {
2391                         return NULL;
2392                 }
2393
2394                 if (res_domain_ref->count == 1) {
2395                         return res_domain_ref->msgs[0]->dn;
2396                 }
2397                 return NULL;
2398         }
2399
2400         if (res_domain_ref->count > 1) {
2401                 DEBUG(0,("Found %d records matching domain [%s]\n", 
2402                          ret_domain, domain_name));
2403                 return NULL;
2404         }
2405
2406         return samdb_result_dn(ldb, mem_ctx, res_domain_ref->msgs[0], "nCName", NULL);
2407
2408 }
2409
2410
2411 /*
2412   use a GUID to find a DN
2413  */
2414 int dsdb_find_dn_by_guid(struct ldb_context *ldb, 
2415                          TALLOC_CTX *mem_ctx,
2416                          const struct GUID *guid, struct ldb_dn **dn)
2417 {
2418         int ret;
2419         struct ldb_result *res;
2420         const char *attrs[] = { NULL };
2421         char *guid_str = GUID_string(mem_ctx, guid);
2422
2423         if (!guid_str) {
2424                 return ldb_operr(ldb);
2425         }
2426
2427         ret = dsdb_search(ldb, mem_ctx, &res, NULL, LDB_SCOPE_SUBTREE, attrs,
2428                           DSDB_SEARCH_SEARCH_ALL_PARTITIONS |
2429                           DSDB_SEARCH_SHOW_EXTENDED_DN |
2430                           DSDB_SEARCH_ONE_ONLY,
2431                           "objectGUID=%s", guid_str);
2432         talloc_free(guid_str);
2433         if (ret != LDB_SUCCESS) {
2434                 return ret;
2435         }
2436
2437         *dn = talloc_steal(mem_ctx, res->msgs[0]->dn);
2438         talloc_free(res);
2439
2440         return LDB_SUCCESS;
2441 }
2442
2443 /*
2444   use a DN to find a GUID with a given attribute name
2445  */
2446 int dsdb_find_guid_attr_by_dn(struct ldb_context *ldb,
2447                               struct ldb_dn *dn, const char *attribute,
2448                               struct GUID *guid)
2449 {
2450         int ret;
2451         struct ldb_result *res;
2452         const char *attrs[2];
2453         TALLOC_CTX *tmp_ctx = talloc_new(ldb);
2454
2455         attrs[0] = attribute;
2456         attrs[1] = NULL;
2457
2458         ret = dsdb_search_dn(ldb, tmp_ctx, &res, dn, attrs, DSDB_SEARCH_SHOW_DELETED);
2459         if (ret != LDB_SUCCESS) {
2460                 talloc_free(tmp_ctx);
2461                 return ret;
2462         }
2463         if (res->count < 1) {
2464                 talloc_free(tmp_ctx);
2465                 return LDB_ERR_NO_SUCH_OBJECT;
2466         }
2467         *guid = samdb_result_guid(res->msgs[0], attribute);
2468         talloc_free(tmp_ctx);
2469         return LDB_SUCCESS;
2470 }
2471
2472 /*
2473   use a DN to find a GUID
2474  */
2475 int dsdb_find_guid_by_dn(struct ldb_context *ldb,
2476                          struct ldb_dn *dn, struct GUID *guid)
2477 {
2478         return dsdb_find_guid_attr_by_dn(ldb, dn, "objectGUID", guid);
2479 }
2480
2481
2482
2483 /*
2484  adds the given GUID to the given ldb_message. This value is added
2485  for the given attr_name (may be either "objectGUID" or "parentGUID").
2486  */
2487 int dsdb_msg_add_guid(struct ldb_message *msg,
2488                 struct GUID *guid,
2489                 const char *attr_name)
2490 {
2491         int ret;
2492         struct ldb_val v;
2493         NTSTATUS status;
2494         TALLOC_CTX *tmp_ctx =  talloc_init("dsdb_msg_add_guid");
2495
2496         status = GUID_to_ndr_blob(guid, tmp_ctx, &v);
2497         if (!NT_STATUS_IS_OK(status)) {
2498                 ret = LDB_ERR_OPERATIONS_ERROR;
2499                 goto done;
2500         }
2501
2502         ret = ldb_msg_add_steal_value(msg, attr_name, &v);
2503         if (ret != LDB_SUCCESS) {
2504                 DEBUG(4,(__location__ ": Failed to add %s to the message\n",
2505                                          attr_name));
2506                 goto done;
2507         }
2508
2509         ret = LDB_SUCCESS;
2510
2511 done:
2512         talloc_free(tmp_ctx);
2513         return ret;
2514
2515 }
2516
2517
2518 /*
2519   use a DN to find a SID
2520  */
2521 int dsdb_find_sid_by_dn(struct ldb_context *ldb, 
2522                         struct ldb_dn *dn, struct dom_sid *sid)
2523 {
2524         int ret;
2525         struct ldb_result *res;
2526         const char *attrs[] = { "objectSID", NULL };
2527         TALLOC_CTX *tmp_ctx = talloc_new(ldb);
2528         struct dom_sid *s;
2529
2530         ZERO_STRUCTP(sid);
2531
2532         ret = dsdb_search_dn(ldb, tmp_ctx, &res, dn, attrs, DSDB_SEARCH_SHOW_DELETED);
2533         if (ret != LDB_SUCCESS) {
2534                 talloc_free(tmp_ctx);
2535                 return ret;
2536         }
2537         if (res->count < 1) {
2538                 talloc_free(tmp_ctx);
2539                 return LDB_ERR_NO_SUCH_OBJECT;
2540         }
2541         s = samdb_result_dom_sid(tmp_ctx, res->msgs[0], "objectSID");
2542         if (s == NULL) {
2543                 talloc_free(tmp_ctx);
2544                 return LDB_ERR_NO_SUCH_OBJECT;
2545         }
2546         *sid = *s;
2547         talloc_free(tmp_ctx);
2548         return LDB_SUCCESS;
2549 }
2550
2551 /*
2552   use a SID to find a DN
2553  */
2554 int dsdb_find_dn_by_sid(struct ldb_context *ldb,
2555                         TALLOC_CTX *mem_ctx,
2556                         struct dom_sid *sid, struct ldb_dn **dn)
2557 {
2558         int ret;
2559         struct ldb_result *res;
2560         const char *attrs[] = { NULL };
2561         char *sid_str = dom_sid_string(mem_ctx, sid);
2562
2563         if (!sid_str) {
2564                 return ldb_operr(ldb);
2565         }
2566
2567         ret = dsdb_search(ldb, mem_ctx, &res, NULL, LDB_SCOPE_SUBTREE, attrs,
2568                           DSDB_SEARCH_SEARCH_ALL_PARTITIONS |
2569                           DSDB_SEARCH_SHOW_EXTENDED_DN |
2570                           DSDB_SEARCH_ONE_ONLY,
2571                           "objectSID=%s", sid_str);
2572         talloc_free(sid_str);
2573         if (ret != LDB_SUCCESS) {
2574                 return ret;
2575         }
2576
2577         *dn = talloc_steal(mem_ctx, res->msgs[0]->dn);
2578         talloc_free(res);
2579
2580         return LDB_SUCCESS;
2581 }
2582
2583 /*
2584   load a repsFromTo blob list for a given partition GUID
2585   attr must be "repsFrom" or "repsTo"
2586  */
2587 WERROR dsdb_loadreps(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx, struct ldb_dn *dn,
2588                      const char *attr, struct repsFromToBlob **r, uint32_t *count)
2589 {
2590         const char *attrs[] = { attr, NULL };
2591         struct ldb_result *res = NULL;
2592         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
2593         unsigned int i;
2594         struct ldb_message_element *el;
2595
2596         *r = NULL;
2597         *count = 0;
2598
2599         if (ldb_search(sam_ctx, tmp_ctx, &res, dn, LDB_SCOPE_BASE, attrs, NULL) != LDB_SUCCESS ||
2600             res->count < 1) {
2601                 DEBUG(0,("dsdb_loadreps: failed to read partition object\n"));
2602                 talloc_free(tmp_ctx);
2603                 return WERR_DS_DRA_INTERNAL_ERROR;
2604         }
2605
2606         el = ldb_msg_find_element(res->msgs[0], attr);
2607         if (el == NULL) {
2608                 /* it's OK to be empty */
2609                 talloc_free(tmp_ctx);
2610                 return WERR_OK;
2611         }
2612
2613         *count = el->num_values;
2614         *r = talloc_array(mem_ctx, struct repsFromToBlob, *count);
2615         if (*r == NULL) {
2616                 talloc_free(tmp_ctx);
2617                 return WERR_DS_DRA_INTERNAL_ERROR;
2618         }
2619
2620         for (i=0; i<(*count); i++) {
2621                 enum ndr_err_code ndr_err;
2622                 ndr_err = ndr_pull_struct_blob(&el->values[i], 
2623                                                mem_ctx, 
2624                                                &(*r)[i], 
2625                                                (ndr_pull_flags_fn_t)ndr_pull_repsFromToBlob);
2626                 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2627                         talloc_free(tmp_ctx);
2628                         return WERR_DS_DRA_INTERNAL_ERROR;
2629                 }
2630         }
2631
2632         talloc_free(tmp_ctx);
2633         
2634         return WERR_OK;
2635 }
2636
2637 /*
2638   save the repsFromTo blob list for a given partition GUID
2639   attr must be "repsFrom" or "repsTo"
2640  */
2641 WERROR dsdb_savereps(struct ldb_context *sam_ctx, TALLOC_CTX *mem_ctx, struct ldb_dn *dn,
2642                      const char *attr, struct repsFromToBlob *r, uint32_t count)
2643 {
2644         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
2645         struct ldb_message *msg;
2646         struct ldb_message_element *el;
2647         unsigned int i;
2648
2649         msg = ldb_msg_new(tmp_ctx);
2650         msg->dn = dn;
2651         if (ldb_msg_add_empty(msg, attr, LDB_FLAG_MOD_REPLACE, &el) != LDB_SUCCESS) {
2652                 goto failed;
2653         }
2654
2655         el->values = talloc_array(msg, struct ldb_val, count);
2656         if (!el->values) {
2657                 goto failed;
2658         }
2659
2660         for (i=0; i<count; i++) {
2661                 struct ldb_val v;
2662                 enum ndr_err_code ndr_err;
2663
2664                 ndr_err = ndr_push_struct_blob(&v, tmp_ctx, 
2665                                                &r[i], 
2666                                                (ndr_push_flags_fn_t)ndr_push_repsFromToBlob);
2667                 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
2668                         goto failed;
2669                 }
2670
2671                 el->num_values++;
2672                 el->values[i] = v;
2673         }
2674
2675         if (ldb_modify(sam_ctx, msg) != LDB_SUCCESS) {
2676                 DEBUG(0,("Failed to store %s - %s\n", attr, ldb_errstring(sam_ctx)));
2677                 goto failed;
2678         }
2679
2680         talloc_free(tmp_ctx);
2681         
2682         return WERR_OK;
2683
2684 failed:
2685         talloc_free(tmp_ctx);
2686         return WERR_DS_DRA_INTERNAL_ERROR;
2687 }
2688
2689
2690 /*
2691   load the uSNHighest and the uSNUrgent attributes from the @REPLCHANGED
2692   object for a partition
2693  */
2694 int dsdb_load_partition_usn(struct ldb_context *ldb, struct ldb_dn *dn,
2695                                 uint64_t *uSN, uint64_t *urgent_uSN)
2696 {
2697         struct ldb_request *req;
2698         int ret;
2699         TALLOC_CTX *tmp_ctx = talloc_new(ldb);
2700         struct dsdb_control_current_partition *p_ctrl;
2701         struct ldb_result *res;
2702
2703         res = talloc_zero(tmp_ctx, struct ldb_result);
2704         if (!res) {
2705                 talloc_free(tmp_ctx);
2706                 return ldb_oom(ldb);
2707         }
2708
2709         ret = ldb_build_search_req(&req, ldb, tmp_ctx,
2710                                    ldb_dn_new(tmp_ctx, ldb, "@REPLCHANGED"),
2711                                    LDB_SCOPE_BASE,
2712                                    NULL, NULL,
2713                                    NULL,
2714                                    res, ldb_search_default_callback,
2715                                    NULL);
2716         if (ret != LDB_SUCCESS) {
2717                 talloc_free(tmp_ctx);
2718                 return ret;
2719         }
2720
2721         p_ctrl = talloc(req, struct dsdb_control_current_partition);
2722         if (p_ctrl == NULL) {
2723                 talloc_free(tmp_ctx);
2724                 return ldb_oom(ldb);
2725         }
2726         p_ctrl->version = DSDB_CONTROL_CURRENT_PARTITION_VERSION;
2727         p_ctrl->dn = dn;
2728         
2729         ret = ldb_request_add_control(req,
2730                                       DSDB_CONTROL_CURRENT_PARTITION_OID,
2731                                       false, p_ctrl);
2732         if (ret != LDB_SUCCESS) {
2733                 talloc_free(tmp_ctx);
2734                 return ret;
2735         }
2736         
2737         /* Run the new request */
2738         ret = ldb_request(ldb, req);
2739         
2740         if (ret == LDB_SUCCESS) {
2741                 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
2742         }
2743
2744         if (ret == LDB_ERR_NO_SUCH_OBJECT) {
2745                 /* it hasn't been created yet, which means
2746                    an implicit value of zero */
2747                 *uSN = 0;
2748                 talloc_free(tmp_ctx);
2749                 return LDB_SUCCESS;
2750         }
2751
2752         if (ret != LDB_SUCCESS) {
2753                 talloc_free(tmp_ctx);
2754                 return ret;
2755         }
2756
2757         if (res->count < 1) {
2758                 *uSN = 0;
2759                 if (urgent_uSN) {
2760                         *urgent_uSN = 0;
2761                 }
2762         } else {
2763                 *uSN = ldb_msg_find_attr_as_uint64(res->msgs[0], "uSNHighest", 0);
2764                 if (urgent_uSN) {
2765                         *urgent_uSN = ldb_msg_find_attr_as_uint64(res->msgs[0], "uSNUrgent", 0);
2766                 }
2767         }
2768
2769         talloc_free(tmp_ctx);
2770
2771         return LDB_SUCCESS;     
2772 }
2773
2774 int drsuapi_DsReplicaCursor2_compare(const struct drsuapi_DsReplicaCursor2 *c1,
2775                                                    const struct drsuapi_DsReplicaCursor2 *c2)
2776 {
2777         return GUID_compare(&c1->source_dsa_invocation_id, &c2->source_dsa_invocation_id);
2778 }
2779
2780 int drsuapi_DsReplicaCursor_compare(const struct drsuapi_DsReplicaCursor *c1,
2781                                     const struct drsuapi_DsReplicaCursor *c2)
2782 {
2783         return GUID_compare(&c1->source_dsa_invocation_id, &c2->source_dsa_invocation_id);
2784 }
2785
2786
2787 /*
2788   see if a computer identified by its invocationId is a RODC
2789 */
2790 int samdb_is_rodc(struct ldb_context *sam_ctx, const struct GUID *objectGUID, bool *is_rodc)
2791 {
2792         /* 1) find the DN for this servers NTDSDSA object
2793            2) search for the msDS-isRODC attribute
2794            3) if not present then not a RODC
2795            4) if present and TRUE then is a RODC
2796         */
2797         struct ldb_dn *config_dn;
2798         const char *attrs[] = { "msDS-isRODC", NULL };
2799         int ret;
2800         struct ldb_result *res;
2801         TALLOC_CTX *tmp_ctx = talloc_new(sam_ctx);
2802
2803         config_dn = ldb_get_config_basedn(sam_ctx);
2804         if (!config_dn) {
2805                 talloc_free(tmp_ctx);
2806                 return ldb_operr(sam_ctx);
2807         }
2808
2809         ret = dsdb_search(sam_ctx, tmp_ctx, &res, config_dn, LDB_SCOPE_SUBTREE, attrs,
2810                           DSDB_SEARCH_ONE_ONLY, "objectGUID=%s", GUID_string(tmp_ctx, objectGUID));
2811
2812         if (ret == LDB_ERR_NO_SUCH_OBJECT) {
2813                 *is_rodc = false;
2814                 talloc_free(tmp_ctx);
2815                 return LDB_SUCCESS;
2816         }
2817
2818         if (ret != LDB_SUCCESS) {
2819                 DEBUG(1,(("Failed to find our own NTDS Settings object by objectGUID=%s!\n"),
2820                          GUID_string(tmp_ctx, objectGUID)));
2821                 *is_rodc = false;
2822                 talloc_free(tmp_ctx);
2823                 return ret;
2824         }
2825
2826         ret = ldb_msg_find_attr_as_bool(res->msgs[0], "msDS-isRODC", 0);
2827         *is_rodc = (ret == 1);
2828
2829         talloc_free(tmp_ctx);
2830         return LDB_SUCCESS;
2831 }
2832
2833
2834 /*
2835   see if we are a RODC
2836 */
2837 int samdb_rodc(struct ldb_context *sam_ctx, bool *am_rodc)
2838 {
2839         const struct GUID *objectGUID;
2840         int ret;
2841         bool *cached;
2842
2843         /* see if we have a cached copy */
2844         cached = (bool *)ldb_get_opaque(sam_ctx, "cache.am_rodc");
2845         if (cached) {
2846                 *am_rodc = *cached;
2847                 return LDB_SUCCESS;
2848         }
2849
2850         objectGUID = samdb_ntds_objectGUID(sam_ctx);
2851         if (!objectGUID) {
2852                 return ldb_operr(sam_ctx);
2853         }
2854
2855         ret = samdb_is_rodc(sam_ctx, objectGUID, am_rodc);
2856         if (ret != LDB_SUCCESS) {
2857                 return ret;
2858         }
2859
2860         cached = talloc(sam_ctx, bool);
2861         if (cached == NULL) {
2862                 return ldb_oom(sam_ctx);
2863         }
2864         *cached = *am_rodc;
2865
2866         ret = ldb_set_opaque(sam_ctx, "cache.am_rodc", cached);
2867         if (ret != LDB_SUCCESS) {
2868                 talloc_free(cached);
2869                 return ldb_operr(sam_ctx);
2870         }
2871
2872         return LDB_SUCCESS;
2873 }
2874
2875 bool samdb_set_am_rodc(struct ldb_context *ldb, bool am_rodc)
2876 {
2877         TALLOC_CTX *tmp_ctx;
2878         bool *cached;
2879
2880         tmp_ctx = talloc_new(ldb);
2881         if (tmp_ctx == NULL) {
2882                 goto failed;
2883         }
2884
2885         cached = talloc(tmp_ctx, bool);
2886         if (!cached) {
2887                 goto failed;
2888         }
2889
2890         *cached = am_rodc;
2891         if (ldb_set_opaque(ldb, "cache.am_rodc", cached) != LDB_SUCCESS) {
2892                 goto failed;
2893         }
2894
2895         talloc_steal(ldb, cached);
2896         talloc_free(tmp_ctx);
2897         return true;
2898
2899 failed:
2900         DEBUG(1,("Failed to set our own cached am_rodc in the ldb!\n"));
2901         talloc_free(tmp_ctx);
2902         return false;
2903 }
2904
2905
2906 /*
2907   return NTDS options flags. See MS-ADTS 7.1.1.2.2.1.2.1.1 
2908
2909   flags are DS_NTDS_OPTION_*
2910 */
2911 int samdb_ntds_options(struct ldb_context *ldb, uint32_t *options)
2912 {
2913         TALLOC_CTX *tmp_ctx;
2914         const char *attrs[] = { "options", NULL };
2915         int ret;
2916         struct ldb_result *res;
2917
2918         tmp_ctx = talloc_new(ldb);
2919         if (tmp_ctx == NULL) {
2920                 goto failed;
2921         }
2922
2923         ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb), LDB_SCOPE_BASE, attrs, NULL);
2924         if (ret != LDB_SUCCESS) {
2925                 goto failed;
2926         }
2927
2928         if (res->count != 1) {
2929                 goto failed;
2930         }
2931
2932         *options = samdb_result_uint(res->msgs[0], "options", 0);
2933
2934         talloc_free(tmp_ctx);
2935
2936         return LDB_SUCCESS;
2937
2938 failed:
2939         DEBUG(1,("Failed to find our own NTDS Settings options in the ldb!\n"));
2940         talloc_free(tmp_ctx);
2941         return LDB_ERR_NO_SUCH_OBJECT;
2942 }
2943
2944 const char* samdb_ntds_object_category(TALLOC_CTX *tmp_ctx, struct ldb_context *ldb)
2945 {
2946         const char *attrs[] = { "objectCategory", NULL };
2947         int ret;
2948         struct ldb_result *res;
2949
2950         ret = ldb_search(ldb, tmp_ctx, &res, samdb_ntds_settings_dn(ldb), LDB_SCOPE_BASE, attrs, NULL);
2951         if (ret != LDB_SUCCESS) {
2952                 goto failed;
2953         }
2954
2955         if (res->count != 1) {
2956                 goto failed;
2957         }
2958
2959         return samdb_result_string(res->msgs[0], "objectCategory", NULL);
2960
2961 failed:
2962         DEBUG(1,("Failed to find our own NTDS Settings objectCategory in the ldb!\n"));
2963         return NULL;
2964 }
2965
2966 /*
2967  * Function which generates a "lDAPDisplayName" attribute from a "CN" one.
2968  * Algorithm implemented according to MS-ADTS 3.1.1.2.3.4
2969  */
2970 const char *samdb_cn_to_lDAPDisplayName(TALLOC_CTX *mem_ctx, const char *cn)
2971 {
2972         char **tokens, *ret;
2973         size_t i;
2974
2975         tokens = str_list_make(mem_ctx, cn, " -_");
2976         if (tokens == NULL)
2977                 return NULL;
2978
2979         /* "tolower()" and "toupper()" should also work properly on 0x00 */
2980         tokens[0][0] = tolower(tokens[0][0]);
2981         for (i = 1; i < str_list_length((const char **)tokens); i++)
2982                 tokens[i][0] = toupper(tokens[i][0]);
2983
2984         ret = talloc_strdup(mem_ctx, tokens[0]);
2985         for (i = 1; i < str_list_length((const char **)tokens); i++)
2986                 ret = talloc_asprintf_append_buffer(ret, "%s", tokens[i]);
2987
2988         talloc_free(tokens);
2989
2990         return ret;
2991 }
2992
2993 /*
2994  * This detects and returns the domain functional level (DS_DOMAIN_FUNCTION_*)
2995  */
2996 int dsdb_functional_level(struct ldb_context *ldb)
2997 {
2998         int *domainFunctionality =
2999                 talloc_get_type(ldb_get_opaque(ldb, "domainFunctionality"), int);
3000         if (!domainFunctionality) {
3001                 DEBUG(0,(__location__ ": WARNING: domainFunctionality not setup\n"));
3002                 return DS_DOMAIN_FUNCTION_2000;
3003         }
3004         return *domainFunctionality;
3005 }
3006
3007 /*
3008  * This detects and returns the forest functional level (DS_DOMAIN_FUNCTION_*)
3009  */
3010 int dsdb_forest_functional_level(struct ldb_context *ldb)
3011 {
3012         int *forestFunctionality =
3013                 talloc_get_type(ldb_get_opaque(ldb, "forestFunctionality"), int);
3014         if (!forestFunctionality) {
3015                 DEBUG(0,(__location__ ": WARNING: forestFunctionality not setup\n"));
3016                 return DS_DOMAIN_FUNCTION_2000;
3017         }
3018         return *forestFunctionality;
3019 }
3020
3021 /*
3022   set a GUID in an extended DN structure
3023  */
3024 int dsdb_set_extended_dn_guid(struct ldb_dn *dn, const struct GUID *guid, const char *component_name)
3025 {
3026         struct ldb_val v;
3027         NTSTATUS status;
3028         int ret;
3029
3030         status = GUID_to_ndr_blob(guid, dn, &v);
3031         if (!NT_STATUS_IS_OK(status)) {
3032                 return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
3033         }
3034
3035         ret = ldb_dn_set_extended_component(dn, component_name, &v);
3036         data_blob_free(&v);
3037         return ret;
3038 }
3039
3040 /*
3041   return a GUID from a extended DN structure
3042  */
3043 NTSTATUS dsdb_get_extended_dn_guid(struct ldb_dn *dn, struct GUID *guid, const char *component_name)
3044 {
3045         const struct ldb_val *v;
3046
3047         v = ldb_dn_get_extended_component(dn, component_name);
3048         if (v == NULL) {
3049                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
3050         }
3051
3052         return GUID_from_ndr_blob(v, guid);
3053 }
3054
3055 /*
3056   return a uint64_t from a extended DN structure
3057  */
3058 NTSTATUS dsdb_get_extended_dn_uint64(struct ldb_dn *dn, uint64_t *val, const char *component_name)
3059 {
3060         const struct ldb_val *v;
3061         char *s;
3062
3063         v = ldb_dn_get_extended_component(dn, component_name);
3064         if (v == NULL) {
3065                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
3066         }
3067         s = talloc_strndup(dn, (const char *)v->data, v->length);
3068         NT_STATUS_HAVE_NO_MEMORY(s);
3069
3070         *val = strtoull(s, NULL, 0);
3071
3072         talloc_free(s);
3073         return NT_STATUS_OK;
3074 }
3075
3076 /*
3077   return a NTTIME from a extended DN structure
3078  */
3079 NTSTATUS dsdb_get_extended_dn_nttime(struct ldb_dn *dn, NTTIME *nttime, const char *component_name)
3080 {
3081         return dsdb_get_extended_dn_uint64(dn, nttime, component_name);
3082 }
3083
3084 /*
3085   return a uint32_t from a extended DN structure
3086  */
3087 NTSTATUS dsdb_get_extended_dn_uint32(struct ldb_dn *dn, uint32_t *val, const char *component_name)
3088 {
3089         const struct ldb_val *v;
3090         char *s;
3091
3092         v = ldb_dn_get_extended_component(dn, component_name);
3093         if (v == NULL) {
3094                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
3095         }
3096
3097         s = talloc_strndup(dn, (const char *)v->data, v->length);
3098         NT_STATUS_HAVE_NO_MEMORY(s);
3099
3100         *val = strtoul(s, NULL, 0);
3101
3102         talloc_free(s);
3103         return NT_STATUS_OK;
3104 }
3105
3106 /*
3107   return a dom_sid from a extended DN structure
3108  */
3109 NTSTATUS dsdb_get_extended_dn_sid(struct ldb_dn *dn, struct dom_sid *sid, const char *component_name)
3110 {
3111         const struct ldb_val *sid_blob;
3112         struct TALLOC_CTX *tmp_ctx;
3113         enum ndr_err_code ndr_err;
3114
3115         sid_blob = ldb_dn_get_extended_component(dn, "SID");
3116         if (!sid_blob) {
3117                 return NT_STATUS_OBJECT_NAME_NOT_FOUND;
3118         }
3119
3120         tmp_ctx = talloc_new(NULL);
3121
3122         ndr_err = ndr_pull_struct_blob_all(sid_blob, tmp_ctx, sid,
3123                                            (ndr_pull_flags_fn_t)ndr_pull_dom_sid);
3124         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
3125                 NTSTATUS status = ndr_map_error2ntstatus(ndr_err);
3126                 talloc_free(tmp_ctx);
3127                 return status;
3128         }
3129
3130         talloc_free(tmp_ctx);
3131         return NT_STATUS_OK;
3132 }
3133
3134
3135 /*
3136   return RMD_FLAGS directly from a ldb_dn
3137   returns 0 if not found
3138  */
3139 uint32_t dsdb_dn_rmd_flags(struct ldb_dn *dn)
3140 {
3141         const struct ldb_val *v;
3142         char buf[32];
3143         v = ldb_dn_get_extended_component(dn, "RMD_FLAGS");
3144         if (!v || v->length > sizeof(buf)-1) return 0;
3145         strncpy(buf, (const char *)v->data, v->length);
3146         buf[v->length] = 0;
3147         return strtoul(buf, NULL, 10);
3148 }
3149
3150 /*
3151   return RMD_FLAGS directly from a ldb_val for a DN
3152   returns 0 if RMD_FLAGS is not found
3153  */
3154 uint32_t dsdb_dn_val_rmd_flags(const struct ldb_val *val)
3155 {
3156         const char *p;
3157         uint32_t flags;
3158         char *end;
3159
3160         if (val->length < 13) {
3161                 return 0;
3162         }
3163         p = memmem(val->data, val->length-2, "<RMD_FLAGS=", 11);
3164         if (!p) {
3165                 return 0;
3166         }
3167         flags = strtoul(p+11, &end, 10);
3168         if (!end || *end != '>') {
3169                 /* it must end in a > */
3170                 return 0;
3171         }
3172         return flags;
3173 }
3174
3175 /*
3176   return true if a ldb_val containing a DN in storage form is deleted
3177  */
3178 bool dsdb_dn_is_deleted_val(const struct ldb_val *val)
3179 {
3180         return (dsdb_dn_val_rmd_flags(val) & DSDB_RMD_FLAG_DELETED) != 0;
3181 }
3182
3183 /*
3184   return true if a ldb_val containing a DN in storage form is
3185   in the upgraded w2k3 linked attribute format
3186  */
3187 bool dsdb_dn_is_upgraded_link_val(struct ldb_val *val)
3188 {
3189         return memmem(val->data, val->length, "<RMD_ADDTIME=", 13) != NULL;
3190 }
3191
3192 /*
3193   return a DN for a wellknown GUID
3194  */
3195 int dsdb_wellknown_dn(struct ldb_context *samdb, TALLOC_CTX *mem_ctx,
3196                       struct ldb_dn *nc_root, const char *wk_guid,
3197                       struct ldb_dn **wkguid_dn)
3198 {
3199         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
3200         const char *attrs[] = { NULL };
3201         int ret;
3202         struct ldb_dn *dn;
3203         struct ldb_result *res;
3204
3205         /* construct the magic WKGUID DN */
3206         dn = ldb_dn_new_fmt(tmp_ctx, samdb, "<WKGUID=%s,%s>",
3207                             wk_guid, ldb_dn_get_linearized(nc_root));
3208         if (!wkguid_dn) {
3209                 talloc_free(tmp_ctx);
3210                 return ldb_operr(samdb);
3211         }
3212
3213         ret = dsdb_search_dn(samdb, tmp_ctx, &res, dn, attrs, DSDB_SEARCH_SHOW_DELETED);
3214         if (ret != LDB_SUCCESS) {
3215                 talloc_free(tmp_ctx);
3216                 return ret;
3217         }
3218
3219         (*wkguid_dn) = talloc_steal(mem_ctx, res->msgs[0]->dn);
3220         talloc_free(tmp_ctx);
3221         return LDB_SUCCESS;
3222 }
3223
3224
3225 static int dsdb_dn_compare_ptrs(struct ldb_dn **dn1, struct ldb_dn **dn2)
3226 {
3227         return ldb_dn_compare(*dn1, *dn2);
3228 }
3229
3230 /*
3231   find a NC root given a DN within the NC
3232  */
3233 int dsdb_find_nc_root(struct ldb_context *samdb, TALLOC_CTX *mem_ctx, struct ldb_dn *dn,
3234                       struct ldb_dn **nc_root)
3235 {
3236         const char *root_attrs[] = { "namingContexts", NULL };
3237         TALLOC_CTX *tmp_ctx;
3238         int ret;
3239         struct ldb_message_element *el;
3240         struct ldb_result *root_res;
3241         unsigned int i;
3242         struct ldb_dn **nc_dns;
3243
3244         tmp_ctx = talloc_new(samdb);
3245         if (tmp_ctx == NULL) {
3246                 return ldb_oom(samdb);
3247         }
3248
3249         ret = ldb_search(samdb, tmp_ctx, &root_res,
3250                          ldb_dn_new(tmp_ctx, samdb, ""), LDB_SCOPE_BASE, root_attrs, NULL);
3251         if (ret != LDB_SUCCESS) {
3252                 DEBUG(1,("Searching for namingContexts in rootDSE failed: %s\n", ldb_errstring(samdb)));
3253                 talloc_free(tmp_ctx);
3254                 return ret;
3255        }
3256
3257        el = ldb_msg_find_element(root_res->msgs[0], "namingContexts");
3258        if (!el) {
3259                DEBUG(1,("Finding namingContexts element in root_res failed: %s\n",
3260                         ldb_errstring(samdb)));
3261                talloc_free(tmp_ctx);
3262                return LDB_ERR_NO_SUCH_ATTRIBUTE;
3263        }
3264
3265        nc_dns = talloc_array(tmp_ctx, struct ldb_dn *, el->num_values);
3266        if (!nc_dns) {
3267                talloc_free(tmp_ctx);
3268                return ldb_oom(samdb);
3269        }
3270
3271        for (i=0; i<el->num_values; i++) {
3272                nc_dns[i] = ldb_dn_from_ldb_val(nc_dns, samdb, &el->values[i]);
3273                if (nc_dns[i] == NULL) {
3274                        talloc_free(tmp_ctx);
3275                        return ldb_operr(samdb);
3276                }
3277        }
3278
3279        TYPESAFE_QSORT(nc_dns, el->num_values, dsdb_dn_compare_ptrs);
3280
3281        for (i=0; i<el->num_values; i++) {
3282                if (ldb_dn_compare_base(nc_dns[i], dn) == 0) {
3283                        (*nc_root) = talloc_steal(mem_ctx, nc_dns[i]);
3284                        talloc_free(tmp_ctx);
3285                        return LDB_SUCCESS;
3286                }
3287        }
3288
3289        talloc_free(tmp_ctx);
3290        return LDB_ERR_NO_SUCH_OBJECT;
3291 }
3292
3293
3294 /*
3295   find the deleted objects DN for any object, by looking for the NC
3296   root, then looking up the wellknown GUID
3297  */
3298 int dsdb_get_deleted_objects_dn(struct ldb_context *ldb,
3299                                 TALLOC_CTX *mem_ctx, struct ldb_dn *obj_dn,
3300                                 struct ldb_dn **do_dn)
3301 {
3302         struct ldb_dn *nc_root;
3303         int ret;
3304
3305         ret = dsdb_find_nc_root(ldb, mem_ctx, obj_dn, &nc_root);
3306         if (ret != LDB_SUCCESS) {
3307                 return ret;
3308         }
3309
3310         ret = dsdb_wellknown_dn(ldb, mem_ctx, nc_root, DS_GUID_DELETED_OBJECTS_CONTAINER, do_dn);
3311         talloc_free(nc_root);
3312         return ret;
3313 }
3314
3315 /*
3316   return the tombstoneLifetime, in days
3317  */
3318 int dsdb_tombstone_lifetime(struct ldb_context *ldb, uint32_t *lifetime)
3319 {
3320         struct ldb_dn *dn;
3321         dn = ldb_get_config_basedn(ldb);
3322         if (!dn) {
3323                 return LDB_ERR_NO_SUCH_OBJECT;
3324         }
3325         dn = ldb_dn_copy(ldb, dn);
3326         if (!dn) {
3327                 return ldb_operr(ldb);
3328         }
3329         /* see MS-ADTS section 7.1.1.2.4.1.1. There doesn't appear to
3330          be a wellknown GUID for this */
3331         if (!ldb_dn_add_child_fmt(dn, "CN=Directory Service,CN=Windows NT,CN=Services")) {
3332                 talloc_free(dn);
3333                 return ldb_operr(ldb);
3334         }
3335
3336         *lifetime = samdb_search_uint(ldb, dn, 180, dn, "tombstoneLifetime", "objectClass=nTDSService");
3337         talloc_free(dn);
3338         return LDB_SUCCESS;
3339 }
3340
3341 /*
3342   compare a ldb_val to a string case insensitively
3343  */
3344 int samdb_ldb_val_case_cmp(const char *s, struct ldb_val *v)
3345 {
3346         size_t len = strlen(s);
3347         int ret;
3348         if (len > v->length) return 1;
3349         ret = strncasecmp(s, (const char *)v->data, v->length);
3350         if (ret != 0) return ret;
3351         if (v->length > len && v->data[len] != 0) {
3352                 return -1;
3353         }
3354         return 0;
3355 }
3356
3357
3358 /*
3359   load the UDV for a partition in v2 format
3360   The list is returned sorted, and with our local cursor added
3361  */
3362 int dsdb_load_udv_v2(struct ldb_context *samdb, struct ldb_dn *dn, TALLOC_CTX *mem_ctx,
3363                      struct drsuapi_DsReplicaCursor2 **cursors, uint32_t *count)
3364 {
3365         static const char *attrs[] = { "replUpToDateVector", NULL };
3366         struct ldb_result *r;
3367         const struct ldb_val *ouv_value;
3368         unsigned int i;
3369         int ret;
3370         uint64_t highest_usn;
3371         const struct GUID *our_invocation_id;
3372         struct timeval now = timeval_current();
3373
3374         ret = ldb_search(samdb, mem_ctx, &r, dn, LDB_SCOPE_BASE, attrs, NULL);
3375         if (ret != LDB_SUCCESS) {
3376                 return ret;
3377         }
3378
3379         ouv_value = ldb_msg_find_ldb_val(r->msgs[0], "replUpToDateVector");
3380         if (ouv_value) {
3381                 enum ndr_err_code ndr_err;
3382                 struct replUpToDateVectorBlob ouv;
3383
3384                 ndr_err = ndr_pull_struct_blob(ouv_value, r, &ouv,
3385                                                (ndr_pull_flags_fn_t)ndr_pull_replUpToDateVectorBlob);
3386                 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
3387                         talloc_free(r);
3388                         return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
3389                 }
3390                 if (ouv.version != 2) {
3391                         /* we always store as version 2, and
3392                          * replUpToDateVector is not replicated
3393                          */
3394                         return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
3395                 }
3396
3397                 *count = ouv.ctr.ctr2.count;
3398                 *cursors = talloc_steal(mem_ctx, ouv.ctr.ctr2.cursors);
3399         } else {
3400                 *count = 0;
3401                 *cursors = NULL;
3402         }
3403
3404         talloc_free(r);
3405
3406         our_invocation_id = samdb_ntds_invocation_id(samdb);
3407         if (!our_invocation_id) {
3408                 DEBUG(0,(__location__ ": No invocationID on samdb - %s\n", ldb_errstring(samdb)));
3409                 talloc_free(*cursors);
3410                 return ldb_operr(samdb);
3411         }
3412
3413         ret = dsdb_load_partition_usn(samdb, dn, &highest_usn, NULL);
3414         if (ret != LDB_SUCCESS) {
3415                 /* nothing to add - this can happen after a vampire */
3416                 TYPESAFE_QSORT(*cursors, *count, drsuapi_DsReplicaCursor2_compare);
3417                 return LDB_SUCCESS;
3418         }
3419
3420         for (i=0; i<*count; i++) {
3421                 if (GUID_equal(our_invocation_id, &(*cursors)[i].source_dsa_invocation_id)) {
3422                         (*cursors)[i].highest_usn = highest_usn;
3423                         (*cursors)[i].last_sync_success = timeval_to_nttime(&now);
3424                         TYPESAFE_QSORT(*cursors, *count, drsuapi_DsReplicaCursor2_compare);
3425                         return LDB_SUCCESS;
3426                 }
3427         }
3428
3429         (*cursors) = talloc_realloc(mem_ctx, *cursors, struct drsuapi_DsReplicaCursor2, (*count)+1);
3430         if (! *cursors) {
3431                 return ldb_oom(samdb);
3432         }
3433
3434         (*cursors)[*count].source_dsa_invocation_id = *our_invocation_id;
3435         (*cursors)[*count].highest_usn = highest_usn;
3436         (*cursors)[*count].last_sync_success = timeval_to_nttime(&now);
3437         (*count)++;
3438
3439         TYPESAFE_QSORT(*cursors, *count, drsuapi_DsReplicaCursor2_compare);
3440
3441         return LDB_SUCCESS;
3442 }
3443
3444 /*
3445   load the UDV for a partition in version 1 format
3446   The list is returned sorted, and with our local cursor added
3447  */
3448 int dsdb_load_udv_v1(struct ldb_context *samdb, struct ldb_dn *dn, TALLOC_CTX *mem_ctx,
3449                      struct drsuapi_DsReplicaCursor **cursors, uint32_t *count)
3450 {
3451         struct drsuapi_DsReplicaCursor2 *v2;
3452         uint32_t i;
3453         int ret;
3454
3455         ret = dsdb_load_udv_v2(samdb, dn, mem_ctx, &v2, count);
3456         if (ret != LDB_SUCCESS) {
3457                 return ret;
3458         }
3459
3460         if (*count == 0) {
3461                 talloc_free(v2);
3462                 *cursors = NULL;
3463                 return LDB_SUCCESS;
3464         }
3465
3466         *cursors = talloc_array(mem_ctx, struct drsuapi_DsReplicaCursor, *count);
3467         if (*cursors == NULL) {
3468                 talloc_free(v2);
3469                 return ldb_oom(samdb);
3470         }
3471
3472         for (i=0; i<*count; i++) {
3473                 (*cursors)[i].source_dsa_invocation_id = v2[i].source_dsa_invocation_id;
3474                 (*cursors)[i].highest_usn = v2[i].highest_usn;
3475         }
3476         talloc_free(v2);
3477         return LDB_SUCCESS;
3478 }
3479
3480 /*
3481   add a set of controls to a ldb_request structure based on a set of
3482   flags. See util.h for a list of available flags
3483  */
3484 int dsdb_request_add_controls(struct ldb_request *req, uint32_t dsdb_flags)
3485 {
3486         int ret;
3487         if (dsdb_flags & DSDB_SEARCH_SEARCH_ALL_PARTITIONS) {
3488                 struct ldb_search_options_control *options;
3489                 /* Using the phantom root control allows us to search all partitions */
3490                 options = talloc(req, struct ldb_search_options_control);
3491                 if (options == NULL) {
3492                         return LDB_ERR_OPERATIONS_ERROR;
3493                 }
3494                 options->search_options = LDB_SEARCH_OPTION_PHANTOM_ROOT;
3495
3496                 ret = ldb_request_add_control(req,
3497                                               LDB_CONTROL_SEARCH_OPTIONS_OID,
3498                                               true, options);
3499                 if (ret != LDB_SUCCESS) {
3500                         return ret;
3501                 }
3502         }
3503
3504         if (dsdb_flags & DSDB_SEARCH_SHOW_DELETED) {
3505                 ret = ldb_request_add_control(req, LDB_CONTROL_SHOW_DELETED_OID, true, NULL);
3506                 if (ret != LDB_SUCCESS) {
3507                         return ret;
3508                 }
3509         }
3510
3511         if (dsdb_flags & DSDB_SEARCH_SHOW_DN_IN_STORAGE_FORMAT) {
3512                 ret = ldb_request_add_control(req, DSDB_CONTROL_DN_STORAGE_FORMAT_OID, true, NULL);
3513                 if (ret != LDB_SUCCESS) {
3514                         return ret;
3515                 }
3516         }
3517
3518         if (dsdb_flags & DSDB_SEARCH_SHOW_EXTENDED_DN) {
3519                 struct ldb_extended_dn_control *extended_ctrl = talloc(req, struct ldb_extended_dn_control);
3520                 if (!extended_ctrl) {
3521                         return LDB_ERR_OPERATIONS_ERROR;
3522                 }
3523                 extended_ctrl->type = 1;
3524
3525                 ret = ldb_request_add_control(req, LDB_CONTROL_EXTENDED_DN_OID, true, extended_ctrl);
3526                 if (ret != LDB_SUCCESS) {
3527                         return ret;
3528                 }
3529         }
3530
3531         if (dsdb_flags & DSDB_SEARCH_REVEAL_INTERNALS) {
3532                 ret = ldb_request_add_control(req, LDB_CONTROL_REVEAL_INTERNALS, false, NULL);
3533                 if (ret != LDB_SUCCESS) {
3534                         return ret;
3535                 }
3536         }
3537
3538         if (dsdb_flags & DSDB_MODIFY_RELAX) {
3539                 ret = ldb_request_add_control(req, LDB_CONTROL_RELAX_OID, false, NULL);
3540                 if (ret != LDB_SUCCESS) {
3541                         return ret;
3542                 }
3543         }
3544
3545         if (dsdb_flags & DSDB_MODIFY_PERMISSIVE) {
3546                 ret = ldb_request_add_control(req, LDB_CONTROL_PERMISSIVE_MODIFY_OID, false, NULL);
3547                 if (ret != LDB_SUCCESS) {
3548                         return ret;
3549                 }
3550         }
3551
3552         if (dsdb_flags & DSDB_FLAG_AS_SYSTEM) {
3553                 ret = ldb_request_add_control(req, LDB_CONTROL_AS_SYSTEM_OID, false, NULL);
3554                 if (ret != LDB_SUCCESS) {
3555                         return ret;
3556                 }
3557         }
3558
3559         if (dsdb_flags & DSDB_TREE_DELETE) {
3560                 ret = ldb_request_add_control(req, LDB_CONTROL_TREE_DELETE_OID, false, NULL);
3561                 if (ret != LDB_SUCCESS) {
3562                         return ret;
3563                 }
3564         }
3565
3566         return LDB_SUCCESS;
3567 }
3568
3569 /*
3570   an add with a set of controls
3571 */
3572 int dsdb_add(struct ldb_context *ldb, const struct ldb_message *message,
3573              uint32_t dsdb_flags)
3574 {
3575         struct ldb_request *req;
3576         int ret;
3577
3578         ret = ldb_build_add_req(&req, ldb, ldb,
3579                                 message,
3580                                 NULL,
3581                                 NULL,
3582                                 ldb_op_default_callback,
3583                                 NULL);
3584
3585         if (ret != LDB_SUCCESS) return ret;
3586
3587         ret = dsdb_request_add_controls(req, dsdb_flags);
3588         if (ret != LDB_SUCCESS) {
3589                 talloc_free(req);
3590                 return ret;
3591         }
3592
3593         ret = dsdb_autotransaction_request(ldb, req);
3594
3595         talloc_free(req);
3596         return ret;
3597 }
3598
3599 /*
3600   a modify with a set of controls
3601 */
3602 int dsdb_modify(struct ldb_context *ldb, const struct ldb_message *message,
3603                 uint32_t dsdb_flags)
3604 {
3605         struct ldb_request *req;
3606         int ret;
3607
3608         ret = ldb_build_mod_req(&req, ldb, ldb,
3609                                 message,
3610                                 NULL,
3611                                 NULL,
3612                                 ldb_op_default_callback,
3613                                 NULL);
3614
3615         if (ret != LDB_SUCCESS) return ret;
3616
3617         ret = dsdb_request_add_controls(req, dsdb_flags);
3618         if (ret != LDB_SUCCESS) {
3619                 talloc_free(req);
3620                 return ret;
3621         }
3622
3623         ret = dsdb_autotransaction_request(ldb, req);
3624
3625         talloc_free(req);
3626         return ret;
3627 }
3628
3629 /*
3630   like dsdb_modify() but set all the element flags to
3631   LDB_FLAG_MOD_REPLACE
3632  */
3633 int dsdb_replace(struct ldb_context *ldb, struct ldb_message *msg, uint32_t dsdb_flags)
3634 {
3635         unsigned int i;
3636
3637         /* mark all the message elements as LDB_FLAG_MOD_REPLACE */
3638         for (i=0;i<msg->num_elements;i++) {
3639                 msg->elements[i].flags = LDB_FLAG_MOD_REPLACE;
3640         }
3641
3642         return dsdb_modify(ldb, msg, dsdb_flags);
3643 }
3644
3645
3646 /*
3647   search for attrs on one DN, allowing for dsdb_flags controls
3648  */
3649 int dsdb_search_dn(struct ldb_context *ldb,
3650                    TALLOC_CTX *mem_ctx,
3651                    struct ldb_result **_res,
3652                    struct ldb_dn *basedn,
3653                    const char * const *attrs,
3654                    uint32_t dsdb_flags)
3655 {
3656         int ret;
3657         struct ldb_request *req;
3658         struct ldb_result *res;
3659
3660         res = talloc_zero(mem_ctx, struct ldb_result);
3661         if (!res) {
3662                 return ldb_oom(ldb);
3663         }
3664
3665         ret = ldb_build_search_req(&req, ldb, res,
3666                                    basedn,
3667                                    LDB_SCOPE_BASE,
3668                                    NULL,
3669                                    attrs,
3670                                    NULL,
3671                                    res,
3672                                    ldb_search_default_callback,
3673                                    NULL);
3674         if (ret != LDB_SUCCESS) {
3675                 talloc_free(res);
3676                 return ret;
3677         }
3678
3679         ret = dsdb_request_add_controls(req, dsdb_flags);
3680         if (ret != LDB_SUCCESS) {
3681                 talloc_free(res);
3682                 return ret;
3683         }
3684
3685         ret = ldb_request(ldb, req);
3686         if (ret == LDB_SUCCESS) {
3687                 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
3688         }
3689
3690         talloc_free(req);
3691         if (ret != LDB_SUCCESS) {
3692                 talloc_free(res);
3693                 return ret;
3694         }
3695
3696         *_res = res;
3697         return LDB_SUCCESS;
3698 }
3699
3700 /*
3701   general search with dsdb_flags for controls
3702  */
3703 int dsdb_search(struct ldb_context *ldb,
3704                 TALLOC_CTX *mem_ctx,
3705                 struct ldb_result **_res,
3706                 struct ldb_dn *basedn,
3707                 enum ldb_scope scope,
3708                 const char * const *attrs,
3709                 uint32_t dsdb_flags,
3710                 const char *exp_fmt, ...) _PRINTF_ATTRIBUTE(8, 9)
3711 {
3712         int ret;
3713         struct ldb_request *req;
3714         struct ldb_result *res;
3715         va_list ap;
3716         char *expression = NULL;
3717         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
3718
3719         res = talloc_zero(tmp_ctx, struct ldb_result);
3720         if (!res) {
3721                 talloc_free(tmp_ctx);
3722                 return ldb_oom(ldb);
3723         }
3724
3725         if (exp_fmt) {
3726                 va_start(ap, exp_fmt);
3727                 expression = talloc_vasprintf(tmp_ctx, exp_fmt, ap);
3728                 va_end(ap);
3729
3730                 if (!expression) {
3731                         talloc_free(tmp_ctx);
3732                         return ldb_oom(ldb);
3733                 }
3734         }
3735
3736         ret = ldb_build_search_req(&req, ldb, tmp_ctx,
3737                                    basedn,
3738                                    scope,
3739                                    expression,
3740                                    attrs,
3741                                    NULL,
3742                                    res,
3743                                    ldb_search_default_callback,
3744                                    NULL);
3745         if (ret != LDB_SUCCESS) {
3746                 talloc_free(tmp_ctx);
3747                 return ret;
3748         }
3749
3750         ret = dsdb_request_add_controls(req, dsdb_flags);
3751         if (ret != LDB_SUCCESS) {
3752                 talloc_free(tmp_ctx);
3753                 return ret;
3754         }
3755
3756         ret = ldb_request(ldb, req);
3757         if (ret == LDB_SUCCESS) {
3758                 ret = ldb_wait(req->handle, LDB_WAIT_ALL);
3759         }
3760
3761         if (ret != LDB_SUCCESS) {
3762                 talloc_free(tmp_ctx);
3763                 return ret;
3764         }
3765
3766         if (dsdb_flags & DSDB_SEARCH_ONE_ONLY) {
3767                 if (res->count == 0) {
3768                         talloc_free(tmp_ctx);
3769                         return LDB_ERR_NO_SUCH_OBJECT;
3770                 }
3771                 if (res->count != 1) {
3772                         talloc_free(tmp_ctx);
3773                         return LDB_ERR_CONSTRAINT_VIOLATION;
3774                 }
3775         }
3776
3777         *_res = talloc_steal(mem_ctx, res);
3778         talloc_free(tmp_ctx);
3779
3780         return LDB_SUCCESS;
3781 }
3782
3783
3784 /*
3785   general search with dsdb_flags for controls
3786   returns exactly 1 record or an error
3787  */
3788 int dsdb_search_one(struct ldb_context *ldb,
3789                     TALLOC_CTX *mem_ctx,
3790                     struct ldb_message **msg,
3791                     struct ldb_dn *basedn,
3792                     enum ldb_scope scope,
3793                     const char * const *attrs,
3794                     uint32_t dsdb_flags,
3795                     const char *exp_fmt, ...) _PRINTF_ATTRIBUTE(8, 9)
3796 {
3797         int ret;
3798         struct ldb_result *res;
3799         va_list ap;
3800         char *expression = NULL;
3801         TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
3802
3803         dsdb_flags |= DSDB_SEARCH_ONE_ONLY;
3804
3805         res = talloc_zero(tmp_ctx, struct ldb_result);
3806         if (!res) {
3807                 talloc_free(tmp_ctx);
3808                 return ldb_oom(ldb);
3809         }
3810
3811         if (exp_fmt) {
3812                 va_start(ap, exp_fmt);
3813                 expression = talloc_vasprintf(tmp_ctx, exp_fmt, ap);
3814                 va_end(ap);
3815
3816                 if (!expression) {
3817                         talloc_free(tmp_ctx);
3818                         return ldb_oom(ldb);
3819                 }
3820                 ret = dsdb_search(ldb, tmp_ctx, &res, basedn, scope, attrs,
3821                                   dsdb_flags, "%s", expression);
3822         } else {
3823                 ret = dsdb_search(ldb, tmp_ctx, &res, basedn, scope, attrs,
3824                                   dsdb_flags, NULL);
3825         }
3826
3827         if (ret != LDB_SUCCESS) {
3828                 talloc_free(tmp_ctx);
3829                 return ret;
3830         }
3831
3832         *msg = talloc_steal(mem_ctx, res->msgs[0]);
3833         talloc_free(tmp_ctx);
3834
3835         return LDB_SUCCESS;
3836 }
3837
3838 /* returns back the forest DNS name */
3839 const char *samdb_forest_name(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
3840 {
3841         const char *forest_name = ldb_dn_canonical_string(mem_ctx,
3842                                                           ldb_get_root_basedn(ldb));
3843         char *p;
3844
3845         if (forest_name == NULL) {
3846                 return NULL;
3847         }
3848
3849         p = strchr(forest_name, '/');
3850         if (p) {
3851                 *p = '\0';
3852         }
3853
3854         return forest_name;
3855 }
3856
3857 /*
3858    validate that an DSA GUID belongs to the specified user sid.
3859    The user SID must be a domain controller account (either RODC or
3860    RWDC)
3861  */
3862 int dsdb_validate_dsa_guid(struct ldb_context *ldb,
3863                            const struct GUID *dsa_guid,
3864                            const struct dom_sid *sid)
3865 {
3866         /* strategy:
3867             - find DN of record with the DSA GUID in the
3868               configuration partition (objectGUID)
3869             - remove "NTDS Settings" component from DN
3870             - do a base search on that DN for serverReference with
3871               extended-dn enabled
3872             - extract objectSID from resulting serverReference
3873               attribute
3874             - check this sid matches the sid argument
3875         */
3876         struct ldb_dn *config_dn;
3877         TALLOC_CTX *tmp_ctx = talloc_new(ldb);
3878         struct ldb_message *msg;
3879         const char *attrs1[] = { NULL };
3880         const char *attrs2[] = { "serverReference", NULL };
3881         int ret;
3882         struct ldb_dn *dn, *account_dn;
3883         struct dom_sid sid2;
3884         NTSTATUS status;
3885
3886         config_dn = ldb_get_config_basedn(ldb);
3887
3888         ret = dsdb_search_one(ldb, tmp_ctx, &msg, config_dn, LDB_SCOPE_SUBTREE,
3889                               attrs1, 0, "(&(objectGUID=%s)(objectClass=nTDSDSA))", GUID_string(tmp_ctx, dsa_guid));
3890         if (ret != LDB_SUCCESS) {
3891                 DEBUG(1,(__location__ ": Failed to find DSA objectGUID %s for sid %s\n",
3892                          GUID_string(tmp_ctx, dsa_guid), dom_sid_string(tmp_ctx, sid)));
3893                 talloc_free(tmp_ctx);
3894                 return ldb_operr(ldb);
3895         }
3896         dn = msg->dn;
3897
3898         if (!ldb_dn_remove_child_components(dn, 1)) {
3899                 talloc_free(tmp_ctx);
3900                 return ldb_operr(ldb);
3901         }
3902
3903         ret = dsdb_search_one(ldb, tmp_ctx, &msg, dn, LDB_SCOPE_BASE,
3904                               attrs2, DSDB_SEARCH_SHOW_EXTENDED_DN,
3905                               "(objectClass=server)");
3906         if (ret != LDB_SUCCESS) {
3907                 DEBUG(1,(__location__ ": Failed to find server record for DSA with objectGUID %s, sid %s\n",
3908                          GUID_string(tmp_ctx, dsa_guid), dom_sid_string(tmp_ctx, sid)));
3909                 talloc_free(tmp_ctx);
3910                 return ldb_operr(ldb);
3911         }
3912
3913         account_dn = ldb_msg_find_attr_as_dn(ldb, tmp_ctx, msg, "serverReference");
3914         if (account_dn == NULL) {
3915                 DEBUG(1,(__location__ ": Failed to find account_dn for DSA with objectGUID %s, sid %s\n",
3916                          GUID_string(tmp_ctx, dsa_guid), dom_sid_string(tmp_ctx, sid)));
3917                 talloc_free(tmp_ctx);
3918                 return ldb_operr(ldb);
3919         }
3920
3921         status = dsdb_get_extended_dn_sid(account_dn, &sid2, "SID");
3922         if (!NT_STATUS_IS_OK(status)) {
3923                 DEBUG(1,(__location__ ": Failed to find SID for DSA with objectGUID %s, sid %s\n",
3924                          GUID_string(tmp_ctx, dsa_guid), dom_sid_string(tmp_ctx, sid)));
3925                 talloc_free(tmp_ctx);
3926                 return ldb_operr(ldb);
3927         }
3928
3929         if (!dom_sid_equal(sid, &sid2)) {
3930                 /* someone is trying to spoof another account */
3931                 DEBUG(0,(__location__ ": Bad DSA objectGUID %s for sid %s - expected sid %s\n",
3932                          GUID_string(tmp_ctx, dsa_guid),
3933                          dom_sid_string(tmp_ctx, sid),
3934                          dom_sid_string(tmp_ctx, &sid2)));
3935                 talloc_free(tmp_ctx);
3936                 return ldb_operr(ldb);
3937         }
3938
3939         talloc_free(tmp_ctx);
3940         return LDB_SUCCESS;
3941 }
3942
3943 static const char *secret_attributes[] = {
3944         "currentValue",
3945         "dBCSPwd",
3946         "initialAuthIncoming",
3947         "initialAuthOutgoing",
3948         "lmPwdHistory",
3949         "ntPwdHistory",
3950         "priorValue",
3951         "supplementalCredentials",
3952         "trustAuthIncoming",
3953         "trustAuthOutgoing",
3954         "unicodePwd",
3955         NULL
3956 };
3957
3958 /*
3959   check if the attribute belongs to the RODC filtered attribute set
3960   Note that attributes that are in the filtered attribute set are the
3961   ones that _are_ always sent to a RODC
3962 */
3963 bool dsdb_attr_in_rodc_fas(const struct dsdb_attribute *sa)
3964 {
3965         /* they never get secret attributes */
3966         if (is_attr_in_list(secret_attributes, sa->lDAPDisplayName)) {
3967                 return false;
3968         }
3969
3970         /* they do get non-secret critical attributes */
3971         if (sa->schemaFlagsEx & SCHEMA_FLAG_ATTR_IS_CRITICAL) {
3972                 return true;
3973         }
3974
3975         /* they do get non-secret attributes marked as being in the FAS  */
3976         if (sa->searchFlags & SEARCH_FLAG_RODC_ATTRIBUTE) {
3977                 return true;
3978         }
3979
3980         /* other attributes are denied */
3981         return false;
3982 }