diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-01-16 11:08:15 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-01-16 14:10:43 +1100 |
commit | 4cef7427ec22df1a5c16a22820952f2f963dc1e3 (patch) | |
tree | ab7ed9f9e7f29c65310bf5f1580e6b09bbc8cbe6 /source4 | |
parent | 3ff3612e29c16d7f3d87e06e6327d6b5bf530e2c (diff) | |
download | samba-4cef7427ec22df1a5c16a22820952f2f963dc1e3.tar.gz samba-4cef7427ec22df1a5c16a22820952f2f963dc1e3.tar.xz samba-4cef7427ec22df1a5c16a22820952f2f963dc1e3.zip |
s4-dsdb: added dsdb_load_udv_v2() and dsdb_load_udv_v1()
Diffstat (limited to 'source4')
-rw-r--r-- | source4/dsdb/common/util.c | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/source4/dsdb/common/util.c b/source4/dsdb/common/util.c index 5dcbbd8d037..0aad3158018 100644 --- a/source4/dsdb/common/util.c +++ b/source4/dsdb/common/util.c @@ -3237,3 +3237,85 @@ int samdb_ldb_val_case_cmp(const char *s, struct ldb_val *v) } return 0; } + + +/* + load the UDV for a partition in v2 format + */ +int dsdb_load_udv_v2(struct ldb_context *samdb, struct ldb_dn *dn, TALLOC_CTX *mem_ctx, + struct drsuapi_DsReplicaCursor2 **cursors, uint32_t *count) +{ + static const char *attrs[] = { "replUpToDateVector", NULL }; + struct ldb_result *r; + const struct ldb_val *ouv_value; + enum ndr_err_code ndr_err; + struct replUpToDateVectorBlob ouv; + int ret; + + ret = ldb_search(samdb, mem_ctx, &r, dn, LDB_SCOPE_BASE, attrs, NULL); + if (ret != LDB_SUCCESS) { + return ret; + } + + ouv_value = ldb_msg_find_ldb_val(r->msgs[0], "replUpToDateVector"); + if (!ouv_value) { + talloc_free(r); + *count = 0; + *cursors = NULL; + return LDB_SUCCESS; + } + + ndr_err = ndr_pull_struct_blob(ouv_value, r, + lp_iconv_convenience(ldb_get_opaque(samdb, "loadparm")), &ouv, + (ndr_pull_flags_fn_t)ndr_pull_replUpToDateVectorBlob); + if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) { + talloc_free(r); + return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX; + } + if (ouv.version != 2) { + /* we always store as version 2, and + * replUpToDateVector is not replicated + */ + return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX; + } + + *count = ouv.ctr.ctr2.count; + *cursors = talloc_steal(mem_ctx, ouv.ctr.ctr2.cursors); + talloc_free(r); + + return LDB_SUCCESS; +} + +/* + load the UDV for a partition in version 1 format + */ +int dsdb_load_udv_v1(struct ldb_context *samdb, struct ldb_dn *dn, TALLOC_CTX *mem_ctx, + struct drsuapi_DsReplicaCursor **cursors, uint32_t *count) +{ + struct drsuapi_DsReplicaCursor2 *v2; + int ret, i; + + ret = dsdb_load_udv_v2(samdb, dn, mem_ctx, &v2, count); + if (ret != LDB_SUCCESS) { + return ret; + } + + if (*count == 0) { + talloc_free(v2); + *cursors = NULL; + return LDB_SUCCESS; + } + + *cursors = talloc_array(mem_ctx, struct drsuapi_DsReplicaCursor, *count); + if (*cursors == NULL) { + talloc_free(v2); + return LDB_ERR_OPERATIONS_ERROR; + } + + for (i=0; i<*count; i++) { + (*cursors)[i].source_dsa_invocation_id = v2[i].source_dsa_invocation_id; + (*cursors)[i].highest_usn = v2[i].highest_usn; + } + talloc_free(v2); + return LDB_SUCCESS; +} |