ldb:controls - add the "TREE_DELETE" control for allowing subtree deletes
authorMatthias Dieter Wallnöfer <mdw@samba.org>
Sun, 20 Jun 2010 10:19:31 +0000 (12:19 +0200)
committerMatthias Dieter Wallnöfer <mdw@samba.org>
Sun, 20 Jun 2010 16:52:29 +0000 (18:52 +0200)
source4/lib/ldb/common/ldb_controls.c
source4/lib/ldb/include/ldb.h
source4/libcli/ldap/ldap_controls.c

index aff03a00edbde541ccc129038cbd490ec5649d3b..abdbb1496dda095f82140391d058c7d093ebcaca 100644 (file)
@@ -694,6 +694,33 @@ struct ldb_control **ldb_parse_control_strings(struct ldb_context *ldb, void *me
                        continue;
                }
 
+               if (strncmp(control_strings[i], "tree_delete:", 12) == 0) {
+                       const char *p;
+                       int crit, ret;
+
+                       p = &(control_strings[i][12]);
+                       ret = sscanf(p, "%d", &crit);
+                       if ((ret != 1) || (crit < 0) || (crit > 1)) {
+                               error_string = talloc_asprintf(mem_ctx, "invalid tree_delete control syntax\n");
+                               error_string = talloc_asprintf_append(error_string, " syntax: crit(b)\n");
+                               error_string = talloc_asprintf_append(error_string, "   note: b = boolean");
+                               ldb_set_errstring(ldb, error_string);
+                               talloc_free(error_string);
+                               return NULL;
+                       }
+
+                       ctrl[i] = talloc(ctrl, struct ldb_control);
+                       if (!ctrl[i]) {
+                               ldb_oom(ldb);
+                               return NULL;
+                       }
+                       ctrl[i]->oid = LDB_CONTROL_TREE_DELETE_OID;
+                       ctrl[i]->critical = crit;
+                       ctrl[i]->data = NULL;
+
+                       continue;
+               }
+
                if (strncmp(control_strings[i], "show_deleted:", 13) == 0) {
                        const char *p;
                        int crit, ret;
index 2b75d449d9ef83d9ad5838636881f78306b2de5b..039f70895ae6f82fcb08ba5f4b56685233ac4d16 100644 (file)
@@ -527,6 +527,13 @@ typedef int (*ldb_qsort_cmp_fn_t) (void *v1, void *v2, void *opaque);
 */
 #define LDB_CONTROL_NOTIFICATION_OID   "1.2.840.113556.1.4.528"
 
+/**
+   OID for performing subtree deletes
+
+   \sa <a href="http://msdn.microsoft.com/en-us/library/aa366991(v=VS.85).aspx">Microsoft documentation of this OID</a>
+*/
+#define LDB_CONTROL_TREE_DELETE_OID    "1.2.840.113556.1.4.805"
+
 /**
    OID for getting deleted objects
 
index 037c69599de8cbcb452a7c0021e7cfe559b08424..7f99a9c0e9e693db0b6c4c5e2ea01312b13c3849 100644 (file)
@@ -445,6 +445,15 @@ static bool decode_notification_request(void *mem_ctx, DATA_BLOB in, void *_out)
        return true;
 }
 
+static bool decode_tree_delete_request(void *mem_ctx, DATA_BLOB in, void *_out)
+{
+       if (in.length != 0) {
+               return false;
+       }
+
+       return true;
+}
+
 static bool decode_show_deleted_request(void *mem_ctx, DATA_BLOB in, void *_out)
 {
        if (in.length != 0) {
@@ -969,6 +978,16 @@ static bool encode_notification_request(void *mem_ctx, void *in, DATA_BLOB *out)
        return true;
 }
 
+static bool encode_tree_delete_request(void *mem_ctx, void *in, DATA_BLOB *out)
+{
+       if (in) {
+               return false;
+       }
+
+       *out = data_blob(NULL, 0);
+       return true;
+}
+
 static bool encode_show_deleted_request(void *mem_ctx, void *in, DATA_BLOB *out)
 {
        if (in) {
@@ -1278,6 +1297,7 @@ static const struct ldap_control_handler ldap_known_controls[] = {
        { "1.2.840.113556.1.4.1504", decode_asq_control, encode_asq_control },
        { "1.2.840.113556.1.4.841", decode_dirsync_request, encode_dirsync_request },
        { "1.2.840.113556.1.4.528", decode_notification_request, encode_notification_request },
+       { "1.2.840.113556.1.4.805", decode_tree_delete_request, encode_tree_delete_request },
        { "1.2.840.113556.1.4.417", decode_show_deleted_request, encode_show_deleted_request },
        { "1.2.840.113556.1.4.2064", decode_show_recycled_request, encode_show_recycled_request },
        { "1.2.840.113556.1.4.2065", decode_show_deactivated_link_request, encode_show_deactivated_link_request },