LDB related spelling fixes.
[kamenim/samba.git] / source4 / lib / ldb-samba / ldif_handlers.c
index 43a10450d1cb3689af2f5a7ba6143d4151047012..effec46fda45d9900d916d0823ebaae98a3ac90f 100644 (file)
@@ -2,7 +2,7 @@
    ldb database library - ldif handlers for Samba
 
    Copyright (C) Andrew Tridgell 2005
-   Copyright (C) Andrew Bartlett 2006-2007
+   Copyright (C) Andrew Bartlett 2006-2009
    Copyright (C) Matthias Dieter Wallnöfer 2009
      ** NOTE! The following LGPL license applies to the ldb
      ** library. This does NOT imply that all of Samba is released
 #include "librpc/ndr/libndr.h"
 #include "libcli/security/security.h"
 #include "param/param.h"
+#include "../lib/util/asn1.h"
 
 /*
   use ndr_print_* to convert a NDR formatted blob to a ldif formatted blob
+
+  If mask_errors is true, then function succeeds but out data
+  is set to "<Unable to decode binary data>" message
+
+  \return 0 on success; -1 on error
 */
 static int ldif_write_NDR(struct ldb_context *ldb, void *mem_ctx,
                          const struct ldb_val *in, struct ldb_val *out,
                          size_t struct_size,
                          ndr_pull_flags_fn_t pull_fn,
-                         ndr_print_fn_t print_fn)
+                         ndr_print_fn_t print_fn,
+                         bool mask_errors)
 {
        uint8_t *p;
        enum ndr_err_code err;
@@ -53,6 +60,10 @@ static int ldif_write_NDR(struct ldb_context *ldb, void *mem_ctx,
                                   lp_iconv_convenience(ldb_get_opaque(ldb, "loadparm")), 
                                   p, pull_fn);
        if (err != NDR_ERR_SUCCESS) {
+               /* fail in not in mask_error mode */
+               if (!mask_errors) {
+                       return -1;
+               }
                talloc_free(p);
                out->data = (uint8_t *)talloc_strdup(mem_ctx, "<Unable to decode binary data>");
                out->length = strlen((const char *)out->data);
@@ -91,7 +102,7 @@ static int ldif_read_objectSid(struct ldb_context *ldb, void *mem_ctx,
 /*
   convert a NDR formatted blob to a ldif formatted objectSid
 */
-static int ldif_write_objectSid(struct ldb_context *ldb, void *mem_ctx,
+int ldif_write_objectSid(struct ldb_context *ldb, void *mem_ctx,
                                const struct ldb_val *in, struct ldb_val *out)
 {
        struct dom_sid *sid;
@@ -115,7 +126,7 @@ static int ldif_write_objectSid(struct ldb_context *ldb, void *mem_ctx,
        return 0;
 }
 
-static bool ldif_comparision_objectSid_isString(const struct ldb_val *v)
+bool ldif_comparision_objectSid_isString(const struct ldb_val *v)
 {
        if (v->length < 3) {
                return false;
@@ -214,16 +225,14 @@ static int ldif_read_objectGUID(struct ldb_context *ldb, void *mem_ctx,
 {
        struct GUID guid;
        NTSTATUS status;
-       enum ndr_err_code ndr_err;
 
        status = GUID_from_data_blob(in, &guid);
        if (!NT_STATUS_IS_OK(status)) {
                return -1;
        }
 
-       ndr_err = ndr_push_struct_blob(out, mem_ctx, NULL, &guid,
-                                      (ndr_push_flags_fn_t)ndr_push_GUID);
-       if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
+       status = GUID_to_ndr_blob(&guid, mem_ctx, out);
+       if (!NT_STATUS_IS_OK(status)) {
                return -1;
        }
        return 0;
@@ -236,10 +245,10 @@ static int ldif_write_objectGUID(struct ldb_context *ldb, void *mem_ctx,
                                 const struct ldb_val *in, struct ldb_val *out)
 {
        struct GUID guid;
-       enum ndr_err_code ndr_err;
-       ndr_err = ndr_pull_struct_blob_all(in, mem_ctx, NULL, &guid,
-                                          (ndr_pull_flags_fn_t)ndr_pull_GUID);
-       if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
+       NTSTATUS status;
+
+       status = GUID_from_ndr_blob(in, &guid);
+       if (!NT_STATUS_IS_OK(status)) {
                return -1;
        }
        out->data = (uint8_t *)GUID_string(mem_ctx, &guid);
@@ -262,7 +271,8 @@ static int extended_dn_read_GUID(struct ldb_context *ldb, void *mem_ctx,
                              const struct ldb_val *in, struct ldb_val *out)
 {
        struct GUID guid;
-       enum ndr_err_code ndr_err;
+       NTSTATUS status;
+
        if (in->length == 36 && ldif_read_objectGUID(ldb, mem_ctx, in, out) == 0) {
                return 0;
        }
@@ -282,9 +292,9 @@ static int extended_dn_read_GUID(struct ldb_context *ldb, void *mem_ctx,
                                      (const char *)in->data, in->length);
        
        /* Check it looks like a GUID */
-       ndr_err = ndr_pull_struct_blob_all(out, mem_ctx, NULL, &guid,
-                                          (ndr_pull_flags_fn_t)ndr_pull_GUID);
-       if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
+       status = GUID_from_ndr_blob(out, &guid);
+       if (!NT_STATUS_IS_OK(status)) {
+               data_blob_free(out);
                return -1;
        }
        return 0;
@@ -391,7 +401,8 @@ static int ldif_write_ntSecurityDescriptor(struct ldb_context *ldb, void *mem_ct
                return ldif_write_NDR(ldb, mem_ctx, in, out, 
                                      sizeof(struct security_descriptor),
                                      (ndr_pull_flags_fn_t)ndr_pull_security_descriptor,
-                                     (ndr_print_fn_t)ndr_print_security_descriptor);
+                                     (ndr_print_fn_t)ndr_print_security_descriptor,
+                                     true);
                                      
        }
 
@@ -406,7 +417,7 @@ static int ldif_write_ntSecurityDescriptor(struct ldb_context *ldb, void *mem_ct
                talloc_free(sd);
                return -1;
        }
-       out->data = (uint8_t *)sddl_encode(mem_ctx, sd, NULL);
+       out->data = (uint8_t *)sddl_encode(mem_ctx, sd, samdb_domain_sid_cache_only(ldb));
        talloc_free(sd);
        if (out->data == NULL) {
                return -1;
@@ -476,26 +487,8 @@ static int ldif_comparison_objectCategory(struct ldb_context *ldb, void *mem_ctx
                                          const struct ldb_val *v1,
                                          const struct ldb_val *v2)
 {
-
-       int ret, ret1, ret2;
-       struct ldb_val v1_canon, v2_canon;
-       TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
-
-       /* I could try and bail if tmp_ctx was NULL, but what return
-        * value would I use?
-        *
-        * It seems easier to continue on the NULL context 
-        */
-       ret1 = ldif_canonicalise_objectCategory(ldb, tmp_ctx, v1, &v1_canon);
-       ret2 = ldif_canonicalise_objectCategory(ldb, tmp_ctx, v2, &v2_canon);
-
-       if (ret1 == LDB_SUCCESS && ret2 == LDB_SUCCESS) {
-               ret = data_blob_cmp(&v1_canon, &v2_canon);
-       } else {
-               ret = data_blob_cmp(v1, v2);
-       }
-       talloc_free(tmp_ctx);
-       return ret;
+       return ldb_any_comparison(ldb, mem_ctx, ldif_canonicalise_objectCategory,
+                                 v1, v2);
 }
 
 /*
@@ -507,6 +500,7 @@ static int ldif_read_prefixMap(struct ldb_context *ldb, void *mem_ctx,
        struct prefixMapBlob *blob;
        enum ndr_err_code ndr_err;
        char *string, *line, *p, *oid;
+       DATA_BLOB oid_blob;
 
        TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
 
@@ -539,7 +533,7 @@ static int ldif_read_prefixMap(struct ldb_context *ldb, void *mem_ctx,
                                p[0] = '\0';
                        }
                }
-               /* allow a traling seperator */
+               /* allow a trailing separator */
                if (line == p) {
                        break;
                }
@@ -563,8 +557,12 @@ static int ldif_read_prefixMap(struct ldb_context *ldb, void *mem_ctx,
                /* we know there must be at least ":" */
                oid++;
 
-               blob->ctr.dsdb.mappings[blob->ctr.dsdb.num_mappings].oid.oid
-                       = talloc_strdup(blob->ctr.dsdb.mappings, oid);
+               if (!ber_write_partial_OID_String(blob->ctr.dsdb.mappings, &oid_blob, oid)) {
+                       talloc_free(tmp_ctx);
+                       return -1;
+               }
+               blob->ctr.dsdb.mappings[blob->ctr.dsdb.num_mappings].oid.length = oid_blob.length;
+               blob->ctr.dsdb.mappings[blob->ctr.dsdb.num_mappings].oid.binary_oid = oid_blob.data;
 
                blob->ctr.dsdb.num_mappings++;
 
@@ -599,11 +597,22 @@ static int ldif_write_prefixMap(struct ldb_context *ldb, void *mem_ctx,
        uint32_t i;
 
        if (ldb_get_flags(ldb) & LDB_FLG_SHOW_BINARY) {
-               return ldif_write_NDR(ldb, mem_ctx, in, out, 
-                                     sizeof(struct prefixMapBlob),
-                                     (ndr_pull_flags_fn_t)ndr_pull_prefixMapBlob,
-                                     (ndr_print_fn_t)ndr_print_prefixMapBlob);
-                                     
+               int err;
+               /* try to decode the blob as S4 prefixMap */
+               err = ldif_write_NDR(ldb, mem_ctx, in, out,
+                                    sizeof(struct prefixMapBlob),
+                                    (ndr_pull_flags_fn_t)ndr_pull_prefixMapBlob,
+                                    (ndr_print_fn_t)ndr_print_prefixMapBlob,
+                                    false);
+               if (0 == err) {
+                       return err;
+               }
+               /* try parsing it as Windows PrefixMap value */
+               return ldif_write_NDR(ldb, mem_ctx, in, out,
+                                     sizeof(struct drsuapi_MSPrefixMap_Ctr),
+                                     (ndr_pull_flags_fn_t)ndr_pull_drsuapi_MSPrefixMap_Ctr,
+                                     (ndr_print_fn_t)ndr_print_drsuapi_MSPrefixMap_Ctr,
+                                     true);
        }
 
        blob = talloc(mem_ctx, struct prefixMapBlob);
@@ -615,32 +624,47 @@ static int ldif_write_prefixMap(struct ldb_context *ldb, void *mem_ctx,
                                           blob,
                                           (ndr_pull_flags_fn_t)ndr_pull_prefixMapBlob);
        if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err)) {
-               talloc_free(blob);
-               return -1;
+               goto failed;
        }
        if (blob->version != PREFIX_MAP_VERSION_DSDB) {
-               return -1;
+               goto failed;
        }
        string = talloc_strdup(mem_ctx, "");
        if (string == NULL) {
-               return -1;
+               goto failed;
        }
 
        for (i=0; i < blob->ctr.dsdb.num_mappings; i++) {
+               DATA_BLOB oid_blob;
+               const char *partial_oid = NULL;
+
                if (i > 0) {
                        string = talloc_asprintf_append(string, ";"); 
                }
+
+               oid_blob = data_blob_const(blob->ctr.dsdb.mappings[i].oid.binary_oid,
+                                          blob->ctr.dsdb.mappings[i].oid.length);
+               if (!ber_read_partial_OID_String(blob, oid_blob, &partial_oid)) {
+                       DEBUG(0, ("ber_read_partial_OID failed on prefixMap item with id: 0x%X",
+                                 blob->ctr.dsdb.mappings[i].id_prefix));
+                       goto failed;
+               }
                string = talloc_asprintf_append(string, "%u:%s", 
                                                   blob->ctr.dsdb.mappings[i].id_prefix,
-                                                  blob->ctr.dsdb.mappings[i].oid.oid);
+                                                  partial_oid);
+               talloc_free(discard_const(partial_oid));
                if (string == NULL) {
-                       return -1;
+                       goto failed;
                }
        }
 
        talloc_free(blob);
        *out = data_blob_string_const(string);
        return 0;
+
+failed:
+       talloc_free(blob);
+       return -1;
 }
 
 static bool ldif_comparision_prefixMap_isString(const struct ldb_val *v)
@@ -672,42 +696,67 @@ static int ldif_comparison_prefixMap(struct ldb_context *ldb, void *mem_ctx,
                                     const struct ldb_val *v1,
                                     const struct ldb_val *v2)
 {
+       return ldb_any_comparison(ldb, mem_ctx, ldif_canonicalise_prefixMap,
+                                 v1, v2);
+}
 
-       int ret, ret1, ret2;
-       struct ldb_val v1_canon, v2_canon;
-       TALLOC_CTX *tmp_ctx = talloc_new(mem_ctx);
+/* length limited conversion of a ldb_val to a int32_t */
+static int val_to_int32(const struct ldb_val *in, int32_t *v)
+{
+       char *end;
+       char buf[64];
 
-       /* I could try and bail if tmp_ctx was NULL, but what return
-        * value would I use?
-        *
-        * It seems easier to continue on the NULL context 
-        */
-       ret1 = ldif_canonicalise_prefixMap(ldb, tmp_ctx, v1, &v1_canon);
-       ret2 = ldif_canonicalise_prefixMap(ldb, tmp_ctx, v2, &v2_canon);
+       /* make sure we don't read past the end of the data */
+       if (in->length > sizeof(buf)-1) {
+               return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
+       }
+       strncpy(buf, (char *)in->data, in->length);
+       buf[in->length] = 0;
 
-       if (ret1 == LDB_SUCCESS && ret2 == LDB_SUCCESS) {
-               ret = data_blob_cmp(&v1_canon, &v2_canon);
-       } else {
-               ret = data_blob_cmp(v1, v2);
+       /* We've to use "strtoll" here to have the intended overflows.
+        * Otherwise we may get "LONG_MAX" and the conversion is wrong. */
+       *v = (int32_t) strtoll(buf, &end, 0);
+       if (*end != 0) {
+               return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
        }
-       talloc_free(tmp_ctx);
-       return ret;
+       return LDB_SUCCESS;
+}
+
+/* length limited conversion of a ldb_val to a int64_t */
+static int val_to_int64(const struct ldb_val *in, int64_t *v)
+{
+       char *end;
+       char buf[64];
+
+       /* make sure we don't read past the end of the data */
+       if (in->length > sizeof(buf)-1) {
+               return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
+       }
+       strncpy(buf, (char *)in->data, in->length);
+       buf[in->length] = 0;
+
+       *v = (int64_t) strtoll(buf, &end, 0);
+       if (*end != 0) {
+               return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
+       }
+       return LDB_SUCCESS;
 }
 
 /* Canonicalisation of two 32-bit integers */
 static int ldif_canonicalise_int32(struct ldb_context *ldb, void *mem_ctx,
                        const struct ldb_val *in, struct ldb_val *out)
 {
-       char *end;
-       /* We've to use "strtoll" here to have the intended overflows.
-        * Otherwise we may get "LONG_MAX" and the conversion is wrong. */
-       int32_t i = (int32_t) strtoll((char *)in->data, &end, 0);
-       if (*end != 0) {
-               return -1;
+       int32_t i;
+       int ret;
+
+       ret = val_to_int32(in, &i);
+       if (ret != LDB_SUCCESS) {
+               return ret;
        }
        out->data = (uint8_t *) talloc_asprintf(mem_ctx, "%d", i);
        if (out->data == NULL) {
-               return -1;
+               ldb_oom(ldb);
+               return LDB_ERR_OPERATIONS_ERROR;
        }
        out->length = strlen((char *)out->data);
        return 0;
@@ -715,12 +764,44 @@ static int ldif_canonicalise_int32(struct ldb_context *ldb, void *mem_ctx,
 
 /* Comparison of two 32-bit integers */
 static int ldif_comparison_int32(struct ldb_context *ldb, void *mem_ctx,
-                       const struct ldb_val *v1, const struct ldb_val *v2)
+                                const struct ldb_val *v1, const struct ldb_val *v2)
 {
-       /* We've to use "strtoll" here to have the intended overflows.
-        * Otherwise we may get "LONG_MAX" and the conversion is wrong. */
-       return (int32_t) strtoll((char *)v1->data, NULL, 0)
-        - (int32_t) strtoll((char *)v2->data, NULL, 0);
+       int32_t i1=0, i2=0;
+       val_to_int32(v1, &i1);
+       val_to_int32(v2, &i2);
+       if (i1 == i2) return 0;
+       return i1 > i2? 1 : -1;
+}
+
+/* Canonicalisation of two 64-bit integers */
+static int ldif_canonicalise_int64(struct ldb_context *ldb, void *mem_ctx,
+                                  const struct ldb_val *in, struct ldb_val *out)
+{
+       int64_t i;
+       int ret;
+
+       ret = val_to_int64(in, &i);
+       if (ret != LDB_SUCCESS) {
+               return ret;
+       }
+       out->data = (uint8_t *) talloc_asprintf(mem_ctx, "%lld", (long long)i);
+       if (out->data == NULL) {
+               ldb_oom(ldb);
+               return LDB_ERR_OPERATIONS_ERROR;
+       }
+       out->length = strlen((char *)out->data);
+       return 0;
+}
+
+/* Comparison of two 64-bit integers */
+static int ldif_comparison_int64(struct ldb_context *ldb, void *mem_ctx,
+                                const struct ldb_val *v1, const struct ldb_val *v2)
+{
+       int64_t i1=0, i2=0;
+       val_to_int64(v1, &i1);
+       val_to_int64(v2, &i2);
+       if (i1 == i2) return 0;
+       return i1 > i2? 1 : -1;
 }
 
 /*
@@ -732,7 +813,8 @@ static int ldif_write_repsFromTo(struct ldb_context *ldb, void *mem_ctx,
        return ldif_write_NDR(ldb, mem_ctx, in, out, 
                              sizeof(struct repsFromToBlob),
                              (ndr_pull_flags_fn_t)ndr_pull_repsFromToBlob,
-                             (ndr_print_fn_t)ndr_print_repsFromToBlob);
+                             (ndr_print_fn_t)ndr_print_repsFromToBlob,
+                             true);
 }
 
 /*
@@ -744,7 +826,8 @@ static int ldif_write_replPropertyMetaData(struct ldb_context *ldb, void *mem_ct
        return ldif_write_NDR(ldb, mem_ctx, in, out, 
                              sizeof(struct replPropertyMetaDataBlob),
                              (ndr_pull_flags_fn_t)ndr_pull_replPropertyMetaDataBlob,
-                             (ndr_print_fn_t)ndr_print_replPropertyMetaDataBlob);
+                             (ndr_print_fn_t)ndr_print_replPropertyMetaDataBlob,
+                             true);
 }
 
 /*
@@ -756,20 +839,79 @@ static int ldif_write_replUpToDateVector(struct ldb_context *ldb, void *mem_ctx,
        return ldif_write_NDR(ldb, mem_ctx, in, out, 
                              sizeof(struct replUpToDateVectorBlob),
                              (ndr_pull_flags_fn_t)ndr_pull_replUpToDateVectorBlob,
-                             (ndr_print_fn_t)ndr_print_replPropertyMetaDataBlob);
+                             (ndr_print_fn_t)ndr_print_replUpToDateVectorBlob,
+                             true);
 }
 
 
 static int extended_dn_write_hex(struct ldb_context *ldb, void *mem_ctx,
                                 const struct ldb_val *in, struct ldb_val *out)
 {
-       *out = data_blob_string_const(data_blob_hex_string(mem_ctx, in));
+       *out = data_blob_string_const(data_blob_hex_string_lower(mem_ctx, in));
        if (!out->data) {
                return -1;
        }
        return 0;
 }
 
+
+/*
+  write a 64 bit 2-part range
+*/
+static int ldif_write_range64(struct ldb_context *ldb, void *mem_ctx,
+                             const struct ldb_val *in, struct ldb_val *out)
+{
+       int64_t v;
+       int ret;
+       ret = val_to_int64(in, &v);
+       if (ret != LDB_SUCCESS) {
+               return ret;
+       }
+       out->data = (uint8_t *)talloc_asprintf(mem_ctx, "%lu-%lu",
+                                              (unsigned long)(v&0xFFFFFFFF),
+                                              (unsigned long)(v>>32));
+       if (out->data == NULL) {
+               ldb_oom(ldb);
+               return LDB_ERR_OPERATIONS_ERROR;
+       }
+       out->length = strlen((char *)out->data);
+       return LDB_SUCCESS;
+}
+
+/*
+  read a 64 bit 2-part range
+*/
+static int ldif_read_range64(struct ldb_context *ldb, void *mem_ctx,
+                             const struct ldb_val *in, struct ldb_val *out)
+{
+       unsigned long high, low;
+       char buf[64];
+
+       if (memchr(in->data, '-', in->length) == NULL) {
+               return ldb_handler_copy(ldb, mem_ctx, in, out);
+       }
+
+       if (in->length > sizeof(buf)-1) {
+               return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
+       }
+       strncpy(buf, (const char *)in->data, in->length);
+       buf[in->length] = 0;
+
+       if (sscanf(buf, "%lu-%lu", &low, &high) != 2) {
+               return LDB_ERR_INVALID_ATTRIBUTE_SYNTAX;
+       }
+
+       out->data = (uint8_t *)talloc_asprintf(mem_ctx, "%llu",
+                                              (unsigned long long)(((uint64_t)high)<<32) | (low));
+
+       if (out->data == NULL) {
+               ldb_oom(ldb);
+               return LDB_ERR_OPERATIONS_ERROR;
+       }
+       out->length = strlen((char *)out->data);
+       return LDB_SUCCESS;
+}
+
 static const struct ldb_schema_syntax samba_syntaxes[] = {
        {
                .name             = LDB_SYNTAX_SAMBA_SID,
@@ -825,6 +967,24 @@ static const struct ldb_schema_syntax samba_syntaxes[] = {
                .ldif_write_fn    = ldif_write_replUpToDateVector,
                .canonicalise_fn  = ldb_handler_copy,
                .comparison_fn    = ldb_comparison_binary
+       },{
+               .name             = DSDB_SYNTAX_BINARY_DN,
+               .ldif_read_fn     = ldb_handler_copy,
+               .ldif_write_fn    = ldb_handler_copy,
+               .canonicalise_fn  = dsdb_dn_binary_canonicalise,
+               .comparison_fn    = dsdb_dn_binary_comparison
+       },{
+               .name             = DSDB_SYNTAX_STRING_DN,
+               .ldif_read_fn     = ldb_handler_copy,
+               .ldif_write_fn    = ldb_handler_copy,
+               .canonicalise_fn  = dsdb_dn_string_canonicalise,
+               .comparison_fn    = dsdb_dn_string_comparison
+       },{
+               .name             = LDB_SYNTAX_SAMBA_RANGE64,
+               .ldif_read_fn     = ldif_read_range64,
+               .ldif_write_fn    = ldif_write_range64,
+               .canonicalise_fn  = ldif_canonicalise_int64,
+               .comparison_fn    = ldif_comparison_int64
        },
 };
 
@@ -844,6 +1004,41 @@ static const struct ldb_dn_extended_syntax samba_dn_syntax[] = {
                .read_fn          = ldb_handler_copy,
                .write_clear_fn   = ldb_handler_copy,
                .write_hex_fn     = ldb_handler_copy
+       },{
+               .name             = "RMD_INVOCID",
+               .read_fn          = extended_dn_read_GUID,
+               .write_clear_fn   = ldif_write_objectGUID,
+               .write_hex_fn     = extended_dn_write_hex
+       },{
+               .name             = "RMD_FLAGS",
+               .read_fn          = ldb_handler_copy,
+               .write_clear_fn   = ldb_handler_copy,
+               .write_hex_fn     = ldb_handler_copy
+       },{
+               .name             = "RMD_ADDTIME",
+               .read_fn          = ldb_handler_copy,
+               .write_clear_fn   = ldb_handler_copy,
+               .write_hex_fn     = ldb_handler_copy
+       },{
+               .name             = "RMD_CHANGETIME",
+               .read_fn          = ldb_handler_copy,
+               .write_clear_fn   = ldb_handler_copy,
+               .write_hex_fn     = ldb_handler_copy
+       },{
+               .name             = "RMD_LOCAL_USN",
+               .read_fn          = ldb_handler_copy,
+               .write_clear_fn   = ldb_handler_copy,
+               .write_hex_fn     = ldb_handler_copy
+       },{
+               .name             = "RMD_ORIGINATING_USN",
+               .read_fn          = ldb_handler_copy,
+               .write_clear_fn   = ldb_handler_copy,
+               .write_hex_fn     = ldb_handler_copy
+       },{
+               .name             = "RMD_VERSION",
+               .read_fn          = ldb_handler_copy,
+               .write_clear_fn   = ldb_handler_copy,
+               .write_hex_fn     = ldb_handler_copy
        }
 };
 
@@ -858,6 +1053,7 @@ static const struct {
        { "objectGUID",                 LDB_SYNTAX_SAMBA_GUID },
        { "invocationId",               LDB_SYNTAX_SAMBA_GUID },
        { "schemaIDGUID",               LDB_SYNTAX_SAMBA_GUID },
+       { "oMSyntax",                   LDB_SYNTAX_SAMBA_INT32 },
        { "attributeSecurityGUID",      LDB_SYNTAX_SAMBA_GUID },
        { "parentGUID",                 LDB_SYNTAX_SAMBA_GUID },
        { "siteGUID",                   LDB_SYNTAX_SAMBA_GUID },
@@ -865,12 +1061,16 @@ static const struct {
        { "fRSVersionGUID",             LDB_SYNTAX_SAMBA_GUID },
        { "fRSReplicaSetGUID",          LDB_SYNTAX_SAMBA_GUID },
        { "netbootGUID",                LDB_SYNTAX_SAMBA_GUID },
+       { "msDS-OptionalFeatureGUID",   LDB_SYNTAX_SAMBA_GUID },
        { "objectCategory",             LDB_SYNTAX_SAMBA_OBJECT_CATEGORY },
        { "prefixMap",                  LDB_SYNTAX_SAMBA_PREFIX_MAP },
        { "repsFrom",                   LDB_SYNTAX_SAMBA_REPSFROMTO },
        { "repsTo",                     LDB_SYNTAX_SAMBA_REPSFROMTO },
        { "replPropertyMetaData",       LDB_SYNTAX_SAMBA_REPLPROPERTYMETADATA },
        { "replUpToDateVector",         LDB_SYNTAX_SAMBA_REPLUPTODATEVECTOR },
+       { "rIDAllocationPool",          LDB_SYNTAX_SAMBA_RANGE64 },
+       { "rIDPreviousAllocationPool",  LDB_SYNTAX_SAMBA_RANGE64 },
+       { "rIDAvailablePool",           LDB_SYNTAX_SAMBA_RANGE64 },
 };
 
 const struct ldb_schema_syntax *ldb_samba_syntax_by_name(struct ldb_context *ldb, const char *name)