mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
73bee8b690
Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org> Autobuild-User(master): Andrew Bartlett <abartlet@samba.org> Autobuild-Date(master): Fri Jun 30 06:23:39 CEST 2017 on sn-devel-144
221 lines
6.6 KiB
C
221 lines
6.6 KiB
C
/*
|
|
ldb database library
|
|
|
|
Copyright (C) Simo Sorce 2005
|
|
Copyright (C) Stefan Metzmacher <metze@samba.org> 2007
|
|
Copyright (C) Andrew Bartlett <abartlet@samba.org> 2009
|
|
Copyright (C) Matthias Dieter Wallnöfer 2010
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*
|
|
* Name: ldb
|
|
*
|
|
* Component: ldb deleted objects control module
|
|
*
|
|
* Description: this module hides deleted and recylced objects, and returns
|
|
* them if the right control is there
|
|
*
|
|
* Author: Stefan Metzmacher
|
|
*/
|
|
|
|
#include "includes.h"
|
|
#include <ldb_module.h>
|
|
#include "dsdb/samdb/samdb.h"
|
|
#include "dsdb/samdb/ldb_modules/util.h"
|
|
|
|
struct show_deleted_state {
|
|
bool need_refresh;
|
|
bool recycle_bin_enabled;
|
|
};
|
|
|
|
static int show_deleted_search(struct ldb_module *module, struct ldb_request *req)
|
|
{
|
|
struct ldb_context *ldb;
|
|
struct ldb_control *show_del, *show_rec;
|
|
struct ldb_request *down_req;
|
|
struct ldb_parse_tree *new_tree = req->op.search.tree;
|
|
struct show_deleted_state *state;
|
|
int ret;
|
|
const char *exclude_filter = NULL;
|
|
|
|
/* do not manipulate our control entries */
|
|
if (ldb_dn_is_special(req->op.search.base)) {
|
|
return ldb_next_request(module, req);
|
|
}
|
|
|
|
ldb = ldb_module_get_ctx(module);
|
|
|
|
/* This is the logic from MS-ADTS 3.1.1.3.4.1.14 that
|
|
determines if objects are visible
|
|
|
|
Extended control name Deleted-objects Tombstones Recycled-objects
|
|
LDAP_SERVER_SHOW_DELETED_OID Visible Visible Not Visible
|
|
LDAP_SERVER_SHOW_RECYCLED_OID Visible Visible Visible
|
|
|
|
Note that if the recycle bin is disabled, then the
|
|
isRecycled attribute is ignored, and objects are either
|
|
"normal" or "tombstone".
|
|
|
|
When the recycle bin is enabled, then objects are in one of
|
|
3 states, "normal", "deleted" or "recycled"
|
|
*/
|
|
|
|
/* check if there's a show deleted control */
|
|
show_del = ldb_request_get_control(req, LDB_CONTROL_SHOW_DELETED_OID);
|
|
/* check if there's a show recycled control */
|
|
show_rec = ldb_request_get_control(req, LDB_CONTROL_SHOW_RECYCLED_OID);
|
|
|
|
/*
|
|
* When recycle bin is not enabled, then all we look
|
|
* at is the isDeleted attribute. We hide objects with this
|
|
* attribute set to TRUE when the client has not specified either
|
|
* SHOW_DELETED or SHOW_RECYCLED
|
|
*/
|
|
if (show_rec == NULL && show_del == NULL) {
|
|
/* We don't want deleted or recycled objects,
|
|
* which we get by filtering on isDeleted */
|
|
exclude_filter = "isDeleted";
|
|
} else {
|
|
state = talloc_get_type(ldb_module_get_private(module), struct show_deleted_state);
|
|
|
|
/* Note that state may be NULL during initialisation */
|
|
if (state != NULL && state->need_refresh) {
|
|
/* Do not move this assignment, it can cause recursion loops! */
|
|
state->need_refresh = false;
|
|
ret = dsdb_recyclebin_enabled(module, &state->recycle_bin_enabled);
|
|
if (ret != LDB_SUCCESS) {
|
|
state->recycle_bin_enabled = false;
|
|
/*
|
|
* We can fail to find the feature object
|
|
* during provision. Ignore any such error and
|
|
* assume the recycle bin cannot be enabled at
|
|
* this point in time.
|
|
*/
|
|
if (ret != LDB_ERR_NO_SUCH_OBJECT) {
|
|
state->need_refresh = true;
|
|
return LDB_ERR_UNWILLING_TO_PERFORM;
|
|
}
|
|
}
|
|
}
|
|
|
|
if (state != NULL && state->recycle_bin_enabled) {
|
|
/*
|
|
* The recycle bin is enabled, so we want deleted not
|
|
* recycled.
|
|
*/
|
|
if (show_rec == NULL) {
|
|
exclude_filter = "isRecycled";
|
|
}
|
|
}
|
|
}
|
|
|
|
if (exclude_filter != NULL) {
|
|
new_tree = talloc(req, struct ldb_parse_tree);
|
|
if (!new_tree) {
|
|
return ldb_oom(ldb);
|
|
}
|
|
new_tree->operation = LDB_OP_AND;
|
|
new_tree->u.list.num_elements = 2;
|
|
new_tree->u.list.elements = talloc_array(new_tree, struct ldb_parse_tree *, 2);
|
|
if (!new_tree->u.list.elements) {
|
|
return ldb_oom(ldb);
|
|
}
|
|
|
|
new_tree->u.list.elements[0] = talloc(new_tree->u.list.elements, struct ldb_parse_tree);
|
|
new_tree->u.list.elements[0]->operation = LDB_OP_NOT;
|
|
new_tree->u.list.elements[0]->u.isnot.child =
|
|
talloc(new_tree->u.list.elements, struct ldb_parse_tree);
|
|
if (!new_tree->u.list.elements[0]->u.isnot.child) {
|
|
return ldb_oom(ldb);
|
|
}
|
|
new_tree->u.list.elements[0]->u.isnot.child->operation = LDB_OP_EQUALITY;
|
|
new_tree->u.list.elements[0]->u.isnot.child->u.equality.attr = exclude_filter;
|
|
new_tree->u.list.elements[0]->u.isnot.child->u.equality.value = data_blob_string_const("TRUE");
|
|
new_tree->u.list.elements[1] = req->op.search.tree;
|
|
}
|
|
|
|
ret = ldb_build_search_req_ex(&down_req, ldb, req,
|
|
req->op.search.base,
|
|
req->op.search.scope,
|
|
new_tree,
|
|
req->op.search.attrs,
|
|
req->controls,
|
|
req, dsdb_next_callback,
|
|
req);
|
|
LDB_REQ_SET_LOCATION(down_req);
|
|
if (ret != LDB_SUCCESS) {
|
|
return ret;
|
|
}
|
|
|
|
/* mark the controls as done */
|
|
if (show_del != NULL) {
|
|
show_del->critical = 0;
|
|
}
|
|
if (show_rec != NULL) {
|
|
show_rec->critical = 0;
|
|
}
|
|
|
|
/* perform the search */
|
|
return ldb_next_request(module, down_req);
|
|
}
|
|
|
|
static int show_deleted_init(struct ldb_module *module)
|
|
{
|
|
struct ldb_context *ldb;
|
|
int ret;
|
|
struct show_deleted_state *state;
|
|
|
|
state = talloc_zero(module, struct show_deleted_state);
|
|
if (state == NULL) {
|
|
return ldb_module_oom(module);
|
|
}
|
|
state->need_refresh = true;
|
|
|
|
ldb = ldb_module_get_ctx(module);
|
|
|
|
ret = ldb_mod_register_control(module, LDB_CONTROL_SHOW_DELETED_OID);
|
|
if (ret != LDB_SUCCESS) {
|
|
ldb_debug(ldb, LDB_DEBUG_ERROR,
|
|
"show_deleted: Unable to register control with rootdse!\n");
|
|
return ldb_operr(ldb);
|
|
}
|
|
|
|
ret = ldb_mod_register_control(module, LDB_CONTROL_SHOW_RECYCLED_OID);
|
|
if (ret != LDB_SUCCESS) {
|
|
ldb_debug(ldb, LDB_DEBUG_ERROR,
|
|
"show_deleted: Unable to register control with rootdse!\n");
|
|
return ldb_operr(ldb);
|
|
}
|
|
|
|
ret = ldb_next_init(module);
|
|
|
|
ldb_module_set_private(module, state);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static const struct ldb_module_ops ldb_show_deleted_module_ops = {
|
|
.name = "show_deleted",
|
|
.search = show_deleted_search,
|
|
.init_context = show_deleted_init
|
|
};
|
|
|
|
int ldb_show_deleted_module_init(const char *version)
|
|
{
|
|
LDB_MODULE_CHECK_VERSION(version);
|
|
return ldb_register_module(&ldb_show_deleted_module_ops);
|
|
}
|