1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

s4-dsdb: no longer need special invocationID handling for standalone servers

They now work the same way as a DC
This commit is contained in:
Andrew Tridgell 2010-01-07 17:32:13 +11:00
parent a7fffe8da0
commit 5f36f0352e

View File

@ -138,53 +138,6 @@ static int prepare_modules_line(struct ldb_context *ldb,
/*
initialise the invocationID for a standalone server
*/
static int initialise_invocation_id(struct ldb_module *module, struct GUID *guid)
{
struct ldb_message *msg;
struct ldb_context *ldb = ldb_module_get_ctx(module);
int ret;
*guid = GUID_random();
msg = ldb_msg_new(module);
if (msg == NULL) {
ldb_module_oom(module);
return LDB_ERR_OPERATIONS_ERROR;
}
msg->dn = ldb_dn_new(msg, ldb, "@SAMBA_DSDB");
if (!msg->dn) {
ldb_module_oom(module);
talloc_free(msg);
return LDB_ERR_OPERATIONS_ERROR;
}
ret = dsdb_msg_add_guid(msg, guid, "invocationID");
if (ret != LDB_SUCCESS) {
ldb_module_oom(module);
talloc_free(msg);
return ret;
}
msg->elements[0].flags = LDB_FLAG_MOD_ADD;
ret = ldb_modify(ldb, msg);
if (ret != LDB_SUCCESS) {
ldb_asprintf_errstring(ldb, "Failed to setup standalone invocationID - %s",
ldb_errstring(ldb));
talloc_free(msg);
return ret;
}
DEBUG(1,("Initialised standalone invocationID to %s\n",
GUID_string(msg, guid)));
talloc_free(msg);
return LDB_SUCCESS;
}
static int samba_dsdb_init(struct ldb_module *module)
{
struct ldb_context *ldb = ldb_module_get_ctx(module);
@ -258,7 +211,7 @@ static int samba_dsdb_init(struct ldb_module *module)
static const char *openldap_backend_modules[] = {
"entryuuid", "paged_searches", NULL };
static const char *samba_dsdb_attrs[] = { "backendType", "serverRole", "invocationID", NULL };
static const char *samba_dsdb_attrs[] = { "backendType", "serverRole", NULL };
const char *backendType, *serverRole;
if (!tmp_ctx) {
@ -293,34 +246,6 @@ static int samba_dsdb_init(struct ldb_module *module)
return ret;
}
if (strcmp(serverRole, "standalone") == 0 ||
strcmp(serverRole, "member server") == 0) {
struct GUID *guid;
guid = talloc(module, struct GUID);
if (!guid) {
ldb_module_oom(module);
return LDB_ERR_OPERATIONS_ERROR;
}
*guid = samdb_result_guid(res->msgs[0], "invocationID");
if (GUID_all_zero(guid)) {
ret = initialise_invocation_id(module, guid);
if (ret != LDB_SUCCESS) {
talloc_free(tmp_ctx);
return ret;
}
}
/* cache the domain_sid in the ldb. See the matching
* code in samdb_ntds_invocation_id() */
ret = ldb_set_opaque(ldb, "cache.invocation_id", guid);
if (ret != LDB_SUCCESS) {
talloc_free(tmp_ctx);
return ret;
}
}
backend_modules = NULL;
if (strcasecmp(backendType, "ldb") == 0) {
extended_dn_module = extended_dn_module_ldb;