diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-09-25 07:42:14 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@sn-devel-104.sn.samba.org> | 2010-10-03 15:23:18 +0000 |
commit | 779b97325a1a60e6c72a334d0134ea5178942f7d (patch) | |
tree | 1e03b5ad2ec0826e8489da84f5250be2f7f2d250 /source4/dsdb | |
parent | 69b7a87e98d3ecc937595c1a3cbd3c10abb9c652 (diff) | |
download | samba-779b97325a1a60e6c72a334d0134ea5178942f7d.tar.gz samba-779b97325a1a60e6c72a334d0134ea5178942f7d.tar.bz2 samba-779b97325a1a60e6c72a334d0134ea5178942f7d.zip |
s4:subtree_rename LDB module - also already deleted objects have to be renamed
This is needed if the SYSTEM_FLAG_DISALLOW_MOVE_ON_DELETE flag was specified
and the parent is renamed.
To be able to do this we also need to relax the constraint checks (using the
"isDeleted" proof).
Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/dsdb')
-rw-r--r-- | source4/dsdb/samdb/ldb_modules/subtree_rename.c | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/source4/dsdb/samdb/ldb_modules/subtree_rename.c b/source4/dsdb/samdb/ldb_modules/subtree_rename.c index 97330f898c..f6b3625678 100644 --- a/source4/dsdb/samdb/ldb_modules/subtree_rename.c +++ b/source4/dsdb/samdb/ldb_modules/subtree_rename.c @@ -152,7 +152,9 @@ static int check_constraints(struct ldb_message *msg, bool move_op = false; bool rename_op = false; - /* Skip the checks if old and new DN are the same or if we relax */ + /* Skip the checks if old and new DN are the same, or if we have the + * relax control specified or if the returned objects is already + * deleted and needs only to be moved for consistency. */ if (ldb_dn_compare(olddn, newdn) == 0) { return LDB_SUCCESS; @@ -160,6 +162,9 @@ static int check_constraints(struct ldb_message *msg, if (ldb_request_get_control(ac->req, LDB_CONTROL_RELAX_OID) != NULL) { return LDB_SUCCESS; } + if (ldb_msg_find_attr_as_bool(msg, "isDeleted", false)) { + return LDB_SUCCESS; + } /* Objects under CN=System */ @@ -382,7 +387,7 @@ static int subtree_rename(struct ldb_module *module, struct ldb_request *req) { struct ldb_context *ldb; static const char * const attrs[] = { "objectClass", "systemFlags", - NULL }; + "isDeleted", NULL }; struct ldb_request *search_req; struct subtree_rename_context *ac; int ret; @@ -430,6 +435,12 @@ static int subtree_rename(struct ldb_module *module, struct ldb_request *req) return ret; } + ret = ldb_request_add_control(search_req, LDB_CONTROL_SHOW_RECYCLED_OID, + true, NULL); + if (ret != LDB_SUCCESS) { + return ret; + } + return ldb_next_request(module, search_req); } |