X-Git-Url: http://git.samba.org/samba.git/?a=blobdiff_plain;f=source4%2Fdsdb%2Fsamdb%2Fldb_modules%2Fsamldb.c;h=7fa27e8a91fae6d8fbba60a9db4c1f14c8fd2b53;hb=7f424155e62d04d23bb1c825ecd546eed18725e0;hp=95a16b5527ee01eed06b1b0b877d41d1c4797633;hpb=d36edccc00452ff059a2e0ab5b7c4b68cb84eeb1;p=samba.git diff --git a/source4/dsdb/samdb/ldb_modules/samldb.c b/source4/dsdb/samdb/ldb_modules/samldb.c index 95a16b5527e..7fa27e8a91f 100644 --- a/source4/dsdb/samdb/ldb_modules/samldb.c +++ b/source4/dsdb/samdb/ldb_modules/samldb.c @@ -3,10 +3,7 @@ Copyright (C) Andrew Bartlett 2005 Copyright (C) Simo Sorce 2004-2008 - - * NOTICE: this module is NOT released under the GNU LGPL license as - * other ldb code. This module is release under the GNU GPL v3 or - * later license. + Copyright (C) Matthias Dieter Wallnöfer 2009-2010 This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -34,15 +31,14 @@ #include "includes.h" #include "libcli/ldap/ldap_ndr.h" -#include "lib/ldb/include/ldb_errors.h" -#include "lib/ldb/include/ldb.h" -#include "lib/ldb/include/ldb_private.h" -#include "lib/events/events.h" +#include "ldb_module.h" #include "dsdb/samdb/samdb.h" +#include "dsdb/samdb/ldb_modules/util.h" #include "libcli/security/security.h" #include "librpc/gen_ndr/ndr_security.h" #include "../lib/util/util_ldb.h" #include "ldb_wrap.h" +#include "param/param.h" struct samldb_ctx; @@ -57,37 +53,34 @@ struct samldb_ctx { struct ldb_module *module; struct ldb_request *req; - /* the resulting message */ - struct ldb_message *msg; - - /* used to apply templates */ + /* used for add operations */ const char *type; - /* used to find parent domain */ - struct ldb_dn *check_dn; - struct ldb_dn *domain_dn; - struct dom_sid *domain_sid; - uint32_t next_rid; - - /* generic storage, remember to zero it before use */ - struct ldb_reply *ares; + /* the resulting message */ + struct ldb_message *msg; - /* holds the entry SID */ - struct dom_sid *sid; + /* used in "samldb_find_for_defaultObjectCategory" */ + struct ldb_dn *dn, *res_dn; /* all the async steps necessary to complete the operation */ struct samldb_step *steps; struct samldb_step *curstep; + + /* If someone set an ares to forward controls and response back to the caller */ + struct ldb_reply *ares; }; static struct samldb_ctx *samldb_ctx_init(struct ldb_module *module, struct ldb_request *req) { + struct ldb_context *ldb; struct samldb_ctx *ac; + ldb = ldb_module_get_ctx(module); + ac = talloc_zero(req, struct samldb_ctx); if (ac == NULL) { - ldb_oom(module->ldb); + ldb_oom(ldb); return NULL; } @@ -99,30 +92,33 @@ static struct samldb_ctx *samldb_ctx_init(struct ldb_module *module, static int samldb_add_step(struct samldb_ctx *ac, samldb_step_fn_t fn) { - struct samldb_step *step; + struct samldb_step *step, *stepper; step = talloc_zero(ac, struct samldb_step); if (step == NULL) { - return LDB_ERR_OPERATIONS_ERROR; + return ldb_oom(ldb_module_get_ctx(ac->module)); } + step->fn = fn; + if (ac->steps == NULL) { ac->steps = step; ac->curstep = step; } else { - ac->curstep->next = step; - ac->curstep = step; + if (ac->curstep == NULL) + return ldb_operr(ldb_module_get_ctx(ac->module)); + for (stepper = ac->curstep; stepper->next != NULL; + stepper = stepper->next); + stepper->next = step; } - step->fn = fn; - return LDB_SUCCESS; } static int samldb_first_step(struct samldb_ctx *ac) { if (ac->steps == NULL) { - return LDB_ERR_OPERATIONS_ERROR; + return ldb_operr(ldb_module_get_ctx(ac->module)); } ac->curstep = ac->steps; @@ -136,1092 +132,939 @@ static int samldb_next_step(struct samldb_ctx *ac) return ac->curstep->fn(ac); } - /* it is an error if the last step does not properly - * return to the upper module by itself */ - return LDB_ERR_OPERATIONS_ERROR; + /* we exit the samldb module here */ + /* If someone set an ares to forward controls and response back to the caller, use them */ + if (ac->ares) { + return ldb_module_done(ac->req, ac->ares->controls, + ac->ares->response, LDB_SUCCESS); + } else { + return ldb_module_done(ac->req, NULL, NULL, LDB_SUCCESS); + } } -static int samldb_search_template_callback(struct ldb_request *req, - struct ldb_reply *ares) -{ - struct samldb_ctx *ac; - int ret; - ac = talloc_get_type(req->context, struct samldb_ctx); +/* sAMAccountName handling */ - if (!ares) { - ret = LDB_ERR_OPERATIONS_ERROR; - goto done; - } - if (ares->error != LDB_SUCCESS) { - return ldb_module_done(ac->req, ares->controls, - ares->response, ares->error); - } +static int samldb_generate_sAMAccountName(struct ldb_context *ldb, struct ldb_message *msg) +{ + char *name; - switch (ares->type) { - case LDB_REPLY_ENTRY: - /* save entry */ - if (ac->ares != NULL) { - /* one too many! */ - ldb_set_errstring(ac->module->ldb, - "Invalid number of results while searching " - "for template objects"); - ret = LDB_ERR_OPERATIONS_ERROR; - goto done; - } + /* Format: $000000-000000000000 */ - ac->ares = talloc_steal(ac, ares); - ret = LDB_SUCCESS; - break; + name = talloc_asprintf(msg, "$%.6X-%.6X%.6X", + (unsigned int)generate_random(), + (unsigned int)generate_random(), + (unsigned int)generate_random()); + if (name == NULL) { + return ldb_oom(ldb); + } + return ldb_msg_add_steal_string(msg, "sAMAccountName", name); +} - case LDB_REPLY_REFERRAL: - /* ignore */ - talloc_free(ares); - ret = LDB_SUCCESS; - break; +static int samldb_check_sAMAccountName(struct samldb_ctx *ac) +{ + struct ldb_context *ldb = ldb_module_get_ctx(ac->module); + const char *name; + int ret; - case LDB_REPLY_DONE: + if (ldb_msg_find_element(ac->msg, "sAMAccountName") == NULL) { + ret = samldb_generate_sAMAccountName(ldb, ac->msg); + if (ret != LDB_SUCCESS) { + return ret; + } + } - talloc_free(ares); - ret = samldb_next_step(ac); - break; + name = ldb_msg_find_attr_as_string(ac->msg, "sAMAccountName", NULL); + if (name == NULL) { + return ldb_operr(ldb); } -done: - if (ret != LDB_SUCCESS) { - return ldb_module_done(ac->req, NULL, NULL, ret); + ret = samdb_search_count(ldb, NULL, "(sAMAccountName=%s)", + ldb_binary_encode_string(ac, name)); + if ((ret < 0) || (ret > 1)) { + return ldb_operr(ldb); + } + if (ret == 1) { + return LDB_ERR_ENTRY_ALREADY_EXISTS; } - return LDB_SUCCESS; + return samldb_next_step(ac); } -static int samldb_search_template(struct samldb_ctx *ac) +/* sAMAccountType handling */ + +static int samldb_check_sAMAccountType(struct samldb_ctx *ac) { - struct event_context *ev; - struct loadparm_context *lparm_ctx; - struct ldb_context *templates_ldb; - char *templates_ldb_path; - struct ldb_request *req; - struct ldb_dn *basedn; - void *opaque; + struct ldb_context *ldb; + unsigned int account_type; + unsigned int group_type; + unsigned int uac; int ret; - opaque = ldb_get_opaque(ac->module->ldb, "loadparm"); - lparm_ctx = talloc_get_type(opaque, struct loadparm_context); - if (lparm_ctx == NULL) { - ldb_set_errstring(ac->module->ldb, - "Unable to find loadparm context\n"); - return LDB_ERR_OPERATIONS_ERROR; - } + ldb = ldb_module_get_ctx(ac->module); - opaque = ldb_get_opaque(ac->module->ldb, "templates_ldb"); - templates_ldb = talloc_get_type(opaque, struct ldb_context); + /* make sure sAMAccountType is not specified */ + if (ldb_msg_find_element(ac->msg, "sAMAccountType") != NULL) { + ldb_asprintf_errstring(ldb, + "sAMAccountType must not be specified!"); + return LDB_ERR_UNWILLING_TO_PERFORM; + } - /* make sure we have the templates ldb */ - if (!templates_ldb) { - templates_ldb_path = samdb_relative_path(ac->module->ldb, ac, - "templates.ldb"); - if (!templates_ldb_path) { - ldb_set_errstring(ac->module->ldb, - "samldb_init_template: ERROR: Failed " - "to contruct path for template db"); - return LDB_ERR_OPERATIONS_ERROR; + if (strcmp("user", ac->type) == 0) { + uac = samdb_result_uint(ac->msg, "userAccountControl", 0); + if (uac == 0) { + ldb_asprintf_errstring(ldb, + "userAccountControl invalid!"); + return LDB_ERR_UNWILLING_TO_PERFORM; + } else { + account_type = ds_uf2atype(uac); + ret = samdb_msg_add_uint(ldb, + ac->msg, ac->msg, + "sAMAccountType", + account_type); + if (ret != LDB_SUCCESS) { + return ret; + } + } + } else if (strcmp("group", ac->type) == 0) { + group_type = samdb_result_uint(ac->msg, "groupType", 0); + if (group_type == 0) { + ldb_asprintf_errstring(ldb, + "groupType invalid!\n"); + return LDB_ERR_UNWILLING_TO_PERFORM; + } else { + account_type = ds_gtype2atype(group_type); + ret = samdb_msg_add_uint(ldb, + ac->msg, ac->msg, + "sAMAccountType", + account_type); + if (ret != LDB_SUCCESS) { + return ret; + } } + } - ev = ldb_get_event_context(ac->module->ldb); + return samldb_next_step(ac); +} - templates_ldb = ldb_wrap_connect(ac->module->ldb, ev, - lparm_ctx, templates_ldb_path, - NULL, NULL, 0, NULL); - talloc_free(templates_ldb_path); +/* primaryGroupID handling */ - if (!templates_ldb) { - return LDB_ERR_OPERATIONS_ERROR; - } +static int samldb_check_primaryGroupID(struct samldb_ctx *ac) +{ + struct ldb_context *ldb = ldb_module_get_ctx(ac->module); + struct ldb_dn *prim_group_dn; + uint32_t rid; + struct dom_sid *sid; + int ret; - if (!talloc_reference(templates_ldb, ev)) { - return LDB_ERR_OPERATIONS_ERROR; - } + rid = samdb_result_uint(ac->msg, "primaryGroupID", (uint32_t) -1); + if (rid == (uint32_t) -1) { + uint32_t uac = samdb_result_uint(ac->msg, "userAccountControl", + 0); - ret = ldb_set_opaque(ac->module->ldb, - "templates_ldb", templates_ldb); + rid = ds_uf2prim_group_rid(uac); + + ret = samdb_msg_add_uint(ldb, ac->msg, ac->msg, + "primaryGroupID", rid); if (ret != LDB_SUCCESS) { return ret; } } - /* search template */ - basedn = ldb_dn_new_fmt(ac, templates_ldb, - "cn=Template%s,cn=Templates", ac->type); - if (basedn == NULL) { - ldb_set_errstring(ac->module->ldb, - "samldb_init_template: ERROR: Failed " - "to contruct DN for template"); - return LDB_ERR_OPERATIONS_ERROR; + sid = dom_sid_add_rid(ac, samdb_domain_sid(ldb), rid); + if (sid == NULL) { + return ldb_operr(ldb); } - /* pull the template record */ - ret = ldb_build_search_req(&req, templates_ldb, ac, - basedn, LDB_SCOPE_BASE, - "(distinguishedName=*)", NULL, - NULL, - ac, samldb_search_template_callback, - ac->req); - if (ret != LDB_SUCCESS) { - return ret; + prim_group_dn = samdb_search_dn(ldb, ac, NULL, "(objectSID=%s)", + dom_sid_string(ac, sid)); + if (prim_group_dn == NULL) { + ldb_asprintf_errstring(ldb, + "Failed to find primary group with RID %u!", + rid); + return LDB_ERR_UNWILLING_TO_PERFORM; } - talloc_steal(req, basedn); - ac->ares = NULL; + return samldb_next_step(ac); +} + + +static bool samldb_msg_add_sid(struct ldb_message *msg, + const char *name, + const struct dom_sid *sid) +{ + struct ldb_val v; + enum ndr_err_code ndr_err; - return ldb_request(templates_ldb, req); + ndr_err = ndr_push_struct_blob(&v, msg, sid, + (ndr_push_flags_fn_t)ndr_push_dom_sid); + if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { + return false; + } + return (ldb_msg_add_value(msg, name, &v, NULL) == 0); } -static int samldb_apply_template(struct samldb_ctx *ac) + +/* allocate a SID using our RID Set */ +static int samldb_allocate_sid(struct samldb_ctx *ac) { - struct ldb_message_element *el; - struct ldb_message *msg; - int i, j; + uint32_t rid; + struct dom_sid *sid; + struct ldb_context *ldb = ldb_module_get_ctx(ac->module); int ret; - msg = ac->ares->message; - - for (i = 0; i < msg->num_elements; i++) { - el = &msg->elements[i]; - /* some elements should not be copied */ - if (ldb_attr_cmp(el->name, "cn") == 0 || - ldb_attr_cmp(el->name, "name") == 0 || - ldb_attr_cmp(el->name, "objectClass") == 0 || - ldb_attr_cmp(el->name, "sAMAccountName") == 0 || - ldb_attr_cmp(el->name, "sAMAccountName") == 0 || - ldb_attr_cmp(el->name, "distinguishedName") == 0 || - ldb_attr_cmp(el->name, "objectGUID") == 0) { - continue; - } - for (j = 0; j < el->num_values; j++) { - ret = samdb_find_or_add_attribute( - ac->module->ldb, ac->msg, el->name, - (char *)el->values[j].data); - if (ret != LDB_SUCCESS) { - ldb_set_errstring(ac->module->ldb, - "Failed adding template attribute\n"); - return LDB_ERR_OPERATIONS_ERROR; - } - } + ret = ridalloc_allocate_rid(ac->module, &rid); + if (ret != LDB_SUCCESS) { + return ret; + } + + sid = dom_sid_add_rid(ac, samdb_domain_sid(ldb), rid); + if (sid == NULL) { + return ldb_module_oom(ac->module); + } + + if ( ! samldb_msg_add_sid(ac->msg, "objectSid", sid)) { + return ldb_operr(ldb); } return samldb_next_step(ac); } -static int samldb_get_parent_domain(struct samldb_ctx *ac); - -static int samldb_get_parent_domain_callback(struct ldb_request *req, - struct ldb_reply *ares) +/* + see if a krbtgt_number is available + */ +static bool samldb_krbtgtnumber_available(struct samldb_ctx *ac, unsigned krbtgt_number) { - struct samldb_ctx *ac; - const char *nextRid; + TALLOC_CTX *tmp_ctx = talloc_new(ac); + struct ldb_result *res; + const char *attrs[] = { NULL }; int ret; - ac = talloc_get_type(req->context, struct samldb_ctx); - - if (!ares) { - ret = LDB_ERR_OPERATIONS_ERROR; - goto done; + ret = dsdb_module_search(ac->module, tmp_ctx, &res, NULL, LDB_SCOPE_SUBTREE, + attrs, DSDB_FLAG_NEXT_MODULE, + "msDC-SecondaryKrbTgtNumber=%u", krbtgt_number); + if (ret == LDB_SUCCESS && res->count == 0) { + talloc_free(tmp_ctx); + return true; } - if (ares->error != LDB_SUCCESS) { - return ldb_module_done(ac->req, ares->controls, - ares->response, ares->error); + talloc_free(tmp_ctx); + return false; +} + +/* special handling for add in RODC join */ +static int samldb_rodc_add(struct samldb_ctx *ac) +{ + struct ldb_context *ldb = ldb_module_get_ctx(ac->module); + unsigned krbtgt_number, i_start, i; + int ret; + + /* find a unused msDC-SecondaryKrbTgtNumber */ + i_start = generate_random() & 0xFFFF; + if (i_start == 0) { + i_start = 1; } - switch (ares->type) { - case LDB_REPLY_ENTRY: - /* save entry */ - if (ac->domain_dn != NULL) { - /* one too many! */ - ldb_set_errstring(ac->module->ldb, - "Invalid number of results while searching " - "for domain object"); - ret = LDB_ERR_OPERATIONS_ERROR; - break; + for (i=i_start; i<=0xFFFF; i++) { + if (samldb_krbtgtnumber_available(ac, i)) { + krbtgt_number = i; + goto found; } - - nextRid = ldb_msg_find_attr_as_string(ares->message, - "nextRid", NULL); - if (nextRid == NULL) { - ldb_asprintf_errstring(ac->module->ldb, - "attribute nextRid not found in %s\n", - ldb_dn_get_linearized(ares->message->dn)); - ret = LDB_ERR_OPERATIONS_ERROR; - break;; + } + for (i=1; inext_rid = strtol(nextRid, NULL, 0); + ldb_asprintf_errstring(ldb_module_get_ctx(ac->module), + "%08X: Unable to find available msDS-SecondaryKrbTgtNumber", + W_ERROR_V(WERR_NO_SYSTEM_RESOURCES)); + return LDB_ERR_OTHER; - ac->domain_sid = samdb_result_dom_sid(ac, ares->message, - "objectSid"); - if (ac->domain_sid == NULL) { - ldb_set_errstring(ac->module->ldb, - "error retrieving parent domain domain sid!\n"); - ret = LDB_ERR_CONSTRAINT_VIOLATION; - break; - } - ac->domain_dn = talloc_steal(ac, ares->message->dn); +found: + ret = ldb_msg_add_empty(ac->msg, "msDS-SecondaryKrbTgtNumber", LDB_FLAG_INTERNAL_DISABLE_VALIDATION, NULL); + if (ret != LDB_SUCCESS) { + return ldb_operr(ldb); + } - talloc_free(ares); - ret = LDB_SUCCESS; - break; + ret = ldb_msg_add_fmt(ac->msg, "msDS-SecondaryKrbTgtNumber", "%u", krbtgt_number); + if (ret != LDB_SUCCESS) { + return ldb_operr(ldb); + } - case LDB_REPLY_REFERRAL: - /* ignore */ - talloc_free(ares); - ret = LDB_SUCCESS; - break; + ret = ldb_msg_add_fmt(ac->msg, "sAMAccountName", "krbtgt_%u", krbtgt_number); + if (ret != LDB_SUCCESS) { + return ldb_operr(ldb); + } - case LDB_REPLY_DONE: + return samldb_next_step(ac); +} - talloc_free(ares); - if (ac->domain_dn == NULL) { - /* search again */ - ret = samldb_get_parent_domain(ac); - } else { - /* found, go on */ - ret = samldb_next_step(ac); +static int samldb_find_for_defaultObjectCategory(struct samldb_ctx *ac) +{ + struct ldb_context *ldb = ldb_module_get_ctx(ac->module); + struct ldb_result *res; + const char *no_attrs[] = { NULL }; + int ret; + + ac->res_dn = NULL; + + ret = dsdb_module_search(ac->module, ac, &res, + ac->dn, LDB_SCOPE_BASE, no_attrs, + DSDB_SEARCH_SHOW_DN_IN_STORAGE_FORMAT | DSDB_FLAG_NEXT_MODULE, + "(objectClass=classSchema)"); + if (ret == LDB_ERR_NO_SUCH_OBJECT) { + /* Don't be pricky when the DN doesn't exist if we have the */ + /* RELAX control specified */ + if (ldb_request_get_control(ac->req, + LDB_CONTROL_RELAX_OID) == NULL) { + ldb_set_errstring(ldb, + "samldb_find_defaultObjectCategory: " + "Invalid DN for 'defaultObjectCategory'!"); + return LDB_ERR_CONSTRAINT_VIOLATION; } - break; } - -done: - if (ret != LDB_SUCCESS) { - return ldb_module_done(ac->req, NULL, NULL, ret); + if ((ret != LDB_ERR_NO_SUCH_OBJECT) && (ret != LDB_SUCCESS)) { + return ret; } - return LDB_SUCCESS; + ac->res_dn = ac->dn; + + return samldb_next_step(ac); } -/* Find a domain object in the parents of a particular DN. */ -static int samldb_get_parent_domain(struct samldb_ctx *ac) +/** + * msDS-IntId attributeSchema attribute handling + * during LDB_ADD request processing + */ +static int samldb_add_handle_msDS_IntId(struct samldb_ctx *ac) { - static const char * const attrs[3] = { "objectSid", "nextRid", NULL }; - struct ldb_request *req; - struct ldb_dn *dn; int ret; + bool id_exists; + uint32_t msds_intid; + uint32_t system_flags; + struct ldb_context *ldb; + struct ldb_result *ldb_res; + struct ldb_dn *schema_dn; - if (ac->check_dn == NULL) { - return LDB_ERR_OPERATIONS_ERROR; + ldb = ldb_module_get_ctx(ac->module); + schema_dn = ldb_get_schema_basedn(ldb); + + /* replicated update should always go through */ + if (ldb_request_get_control(ac->req, DSDB_CONTROL_REPLICATED_UPDATE_OID)) { + return LDB_SUCCESS; } - dn = ldb_dn_get_parent(ac, ac->check_dn); - if (dn == NULL) { - ldb_set_errstring(ac->module->ldb, - "Unable to find parent domain object"); - return LDB_ERR_CONSTRAINT_VIOLATION; + /* msDS-IntId is handled by system and should never be + * passed by clients */ + if (ldb_msg_find_element(ac->msg, "msDS-IntId")) { + return LDB_ERR_UNWILLING_TO_PERFORM; } - ac->check_dn = dn; + /* do not generate msDS-IntId if Relax control is passed */ + if (ldb_request_get_control(ac->req, LDB_CONTROL_RELAX_OID)) { + return LDB_SUCCESS; + } - ret = ldb_build_search_req(&req, ac->module->ldb, ac, - dn, LDB_SCOPE_BASE, - "(|(objectClass=domain)" - "(objectClass=builtinDomain)" - "(objectClass=samba4LocalDomain))", - attrs, - NULL, - ac, samldb_get_parent_domain_callback, - ac->req); + /* check Functional Level */ + if (dsdb_functional_level(ldb) < DS_DOMAIN_FUNCTION_2003) { + return LDB_SUCCESS; + } - if (ret != LDB_SUCCESS) { - return ret; + /* check systemFlags for SCHEMA_BASE_OBJECT flag */ + system_flags = ldb_msg_find_attr_as_uint(ac->msg, "systemFlags", 0); + if (system_flags & SYSTEM_FLAG_SCHEMA_BASE_OBJECT) { + return LDB_SUCCESS; } - return ldb_next_request(ac->module, req); -} + /* Generate new value for msDs-IntId + * Value should be in 0x80000000..0xBFFFFFFF range */ + msds_intid = generate_random() % 0X3FFFFFFF; + msds_intid += 0x80000000; -static int samldb_generate_samAccountName(struct ldb_message *msg) -{ - char *name; + /* probe id values until unique one is found */ + do { + msds_intid++; + if (msds_intid > 0xBFFFFFFF) { + msds_intid = 0x80000001; + } - /* Format: $000000-000000000000 */ + ret = dsdb_module_search(ac->module, ac, + &ldb_res, + schema_dn, LDB_SCOPE_ONELEVEL, NULL, + DSDB_FLAG_NEXT_MODULE, + "(msDS-IntId=%d)", msds_intid); + if (ret != LDB_SUCCESS) { + ldb_debug_set(ldb, LDB_DEBUG_ERROR, + __location__": Searching for msDS-IntId=%d failed - %s\n", + msds_intid, + ldb_errstring(ldb)); + return ldb_operr(ldb); + } + id_exists = (ldb_res->count > 0); - name = talloc_asprintf(msg, "$%.6X-%.6X%.6X", - (unsigned int)generate_random(), - (unsigned int)generate_random(), - (unsigned int)generate_random()); - if (name == NULL) { - return LDB_ERR_OPERATIONS_ERROR; - } - return ldb_msg_add_steal_string(msg, "samAccountName", name); + talloc_free(ldb_res); + } while(id_exists); + + return ldb_msg_add_fmt(ac->msg, "msDS-IntId", "%d", msds_intid); } -static int samldb_check_samAccountName_callback(struct ldb_request *req, - struct ldb_reply *ares) + +/* + * samldb_add_entry (async) + */ + +static int samldb_add_entry_callback(struct ldb_request *req, + struct ldb_reply *ares) { + struct ldb_context *ldb; struct samldb_ctx *ac; int ret; ac = talloc_get_type(req->context, struct samldb_ctx); + ldb = ldb_module_get_ctx(ac->module); if (!ares) { - ret = LDB_ERR_OPERATIONS_ERROR; - goto done; + return ldb_module_done(ac->req, NULL, NULL, + LDB_ERR_OPERATIONS_ERROR); + } + + if (ares->type == LDB_REPLY_REFERRAL) { + return ldb_module_send_referral(ac->req, ares->referral); } + if (ares->error != LDB_SUCCESS) { return ldb_module_done(ac->req, ares->controls, ares->response, ares->error); } - - switch (ares->type) { - case LDB_REPLY_ENTRY: - - /* if we get an entry it means this samAccountName - * already exists */ + if (ares->type != LDB_REPLY_DONE) { + ldb_set_errstring(ldb, + "Invalid reply type!\n"); return ldb_module_done(ac->req, NULL, NULL, - LDB_ERR_ENTRY_ALREADY_EXISTS); - - case LDB_REPLY_REFERRAL: - /* ignore */ - talloc_free(ares); - ret = LDB_SUCCESS; - break; - - case LDB_REPLY_DONE: - - /* not found, go on */ - talloc_free(ares); - ret = samldb_next_step(ac); - break; + LDB_ERR_OPERATIONS_ERROR); } -done: + /* The caller may wish to get controls back from the add */ + ac->ares = talloc_steal(ac, ares); + + ret = samldb_next_step(ac); if (ret != LDB_SUCCESS) { return ldb_module_done(ac->req, NULL, NULL, ret); } - - return LDB_SUCCESS; + return ret; } -static int samldb_check_samAccountName(struct samldb_ctx *ac) +static int samldb_add_entry(struct samldb_ctx *ac) { + struct ldb_context *ldb; struct ldb_request *req; - const char *name; - char *filter; int ret; - if (ldb_msg_find_element(ac->msg, "samAccountName") == NULL) { - ret = samldb_generate_samAccountName(ac->msg); - if (ret != LDB_SUCCESS) { - return ret; - } - } - - name = ldb_msg_find_attr_as_string(ac->msg, "samAccountName", NULL); - if (name == NULL) { - return LDB_ERR_OPERATIONS_ERROR; - } - filter = talloc_asprintf(ac, "samAccountName=%s", name); - if (filter == NULL) { - return LDB_ERR_OPERATIONS_ERROR; - } + ldb = ldb_module_get_ctx(ac->module); - ret = ldb_build_search_req(&req, ac->module->ldb, ac, - ac->domain_dn, LDB_SCOPE_SUBTREE, - filter, NULL, - NULL, - ac, samldb_check_samAccountName_callback, + ret = ldb_build_add_req(&req, ldb, ac, + ac->msg, + ac->req->controls, + ac, samldb_add_entry_callback, ac->req); - talloc_free(filter); if (ret != LDB_SUCCESS) { return ret; } - ac->ares = NULL; + return ldb_next_request(ac->module, req); } -static int samldb_check_samAccountType(struct samldb_ctx *ac) +/* + * return true if msg carries an attributeSchema that is intended to be RODC + * filtered but is also a system-critical attribute. + */ +static bool check_rodc_critical_attribute(struct ldb_message *msg) { - unsigned int account_type; - unsigned int group_type; - unsigned int uac; - int ret; + uint32_t schemaFlagsEx, searchFlags, rodc_filtered_flags; - /* make sure sAMAccountType is not specified */ - if (ldb_msg_find_element(ac->msg, "sAMAccountType") != NULL) { - ldb_asprintf_errstring(ac->module->ldb, - "sAMAccountType must not be specified"); - return LDB_ERR_UNWILLING_TO_PERFORM; + schemaFlagsEx = ldb_msg_find_attr_as_uint(msg, "schemaFlagsEx", 0); + searchFlags = ldb_msg_find_attr_as_uint(msg, "searchFlags", 0); + rodc_filtered_flags = (SEARCH_FLAG_RODC_ATTRIBUTE | SEARCH_FLAG_CONFIDENTIAL); + + if ((schemaFlagsEx & SCHEMA_FLAG_ATTR_IS_CRITICAL) && + ((searchFlags & rodc_filtered_flags) == rodc_filtered_flags)) { + return true; + } else { + return false; } +} - if (strcmp("user", ac->type) == 0) { - uac = samdb_result_uint(ac->msg, "userAccountControl", 0); - if (uac == 0) { - ldb_asprintf_errstring(ac->module->ldb, - "userAccountControl invalid"); - return LDB_ERR_UNWILLING_TO_PERFORM; - } else { - account_type = samdb_uf2atype(uac); - ret = samdb_msg_add_uint(ac->module->ldb, - ac->msg, ac->msg, - "sAMAccountType", - account_type); - if (ret != LDB_SUCCESS) { - return ret; - } - } - } else - if (strcmp("group", ac->type) == 0) { - group_type = samdb_result_uint(ac->msg, "groupType", 0); - if (group_type == 0) { - ldb_asprintf_errstring(ac->module->ldb, - "groupType invalid"); - return LDB_ERR_UNWILLING_TO_PERFORM; - } else { - account_type = samdb_gtype2atype(group_type); - ret = samdb_msg_add_uint(ac->module->ldb, - ac->msg, ac->msg, - "sAMAccountType", - account_type); - if (ret != LDB_SUCCESS) { - return ret; - } - } - } - - return samldb_next_step(ac); -} - -static int samldb_get_sid_domain_callback(struct ldb_request *req, - struct ldb_reply *ares) +static int samldb_fill_object(struct samldb_ctx *ac, const char *type) { - struct samldb_ctx *ac; - const char *nextRid; + struct ldb_context *ldb; + struct loadparm_context *lp_ctx; + enum sid_generator sid_generator; int ret; + struct ldb_control *rodc_control; + struct dom_sid *sid; - ac = talloc_get_type(req->context, struct samldb_ctx); + ldb = ldb_module_get_ctx(ac->module); - if (!ares) { - ret = LDB_ERR_OPERATIONS_ERROR; - goto done; - } - if (ares->error != LDB_SUCCESS) { - return ldb_module_done(ac->req, ares->controls, - ares->response, ares->error); - } + /* Add informations for the different account types */ + ac->type = type; + if (strcmp(ac->type, "user") == 0) { + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "userAccountControl", "546"); + if (ret != LDB_SUCCESS) return ret; + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "badPwdCount", "0"); + if (ret != LDB_SUCCESS) return ret; + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "codePage", "0"); + if (ret != LDB_SUCCESS) return ret; + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "countryCode", "0"); + if (ret != LDB_SUCCESS) return ret; + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "badPasswordTime", "0"); + if (ret != LDB_SUCCESS) return ret; + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "lastLogoff", "0"); + if (ret != LDB_SUCCESS) return ret; + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "lastLogon", "0"); + if (ret != LDB_SUCCESS) return ret; + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "pwdLastSet", "0"); + if (ret != LDB_SUCCESS) return ret; + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "accountExpires", "9223372036854775807"); + if (ret != LDB_SUCCESS) return ret; + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "logonCount", "0"); + if (ret != LDB_SUCCESS) return ret; + } else if (strcmp(ac->type, "group") == 0) { + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "groupType", "-2147483646"); + if (ret != LDB_SUCCESS) return ret; + } else if (strcmp(ac->type, "classSchema") == 0) { + const struct ldb_val *rdn_value, *def_obj_cat_val; + + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "rdnAttId", "cn"); + if (ret != LDB_SUCCESS) return ret; - switch (ares->type) { - case LDB_REPLY_ENTRY: - /* save entry */ - if (ac->next_rid != 0) { - /* one too many! */ - ldb_set_errstring(ac->module->ldb, - "Invalid number of results while searching " - "for domain object"); - ret = LDB_ERR_OPERATIONS_ERROR; - break; + /* do not allow to mark an attributeSchema as RODC filtered if it + * is system-critical */ + if (check_rodc_critical_attribute(ac->msg)) { + ldb_asprintf_errstring(ldb, "Refusing schema add of %s - cannot combine critical class with RODC filtering", + ldb_dn_get_linearized(ac->msg->dn)); + return LDB_ERR_UNWILLING_TO_PERFORM; } - nextRid = ldb_msg_find_attr_as_string(ares->message, - "nextRid", NULL); - if (nextRid == NULL) { - ldb_asprintf_errstring(ac->module->ldb, - "attribute nextRid not found in %s\n", - ldb_dn_get_linearized(ares->message->dn)); - ret = LDB_ERR_OPERATIONS_ERROR; - break; + + rdn_value = ldb_dn_get_rdn_val(ac->msg->dn); + if (!ldb_msg_find_element(ac->msg, "lDAPDisplayName")) { + /* the RDN has prefix "CN" */ + ret = ldb_msg_add_string(ac->msg, "lDAPDisplayName", + samdb_cn_to_lDAPDisplayName(ac, + (const char *) rdn_value->data)); + if (ret != LDB_SUCCESS) { + ldb_oom(ldb); + return ret; + } } - ac->next_rid = strtol(nextRid, NULL, 0); + if (!ldb_msg_find_element(ac->msg, "schemaIDGUID")) { + struct GUID guid; + /* a new GUID */ + guid = GUID_random(); + ret = dsdb_msg_add_guid(ac->msg, &guid, "schemaIDGUID"); + if (ret != LDB_SUCCESS) { + ldb_oom(ldb); + return ret; + } + } - ac->domain_dn = talloc_steal(ac, ares->message->dn); + def_obj_cat_val = ldb_msg_find_ldb_val(ac->msg, + "defaultObjectCategory"); + if (def_obj_cat_val != NULL) { + /* "defaultObjectCategory" has been set by the caller. + * Do some checks for consistency. + * NOTE: The real constraint check (that + * 'defaultObjectCategory' is the DN of the new + * objectclass or any parent of it) is still incomplete. + * For now we say that 'defaultObjectCategory' is valid + * if it exists and it is of objectclass "classSchema". + */ + ac->dn = ldb_dn_from_ldb_val(ac, ldb, def_obj_cat_val); + if (ac->dn == NULL) { + ldb_set_errstring(ldb, + "Invalid DN for 'defaultObjectCategory'!"); + return LDB_ERR_CONSTRAINT_VIOLATION; + } + } else { + /* "defaultObjectCategory" has not been set by the + * caller. Use the entry DN for it. */ + ac->dn = ac->msg->dn; - talloc_free(ares); - ret = LDB_SUCCESS; - break; + ret = samdb_msg_add_string(ldb, ac, ac->msg, + "defaultObjectCategory", + ldb_dn_get_linearized(ac->dn)); + if (ret != LDB_SUCCESS) { + ldb_oom(ldb); + return ret; + } + } - case LDB_REPLY_REFERRAL: - /* ignore */ - talloc_free(ares); - ret = LDB_SUCCESS; - break; + ret = samldb_add_step(ac, samldb_add_entry); + if (ret != LDB_SUCCESS) return ret; - case LDB_REPLY_DONE: + /* Now perform the checks for the 'defaultObjectCategory'. The + * lookup DN was already saved in "ac->dn" */ + ret = samldb_add_step(ac, samldb_find_for_defaultObjectCategory); + if (ret != LDB_SUCCESS) return ret; - if (ac->next_rid == 0) { - ldb_asprintf_errstring(ac->module->ldb, - "Unable to get nextRid from domain entry\n"); - ret = LDB_ERR_OPERATIONS_ERROR; - break; + return samldb_first_step(ac); + } else if (strcmp(ac->type, "attributeSchema") == 0) { + const struct ldb_val *rdn_value; + rdn_value = ldb_dn_get_rdn_val(ac->msg->dn); + if (!ldb_msg_find_element(ac->msg, "lDAPDisplayName")) { + /* the RDN has prefix "CN" */ + ret = ldb_msg_add_string(ac->msg, "lDAPDisplayName", + samdb_cn_to_lDAPDisplayName(ac, + (const char *) rdn_value->data)); + if (ret != LDB_SUCCESS) { + ldb_oom(ldb); + return ret; + } } - /* found, go on */ - ret = samldb_next_step(ac); - break; - } - -done: - if (ret != LDB_SUCCESS) { - return ldb_module_done(ac->req, NULL, NULL, ret); - } + /* do not allow to mark an attributeSchema as RODC filtered if it + * is system-critical */ + if (check_rodc_critical_attribute(ac->msg)) { + ldb_asprintf_errstring(ldb, "Refusing schema add of %s - cannot combine critical attribute with RODC filtering", + ldb_dn_get_linearized(ac->msg->dn)); + return LDB_ERR_UNWILLING_TO_PERFORM; + } - return LDB_SUCCESS; -} + ret = samdb_find_or_add_attribute(ldb, ac->msg, + "isSingleValued", "FALSE"); + if (ret != LDB_SUCCESS) return ret; -/* Find a domain object in the parents of a particular DN. */ -static int samldb_get_sid_domain(struct samldb_ctx *ac) -{ - static const char * const attrs[2] = { "nextRid", NULL }; - struct ldb_request *req; - char *filter; - int ret; + if (!ldb_msg_find_element(ac->msg, "schemaIDGUID")) { + struct GUID guid; + /* a new GUID */ + guid = GUID_random(); + ret = dsdb_msg_add_guid(ac->msg, &guid, "schemaIDGUID"); + if (ret != LDB_SUCCESS) { + ldb_oom(ldb); + return ret; + } + } - if (ac->sid == NULL) { - return LDB_ERR_OPERATIONS_ERROR; - } + /* handle msDS-IntID attribute */ + ret = samldb_add_handle_msDS_IntId(ac); + if (ret != LDB_SUCCESS) return ret; - ac->domain_sid = dom_sid_dup(ac, ac->sid); - if (!ac->domain_sid) { - return LDB_ERR_OPERATIONS_ERROR; - } - /* get the domain component part of the provided SID */ - ac->domain_sid->num_auths--; + ret = samldb_add_step(ac, samldb_add_entry); + if (ret != LDB_SUCCESS) return ret; - filter = talloc_asprintf(ac, "(&(objectSid=%s)" - "(|(objectClass=domain)" - "(objectClass=builtinDomain)" - "(objectClass=samba4LocalDomain)))", - ldap_encode_ndr_dom_sid(ac, ac->domain_sid)); - if (filter == NULL) { + return samldb_first_step(ac); + } else { + ldb_asprintf_errstring(ldb, + "Invalid entry type!"); return LDB_ERR_OPERATIONS_ERROR; } - ret = ldb_build_search_req(&req, ac->module->ldb, ac, - ldb_get_default_basedn(ac->module->ldb), - LDB_SCOPE_SUBTREE, - filter, attrs, - NULL, - ac, samldb_get_sid_domain_callback, - ac->req); - - if (ret != LDB_SUCCESS) { - return ret; + rodc_control = ldb_request_get_control(ac->req, LDB_CONTROL_RODC_DCPROMO_OID); + if (rodc_control) { + /* see [MS-ADTS] 3.1.1.3.4.1.23 LDAP_SERVER_RODC_DCPROMO_OID */ + rodc_control->critical = false; + ret = samldb_add_step(ac, samldb_rodc_add); + if (ret != LDB_SUCCESS) return ret; } - ac->next_rid = 0; - return ldb_next_request(ac->module, req); -} + /* check if we have a valid sAMAccountName */ + ret = samldb_add_step(ac, samldb_check_sAMAccountName); + if (ret != LDB_SUCCESS) return ret; -static bool samldb_msg_add_sid(struct ldb_message *msg, - const char *name, - const struct dom_sid *sid) -{ - struct ldb_val v; - enum ndr_err_code ndr_err; + /* check account_type/group_type */ + ret = samldb_add_step(ac, samldb_check_sAMAccountType); + if (ret != LDB_SUCCESS) return ret; - ndr_err = ndr_push_struct_blob(&v, msg, NULL, sid, - (ndr_push_flags_fn_t)ndr_push_dom_sid); - if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { - return false; + /* check if we have a valid primary group ID */ + if (strcmp(ac->type, "user") == 0) { + ret = samldb_add_step(ac, samldb_check_primaryGroupID); + if (ret != LDB_SUCCESS) return ret; } - return (ldb_msg_add_value(msg, name, &v, NULL) == 0); -} -static int samldb_new_sid(struct samldb_ctx *ac) -{ + lp_ctx = talloc_get_type(ldb_get_opaque(ldb, "loadparm"), + struct loadparm_context); - if (ac->domain_sid == NULL || ac->next_rid == 0) { - return LDB_ERR_OPERATIONS_ERROR; + /* don't allow objectSID to be specified without the RELAX control */ + sid = samdb_result_dom_sid(ac, ac->msg, "objectSid"); + if (sid && !ldb_request_get_control(ac->req, LDB_CONTROL_RELAX_OID) && + !dsdb_module_am_system(ac->module)) { + ldb_asprintf_errstring(ldb, "No SID may be specified in user/group creation for %s", + ldb_dn_get_linearized(ac->msg->dn)); + return LDB_ERR_UNWILLING_TO_PERFORM; } - ac->sid = dom_sid_add_rid(ac, ac->domain_sid, ac->next_rid + 1); - if (ac->sid == NULL) { - return LDB_ERR_OPERATIONS_ERROR; + if (sid == NULL) { + sid_generator = lpcfg_sid_generator(lp_ctx); + if (sid_generator == SID_GENERATOR_INTERNAL) { + ret = samldb_add_step(ac, samldb_allocate_sid); + if (ret != LDB_SUCCESS) return ret; + } } - if ( ! samldb_msg_add_sid(ac->msg, "objectSid", ac->sid)) { - return LDB_ERR_OPERATIONS_ERROR; - } + /* finally proceed with adding the entry */ + ret = samldb_add_step(ac, samldb_add_entry); + if (ret != LDB_SUCCESS) return ret; - return samldb_next_step(ac); + return samldb_first_step(ac); } -static int samldb_check_sid_callback(struct ldb_request *req, - struct ldb_reply *ares) +static int samldb_fill_foreignSecurityPrincipal_object(struct samldb_ctx *ac) { - struct samldb_ctx *ac; + struct ldb_context *ldb; + struct dom_sid *sid; int ret; - ac = talloc_get_type(req->context, struct samldb_ctx); - - if (!ares) { - ret = LDB_ERR_OPERATIONS_ERROR; - goto done; - } - if (ares->error != LDB_SUCCESS) { - return ldb_module_done(ac->req, ares->controls, - ares->response, ares->error); - } + ldb = ldb_module_get_ctx(ac->module); - switch (ares->type) { - case LDB_REPLY_ENTRY: - - /* if we get an entry it means an object with the - * requested sid exists */ - return ldb_module_done(ac->req, NULL, NULL, - LDB_ERR_CONSTRAINT_VIOLATION); - - case LDB_REPLY_REFERRAL: - /* ignore */ - talloc_free(ares); - break; - - case LDB_REPLY_DONE: - - /* not found, go on */ - talloc_free(ares); - ret = samldb_next_step(ac); - break; + sid = samdb_result_dom_sid(ac->msg, ac->msg, "objectSid"); + if (sid == NULL) { + sid = dom_sid_parse_talloc(ac->msg, + (const char *)ldb_dn_get_rdn_val(ac->msg->dn)->data); + if (sid == NULL) { + ldb_set_errstring(ldb, + "No valid SID found in " + "ForeignSecurityPrincipal CN!"); + return LDB_ERR_CONSTRAINT_VIOLATION; + } + if (! samldb_msg_add_sid(ac->msg, "objectSid", sid)) { + return ldb_operr(ldb); + } } -done: - if (ret != LDB_SUCCESS) { - return ldb_module_done(ac->req, NULL, NULL, ret); - } + /* finally proceed with adding the entry */ + ret = samldb_add_step(ac, samldb_add_entry); + if (ret != LDB_SUCCESS) return ret; - return LDB_SUCCESS; + return samldb_first_step(ac); } -static int samldb_check_sid(struct samldb_ctx *ac) +static int samldb_schema_info_update(struct samldb_ctx *ac) { - const char *const attrs[2] = { "objectSid", NULL }; - struct ldb_request *req; - char *filter; - int ret; + WERROR werr; + struct ldb_context *ldb; + struct dsdb_schema *schema; - if (ac->sid == NULL) { - return LDB_ERR_OPERATIONS_ERROR; + /* replicated update should always go through */ + if (ldb_request_get_control(ac->req, DSDB_CONTROL_REPLICATED_UPDATE_OID)) { + return LDB_SUCCESS; } - filter = talloc_asprintf(ac, "(objectSid=%s)", - ldap_encode_ndr_dom_sid(ac, ac->sid)); - if (filter == NULL) { - return LDB_ERR_OPERATIONS_ERROR; + /* do not update schemaInfo during provisioning */ + if (ldb_request_get_control(ac->req, LDB_CONTROL_RELAX_OID)) { + return LDB_SUCCESS; } - ret = ldb_build_search_req(&req, ac->module->ldb, ac, - ldb_get_default_basedn(ac->module->ldb), - LDB_SCOPE_SUBTREE, - filter, attrs, - NULL, - ac, samldb_check_sid_callback, - ac->req); - - if (ret != LDB_SUCCESS) { - return ret; + ldb = ldb_module_get_ctx(ac->module); + schema = dsdb_get_schema(ldb, NULL); + if (!schema) { + ldb_debug_set(ldb, LDB_DEBUG_FATAL, + "samldb_schema_info_update: no dsdb_schema loaded"); + DEBUG(0,(__location__ ": %s\n", ldb_errstring(ldb))); + return ldb_operr(ldb); } - return ldb_next_request(ac->module, req); -} - -static int samldb_notice_sid_callback(struct ldb_request *req, - struct ldb_reply *ares) -{ - struct samldb_ctx *ac; - int ret; - - ac = talloc_get_type(req->context, struct samldb_ctx); - - if (!ares) { - ret = LDB_ERR_OPERATIONS_ERROR; - goto done; - } - if (ares->error != LDB_SUCCESS) { - return ldb_module_done(ac->req, ares->controls, - ares->response, ares->error); - } - if (ares->type != LDB_REPLY_DONE) { - ldb_set_errstring(ac->module->ldb, - "Invalid reply type!\n"); - ret = LDB_ERR_OPERATIONS_ERROR; - goto done; - } - - ret = samldb_next_step(ac); - -done: - if (ret != LDB_SUCCESS) { - return ldb_module_done(ac->req, NULL, NULL, ret); + werr = dsdb_module_schema_info_update(ac->module, schema, DSDB_FLAG_NEXT_MODULE); + if (!W_ERROR_IS_OK(werr)) { + ldb_debug_set(ldb, LDB_DEBUG_FATAL, + "samldb_schema_info_update: " + "dsdb_module_schema_info_update failed with %s", + win_errstr(werr)); + DEBUG(0,(__location__ ": %s\n", ldb_errstring(ldb))); + return ldb_operr(ldb); } return LDB_SUCCESS; } -/* If we are adding new users/groups, we need to update the nextRid - * attribute to be 'above' the new/incoming RID. Attempt to do it - *atomically. */ -static int samldb_notice_sid(struct samldb_ctx *ac) + +static int samldb_prim_group_change(struct samldb_ctx *ac) { - uint32_t old_id, new_id; - struct ldb_request *req; + struct ldb_context *ldb; + const char * attrs[] = { "primaryGroupID", "memberOf", NULL }; + struct ldb_result *res; + struct ldb_message_element *el; struct ldb_message *msg; - struct ldb_message_element *els; - struct ldb_val *vals; + uint32_t rid; + struct dom_sid *sid; + struct ldb_dn *prev_prim_group_dn, *new_prim_group_dn; int ret; - old_id = ac->next_rid; - new_id = ac->sid->sub_auths[ac->sid->num_auths - 1]; + ldb = ldb_module_get_ctx(ac->module); - if (old_id >= new_id) { - /* no need to update the domain nextRid attribute */ - return samldb_next_step(ac); - } + /* Fetch informations from the existing object */ - /* we do a delete and add as a single operation. That prevents - a race, in case we are not actually on a transaction db */ - msg = talloc_zero(ac, struct ldb_message); - if (msg == NULL) { - ldb_oom(ac->module->ldb); - return LDB_ERR_OPERATIONS_ERROR; - } - els = talloc_array(msg, struct ldb_message_element, 2); - if (els == NULL) { - ldb_oom(ac->module->ldb); - return LDB_ERR_OPERATIONS_ERROR; - } - vals = talloc_array(msg, struct ldb_val, 2); - if (vals == NULL) { - ldb_oom(ac->module->ldb); - return LDB_ERR_OPERATIONS_ERROR; - } - msg->dn = ac->domain_dn; - msg->num_elements = 2; - msg->elements = els; - - els[0].num_values = 1; - els[0].values = &vals[0]; - els[0].flags = LDB_FLAG_MOD_DELETE; - els[0].name = talloc_strdup(msg, "nextRid"); - if (!els[0].name) { - ldb_oom(ac->module->ldb); - return LDB_ERR_OPERATIONS_ERROR; + ret = ldb_search(ldb, ac, &res, ac->msg->dn, LDB_SCOPE_BASE, attrs, + NULL); + if (ret != LDB_SUCCESS) { + return ret; } - els[1].num_values = 1; - els[1].values = &vals[1]; - els[1].flags = LDB_FLAG_MOD_ADD; - els[1].name = els[0].name; + /* Finds out the DN of the old primary group */ - vals[0].data = (uint8_t *)talloc_asprintf(vals, "%u", old_id); - if (!vals[0].data) { - ldb_oom(ac->module->ldb); - return LDB_ERR_OPERATIONS_ERROR; + rid = samdb_result_uint(res->msgs[0], "primaryGroupID", (uint32_t) -1); + if (rid == (uint32_t) -1) { + /* User objects do always have a mandatory "primaryGroupID" + * attribute. If this doesn't exist then the object is of the + * wrong type. This is the exact Windows error code */ + return LDB_ERR_OBJECT_CLASS_VIOLATION; } - vals[0].length = strlen((char *)vals[0].data); - vals[1].data = (uint8_t *)talloc_asprintf(vals, "%u", new_id); - if (!vals[1].data) { - ldb_oom(ac->module->ldb); - return LDB_ERR_OPERATIONS_ERROR; + sid = dom_sid_add_rid(ac, samdb_domain_sid(ldb), rid); + if (sid == NULL) { + return ldb_operr(ldb); } - vals[1].length = strlen((char *)vals[1].data); - ret = ldb_build_mod_req(&req, ac->module->ldb, ac, - msg, NULL, - ac, samldb_notice_sid_callback, - ac->req); - if (ret != LDB_SUCCESS) { - return ret; + prev_prim_group_dn = samdb_search_dn(ldb, ac, NULL, "(objectSID=%s)", + dom_sid_string(ac, sid)); + if (prev_prim_group_dn == NULL) { + return ldb_operr(ldb); } - return ldb_next_request(ac->module, req); -} - -static int samldb_add_entry_callback(struct ldb_request *req, - struct ldb_reply *ares) -{ - struct samldb_ctx *ac; - - ac = talloc_get_type(req->context, struct samldb_ctx); + /* Finds out the DN of the new primary group */ - if (!ares) { - return ldb_module_done(ac->req, NULL, NULL, - LDB_ERR_OPERATIONS_ERROR); + rid = samdb_result_uint(ac->msg, "primaryGroupID", (uint32_t) -1); + if (rid == (uint32_t) -1) { + /* we aren't affected of any primary group change */ + return LDB_SUCCESS; } - if (ares->error != LDB_SUCCESS) { - return ldb_module_done(ac->req, ares->controls, - ares->response, ares->error); - } - if (ares->type != LDB_REPLY_DONE) { - ldb_set_errstring(ac->module->ldb, - "Invalid reply type!\n"); - return ldb_module_done(ac->req, NULL, NULL, - LDB_ERR_OPERATIONS_ERROR); - } - - /* we exit the samldb module here */ - return ldb_module_done(ac->req, ares->controls, - ares->response, LDB_SUCCESS); -} -static int samldb_add_entry(struct samldb_ctx *ac) -{ - struct ldb_request *req; - int ret; - - ret = ldb_build_add_req(&req, ac->module->ldb, ac, - ac->msg, - ac->req->controls, - ac, samldb_add_entry_callback, - ac->req); - if (ret != LDB_SUCCESS) { - return ret; + sid = dom_sid_add_rid(ac, samdb_domain_sid(ldb), rid); + if (sid == NULL) { + return ldb_operr(ldb); } - return ldb_next_request(ac->module, req); -} - -static int samldb_fill_object(struct samldb_ctx *ac, const char *type) -{ - int ret; - - /* first look for the template */ - ac->type = type; - ret = samldb_add_step(ac, samldb_search_template); - if (ret != LDB_SUCCESS) return ret; - - /* then apply it */ - ret = samldb_add_step(ac, samldb_apply_template); - if (ret != LDB_SUCCESS) return ret; - - /* search for a parent domain objet */ - ac->check_dn = ac->req->op.add.message->dn; - ret = samldb_add_step(ac, samldb_get_parent_domain); - if (ret != LDB_SUCCESS) return ret; - - /* check if we have a valid samAccountName */ - ret = samldb_add_step(ac, samldb_check_samAccountName); - if (ret != LDB_SUCCESS) return ret; - - /* check account_type/group_type */ - ret = samldb_add_step(ac, samldb_check_samAccountType); - if (ret != LDB_SUCCESS) return ret; - - /* check if we have a valid SID */ - ac->sid = samdb_result_dom_sid(ac, ac->msg, "objectSid"); - if ( ! ac->sid) { - ret = samldb_add_step(ac, samldb_new_sid); - if (ret != LDB_SUCCESS) return ret; - } else { - ret = samldb_add_step(ac, samldb_get_sid_domain); - if (ret != LDB_SUCCESS) return ret; + new_prim_group_dn = samdb_search_dn(ldb, ac, NULL, "(objectSID=%s)", + dom_sid_string(ac, sid)); + if (new_prim_group_dn == NULL) { + /* Here we know if the specified new primary group candidate is + * valid or not. */ + return LDB_ERR_UNWILLING_TO_PERFORM; } - ret = samldb_add_step(ac, samldb_check_sid); - if (ret != LDB_SUCCESS) return ret; - - ret = samldb_add_step(ac, samldb_notice_sid); - if (ret != LDB_SUCCESS) return ret; - - /* finally proceed with adding the entry */ - ret = samldb_add_step(ac, samldb_add_entry); - if (ret != LDB_SUCCESS) return ret; - - return samldb_first_step(ac); - - /* TODO: userAccountControl, badPwdCount, codePage, - * countryCode, badPasswordTime, lastLogoff, lastLogon, - * pwdLastSet, primaryGroupID, accountExpires, logonCount */ - -} - -static int samldb_foreign_notice_sid_callback(struct ldb_request *req, - struct ldb_reply *ares) -{ - struct samldb_ctx *ac; - const char *nextRid; - const char *name; - int ret; + /* Only update the "member" attributes when we really do have a change */ + if (ldb_dn_compare(new_prim_group_dn, prev_prim_group_dn) != 0) { + /* We need to be already a normal member of the new primary + * group in order to be successful. */ + el = samdb_find_attribute(ldb, res->msgs[0], "memberOf", + ldb_dn_get_linearized(new_prim_group_dn)); + if (el == NULL) { + return LDB_ERR_UNWILLING_TO_PERFORM; + } - ac = talloc_get_type(req->context, struct samldb_ctx); + /* Remove the "member" attribute on the new primary group */ + msg = talloc_zero(ac, struct ldb_message); + msg->dn = new_prim_group_dn; - if (!ares) { - ret = LDB_ERR_OPERATIONS_ERROR; - goto done; - } - if (ares->error != LDB_SUCCESS) { - return ldb_module_done(ac->req, ares->controls, - ares->response, ares->error); - } - - switch (ares->type) { - case LDB_REPLY_ENTRY: - /* save entry */ - if (ac->next_rid != 0) { - /* one too many! */ - ldb_set_errstring(ac->module->ldb, - "Invalid number of results while searching " - "for domain object"); - ret = LDB_ERR_OPERATIONS_ERROR; - break; + ret = samdb_msg_add_delval(ldb, ac, msg, "member", + ldb_dn_get_linearized(ac->msg->dn)); + if (ret != LDB_SUCCESS) { + return ret; } - nextRid = ldb_msg_find_attr_as_string(ares->message, - "nextRid", NULL); - if (nextRid == NULL) { - ldb_asprintf_errstring(ac->module->ldb, - "attribute nextRid not found in %s\n", - ldb_dn_get_linearized(ares->message->dn)); - ret = LDB_ERR_OPERATIONS_ERROR; - break; + ret = dsdb_module_modify(ac->module, msg, DSDB_FLAG_NEXT_MODULE); + if (ret != LDB_SUCCESS) { + return ret; } - ac->next_rid = strtol(nextRid, NULL, 0); - - ac->domain_dn = talloc_steal(ac, ares->message->dn); - - name = samdb_result_string(ares->message, "name", NULL); - ldb_debug(ac->module->ldb, LDB_DEBUG_TRACE, - "NOTE (strange but valid): Adding foreign SID " - "record with SID %s, but this domain (%s) is " - "not foreign in the database", - dom_sid_string(ares, ac->sid), name); - - talloc_free(ares); - break; - - case LDB_REPLY_REFERRAL: - /* ignore */ - talloc_free(ares); - break; + /* Add a "member" attribute for the previous primary group */ + msg = talloc_zero(ac, struct ldb_message); + msg->dn = prev_prim_group_dn; - case LDB_REPLY_DONE: - - /* if this is a fake foreign SID, notice the SID */ - if (ac->domain_dn) { - ret = samldb_notice_sid(ac); - break; + ret = samdb_msg_add_addval(ldb, ac, msg, "member", + ldb_dn_get_linearized(ac->msg->dn)); + if (ret != LDB_SUCCESS) { + return ret; } - /* found, go on */ - ret = samldb_next_step(ac); - break; - } - -done: - if (ret != LDB_SUCCESS) { - return ldb_module_done(ac->req, NULL, NULL, ret); + ret = dsdb_module_modify(ac->module, msg, DSDB_FLAG_NEXT_MODULE); + if (ret != LDB_SUCCESS) { + return ret; + } } return LDB_SUCCESS; } -/* Find a domain object in the parents of a particular DN. */ -static int samldb_foreign_notice_sid(struct samldb_ctx *ac) -{ - static const char * const attrs[3] = { "nextRid", "name", NULL }; - struct ldb_request *req; - char *filter; - int ret; - if (ac->sid == NULL) { - return LDB_ERR_OPERATIONS_ERROR; - } - - ac->domain_sid = dom_sid_dup(ac, ac->sid); - if (!ac->domain_sid) { - return LDB_ERR_OPERATIONS_ERROR; - } - /* get the domain component part of the provided SID */ - ac->domain_sid->num_auths--; - - filter = talloc_asprintf(ac, "(&(objectSid=%s)(objectclass=domain))", - ldap_encode_ndr_dom_sid(ac, ac->domain_sid)); - if (filter == NULL) { - return LDB_ERR_OPERATIONS_ERROR; - } +static int samldb_member_check(struct samldb_ctx *ac) +{ + struct ldb_context *ldb; + struct ldb_message_element *el; + struct ldb_dn *member_dn, *group_dn; + uint32_t prim_group_rid; + struct dom_sid *sid; + unsigned int i; - ret = ldb_build_search_req(&req, ac->module->ldb, ac, - ldb_get_default_basedn(ac->module->ldb), - LDB_SCOPE_SUBTREE, - filter, attrs, - NULL, - ac, samldb_foreign_notice_sid_callback, - ac->req); + ldb = ldb_module_get_ctx(ac->module); - if (ret != LDB_SUCCESS) { - return ret; + el = ldb_msg_find_element(ac->msg, "member"); + if (el == NULL) { + /* we aren't affected */ + return LDB_SUCCESS; } - ac->next_rid = 0; - return ldb_next_request(ac->module, req); -} - -static int samldb_fill_foreignSecurityPrincipal_object(struct samldb_ctx *ac) -{ - int ret; - - ac->sid = samdb_result_dom_sid(ac->msg, ac->msg, "objectSid"); - if (ac->sid == NULL) { - ac->sid = dom_sid_parse_talloc(ac->msg, - (const char *)ldb_dn_get_rdn_val(ac->msg->dn)->data); - if (!ac->sid) { - ldb_set_errstring(ac->module->ldb, - "No valid found SID in " - "ForeignSecurityPrincipal CN!"); - talloc_free(ac); - return LDB_ERR_CONSTRAINT_VIOLATION; + for (i = 0; i < el->num_values; i++) { + /* Denies to add "member"s to groups which are primary ones + * for them */ + member_dn = ldb_dn_from_ldb_val(ac, ldb, &el->values[i]); + if (!ldb_dn_validate(member_dn)) { + return ldb_operr(ldb); } - if ( ! samldb_msg_add_sid(ac->msg, "objectSid", ac->sid)) { - talloc_free(ac); - return LDB_ERR_OPERATIONS_ERROR; - } - } - - /* first look for the template */ - ac->type = "foreignSecurityPrincipal"; - ret = samldb_add_step(ac, samldb_search_template); - if (ret != LDB_SUCCESS) return ret; - - /* then apply it */ - ret = samldb_add_step(ac, samldb_apply_template); - if (ret != LDB_SUCCESS) return ret; - - /* check we do not already have this SID */ - ret = samldb_add_step(ac, samldb_check_sid); - if (ret != LDB_SUCCESS) return ret; - - /* check if we need to notice this SID */ - ret = samldb_add_step(ac, samldb_foreign_notice_sid); - if (ret != LDB_SUCCESS) return ret; - - /* finally proceed with adding the entry */ - ret = samldb_add_step(ac, samldb_add_entry); - if (ret != LDB_SUCCESS) return ret; - return samldb_first_step(ac); -} + prim_group_rid = samdb_search_uint(ldb, ac, (uint32_t) -1, + member_dn, "primaryGroupID", + NULL); + if (prim_group_rid == (uint32_t) -1) { + /* the member hasn't to be a user account -> therefore + * no check needed in this case. */ + continue; + } -static int samldb_check_rdn(struct ldb_module *module, struct ldb_dn *dn) -{ - const char *rdn_name; + sid = dom_sid_add_rid(ac, samdb_domain_sid(ldb), + prim_group_rid); + if (sid == NULL) { + return ldb_operr(ldb); + } - rdn_name = ldb_dn_get_rdn_name(dn); + group_dn = samdb_search_dn(ldb, ac, NULL, "(objectSID=%s)", + dom_sid_string(ac, sid)); + if (group_dn == NULL) { + return ldb_operr(ldb); + } - if (strcasecmp(rdn_name, "cn") != 0) { - ldb_asprintf_errstring(module->ldb, - "Bad RDN (%s=) for samldb object, " - "should be CN=!\n", rdn_name); - return LDB_ERR_CONSTRAINT_VIOLATION; + if (ldb_dn_compare(group_dn, ac->msg->dn) == 0) { + return LDB_ERR_ENTRY_ALREADY_EXISTS; + } } return LDB_SUCCESS; } -/* add_record */ + +/* add */ static int samldb_add(struct ldb_module *module, struct ldb_request *req) { + struct ldb_context *ldb; struct samldb_ctx *ac; int ret; - ldb_debug(module->ldb, LDB_DEBUG_TRACE, "samldb_add_record\n"); + ldb = ldb_module_get_ctx(module); + ldb_debug(ldb, LDB_DEBUG_TRACE, "samldb_add\n"); /* do not manipulate our control entries */ if (ldb_dn_is_special(req->op.add.message->dn)) { @@ -1230,67 +1073,53 @@ static int samldb_add(struct ldb_module *module, struct ldb_request *req) ac = samldb_ctx_init(module, req); if (ac == NULL) { - return LDB_ERR_OPERATIONS_ERROR; + return ldb_operr(ldb); } /* build the new msg */ - ac->msg = ldb_msg_copy(ac, ac->req->op.add.message); - if (!ac->msg) { - talloc_free(ac); - ldb_debug(ac->module->ldb, LDB_DEBUG_FATAL, - "samldb_add: ldb_msg_copy failed!\n"); - return LDB_ERR_OPERATIONS_ERROR; - } - - if (samdb_find_attribute(module->ldb, ac->msg, - "objectclass", "computer") != NULL) { - - /* make sure the computer object also has the 'user' - * objectclass so it will be handled by the next call */ - ret = samdb_find_or_add_value(module->ldb, ac->msg, - "objectclass", "user"); - if (ret != LDB_SUCCESS) { - talloc_free(ac); - return ret; - } + req->op.add.message = ac->msg = ldb_msg_copy_shallow(req, + req->op.add.message); + if (ac->msg == NULL) { + return ldb_operr(ldb); } - if (samdb_find_attribute(module->ldb, ac->msg, + if (samdb_find_attribute(ldb, ac->msg, "objectclass", "user") != NULL) { - - ret = samldb_check_rdn(module, ac->req->op.add.message->dn); - if (ret != LDB_SUCCESS) { - talloc_free(ac); - return ret; - } - return samldb_fill_object(ac, "user"); } - if (samdb_find_attribute(module->ldb, ac->msg, + if (samdb_find_attribute(ldb, ac->msg, "objectclass", "group") != NULL) { + return samldb_fill_object(ac, "group"); + } + + /* perhaps a foreignSecurityPrincipal? */ + if (samdb_find_attribute(ldb, ac->msg, + "objectclass", + "foreignSecurityPrincipal") != NULL) { + return samldb_fill_foreignSecurityPrincipal_object(ac); + } - ret = samldb_check_rdn(module, ac->req->op.add.message->dn); + if (samdb_find_attribute(ldb, ac->msg, + "objectclass", "classSchema") != NULL) { + ret = samldb_schema_info_update(ac); if (ret != LDB_SUCCESS) { talloc_free(ac); return ret; } - return samldb_fill_object(ac, "group"); + return samldb_fill_object(ac, "classSchema"); } - /* perhaps a foreignSecurityPrincipal? */ - if (samdb_find_attribute(module->ldb, ac->msg, - "objectclass", - "foreignSecurityPrincipal") != NULL) { - - ret = samldb_check_rdn(module, ac->req->op.add.message->dn); + if (samdb_find_attribute(ldb, ac->msg, + "objectclass", "attributeSchema") != NULL) { + ret = samldb_schema_info_update(ac); if (ret != LDB_SUCCESS) { talloc_free(ac); return ret; } - return samldb_fill_foreignSecurityPrincipal_object(ac); + return samldb_fill_object(ac, "attributeSchema"); } talloc_free(ac); @@ -1302,64 +1131,243 @@ static int samldb_add(struct ldb_module *module, struct ldb_request *req) /* modify */ static int samldb_modify(struct ldb_module *module, struct ldb_request *req) { - struct ldb_message *msg; + struct ldb_context *ldb; + struct samldb_ctx *ac; struct ldb_message_element *el, *el2; int ret; - unsigned int group_type, user_account_control, account_type; - if (ldb_dn_is_special(req->op.mod.message->dn)) { /* do not manipulate our control entries */ + uint32_t account_type; + + if (ldb_dn_is_special(req->op.mod.message->dn)) { + /* do not manipulate our control entries */ return ldb_next_request(module, req); } + ldb = ldb_module_get_ctx(module); + if (ldb_msg_find_element(req->op.mod.message, "sAMAccountType") != NULL) { - ldb_asprintf_errstring(module->ldb, "sAMAccountType must not be specified"); + ldb_asprintf_errstring(ldb, + "sAMAccountType must not be specified!"); return LDB_ERR_UNWILLING_TO_PERFORM; } - /* TODO: do not modify original request, create a new one */ + /* msDS-IntId is not allowed to be modified + * except when modification comes from replication */ + if (ldb_msg_find_element(req->op.mod.message, "msDS-IntId")) { + if (!ldb_request_get_control(req, DSDB_CONTROL_REPLICATED_UPDATE_OID)) { + return LDB_ERR_CONSTRAINT_VIOLATION; + } + } - el = ldb_msg_find_element(req->op.mod.message, "groupType"); - if (el && el->flags & (LDB_FLAG_MOD_ADD|LDB_FLAG_MOD_REPLACE) && el->num_values == 1) { - req->op.mod.message = msg = ldb_msg_copy_shallow(req, req->op.mod.message); + ac = samldb_ctx_init(module, req); + if (ac == NULL) { + return ldb_operr(ldb); + } + + /* build the new msg */ + req->op.mod.message = ac->msg = ldb_msg_copy_shallow(req, + req->op.mod.message); + if (ac->msg == NULL) { + return ldb_operr(ldb); + } + + el = ldb_msg_find_element(ac->msg, "groupType"); + if (el && (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_REPLACE) && el->num_values == 1) { + uint32_t group_type; group_type = strtoul((const char *)el->values[0].data, NULL, 0); - account_type = samdb_gtype2atype(group_type); - ret = samdb_msg_add_uint(module->ldb, msg, msg, + account_type = ds_gtype2atype(group_type); + ret = samdb_msg_add_uint(ldb, ac->msg, ac->msg, "sAMAccountType", account_type); if (ret != LDB_SUCCESS) { return ret; } - el2 = ldb_msg_find_element(msg, "sAMAccountType"); + el2 = ldb_msg_find_element(ac->msg, "sAMAccountType"); el2->flags = LDB_FLAG_MOD_REPLACE; } + if (el && (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_DELETE)) { + return LDB_ERR_UNWILLING_TO_PERFORM; + } - el = ldb_msg_find_element(req->op.mod.message, "userAccountControl"); - if (el && el->flags & (LDB_FLAG_MOD_ADD|LDB_FLAG_MOD_REPLACE) && el->num_values == 1) { - req->op.mod.message = msg = ldb_msg_copy_shallow(req, req->op.mod.message); + el = ldb_msg_find_element(ac->msg, "primaryGroupID"); + if (el && (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_REPLACE) && el->num_values == 1) { + ret = samldb_prim_group_change(ac); + if (ret != LDB_SUCCESS) { + return ret; + } + } + if (el && (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_DELETE)) { + return LDB_ERR_UNWILLING_TO_PERFORM; + } + + el = ldb_msg_find_element(ac->msg, "userAccountControl"); + if (el && (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_REPLACE) && el->num_values == 1) { + uint32_t user_account_control; - user_account_control = strtoul((const char *)el->values[0].data, NULL, 0); - account_type = samdb_uf2atype(user_account_control); - ret = samdb_msg_add_uint(module->ldb, msg, msg, + user_account_control = strtoul((const char *)el->values[0].data, + NULL, 0); + account_type = ds_uf2atype(user_account_control); + ret = samdb_msg_add_uint(ldb, ac->msg, ac->msg, "sAMAccountType", account_type); if (ret != LDB_SUCCESS) { return ret; } - el2 = ldb_msg_find_element(msg, "sAMAccountType"); + el2 = ldb_msg_find_element(ac->msg, "sAMAccountType"); el2->flags = LDB_FLAG_MOD_REPLACE; + + if (user_account_control & (UF_SERVER_TRUST_ACCOUNT | UF_PARTIAL_SECRETS_ACCOUNT)) { + ret = samdb_msg_add_string(ldb, ac->msg, ac->msg, + "isCriticalSystemObject", + "TRUE"); + if (ret != LDB_SUCCESS) { + return ret; + } + el2 = ldb_msg_find_element(ac->msg, + "isCriticalSystemObject"); + el2->flags = LDB_FLAG_MOD_REPLACE; + + /* DCs have primaryGroupID of DOMAIN_RID_DCS */ + if (!ldb_msg_find_element(ac->msg, "primaryGroupID")) { + uint32_t rid; + if (user_account_control & UF_SERVER_TRUST_ACCOUNT) { + rid = DOMAIN_RID_DCS; + } else { + /* read-only DC */ + rid = DOMAIN_RID_READONLY_DCS; + } + ret = samdb_msg_add_uint(ldb, ac->msg, ac->msg, + "primaryGroupID", rid); + if (ret != LDB_SUCCESS) { + return ret; + } + el2 = ldb_msg_find_element(ac->msg, + "primaryGroupID"); + el2->flags = LDB_FLAG_MOD_REPLACE; + } + } } + if (el && (LDB_FLAG_MOD_TYPE(el->flags) == LDB_FLAG_MOD_DELETE)) { + return LDB_ERR_UNWILLING_TO_PERFORM; + } + + el = ldb_msg_find_element(ac->msg, "member"); + if (el && el->flags & (LDB_FLAG_MOD_ADD|LDB_FLAG_MOD_REPLACE) && el->num_values == 1) { + ret = samldb_member_check(ac); + if (ret != LDB_SUCCESS) { + return ret; + } + } + + talloc_free(ac); + + return ldb_next_request(module, req); +} + +/* delete */ + +static int samldb_prim_group_users_check(struct samldb_ctx *ac) +{ + struct ldb_context *ldb; + struct dom_sid *sid; + uint32_t rid; + NTSTATUS status; + int count; + + ldb = ldb_module_get_ctx(ac->module); + + /* Finds out the SID/RID of the SAM object */ + sid = samdb_search_dom_sid(ldb, ac, ac->req->op.del.dn, "objectSID", + NULL); + if (sid == NULL) { + /* No SID - it might not be a SAM object - therefore ok */ + return LDB_SUCCESS; + } + status = dom_sid_split_rid(ac, sid, NULL, &rid); + if (!NT_STATUS_IS_OK(status)) { + return ldb_operr(ldb); + } + if (rid == 0) { + /* Special object (security principal?) */ + return LDB_SUCCESS; + } + + /* Deny delete requests from groups which are primary ones */ + count = samdb_search_count(ldb, NULL, + "(&(primaryGroupID=%u)(objectClass=user))", + rid); + if (count < 0) { + return ldb_operr(ldb); + } + if (count > 0) { + return LDB_ERR_ENTRY_ALREADY_EXISTS; + } + + return LDB_SUCCESS; +} + +static int samldb_delete(struct ldb_module *module, struct ldb_request *req) +{ + struct samldb_ctx *ac; + int ret; + + if (ldb_dn_is_special(req->op.del.dn)) { + /* do not manipulate our control entries */ + return ldb_next_request(module, req); + } + + ac = samldb_ctx_init(module, req); + if (ac == NULL) { + return ldb_operr(ldb_module_get_ctx(module)); + } + + ret = samldb_prim_group_users_check(ac); + if (ret != LDB_SUCCESS) { + return ret; + } + + talloc_free(ac); + return ldb_next_request(module, req); } +/* extended */ -static int samldb_init(struct ldb_module *module) +static int samldb_extended_allocate_rid_pool(struct ldb_module *module, struct ldb_request *req) { - return ldb_next_init(module); + struct ldb_context *ldb = ldb_module_get_ctx(module); + struct dsdb_fsmo_extended_op *exop; + int ret; + + exop = talloc_get_type(req->op.extended.data, struct dsdb_fsmo_extended_op); + if (!exop) { + ldb_debug(ldb, LDB_DEBUG_FATAL, "samldb_extended_allocate_rid_pool: invalid extended data\n"); + return LDB_ERR_PROTOCOL_ERROR; + } + + ret = ridalloc_allocate_rid_pool_fsmo(module, exop); + if (ret != LDB_SUCCESS) { + return ret; + } + + return ldb_module_done(req, NULL, NULL, LDB_SUCCESS); +} + +static int samldb_extended(struct ldb_module *module, struct ldb_request *req) +{ + if (strcmp(req->op.extended.oid, DSDB_EXTENDED_ALLOCATE_RID_POOL) == 0) { + return samldb_extended_allocate_rid_pool(module, req); + } + + return ldb_next_request(module, req); } + _PUBLIC_ const struct ldb_module_ops ldb_samldb_module_ops = { .name = "samldb", - .init_context = samldb_init, .add = samldb_add, - .modify = samldb_modify + .modify = samldb_modify, + .del = samldb_delete, + .extended = samldb_extended }; +