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