s4:samldb LDB module - support the group type changing properly
[obnox/samba/samba-obnox.git] / source4 / dsdb / samdb / ldb_modules / samldb.c
1 /*
2    SAM ldb module
3
4    Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005
5    Copyright (C) Simo Sorce  2004-2008
6    Copyright (C) Matthias Dieter Wallnöfer 2009-2010
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 */
21
22 /*
23  *  Name: ldb
24  *
25  *  Component: ldb samldb module
26  *
27  *  Description: add embedded user/group creation functionality
28  *
29  *  Author: Simo Sorce
30  */
31
32 #include "includes.h"
33 #include "libcli/ldap/ldap_ndr.h"
34 #include "ldb_module.h"
35 #include "dsdb/samdb/samdb.h"
36 #include "dsdb/samdb/ldb_modules/util.h"
37 #include "dsdb/samdb/ldb_modules/ridalloc.h"
38 #include "libcli/security/security.h"
39 #include "librpc/gen_ndr/ndr_security.h"
40 #include "../lib/util/util_ldb.h"
41 #include "ldb_wrap.h"
42 #include "param/param.h"
43
44 struct samldb_ctx;
45
46 typedef int (*samldb_step_fn_t)(struct samldb_ctx *);
47
48 struct samldb_step {
49         struct samldb_step *next;
50         samldb_step_fn_t fn;
51 };
52
53 struct samldb_ctx {
54         struct ldb_module *module;
55         struct ldb_request *req;
56
57         /* used for add operations */
58         const char *type;
59
60         /* the resulting message */
61         struct ldb_message *msg;
62
63         /* used in "samldb_find_for_defaultObjectCategory" */
64         struct ldb_dn *dn, *res_dn;
65
66         /* all the async steps necessary to complete the operation */
67         struct samldb_step *steps;
68         struct samldb_step *curstep;
69
70         /* If someone set an ares to forward controls and response back to the caller */
71         struct ldb_reply *ares;
72 };
73
74 static struct samldb_ctx *samldb_ctx_init(struct ldb_module *module,
75                                           struct ldb_request *req)
76 {
77         struct ldb_context *ldb;
78         struct samldb_ctx *ac;
79
80         ldb = ldb_module_get_ctx(module);
81
82         ac = talloc_zero(req, struct samldb_ctx);
83         if (ac == NULL) {
84                 ldb_oom(ldb);
85                 return NULL;
86         }
87
88         ac->module = module;
89         ac->req = req;
90
91         return ac;
92 }
93
94 static int samldb_add_step(struct samldb_ctx *ac, samldb_step_fn_t fn)
95 {
96         struct samldb_step *step, *stepper;
97
98         step = talloc_zero(ac, struct samldb_step);
99         if (step == NULL) {
100                 return ldb_oom(ldb_module_get_ctx(ac->module));
101         }
102
103         step->fn = fn;
104
105         if (ac->steps == NULL) {
106                 ac->steps = step;
107                 ac->curstep = step;
108         } else {
109                 if (ac->curstep == NULL)
110                         return ldb_operr(ldb_module_get_ctx(ac->module));
111                 for (stepper = ac->curstep; stepper->next != NULL;
112                         stepper = stepper->next);
113                 stepper->next = step;
114         }
115
116         return LDB_SUCCESS;
117 }
118
119 static int samldb_first_step(struct samldb_ctx *ac)
120 {
121         if (ac->steps == NULL) {
122                 return ldb_operr(ldb_module_get_ctx(ac->module));
123         }
124
125         ac->curstep = ac->steps;
126         return ac->curstep->fn(ac);
127 }
128
129 static int samldb_next_step(struct samldb_ctx *ac)
130 {
131         if (ac->curstep->next) {
132                 ac->curstep = ac->curstep->next;
133                 return ac->curstep->fn(ac);
134         }
135
136         /* we exit the samldb module here */
137         /* If someone set an ares to forward controls and response back to the caller, use them */
138         if (ac->ares) {
139                 return ldb_module_done(ac->req, ac->ares->controls,
140                                        ac->ares->response, LDB_SUCCESS);
141         } else {
142                 return ldb_module_done(ac->req, NULL, NULL, LDB_SUCCESS);
143         }
144 }
145
146
147 /* sAMAccountName handling */
148
149 static int samldb_generate_sAMAccountName(struct ldb_context *ldb, struct ldb_message *msg)
150 {
151         char *name;
152
153         /* Format: $000000-000000000000 */
154
155         name = talloc_asprintf(msg, "$%.6X-%.6X%.6X",
156                                 (unsigned int)generate_random(),
157                                 (unsigned int)generate_random(),
158                                 (unsigned int)generate_random());
159         if (name == NULL) {
160                 return ldb_oom(ldb);
161         }
162         return ldb_msg_add_steal_string(msg, "sAMAccountName", name);
163 }
164
165 static int samldb_check_sAMAccountName(struct samldb_ctx *ac)
166 {
167         struct ldb_context *ldb = ldb_module_get_ctx(ac->module);
168         const char *name;
169         int ret;
170
171         if (ldb_msg_find_element(ac->msg, "sAMAccountName") == NULL) {
172                 ret = samldb_generate_sAMAccountName(ldb, ac->msg);
173                 if (ret != LDB_SUCCESS) {
174                         return ret;
175                 }
176         }
177
178         name = ldb_msg_find_attr_as_string(ac->msg, "sAMAccountName", NULL);
179         if (name == NULL) {
180                 return ldb_operr(ldb);
181         }
182
183         ret = samdb_search_count(ldb, NULL, "(sAMAccountName=%s)",
184                                  ldb_binary_encode_string(ac, name));
185         if ((ret < 0) || (ret > 1)) {
186                 return ldb_operr(ldb);
187         }
188         if (ret == 1) {
189                 return LDB_ERR_ENTRY_ALREADY_EXISTS;
190         }
191
192         return samldb_next_step(ac);
193 }
194
195
196 static bool samldb_msg_add_sid(struct ldb_message *msg,
197                                 const char *name,
198                                 const struct dom_sid *sid)
199 {
200         struct ldb_val v;
201         enum ndr_err_code ndr_err;
202
203         ndr_err = ndr_push_struct_blob(&v, msg, sid,
204                                        (ndr_push_flags_fn_t)ndr_push_dom_sid);
205         if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
206                 return false;
207         }
208         return (ldb_msg_add_value(msg, name, &v, NULL) == 0);
209 }
210
211
212 /* allocate a SID using our RID Set */
213 static int samldb_allocate_sid(struct samldb_ctx *ac)
214 {
215         uint32_t rid;
216         struct dom_sid *sid;
217         struct ldb_context *ldb = ldb_module_get_ctx(ac->module);
218         int ret;
219
220         ret = ridalloc_allocate_rid(ac->module, &rid);
221         if (ret != LDB_SUCCESS) {
222                 return ret;
223         }
224
225         sid = dom_sid_add_rid(ac, samdb_domain_sid(ldb), rid);
226         if (sid == NULL) {
227                 return ldb_module_oom(ac->module);
228         }
229
230         if ( ! samldb_msg_add_sid(ac->msg, "objectSid", sid)) {
231                 return ldb_operr(ldb);
232         }
233
234         return samldb_next_step(ac);
235 }
236
237 /*
238   see if a krbtgt_number is available
239  */
240 static bool samldb_krbtgtnumber_available(struct samldb_ctx *ac, unsigned krbtgt_number)
241 {
242         TALLOC_CTX *tmp_ctx = talloc_new(ac);
243         struct ldb_result *res;
244         const char *attrs[] = { NULL };
245         int ret;
246
247         ret = dsdb_module_search(ac->module, tmp_ctx, &res, NULL, LDB_SCOPE_SUBTREE,
248                                  attrs, DSDB_FLAG_NEXT_MODULE,
249                                  "msDC-SecondaryKrbTgtNumber=%u", krbtgt_number);
250         if (ret == LDB_SUCCESS && res->count == 0) {
251                 talloc_free(tmp_ctx);
252                 return true;
253         }
254         talloc_free(tmp_ctx);
255         return false;
256 }
257
258 /* special handling for add in RODC join */
259 static int samldb_rodc_add(struct samldb_ctx *ac)
260 {
261         struct ldb_context *ldb = ldb_module_get_ctx(ac->module);
262         unsigned krbtgt_number, i_start, i;
263         int ret;
264         char *newpass;
265
266         /* find a unused msDC-SecondaryKrbTgtNumber */
267         i_start = generate_random() & 0xFFFF;
268         if (i_start == 0) {
269                 i_start = 1;
270         }
271
272         for (i=i_start; i<=0xFFFF; i++) {
273                 if (samldb_krbtgtnumber_available(ac, i)) {
274                         krbtgt_number = i;
275                         goto found;
276                 }
277         }
278         for (i=1; i<i_start; i++) {
279                 if (samldb_krbtgtnumber_available(ac, i)) {
280                         krbtgt_number = i;
281                         goto found;
282                 }
283         }
284
285         ldb_asprintf_errstring(ldb_module_get_ctx(ac->module),
286                                "%08X: Unable to find available msDS-SecondaryKrbTgtNumber",
287                                W_ERROR_V(WERR_NO_SYSTEM_RESOURCES));
288         return LDB_ERR_OTHER;
289
290 found:
291         ret = ldb_msg_add_empty(ac->msg, "msDS-SecondaryKrbTgtNumber", LDB_FLAG_INTERNAL_DISABLE_VALIDATION, NULL);
292         if (ret != LDB_SUCCESS) {
293                 return ldb_operr(ldb);
294         }
295
296         ret = ldb_msg_add_fmt(ac->msg, "msDS-SecondaryKrbTgtNumber", "%u", krbtgt_number);
297         if (ret != LDB_SUCCESS) {
298                 return ldb_operr(ldb);
299         }
300
301         ret = ldb_msg_add_fmt(ac->msg, "sAMAccountName", "krbtgt_%u", krbtgt_number);
302         if (ret != LDB_SUCCESS) {
303                 return ldb_operr(ldb);
304         }
305
306         newpass = generate_random_password(ac, 128, 255);
307         if (newpass == NULL) {
308                 return ldb_operr(ldb);
309         }
310
311         ret = ldb_msg_add_steal_string(ac->msg, "clearTextPassword", newpass);
312         if (ret != LDB_SUCCESS) {
313                 return ldb_operr(ldb);
314         }
315
316         return samldb_next_step(ac);
317 }
318
319 static int samldb_find_for_defaultObjectCategory(struct samldb_ctx *ac)
320 {
321         struct ldb_context *ldb = ldb_module_get_ctx(ac->module);
322         struct ldb_result *res;
323         const char *no_attrs[] = { NULL };
324         int ret;
325
326         ac->res_dn = NULL;
327
328         ret = dsdb_module_search(ac->module, ac, &res,
329                                  ac->dn, LDB_SCOPE_BASE, no_attrs,
330                                  DSDB_SEARCH_SHOW_DN_IN_STORAGE_FORMAT | DSDB_FLAG_NEXT_MODULE,
331                                  "(objectClass=classSchema)");
332         if (ret == LDB_ERR_NO_SUCH_OBJECT) {
333                 /* Don't be pricky when the DN doesn't exist if we have the */
334                 /* RELAX control specified */
335                 if (ldb_request_get_control(ac->req,
336                                             LDB_CONTROL_RELAX_OID) == NULL) {
337                         ldb_set_errstring(ldb,
338                                           "samldb_find_defaultObjectCategory: "
339                                           "Invalid DN for 'defaultObjectCategory'!");
340                         return LDB_ERR_CONSTRAINT_VIOLATION;
341                 }
342         }
343         if ((ret != LDB_ERR_NO_SUCH_OBJECT) && (ret != LDB_SUCCESS)) {
344                 return ret;
345         }
346
347         ac->res_dn = ac->dn;
348
349         return samldb_next_step(ac);
350 }
351
352 /**
353  * msDS-IntId attributeSchema attribute handling
354  * during LDB_ADD request processing
355  */
356 static int samldb_add_handle_msDS_IntId(struct samldb_ctx *ac)
357 {
358         int ret;
359         bool id_exists;
360         uint32_t msds_intid;
361         uint32_t system_flags;
362         struct ldb_context *ldb;
363         struct ldb_result *ldb_res;
364         struct ldb_dn *schema_dn;
365
366         ldb = ldb_module_get_ctx(ac->module);
367         schema_dn = ldb_get_schema_basedn(ldb);
368
369         /* replicated update should always go through */
370         if (ldb_request_get_control(ac->req, DSDB_CONTROL_REPLICATED_UPDATE_OID)) {
371                 return LDB_SUCCESS;
372         }
373
374         /* msDS-IntId is handled by system and should never be
375          * passed by clients */
376         if (ldb_msg_find_element(ac->msg, "msDS-IntId")) {
377                 return LDB_ERR_UNWILLING_TO_PERFORM;
378         }
379
380         /* do not generate msDS-IntId if Relax control is passed */
381         if (ldb_request_get_control(ac->req, LDB_CONTROL_RELAX_OID)) {
382                 return LDB_SUCCESS;
383         }
384
385         /* check Functional Level */
386         if (dsdb_functional_level(ldb) < DS_DOMAIN_FUNCTION_2003) {
387                 return LDB_SUCCESS;
388         }
389
390         /* check systemFlags for SCHEMA_BASE_OBJECT flag */
391         system_flags = ldb_msg_find_attr_as_uint(ac->msg, "systemFlags", 0);
392         if (system_flags & SYSTEM_FLAG_SCHEMA_BASE_OBJECT) {
393                 return LDB_SUCCESS;
394         }
395
396         /* Generate new value for msDs-IntId
397          * Value should be in 0x80000000..0xBFFFFFFF range */
398         msds_intid = generate_random() % 0X3FFFFFFF;
399         msds_intid += 0x80000000;
400
401         /* probe id values until unique one is found */
402         do {
403                 msds_intid++;
404                 if (msds_intid > 0xBFFFFFFF) {
405                         msds_intid = 0x80000001;
406                 }
407
408                 ret = dsdb_module_search(ac->module, ac,
409                                          &ldb_res,
410                                          schema_dn, LDB_SCOPE_ONELEVEL, NULL,
411                                          DSDB_FLAG_NEXT_MODULE,
412                                          "(msDS-IntId=%d)", msds_intid);
413                 if (ret != LDB_SUCCESS) {
414                         ldb_debug_set(ldb, LDB_DEBUG_ERROR,
415                                       __location__": Searching for msDS-IntId=%d failed - %s\n",
416                                       msds_intid,
417                                       ldb_errstring(ldb));
418                         return ldb_operr(ldb);
419                 }
420                 id_exists = (ldb_res->count > 0);
421
422                 talloc_free(ldb_res);
423         } while(id_exists);
424
425         return ldb_msg_add_fmt(ac->msg, "msDS-IntId", "%d", msds_intid);
426 }
427
428
429 /*
430  * samldb_add_entry (async)
431  */
432
433 static int samldb_add_entry_callback(struct ldb_request *req,
434                                         struct ldb_reply *ares)
435 {
436         struct ldb_context *ldb;
437         struct samldb_ctx *ac;
438         int ret;
439
440         ac = talloc_get_type(req->context, struct samldb_ctx);
441         ldb = ldb_module_get_ctx(ac->module);
442
443         if (!ares) {
444                 return ldb_module_done(ac->req, NULL, NULL,
445                                         LDB_ERR_OPERATIONS_ERROR);
446         }
447
448         if (ares->type == LDB_REPLY_REFERRAL) {
449                 return ldb_module_send_referral(ac->req, ares->referral);
450         }
451
452         if (ares->error != LDB_SUCCESS) {
453                 return ldb_module_done(ac->req, ares->controls,
454                                         ares->response, ares->error);
455         }
456         if (ares->type != LDB_REPLY_DONE) {
457                 ldb_set_errstring(ldb,
458                         "Invalid reply type!\n");
459                 return ldb_module_done(ac->req, NULL, NULL,
460                                         LDB_ERR_OPERATIONS_ERROR);
461         }
462
463         /* The caller may wish to get controls back from the add */
464         ac->ares = talloc_steal(ac, ares);
465
466         ret = samldb_next_step(ac);
467         if (ret != LDB_SUCCESS) {
468                 return ldb_module_done(ac->req, NULL, NULL, ret);
469         }
470         return ret;
471 }
472
473 static int samldb_add_entry(struct samldb_ctx *ac)
474 {
475         struct ldb_context *ldb;
476         struct ldb_request *req;
477         int ret;
478
479         ldb = ldb_module_get_ctx(ac->module);
480
481         ret = ldb_build_add_req(&req, ldb, ac,
482                                 ac->msg,
483                                 ac->req->controls,
484                                 ac, samldb_add_entry_callback,
485                                 ac->req);
486         LDB_REQ_SET_LOCATION(req);
487         if (ret != LDB_SUCCESS) {
488                 return ret;
489         }
490
491         return ldb_next_request(ac->module, req);
492 }
493
494 /*
495  * return true if msg carries an attributeSchema that is intended to be RODC
496  * filtered but is also a system-critical attribute.
497  */
498 static bool check_rodc_critical_attribute(struct ldb_message *msg)
499 {
500         uint32_t schemaFlagsEx, searchFlags, rodc_filtered_flags;
501
502         schemaFlagsEx = ldb_msg_find_attr_as_uint(msg, "schemaFlagsEx", 0);
503         searchFlags = ldb_msg_find_attr_as_uint(msg, "searchFlags", 0);
504         rodc_filtered_flags = (SEARCH_FLAG_RODC_ATTRIBUTE | SEARCH_FLAG_CONFIDENTIAL);
505
506         if ((schemaFlagsEx & SCHEMA_FLAG_ATTR_IS_CRITICAL) &&
507                 ((searchFlags & rodc_filtered_flags) == rodc_filtered_flags)) {
508                 return true;
509         } else {
510                 return false;
511         }
512 }
513
514
515 static int samldb_fill_object(struct samldb_ctx *ac)
516 {
517         struct ldb_context *ldb = ldb_module_get_ctx(ac->module);
518         int ret;
519
520         /* Add informations for the different account types */
521         if (strcmp(ac->type, "user") == 0) {
522                 struct ldb_control *rodc_control = ldb_request_get_control(ac->req,
523                                                                            LDB_CONTROL_RODC_DCPROMO_OID);
524                 if (rodc_control != NULL) {
525                         /* see [MS-ADTS] 3.1.1.3.4.1.23 LDAP_SERVER_RODC_DCPROMO_OID */
526                         rodc_control->critical = false;
527                         ret = samldb_add_step(ac, samldb_rodc_add);
528                         if (ret != LDB_SUCCESS) return ret;
529                 }
530
531                 /* check if we have a valid sAMAccountName */
532                 ret = samldb_add_step(ac, samldb_check_sAMAccountName);
533                 if (ret != LDB_SUCCESS) return ret;
534
535                 ret = samldb_add_step(ac, samldb_add_entry);
536                 if (ret != LDB_SUCCESS) return ret;
537
538         } else if (strcmp(ac->type, "group") == 0) {
539                 /* check if we have a valid sAMAccountName */
540                 ret = samldb_add_step(ac, samldb_check_sAMAccountName);
541                 if (ret != LDB_SUCCESS) return ret;
542
543                 ret = samldb_add_step(ac, samldb_add_entry);
544                 if (ret != LDB_SUCCESS) return ret;
545
546         } else if (strcmp(ac->type, "classSchema") == 0) {
547                 const struct ldb_val *rdn_value, *def_obj_cat_val;
548
549                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
550                                                   "rdnAttId", "cn");
551                 if (ret != LDB_SUCCESS) return ret;
552
553                 /* do not allow to mark an attributeSchema as RODC filtered if it
554                  * is system-critical */
555                 if (check_rodc_critical_attribute(ac->msg)) {
556                         ldb_asprintf_errstring(ldb, "Refusing schema add of %s - cannot combine critical class with RODC filtering",
557                                                ldb_dn_get_linearized(ac->msg->dn));
558                         return LDB_ERR_UNWILLING_TO_PERFORM;
559                 }
560
561                 rdn_value = ldb_dn_get_rdn_val(ac->msg->dn);
562                 if (!ldb_msg_find_element(ac->msg, "lDAPDisplayName")) {
563                         /* the RDN has prefix "CN" */
564                         ret = ldb_msg_add_string(ac->msg, "lDAPDisplayName",
565                                 samdb_cn_to_lDAPDisplayName(ac,
566                                         (const char *) rdn_value->data));
567                         if (ret != LDB_SUCCESS) {
568                                 ldb_oom(ldb);
569                                 return ret;
570                         }
571                 }
572
573                 if (!ldb_msg_find_element(ac->msg, "schemaIDGUID")) {
574                         struct GUID guid;
575                         /* a new GUID */
576                         guid = GUID_random();
577                         ret = dsdb_msg_add_guid(ac->msg, &guid, "schemaIDGUID");
578                         if (ret != LDB_SUCCESS) {
579                                 ldb_oom(ldb);
580                                 return ret;
581                         }
582                 }
583
584                 def_obj_cat_val = ldb_msg_find_ldb_val(ac->msg,
585                                                        "defaultObjectCategory");
586                 if (def_obj_cat_val != NULL) {
587                         /* "defaultObjectCategory" has been set by the caller.
588                          * Do some checks for consistency.
589                          * NOTE: The real constraint check (that
590                          * 'defaultObjectCategory' is the DN of the new
591                          * objectclass or any parent of it) is still incomplete.
592                          * For now we say that 'defaultObjectCategory' is valid
593                          * if it exists and it is of objectclass "classSchema".
594                          */
595                         ac->dn = ldb_dn_from_ldb_val(ac, ldb, def_obj_cat_val);
596                         if (ac->dn == NULL) {
597                                 ldb_set_errstring(ldb,
598                                                   "Invalid DN for 'defaultObjectCategory'!");
599                                 return LDB_ERR_CONSTRAINT_VIOLATION;
600                         }
601                 } else {
602                         /* "defaultObjectCategory" has not been set by the
603                          * caller. Use the entry DN for it. */
604                         ac->dn = ac->msg->dn;
605
606                         ret = samdb_msg_add_string(ldb, ac->msg, ac->msg,
607                                                    "defaultObjectCategory",
608                                                    ldb_dn_get_linearized(ac->dn));
609                         if (ret != LDB_SUCCESS) {
610                                 ldb_oom(ldb);
611                                 return ret;
612                         }
613                 }
614
615                 ret = samldb_add_step(ac, samldb_add_entry);
616                 if (ret != LDB_SUCCESS) return ret;
617
618                 /* Now perform the checks for the 'defaultObjectCategory'. The
619                  * lookup DN was already saved in "ac->dn" */
620                 ret = samldb_add_step(ac, samldb_find_for_defaultObjectCategory);
621                 if (ret != LDB_SUCCESS) return ret;
622
623         } else if (strcmp(ac->type, "attributeSchema") == 0) {
624                 const struct ldb_val *rdn_value;
625                 rdn_value = ldb_dn_get_rdn_val(ac->msg->dn);
626                 if (!ldb_msg_find_element(ac->msg, "lDAPDisplayName")) {
627                         /* the RDN has prefix "CN" */
628                         ret = ldb_msg_add_string(ac->msg, "lDAPDisplayName",
629                                 samdb_cn_to_lDAPDisplayName(ac->msg,
630                                         (const char *) rdn_value->data));
631                         if (ret != LDB_SUCCESS) {
632                                 ldb_oom(ldb);
633                                 return ret;
634                         }
635                 }
636
637                 /* do not allow to mark an attributeSchema as RODC filtered if it
638                  * is system-critical */
639                 if (check_rodc_critical_attribute(ac->msg)) {
640                         ldb_asprintf_errstring(ldb, "Refusing schema add of %s - cannot combine critical attribute with RODC filtering",
641                                                ldb_dn_get_linearized(ac->msg->dn));
642                         return LDB_ERR_UNWILLING_TO_PERFORM;
643                 }
644
645                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
646                                                   "isSingleValued", "FALSE");
647                 if (ret != LDB_SUCCESS) return ret;
648
649                 if (!ldb_msg_find_element(ac->msg, "schemaIDGUID")) {
650                         struct GUID guid;
651                         /* a new GUID */
652                         guid = GUID_random();
653                         ret = dsdb_msg_add_guid(ac->msg, &guid, "schemaIDGUID");
654                         if (ret != LDB_SUCCESS) {
655                                 ldb_oom(ldb);
656                                 return ret;
657                         }
658                 }
659
660                 /* handle msDS-IntID attribute */
661                 ret = samldb_add_handle_msDS_IntId(ac);
662                 if (ret != LDB_SUCCESS) return ret;
663
664                 ret = samldb_add_step(ac, samldb_add_entry);
665                 if (ret != LDB_SUCCESS) return ret;
666
667         } else {
668                 ldb_asprintf_errstring(ldb,
669                         "Invalid entry type!");
670                 return LDB_ERR_OPERATIONS_ERROR;
671         }
672
673         return samldb_first_step(ac);
674 }
675
676 static int samldb_fill_foreignSecurityPrincipal_object(struct samldb_ctx *ac)
677 {
678         struct ldb_context *ldb;
679         struct dom_sid *sid;
680         int ret;
681
682         ldb = ldb_module_get_ctx(ac->module);
683
684         sid = samdb_result_dom_sid(ac->msg, ac->msg, "objectSid");
685         if (sid == NULL) {
686                 sid = dom_sid_parse_talloc(ac->msg,
687                                            (const char *)ldb_dn_get_rdn_val(ac->msg->dn)->data);
688                 if (sid == NULL) {
689                         ldb_set_errstring(ldb,
690                                         "No valid SID found in "
691                                         "ForeignSecurityPrincipal CN!");
692                         return LDB_ERR_CONSTRAINT_VIOLATION;
693                 }
694                 if (! samldb_msg_add_sid(ac->msg, "objectSid", sid)) {
695                         return ldb_operr(ldb);
696                 }
697         }
698
699         /* finally proceed with adding the entry */
700         ret = samldb_add_step(ac, samldb_add_entry);
701         if (ret != LDB_SUCCESS) return ret;
702
703         return samldb_first_step(ac);
704 }
705
706 static int samldb_schema_info_update(struct samldb_ctx *ac)
707 {
708         WERROR werr;
709         struct ldb_context *ldb;
710         struct dsdb_schema *schema;
711
712         /* replicated update should always go through */
713         if (ldb_request_get_control(ac->req, DSDB_CONTROL_REPLICATED_UPDATE_OID)) {
714                 return LDB_SUCCESS;
715         }
716
717         /* do not update schemaInfo during provisioning */
718         if (ldb_request_get_control(ac->req, LDB_CONTROL_RELAX_OID)) {
719                 return LDB_SUCCESS;
720         }
721
722         ldb = ldb_module_get_ctx(ac->module);
723         schema = dsdb_get_schema(ldb, NULL);
724         if (!schema) {
725                 ldb_debug_set(ldb, LDB_DEBUG_FATAL,
726                               "samldb_schema_info_update: no dsdb_schema loaded");
727                 DEBUG(0,(__location__ ": %s\n", ldb_errstring(ldb)));
728                 return ldb_operr(ldb);
729         }
730
731         werr = dsdb_module_schema_info_update(ac->module, schema, DSDB_FLAG_NEXT_MODULE);
732         if (!W_ERROR_IS_OK(werr)) {
733                 ldb_debug_set(ldb, LDB_DEBUG_FATAL,
734                               "samldb_schema_info_update: "
735                               "dsdb_module_schema_info_update failed with %s",
736                               win_errstr(werr));
737                 DEBUG(0,(__location__ ": %s\n", ldb_errstring(ldb)));
738                 return ldb_operr(ldb);
739         }
740
741         return LDB_SUCCESS;
742 }
743
744 /*
745  * "Objectclass" trigger (MS-SAMR 3.1.1.8.1)
746  *
747  * Has to be invoked on "add" and "modify" operations on "user", "computer" and
748  * "group" objects.
749  * ac->msg contains the "add"/"modify" message
750  * ac->type contains the object type (main objectclass)
751  */
752 static int samldb_objectclass_trigger(struct samldb_ctx *ac)
753 {
754         struct ldb_context *ldb = ldb_module_get_ctx(ac->module);
755         struct loadparm_context *lp_ctx = talloc_get_type(ldb_get_opaque(ldb,
756                                          "loadparm"), struct loadparm_context);
757         struct ldb_message_element *el, *el2;
758         enum sid_generator sid_generator;
759         struct dom_sid *sid;
760         int ret;
761
762         /* make sure that "sAMAccountType" is not specified */
763         el = ldb_msg_find_element(ac->msg, "sAMAccountType");
764         if (el != NULL) {
765                 ldb_set_errstring(ldb,
766                         "samldb: sAMAccountType must not be specified!");
767                 return LDB_ERR_UNWILLING_TO_PERFORM;
768         }
769
770         /* Step 1: objectSid assignment */
771
772         /* Don't allow the objectSid to be changed. But beside the RELAX
773          * control we have also to guarantee that it can always be set with
774          * SYSTEM permissions. This is needed for the "samba3sam" backend. */
775         sid = samdb_result_dom_sid(ac, ac->msg, "objectSid");
776         if ((sid != NULL) && (!dsdb_module_am_system(ac->module)) &&
777             (ldb_request_get_control(ac->req, LDB_CONTROL_RELAX_OID) == NULL)) {
778                 ldb_asprintf_errstring(ldb, "No SID may be specified in user/group modifications for %s",
779                                        ldb_dn_get_linearized(ac->msg->dn));
780                 return LDB_ERR_UNWILLING_TO_PERFORM;
781         }
782
783         /* but generate a new SID when we do have an add operations */
784         if ((sid == NULL) && (ac->req->operation == LDB_ADD)) {
785                 sid_generator = lpcfg_sid_generator(lp_ctx);
786                 if (sid_generator == SID_GENERATOR_INTERNAL) {
787                         ret = samldb_add_step(ac, samldb_allocate_sid);
788                         if (ret != LDB_SUCCESS) return ret;
789                 }
790         }
791
792         if (strcmp(ac->type, "user") == 0) {
793                 /* Step 1.2: Default values */
794                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
795                         "userAccountControl",
796                         talloc_asprintf(ac->msg, "%u", UF_NORMAL_ACCOUNT));
797                 if (ret != LDB_SUCCESS) return ret;
798                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
799                         "badPwdCount", "0");
800                 if (ret != LDB_SUCCESS) return ret;
801                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
802                         "codePage", "0");
803                 if (ret != LDB_SUCCESS) return ret;
804                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
805                         "countryCode", "0");
806                 if (ret != LDB_SUCCESS) return ret;
807                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
808                         "badPasswordTime", "0");
809                 if (ret != LDB_SUCCESS) return ret;
810                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
811                         "lastLogoff", "0");
812                 if (ret != LDB_SUCCESS) return ret;
813                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
814                         "lastLogon", "0");
815                 if (ret != LDB_SUCCESS) return ret;
816                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
817                         "pwdLastSet", "0");
818                 if (ret != LDB_SUCCESS) return ret;
819                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
820                         "accountExpires", "9223372036854775807");
821                 if (ret != LDB_SUCCESS) return ret;
822                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
823                         "logonCount", "0");
824                 if (ret != LDB_SUCCESS) return ret;
825
826                 el = ldb_msg_find_element(ac->msg, "userAccountControl");
827                 if (el != NULL) {
828                         uint32_t user_account_control, account_type;
829
830                         /* Step 1.3: "userAccountControl" -> "sAMAccountType" mapping */
831                         user_account_control = strtoul((const char *)el->values[0].data,
832                                                        NULL, 0);
833                         account_type = ds_uf2atype(user_account_control);
834                         if (account_type == 0) {
835                                 ldb_set_errstring(ldb, "samldb: Unrecognized account type!");
836                                 return LDB_ERR_UNWILLING_TO_PERFORM;
837                         }
838                         ret = samdb_msg_add_uint(ldb, ac->msg, ac->msg,
839                                                  "sAMAccountType",
840                                                  account_type);
841                         if (ret != LDB_SUCCESS) {
842                                 return ret;
843                         }
844                         el2 = ldb_msg_find_element(ac->msg, "sAMAccountType");
845                         el2->flags = LDB_FLAG_MOD_REPLACE;
846
847                         if (user_account_control &
848                             (UF_SERVER_TRUST_ACCOUNT | UF_PARTIAL_SECRETS_ACCOUNT)) {
849                                 ret = samdb_msg_set_string(ldb, ac->msg, ac->msg,
850                                                            "isCriticalSystemObject",
851                                                            "TRUE");
852                                 if (ret != LDB_SUCCESS) {
853                                         return ret;
854                                 }
855                                 el2 = ldb_msg_find_element(ac->msg,
856                                                            "isCriticalSystemObject");
857                                 el2->flags = LDB_FLAG_MOD_REPLACE;
858                         }
859
860                         /* Step 1.4: "userAccountControl" -> "primaryGroupID" mapping */
861                         if (!ldb_msg_find_element(ac->msg, "primaryGroupID")) {
862                                 uint32_t rid = ds_uf2prim_group_rid(user_account_control);
863                                 ret = samdb_msg_add_uint(ldb, ac->msg, ac->msg,
864                                                          "primaryGroupID", rid);
865                                 if (ret != LDB_SUCCESS) {
866                                         return ret;
867                                 }
868                                 el2 = ldb_msg_find_element(ac->msg,
869                                                            "primaryGroupID");
870                                 el2->flags = LDB_FLAG_MOD_REPLACE;
871                         }
872
873                         /* Step 1.5: Add additional flags when needed */
874                         if ((user_account_control & UF_NORMAL_ACCOUNT) &&
875                             (ldb_request_get_control(ac->req, LDB_CONTROL_RELAX_OID) == NULL)) {
876                                 user_account_control |= UF_ACCOUNTDISABLE;
877                                 user_account_control |= UF_PASSWD_NOTREQD;
878
879                                 ret = samdb_msg_set_uint(ldb, ac->msg, ac->msg,
880                                                          "userAccountControl",
881                                                          user_account_control);
882                                 if (ret != LDB_SUCCESS) {
883                                         return ret;
884                                 }
885                         }
886                 }
887
888         } else if (strcmp(ac->type, "group") == 0) {
889                 /* Step 2.2: Default values */
890                 ret = samdb_find_or_add_attribute(ldb, ac->msg,
891                         "groupType",
892                         talloc_asprintf(ac->msg, "%u", GTYPE_SECURITY_GLOBAL_GROUP));
893                 if (ret != LDB_SUCCESS) return ret;
894
895                 /* Step 2.3: "groupType" -> "sAMAccountType" */
896                 el = ldb_msg_find_element(ac->msg, "groupType");
897                 if (el != NULL) {
898                         uint32_t group_type, account_type;
899
900                         group_type = strtoul((const char *)el->values[0].data,
901                                              NULL, 0);
902
903                         /* The creation of builtin groups requires the
904                          * RELAX control */
905                         if (group_type == GTYPE_SECURITY_BUILTIN_LOCAL_GROUP) {
906                                 if (ldb_request_get_control(ac->req,
907                                                             LDB_CONTROL_RELAX_OID) == NULL) {
908                                         return LDB_ERR_UNWILLING_TO_PERFORM;
909                                 }
910                         }
911
912                         account_type = ds_gtype2atype(group_type);
913                         if (account_type == 0) {
914                                 ldb_set_errstring(ldb, "samldb: Unrecognized account type!");
915                                 return LDB_ERR_UNWILLING_TO_PERFORM;
916                         }
917                         ret = samdb_msg_add_uint(ldb, ac->msg, ac->msg,
918                                                  "sAMAccountType",
919                                                  account_type);
920                         if (ret != LDB_SUCCESS) {
921                                 return ret;
922                         }
923                         el2 = ldb_msg_find_element(ac->msg, "sAMAccountType");
924                         el2->flags = LDB_FLAG_MOD_REPLACE;
925                 }
926         }
927
928         return LDB_SUCCESS;
929 }
930
931 /*
932  * "Primary group ID" trigger (MS-SAMR 3.1.1.8.2)
933  *
934  * Has to be invoked on "add" and "modify" operations on "user" and "computer"
935  * objects.
936  * ac->msg contains the "add"/"modify" message
937  */
938
939 static int samldb_prim_group_set(struct samldb_ctx *ac)
940 {
941         struct ldb_context *ldb = ldb_module_get_ctx(ac->module);
942         struct ldb_dn *prim_group_dn;
943         uint32_t rid;
944         struct dom_sid *sid;
945
946         rid = samdb_result_uint(ac->msg, "primaryGroupID", (uint32_t) -1);
947         if (rid == (uint32_t) -1) {
948                 /* we aren't affected of any primary group set */
949                 return LDB_SUCCESS;
950
951         } else if (!ldb_request_get_control(ac->req, LDB_CONTROL_RELAX_OID)) {
952                 ldb_set_errstring(ldb,
953                                   "The primary group isn't settable on add operations!");
954                 return LDB_ERR_UNWILLING_TO_PERFORM;
955         }
956
957         sid = dom_sid_add_rid(ac, samdb_domain_sid(ldb), rid);
958         if (sid == NULL) {
959                 return ldb_operr(ldb);
960         }
961
962         prim_group_dn = samdb_search_dn(ldb, ac, NULL, "(objectSid=%s)",
963                                         ldap_encode_ndr_dom_sid(ac, sid));
964         if (prim_group_dn == NULL) {
965                 ldb_asprintf_errstring(ldb,
966                                        "Failed to find primary group with RID %u!",
967                                        rid);
968                 return LDB_ERR_UNWILLING_TO_PERFORM;
969         }
970
971         return LDB_SUCCESS;
972 }
973
974 static int samldb_prim_group_change(struct samldb_ctx *ac)
975 {
976         struct ldb_context *ldb = ldb_module_get_ctx(ac->module);
977         const char * attrs[] = { "primaryGroupID", "memberOf", NULL };
978         struct ldb_result *res;
979         struct ldb_message_element *el;
980         struct ldb_message *msg;
981         uint32_t rid;
982         struct dom_sid *sid;
983         struct ldb_dn *prev_prim_group_dn, *new_prim_group_dn;
984         int ret;
985
986         /* Fetch informations from the existing object */
987
988         ret = ldb_search(ldb, ac, &res, ac->msg->dn, LDB_SCOPE_BASE, attrs,
989                          NULL);
990         if (ret != LDB_SUCCESS) {
991                 return ret;
992         }
993
994         /* Finds out the DN of the old primary group */
995
996         rid = samdb_result_uint(res->msgs[0], "primaryGroupID", (uint32_t) -1);
997         if (rid == (uint32_t) -1) {
998                 /* User objects do always have a mandatory "primaryGroupID"
999                  * attribute. If this doesn't exist then the object is of the
1000                  * wrong type. This is the exact Windows error code */
1001                 return LDB_ERR_OBJECT_CLASS_VIOLATION;
1002         }
1003
1004         sid = dom_sid_add_rid(ac, samdb_domain_sid(ldb), rid);
1005         if (sid == NULL) {
1006                 return ldb_operr(ldb);
1007         }
1008
1009         prev_prim_group_dn = samdb_search_dn(ldb, ac, NULL, "(objectSid=%s)",
1010                                              ldap_encode_ndr_dom_sid(ac, sid));
1011         if (prev_prim_group_dn == NULL) {
1012                 return ldb_operr(ldb);
1013         }
1014
1015         /* Finds out the DN of the new primary group */
1016
1017         rid = samdb_result_uint(ac->msg, "primaryGroupID", (uint32_t) -1);
1018         if (rid == (uint32_t) -1) {
1019                 /* we aren't affected of any primary group change */
1020                 return LDB_SUCCESS;
1021         }
1022
1023         sid = dom_sid_add_rid(ac, samdb_domain_sid(ldb), rid);
1024         if (sid == NULL) {
1025                 return ldb_operr(ldb);
1026         }
1027
1028         new_prim_group_dn = samdb_search_dn(ldb, ac, NULL, "(objectSid=%s)",
1029                                             ldap_encode_ndr_dom_sid(ac, sid));
1030         if (new_prim_group_dn == NULL) {
1031                 /* Here we know if the specified new primary group candidate is
1032                  * valid or not. */
1033                 return LDB_ERR_UNWILLING_TO_PERFORM;
1034         }
1035
1036         /* Only update the "member" attributes when we really do have a change */
1037         if (ldb_dn_compare(new_prim_group_dn, prev_prim_group_dn) != 0) {
1038                 /* We need to be already a normal member of the new primary
1039                  * group in order to be successful. */
1040                 el = samdb_find_attribute(ldb, res->msgs[0], "memberOf",
1041                                           ldb_dn_get_linearized(new_prim_group_dn));
1042                 if (el == NULL) {
1043                         return LDB_ERR_UNWILLING_TO_PERFORM;
1044                 }
1045
1046                 /* Remove the "member" attribute on the new primary group */
1047                 msg = talloc_zero(ac, struct ldb_message);
1048                 msg->dn = new_prim_group_dn;
1049
1050                 ret = samdb_msg_add_delval(ldb, ac, msg, "member",
1051                                            ldb_dn_get_linearized(ac->msg->dn));
1052                 if (ret != LDB_SUCCESS) {
1053                         return ret;
1054                 }
1055
1056                 ret = dsdb_module_modify(ac->module, msg, DSDB_FLAG_NEXT_MODULE);
1057                 if (ret != LDB_SUCCESS) {
1058                         return ret;
1059                 }
1060
1061                 /* Add a "member" attribute for the previous primary group */
1062                 msg = talloc_zero(ac, struct ldb_message);
1063                 msg->dn = prev_prim_group_dn;
1064
1065                 ret = samdb_msg_add_addval(ldb, ac, msg, "member",
1066                                            ldb_dn_get_linearized(ac->msg->dn));
1067                 if (ret != LDB_SUCCESS) {
1068                         return ret;
1069                 }
1070
1071                 ret = dsdb_module_modify(ac->module, msg, DSDB_FLAG_NEXT_MODULE);
1072                 if (ret != LDB_SUCCESS) {
1073                         return ret;
1074                 }
1075         }
1076
1077         return LDB_SUCCESS;
1078 }
1079
1080 static int samldb_prim_group_trigger(struct samldb_ctx *ac)
1081 {
1082         int ret;
1083
1084         if (ac->req->operation == LDB_ADD) {
1085                 ret = samldb_prim_group_set(ac);
1086         } else {
1087                 ret = samldb_prim_group_change(ac);
1088         }
1089
1090         return ret;
1091 }
1092
1093 static int samldb_member_check(struct samldb_ctx *ac)
1094 {
1095         struct ldb_context *ldb;
1096         struct ldb_message_element *el;
1097         struct ldb_dn *member_dn, *group_dn;
1098         uint32_t prim_group_rid;
1099         struct dom_sid *sid;
1100         unsigned int i;
1101
1102         ldb = ldb_module_get_ctx(ac->module);
1103
1104         el = ldb_msg_find_element(ac->msg, "member");
1105         if (el == NULL) {
1106                 /* we aren't affected */
1107                 return LDB_SUCCESS;
1108         }
1109
1110         for (i = 0; i < el->num_values; i++) {
1111                 /* Denies to add "member"s to groups which are primary ones
1112                  * for them */
1113                 member_dn = ldb_dn_from_ldb_val(ac, ldb, &el->values[i]);
1114                 if (!ldb_dn_validate(member_dn)) {
1115                         return ldb_operr(ldb);
1116                 }
1117
1118                 prim_group_rid = samdb_search_uint(ldb, ac, (uint32_t) -1,
1119                                                    member_dn, "primaryGroupID",
1120                                                    NULL);
1121                 if (prim_group_rid == (uint32_t) -1) {
1122                         /* the member hasn't to be a user account -> therefore
1123                          * no check needed in this case. */
1124                         continue;
1125                 }
1126
1127                 sid = dom_sid_add_rid(ac, samdb_domain_sid(ldb),
1128                                       prim_group_rid);
1129                 if (sid == NULL) {
1130                         return ldb_operr(ldb);
1131                 }
1132
1133                 group_dn = samdb_search_dn(ldb, ac, NULL, "(objectSid=%s)",
1134                                            ldap_encode_ndr_dom_sid(ac, sid));
1135                 if (group_dn == NULL) {
1136                         return ldb_operr(ldb);
1137                 }
1138
1139                 if (ldb_dn_compare(group_dn, ac->msg->dn) == 0) {
1140                         return LDB_ERR_ENTRY_ALREADY_EXISTS;
1141                 }
1142         }
1143
1144         return LDB_SUCCESS;
1145 }
1146
1147
1148 /* add */
1149 static int samldb_add(struct ldb_module *module, struct ldb_request *req)
1150 {
1151         struct ldb_context *ldb;
1152         struct samldb_ctx *ac;
1153         int ret;
1154
1155         ldb = ldb_module_get_ctx(module);
1156         ldb_debug(ldb, LDB_DEBUG_TRACE, "samldb_add\n");
1157
1158         /* do not manipulate our control entries */
1159         if (ldb_dn_is_special(req->op.add.message->dn)) {
1160                 return ldb_next_request(module, req);
1161         }
1162
1163         ac = samldb_ctx_init(module, req);
1164         if (ac == NULL) {
1165                 return ldb_operr(ldb);
1166         }
1167
1168         /* build the new msg */
1169         ac->msg = ldb_msg_copy_shallow(ac, req->op.add.message);
1170         if (ac->msg == NULL) {
1171                 talloc_free(ac);
1172                 ldb_debug(ldb, LDB_DEBUG_FATAL,
1173                           "samldb_add: ldb_msg_copy_shallow failed!\n");
1174                 return ldb_operr(ldb);
1175         }
1176
1177         if (samdb_find_attribute(ldb, ac->msg,
1178                                  "objectclass", "user") != NULL) {
1179                 ac->type = "user";
1180
1181                 ret = samldb_prim_group_trigger(ac);
1182                 if (ret != LDB_SUCCESS) {
1183                         return ret;
1184                 }
1185
1186                 ret = samldb_objectclass_trigger(ac);
1187                 if (ret != LDB_SUCCESS) {
1188                         return ret;
1189                 }
1190
1191                 return samldb_fill_object(ac);
1192         }
1193
1194         if (samdb_find_attribute(ldb, ac->msg,
1195                                  "objectclass", "group") != NULL) {
1196                 ac->type = "group";
1197
1198                 ret = samldb_objectclass_trigger(ac);
1199                 if (ret != LDB_SUCCESS) {
1200                         return ret;
1201                 }
1202
1203                 return samldb_fill_object(ac);
1204         }
1205
1206         /* perhaps a foreignSecurityPrincipal? */
1207         if (samdb_find_attribute(ldb, ac->msg,
1208                                  "objectclass",
1209                                  "foreignSecurityPrincipal") != NULL) {
1210                 return samldb_fill_foreignSecurityPrincipal_object(ac);
1211         }
1212
1213         if (samdb_find_attribute(ldb, ac->msg,
1214                                  "objectclass", "classSchema") != NULL) {
1215                 ret = samldb_schema_info_update(ac);
1216                 if (ret != LDB_SUCCESS) {
1217                         talloc_free(ac);
1218                         return ret;
1219                 }
1220
1221                 ac->type = "classSchema";
1222                 return samldb_fill_object(ac);
1223         }
1224
1225         if (samdb_find_attribute(ldb, ac->msg,
1226                                  "objectclass", "attributeSchema") != NULL) {
1227                 ret = samldb_schema_info_update(ac);
1228                 if (ret != LDB_SUCCESS) {
1229                         talloc_free(ac);
1230                         return ret;
1231                 }
1232
1233                 ac->type = "attributeSchema";
1234                 return samldb_fill_object(ac);
1235         }
1236
1237         talloc_free(ac);
1238
1239         /* nothing matched, go on */
1240         return ldb_next_request(module, req);
1241 }
1242
1243 /* modify */
1244 static int samldb_modify(struct ldb_module *module, struct ldb_request *req)
1245 {
1246         struct ldb_context *ldb;
1247         struct samldb_ctx *ac;
1248         struct ldb_message_element *el, *el2;
1249         bool modified = false;
1250         int ret;
1251         uint32_t account_type;
1252
1253         if (ldb_dn_is_special(req->op.mod.message->dn)) {
1254                 /* do not manipulate our control entries */
1255                 return ldb_next_request(module, req);
1256         }
1257
1258         ldb = ldb_module_get_ctx(module);
1259
1260         /* make sure that "sAMAccountType" is not specified */
1261         el = ldb_msg_find_element(req->op.mod.message, "sAMAccountType");
1262         if (el != NULL) {
1263                 ldb_set_errstring(ldb,
1264                         "samldb: sAMAccountType must not be specified!");
1265                 return LDB_ERR_UNWILLING_TO_PERFORM;
1266         }
1267         /* make sure that "isCriticalSystemObject" is not specified */
1268         el = ldb_msg_find_element(req->op.mod.message, "isCriticalSystemObject");
1269         if (el != NULL) {
1270                 if (ldb_request_get_control(req, LDB_CONTROL_RELAX_OID) == NULL) {
1271                         ldb_set_errstring(ldb,
1272                                 "samldb: isCriticalSystemObject must not be specified!");
1273                         return LDB_ERR_UNWILLING_TO_PERFORM;
1274                 }
1275         }
1276
1277         /* msDS-IntId is not allowed to be modified
1278          * except when modification comes from replication */
1279         if (ldb_msg_find_element(req->op.mod.message, "msDS-IntId")) {
1280                 if (!ldb_request_get_control(req, DSDB_CONTROL_REPLICATED_UPDATE_OID)) {
1281                         return LDB_ERR_CONSTRAINT_VIOLATION;
1282                 }
1283         }
1284
1285         ac = samldb_ctx_init(module, req);
1286         if (ac == NULL) {
1287                 return ldb_operr(ldb);
1288         }
1289
1290         /* build the new msg */
1291         ac->msg = ldb_msg_copy_shallow(ac, req->op.mod.message);
1292         if (ac->msg == NULL) {
1293                 talloc_free(ac);
1294                 ldb_debug(ldb, LDB_DEBUG_FATAL,
1295                           "samldb_modify: ldb_msg_copy_shallow failed!\n");
1296                 return ldb_operr(ldb);
1297         }
1298
1299         el = ldb_msg_find_element(ac->msg, "groupType");
1300         if (el && (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_REPLACE) && el->num_values == 1) {
1301                 uint32_t group_type, old_group_type;
1302
1303                 modified = true;
1304
1305                 group_type = strtoul((const char *)el->values[0].data, NULL, 0);
1306                 old_group_type = samdb_search_uint(ldb, ac, 0, ac->msg->dn,
1307                                                    "groupType", NULL);
1308                 if (old_group_type == 0) {
1309                         return ldb_operr(ldb);
1310                 }
1311
1312                 /* Group type switching isn't so easy as it seems: We can only
1313                  * change in this directions: global <-> universal <-> local
1314                  * On each step also the group type itself
1315                  * (security/distribution) is variable. */
1316
1317                 switch (group_type) {
1318                 case GTYPE_SECURITY_GLOBAL_GROUP:
1319                 case GTYPE_DISTRIBUTION_GLOBAL_GROUP:
1320                         /* change to "universal" allowed */
1321                         if ((old_group_type == GTYPE_SECURITY_DOMAIN_LOCAL_GROUP) ||
1322                             (old_group_type == GTYPE_DISTRIBUTION_DOMAIN_LOCAL_GROUP)) {
1323                                 return LDB_ERR_UNWILLING_TO_PERFORM;
1324                         }
1325                 break;
1326
1327                 case GTYPE_SECURITY_UNIVERSAL_GROUP:
1328                 case GTYPE_DISTRIBUTION_UNIVERSAL_GROUP:
1329                         /* each change allowed */
1330                 break;
1331
1332                 case GTYPE_SECURITY_DOMAIN_LOCAL_GROUP:
1333                 case GTYPE_DISTRIBUTION_DOMAIN_LOCAL_GROUP:
1334                         /* change to "universal" allowed */
1335                         if ((old_group_type == GTYPE_SECURITY_GLOBAL_GROUP) ||
1336                             (old_group_type == GTYPE_DISTRIBUTION_GLOBAL_GROUP)) {
1337                                 return LDB_ERR_UNWILLING_TO_PERFORM;
1338                         }
1339                 break;
1340
1341                 case GTYPE_SECURITY_BUILTIN_LOCAL_GROUP:
1342                 default:
1343                         /* we don't allow this "groupType" values */
1344                         return LDB_ERR_UNWILLING_TO_PERFORM;
1345                 break;
1346                 }
1347
1348                 account_type =  ds_gtype2atype(group_type);
1349                 ret = samdb_msg_add_uint(ldb, ac->msg, ac->msg,
1350                                          "sAMAccountType",
1351                                          account_type);
1352                 if (ret != LDB_SUCCESS) {
1353                         return ret;
1354                 }
1355                 el2 = ldb_msg_find_element(ac->msg, "sAMAccountType");
1356                 el2->flags = LDB_FLAG_MOD_REPLACE;
1357         }
1358         el = ldb_msg_find_element(ac->msg, "groupType");
1359         if (el && (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_DELETE)) {
1360                 return LDB_ERR_UNWILLING_TO_PERFORM;
1361         }
1362
1363         el = ldb_msg_find_element(ac->msg, "primaryGroupID");
1364         if (el && (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_REPLACE) && el->num_values == 1) {
1365                 modified = true;
1366
1367                 ret = samldb_prim_group_change(ac);
1368                 if (ret != LDB_SUCCESS) {
1369                         return ret;
1370                 }
1371         }
1372         el = ldb_msg_find_element(ac->msg, "primaryGroupID");
1373         if (el && (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_DELETE)) {
1374                 return LDB_ERR_UNWILLING_TO_PERFORM;
1375         }
1376
1377         el = ldb_msg_find_element(ac->msg, "userAccountControl");
1378         if (el && (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_REPLACE) && el->num_values == 1) {
1379                 uint32_t user_account_control;
1380
1381                 modified = true;
1382
1383                 user_account_control = strtoul((const char *)el->values[0].data,
1384                         NULL, 0);
1385                 account_type = ds_uf2atype(user_account_control);
1386                 ret = samdb_msg_add_uint(ldb, ac->msg, ac->msg,
1387                                          "sAMAccountType",
1388                                          account_type);
1389                 if (ret != LDB_SUCCESS) {
1390                         return ret;
1391                 }
1392                 el2 = ldb_msg_find_element(ac->msg, "sAMAccountType");
1393                 el2->flags = LDB_FLAG_MOD_REPLACE;
1394
1395                 if (user_account_control & (UF_SERVER_TRUST_ACCOUNT | UF_PARTIAL_SECRETS_ACCOUNT)) {
1396                         ret = samdb_msg_add_string(ldb, ac->msg, ac->msg,
1397                                                    "isCriticalSystemObject",
1398                                                    "TRUE");
1399                         if (ret != LDB_SUCCESS) {
1400                                 return ret;
1401                         }
1402                         el2 = ldb_msg_find_element(ac->msg,
1403                                                    "isCriticalSystemObject");
1404                         el2->flags = LDB_FLAG_MOD_REPLACE;
1405                 }
1406
1407                 if (!ldb_msg_find_element(ac->msg, "primaryGroupID")) {
1408                         uint32_t rid = ds_uf2prim_group_rid(user_account_control);
1409
1410                         ret = samdb_msg_add_uint(ldb, ac->msg, ac->msg,
1411                                                  "primaryGroupID", rid);
1412                         if (ret != LDB_SUCCESS) {
1413                                 return ret;
1414                         }
1415                         el2 = ldb_msg_find_element(ac->msg,
1416                                                    "primaryGroupID");
1417                         el2->flags = LDB_FLAG_MOD_REPLACE;
1418                 }
1419         }
1420         el = ldb_msg_find_element(ac->msg, "userAccountControl");
1421         if (el && (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_DELETE)) {
1422                 return LDB_ERR_UNWILLING_TO_PERFORM;
1423         }
1424
1425         el = ldb_msg_find_element(ac->msg, "member");
1426         if (el && el->flags & (LDB_FLAG_MOD_ADD|LDB_FLAG_MOD_REPLACE) && el->num_values == 1) {
1427                 ret = samldb_member_check(ac);
1428                 if (ret != LDB_SUCCESS) {
1429                         return ret;
1430                 }
1431         }
1432
1433         if (modified) {
1434                 struct ldb_request *child_req;
1435
1436                 /* Now perform the real modifications as a child request */
1437                 ret = ldb_build_mod_req(&child_req, ldb, ac,
1438                                         ac->msg,
1439                                         req->controls,
1440                                         req, dsdb_next_callback,
1441                                         req);
1442                 LDB_REQ_SET_LOCATION(child_req);
1443                 if (ret != LDB_SUCCESS) {
1444                         return ret;
1445                 }
1446
1447                 return ldb_next_request(module, child_req);
1448         }
1449
1450         talloc_free(ac);
1451
1452         /* no change which interests us, go on */
1453         return ldb_next_request(module, req);
1454 }
1455
1456 /* delete */
1457
1458 static int samldb_prim_group_users_check(struct samldb_ctx *ac)
1459 {
1460         struct ldb_context *ldb;
1461         struct dom_sid *sid;
1462         uint32_t rid;
1463         NTSTATUS status;
1464         int count;
1465
1466         ldb = ldb_module_get_ctx(ac->module);
1467
1468         /* Finds out the SID/RID of the SAM object */
1469         sid = samdb_search_dom_sid(ldb, ac, ac->req->op.del.dn, "objectSid",
1470                                    NULL);
1471         if (sid == NULL) {
1472                 /* No SID - it might not be a SAM object - therefore ok */
1473                 return LDB_SUCCESS;
1474         }
1475         status = dom_sid_split_rid(ac, sid, NULL, &rid);
1476         if (!NT_STATUS_IS_OK(status)) {
1477                 return ldb_operr(ldb);
1478         }
1479         if (rid == 0) {
1480                 /* Special object (security principal?) */
1481                 return LDB_SUCCESS;
1482         }
1483
1484         /* Deny delete requests from groups which are primary ones */
1485         count = samdb_search_count(ldb, NULL,
1486                                    "(&(primaryGroupID=%u)(objectClass=user))",
1487                                    rid);
1488         if (count < 0) {
1489                 return ldb_operr(ldb);
1490         }
1491         if (count > 0) {
1492                 return LDB_ERR_ENTRY_ALREADY_EXISTS;
1493         }
1494
1495         return LDB_SUCCESS;
1496 }
1497
1498 static int samldb_delete(struct ldb_module *module, struct ldb_request *req)
1499 {
1500         struct samldb_ctx *ac;
1501         int ret;
1502
1503         if (ldb_dn_is_special(req->op.del.dn)) {
1504                 /* do not manipulate our control entries */
1505                 return ldb_next_request(module, req);
1506         }
1507
1508         ac = samldb_ctx_init(module, req);
1509         if (ac == NULL) {
1510                 return ldb_operr(ldb_module_get_ctx(module));
1511         }
1512
1513         ret = samldb_prim_group_users_check(ac);
1514         if (ret != LDB_SUCCESS) {
1515                 return ret;
1516         }
1517
1518         talloc_free(ac);
1519
1520         return ldb_next_request(module, req);
1521 }
1522
1523 /* extended */
1524
1525 static int samldb_extended_allocate_rid_pool(struct ldb_module *module, struct ldb_request *req)
1526 {
1527         struct ldb_context *ldb = ldb_module_get_ctx(module);
1528         struct dsdb_fsmo_extended_op *exop;
1529         int ret;
1530
1531         exop = talloc_get_type(req->op.extended.data, struct dsdb_fsmo_extended_op);
1532         if (!exop) {
1533                 ldb_debug(ldb, LDB_DEBUG_FATAL, "samldb_extended_allocate_rid_pool: invalid extended data\n");
1534                 return LDB_ERR_PROTOCOL_ERROR;
1535         }
1536
1537         ret = ridalloc_allocate_rid_pool_fsmo(module, exop);
1538         if (ret != LDB_SUCCESS) {
1539                 return ret;
1540         }
1541
1542         return ldb_module_done(req, NULL, NULL, LDB_SUCCESS);
1543 }
1544
1545 static int samldb_extended(struct ldb_module *module, struct ldb_request *req)
1546 {
1547         if (strcmp(req->op.extended.oid, DSDB_EXTENDED_ALLOCATE_RID_POOL) == 0) {
1548                 return samldb_extended_allocate_rid_pool(module, req);
1549         }
1550
1551         return ldb_next_request(module, req);
1552 }
1553
1554
1555 _PUBLIC_ const struct ldb_module_ops ldb_samldb_module_ops = {
1556         .name          = "samldb",
1557         .add           = samldb_add,
1558         .modify        = samldb_modify,
1559         .del           = samldb_delete,
1560         .extended      = samldb_extended
1561 };
1562