summaryrefslogtreecommitdiff
path: root/source4/dsdb
diff options
context:
space:
mode:
authorKamen Mazdrashki <kamenim@samba.org>2010-04-26 00:22:53 +0300
committerKamen Mazdrashki <kamenim@samba.org>2010-04-28 12:11:03 +0300
commitbf49ac99c94e4d937fd8d0532761b5635e372d84 (patch)
treeb1f591e2eeb8f262e63c69f037be7603080b159b /source4/dsdb
parent5197d76faa6316d7e80b1c714c7a6f028ce527d2 (diff)
downloadsamba-bf49ac99c94e4d937fd8d0532761b5635e372d84.tar.gz
samba-bf49ac99c94e4d937fd8d0532761b5635e372d84.tar.bz2
samba-bf49ac99c94e4d937fd8d0532761b5635e372d84.zip
s4/dsdb: dsdb_validate_invocation_id() should validate by objectGUID
This function is used in DRSUpdateRefs() implementation where we get DSA's objectGUID rather than invocationId
Diffstat (limited to 'source4/dsdb')
-rw-r--r--source4/dsdb/common/util.c36
1 files changed, 18 insertions, 18 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c
index 60bcbe4846..42619b9692 100644
--- a/source4/dsdb/common/util.c
+++ b/source4/dsdb/common/util.c
@@ -3668,18 +3668,18 @@ const char *samdb_forest_name(struct ldb_context *ldb, TALLOC_CTX *mem_ctx)
}
/*
- validate that an invocationID belongs to the specified user sid.
+ validate that an DSA GUID belongs to the specified user sid.
The user SID must be a domain controller account (either RODC or
RWDC)
*/
-int dsdb_validate_invocation_id(struct ldb_context *ldb,
- const struct GUID *invocation_id,
- const struct dom_sid *sid)
+int dsdb_validate_dsa_guid(struct ldb_context *ldb,
+ const struct GUID *dsa_guid,
+ const struct dom_sid *sid)
{
/* strategy:
- - find DN of record with the invocationID in the
- configuration partition
- - remote "NTDS Settings" component from DN
+ - find DN of record with the DSA GUID in the
+ configuration partition (objectGUID)
+ - remove "NTDS Settings" component from DN
- do a base search on that DN for serverReference with
extended-dn enabled
- extract objectSID from resulting serverReference
@@ -3699,10 +3699,10 @@ int dsdb_validate_invocation_id(struct ldb_context *ldb,
config_dn = ldb_get_config_basedn(ldb);
ret = dsdb_search_one(ldb, tmp_ctx, &msg, config_dn, LDB_SCOPE_SUBTREE,
- attrs1, 0, "(&(invocationID=%s)(objectClass=nTDSDSA))", GUID_string(tmp_ctx, invocation_id));
+ attrs1, 0, "(&(objectGUID=%s)(objectClass=nTDSDSA))", GUID_string(tmp_ctx, dsa_guid));
if (ret != LDB_SUCCESS) {
- DEBUG(1,(__location__ ": Failed to find invocationID %s for sid %s\n",
- GUID_string(tmp_ctx, invocation_id), dom_sid_string(tmp_ctx, sid)));
+ DEBUG(1,(__location__ ": Failed to find DSA objectGUID %s for sid %s\n",
+ GUID_string(tmp_ctx, dsa_guid), dom_sid_string(tmp_ctx, sid)));
talloc_free(tmp_ctx);
return LDB_ERR_OPERATIONS_ERROR;
}
@@ -3717,32 +3717,32 @@ int dsdb_validate_invocation_id(struct ldb_context *ldb,
attrs2, DSDB_SEARCH_SHOW_EXTENDED_DN,
"(objectClass=server)");
if (ret != LDB_SUCCESS) {
- DEBUG(1,(__location__ ": Failed to find server record for invocationID %s, sid %s\n",
- GUID_string(tmp_ctx, invocation_id), dom_sid_string(tmp_ctx, sid)));
+ DEBUG(1,(__location__ ": Failed to find server record for DSA with objectGUID %s, sid %s\n",
+ GUID_string(tmp_ctx, dsa_guid), dom_sid_string(tmp_ctx, sid)));
talloc_free(tmp_ctx);
return LDB_ERR_OPERATIONS_ERROR;
}
account_dn = ldb_msg_find_attr_as_dn(ldb, tmp_ctx, msg, "serverReference");
if (account_dn == NULL) {
- DEBUG(1,(__location__ ": Failed to find account_dn for invocationID %s, sid %s\n",
- GUID_string(tmp_ctx, invocation_id), dom_sid_string(tmp_ctx, sid)));
+ DEBUG(1,(__location__ ": Failed to find account_dn for DSA with objectGUID %s, sid %s\n",
+ GUID_string(tmp_ctx, dsa_guid), dom_sid_string(tmp_ctx, sid)));
talloc_free(tmp_ctx);
return LDB_ERR_OPERATIONS_ERROR;
}
status = dsdb_get_extended_dn_sid(account_dn, &sid2, "SID");
if (!NT_STATUS_IS_OK(status)) {
- DEBUG(1,(__location__ ": Failed to find SID for invocationID %s, sid %s\n",
- GUID_string(tmp_ctx, invocation_id), dom_sid_string(tmp_ctx, sid)));
+ DEBUG(1,(__location__ ": Failed to find SID for DSA with objectGUID %s, sid %s\n",
+ GUID_string(tmp_ctx, dsa_guid), dom_sid_string(tmp_ctx, sid)));
talloc_free(tmp_ctx);
return LDB_ERR_OPERATIONS_ERROR;
}
if (!dom_sid_equal(sid, &sid2)) {
/* someone is trying to spoof another account */
- DEBUG(0,(__location__ ": Bad invocationID invocationID %s for sid %s - expected sid %s\n",
- GUID_string(tmp_ctx, invocation_id),
+ DEBUG(0,(__location__ ": Bad DSA objectGUID %s for sid %s - expected sid %s\n",
+ GUID_string(tmp_ctx, dsa_guid),
dom_sid_string(tmp_ctx, sid),
dom_sid_string(tmp_ctx, &sid2)));
talloc_free(tmp_ctx);