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