4 Copyright (C) Simo Sorce 2005
5 Copyright (C) Stefan Metzmacher <metze@samba.org> 2007
6 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2009
8 ** NOTE! The following LGPL license applies to the ldb
9 ** library. This does NOT imply that all of Samba is released
12 This library is free software; you can redistribute it and/or
13 modify it under the terms of the GNU Lesser General Public
14 License as published by the Free Software Foundation; either
15 version 3 of the License, or (at your option) any later version.
17 This library is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20 Lesser General Public License for more details.
22 You should have received a copy of the GNU Lesser General Public
23 License along with this library; if not, see <http://www.gnu.org/licenses/>.
29 * Component: ldb deleted objects control module
31 * Description: this module hides deleted objects, and returns them if the right control is there
33 * Author: Stefan Metzmacher
37 #include "ldb/include/ldb_module.h"
38 #include "dsdb/samdb/samdb.h"
41 static int show_deleted_search(struct ldb_module
*module
, struct ldb_request
*req
)
43 struct ldb_context
*ldb
;
44 struct ldb_control
*control
;
45 struct ldb_control
**saved_controls
;
46 struct ldb_request
*down_req
;
47 struct ldb_parse_tree
*nodeleted_tree
;
48 struct ldb_parse_tree
*new_tree
= req
->op
.search
.tree
;
51 ldb
= ldb_module_get_ctx(module
);
53 /* check if there's a show deleted control */
54 control
= ldb_request_get_control(req
, LDB_CONTROL_SHOW_DELETED_OID
);
57 nodeleted_tree
= talloc_get_type(ldb_module_get_private(module
),
58 struct ldb_parse_tree
);
60 new_tree
= talloc(req
, struct ldb_parse_tree
);
63 return LDB_ERR_OPERATIONS_ERROR
;
65 *new_tree
= *nodeleted_tree
;
66 /* Replace dummy part of 'and' with the old, tree,
67 without a parse step */
68 new_tree
->u
.list
.elements
[0] = req
->op
.search
.tree
;
72 ret
= ldb_build_search_req_ex(&down_req
, ldb
, req
,
78 req
->context
, req
->callback
,
80 if (ret
!= LDB_SUCCESS
) {
84 /* if a control is there remove if from the modified request */
85 if (control
&& !save_controls(control
, down_req
, &saved_controls
)) {
86 return LDB_ERR_OPERATIONS_ERROR
;
89 /* perform the search */
90 return ldb_next_request(module
, down_req
);
93 static int show_deleted_init(struct ldb_module
*module
)
95 struct ldb_context
*ldb
;
96 struct ldb_parse_tree
*nodeleted_tree
;
99 ldb
= ldb_module_get_ctx(module
);
101 nodeleted_tree
= ldb_parse_tree(module
, "(&(replace=me)(!(isDeleted=TRUE)))");
102 if (!nodeleted_tree
) {
103 ldb_debug(ldb
, LDB_DEBUG_ERROR
,
104 "show_deleted: Unable to parse isDeleted master expression!\n");
105 return LDB_ERR_OPERATIONS_ERROR
;
108 ldb_module_set_private(module
, nodeleted_tree
);
110 ret
= ldb_mod_register_control(module
, LDB_CONTROL_SHOW_DELETED_OID
);
111 if (ret
!= LDB_SUCCESS
) {
112 ldb_debug(ldb
, LDB_DEBUG_ERROR
,
113 "show_deleted: Unable to register control with rootdse!\n");
114 return LDB_ERR_OPERATIONS_ERROR
;
117 return ldb_next_init(module
);
120 _PUBLIC_
const struct ldb_module_ops ldb_show_deleted_module_ops
= {
121 .name
= "show_deleted",
122 .search
= show_deleted_search
,
123 .init_context
= show_deleted_init