dsdb-acl: attr is not optional to acl_check_access_on_attribute()
[Samba/gebeck_regimport.git] / source4 / dsdb / samdb / ldb_modules / lazy_commit.c
blob24fc6dd9e859c9e44a7b4f42342c0ed1293c68af
1 /*
2 ldb database library
4 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2009
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>.
21 * Name: ldb
23 * Component: ldb lazy_commit module
25 * Description: module to pretend to support the 'lazy commit' control
27 * Author: Andrew Bartlett
30 #include "includes.h"
31 #include "ldb_module.h"
32 #include "dsdb/samdb/ldb_modules/util.h"
34 static int unlazy_op(struct ldb_module *module, struct ldb_request *req)
36 int ret;
37 struct ldb_request *new_req;
38 struct ldb_control *control = ldb_request_get_control(req, LDB_CONTROL_SERVER_LAZY_COMMIT);
39 if (!control) {
40 return ldb_next_request(module, req);
43 switch (req->operation) {
44 case LDB_SEARCH:
45 ret = ldb_build_search_req_ex(&new_req, ldb_module_get_ctx(module),
46 req,
47 req->op.search.base,
48 req->op.search.scope,
49 req->op.search.tree,
50 req->op.search.attrs,
51 req->controls,
52 req, dsdb_next_callback,
53 req);
54 LDB_REQ_SET_LOCATION(new_req);
55 break;
56 case LDB_ADD:
57 ret = ldb_build_add_req(&new_req, ldb_module_get_ctx(module), req,
58 req->op.add.message,
59 req->controls,
60 req, dsdb_next_callback,
61 req);
62 LDB_REQ_SET_LOCATION(new_req);
63 break;
64 case LDB_MODIFY:
65 ret = ldb_build_mod_req(&new_req, ldb_module_get_ctx(module), req,
66 req->op.mod.message,
67 req->controls,
68 req, dsdb_next_callback,
69 req);
70 LDB_REQ_SET_LOCATION(new_req);
71 break;
72 case LDB_DELETE:
73 ret = ldb_build_del_req(&new_req, ldb_module_get_ctx(module), req,
74 req->op.del.dn,
75 req->controls,
76 req, dsdb_next_callback,
77 req);
78 LDB_REQ_SET_LOCATION(new_req);
79 break;
80 case LDB_RENAME:
81 ret = ldb_build_rename_req(&new_req, ldb_module_get_ctx(module), req,
82 req->op.rename.olddn,
83 req->op.rename.newdn,
84 req->controls,
85 req, dsdb_next_callback,
86 req);
87 LDB_REQ_SET_LOCATION(new_req);
88 break;
89 case LDB_EXTENDED:
90 ret = ldb_build_extended_req(&new_req, ldb_module_get_ctx(module),
91 req,
92 req->op.extended.oid,
93 req->op.extended.data,
94 req->controls,
95 req, dsdb_next_callback,
96 req);
97 LDB_REQ_SET_LOCATION(new_req);
98 break;
99 default:
100 ldb_set_errstring(ldb_module_get_ctx(module),
101 "Unsupported request type!");
102 ret = LDB_ERR_UNWILLING_TO_PERFORM;
105 if (ret != LDB_SUCCESS) {
106 return ret;
109 control->critical = 0;
110 return ldb_next_request(module, new_req);
113 static const struct ldb_module_ops ldb_lazy_commit_module_ops = {
114 .name = "lazy_commit",
115 .search = unlazy_op,
116 .add = unlazy_op,
117 .modify = unlazy_op,
118 .del = unlazy_op,
119 .rename = unlazy_op,
120 .request = unlazy_op,
121 .extended = unlazy_op,
124 int ldb_lazy_commit_module_init(const char *version)
126 LDB_MODULE_CHECK_VERSION(version);
127 return ldb_register_module(&ldb_lazy_commit_module_ops);