4 Copyright (C) Andrew Bartlett 2005
5 Copyright (C) Simo Sorce 2006
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 3 of the License, or
10 (at your option) any later version.
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 * Component: ldb kludge ACL module
26 * Description: Simple module to enforce a simple form of access
27 * control, sufficient for securing a default Samba4
30 * Author: Andrew Bartlett
34 #include "ldb/include/ldb.h"
35 #include "ldb/include/ldb_errors.h"
36 #include "ldb/include/ldb_private.h"
37 #include "auth/auth.h"
38 #include "libcli/security/security.h"
39 #include "dsdb/samdb/samdb.h"
43 * - System can read passwords
44 * - Administrators can write anything
45 * - Users can read anything that is not a password
56 struct kludge_private_data {
57 const char **password_attrs;
60 static enum user_is what_is_user(struct ldb_module *module)
62 struct auth_session_info *session_info
63 = ldb_get_opaque(module->ldb, "sessionInfo");
68 if (security_token_is_system(session_info->security_token)) {
72 if (security_token_is_anonymous(session_info->security_token)) {
76 if (security_token_has_builtin_administrators(session_info->security_token)) {
80 if (security_token_has_nt_authenticated_users(session_info->security_token)) {
87 static const char *user_name(TALLOC_CTX *mem_ctx, struct ldb_module *module)
89 struct auth_session_info *session_info
90 = ldb_get_opaque(module->ldb, "sessionInfo");
92 return "UNKNOWN (NULL)";
95 return talloc_asprintf(mem_ctx, "%s\\%s",
96 session_info->server_info->domain_name,
97 session_info->server_info->account_name);
101 struct kludge_acl_context {
103 struct ldb_module *module;
105 int (*up_callback)(struct ldb_context *, void *, struct ldb_reply *);
107 enum user_is user_type;
108 bool allowedAttributes;
109 bool allowedAttributesEffective;
110 bool allowedChildClasses;
111 bool allowedChildClassesEffective;
115 /* read all objectClasses */
117 static int kludge_acl_allowedAttributes(struct ldb_context *ldb, struct ldb_message *msg,
118 const char *attrName)
120 struct ldb_message_element *oc_el;
121 struct ldb_message_element *allowedAttributes;
122 const struct dsdb_schema *schema = dsdb_get_schema(ldb);
123 const struct dsdb_class *class;
125 /* Must remove any existing attribute, or else confusion reins */
126 ldb_msg_remove_attr(msg, attrName);
127 ret = ldb_msg_add_empty(msg, attrName, 0, &allowedAttributes);
128 if (ret != LDB_SUCCESS) {
132 /* To ensure that oc_el is valid, we must look for it after
133 we alter the element array in ldb_msg_add_empty() */
134 oc_el = ldb_msg_find_element(msg, "objectClass");
136 for (i=0; oc_el && i < oc_el->num_values; i++) {
137 class = dsdb_class_by_lDAPDisplayName(schema, (const char *)oc_el->values[i].data);
139 /* We don't know this class? what is going on? */
143 for (j=0; class->mayContain && class->mayContain[j]; j++) {
144 ldb_msg_add_string(msg, attrName, class->mayContain[j]);
146 for (j=0; class->mustContain && class->mustContain[j]; j++) {
147 ldb_msg_add_string(msg, attrName, class->mustContain[j]);
149 for (j=0; class->systemMayContain && class->systemMayContain[j]; j++) {
150 ldb_msg_add_string(msg, attrName, class->systemMayContain[j]);
152 for (j=0; class->systemMustContain && class->systemMustContain[j]; j++) {
153 ldb_msg_add_string(msg, attrName, class->systemMustContain[j]);
157 if (allowedAttributes->num_values > 1) {
158 qsort(allowedAttributes->values,
159 allowedAttributes->num_values,
160 sizeof(*allowedAttributes->values),
161 (comparison_fn_t)data_blob_cmp);
163 for (i=1 ; i < allowedAttributes->num_values; i++) {
164 struct ldb_val *val1 = &allowedAttributes->values[i-1];
165 struct ldb_val *val2 = &allowedAttributes->values[i];
166 if (data_blob_cmp(val1, val2) == 0) {
167 memmove(val1, val2, (allowedAttributes->num_values - i) * sizeof( struct ldb_val));
168 allowedAttributes->num_values--;
177 /* read all objectClasses */
179 static int kludge_acl_childClasses(struct ldb_context *ldb, struct ldb_message *msg,
180 const char *attrName)
182 struct ldb_message_element *oc_el;
183 struct ldb_message_element *allowedClasses;
184 const struct dsdb_schema *schema = dsdb_get_schema(ldb);
185 const struct dsdb_class *class;
187 /* Must remove any existing attribute, or else confusion reins */
188 ldb_msg_remove_attr(msg, attrName);
189 ret = ldb_msg_add_empty(msg, attrName, 0, &allowedClasses);
190 if (ret != LDB_SUCCESS) {
194 /* To ensure that oc_el is valid, we must look for it after
195 we alter the element array in ldb_msg_add_empty() */
196 oc_el = ldb_msg_find_element(msg, "objectClass");
198 for (i=0; oc_el && i < oc_el->num_values; i++) {
199 class = dsdb_class_by_lDAPDisplayName(schema, (const char *)oc_el->values[i].data);
201 /* We don't know this class? what is going on? */
205 for (j=0; class->possibleInferiors && class->possibleInferiors[j]; j++) {
206 ldb_msg_add_string(msg, attrName, class->possibleInferiors[j]);
210 if (allowedClasses->num_values > 1) {
211 qsort(allowedClasses->values,
212 allowedClasses->num_values,
213 sizeof(*allowedClasses->values),
214 (comparison_fn_t)data_blob_cmp);
216 for (i=1 ; i < allowedClasses->num_values; i++) {
217 struct ldb_val *val1 = &allowedClasses->values[i-1];
218 struct ldb_val *val2 = &allowedClasses->values[i];
219 if (data_blob_cmp(val1, val2) == 0) {
220 memmove(val1, val2, (allowedClasses->num_values - i) * sizeof( struct ldb_val));
221 allowedClasses->num_values--;
231 /* find all attributes allowed by all these objectClasses */
233 static int kludge_acl_callback(struct ldb_context *ldb, void *context, struct ldb_reply *ares)
235 struct kludge_acl_context *ac;
236 struct kludge_private_data *data;
239 ac = talloc_get_type(context, struct kludge_acl_context);
240 data = talloc_get_type(ac->module->private_data, struct kludge_private_data);
242 if (ares->type != LDB_REPLY_ENTRY) {
243 return ac->up_callback(ldb, ac->up_context, ares);
246 if (ac->allowedAttributes) {
247 ret = kludge_acl_allowedAttributes(ldb, ares->message, "allowedAttributes");
248 if (ret != LDB_SUCCESS) {
253 if (ac->allowedChildClasses) {
254 ret = kludge_acl_childClasses(ldb, ares->message, "allowedChildClasses");
255 if (ret != LDB_SUCCESS) {
260 if (data && data->password_attrs) /* if we are not initialized just get through */
262 switch (ac->user_type) {
265 if (ac->allowedAttributesEffective) {
266 ret = kludge_acl_allowedAttributes(ldb, ares->message, "allowedAttributesEffective");
267 if (ret != LDB_SUCCESS) {
271 if (ac->allowedChildClassesEffective) {
272 ret = kludge_acl_childClasses(ldb, ares->message, "allowedChildClassesEffective");
273 if (ret != LDB_SUCCESS) {
279 /* remove password attributes */
280 for (i = 0; data->password_attrs[i]; i++) {
281 ldb_msg_remove_attr(ares->message, data->password_attrs[i]);
286 if ((ac->allowedAttributes || ac->allowedAttributesEffective
287 || ac->allowedChildClasses || ac->allowedChildClassesEffective) &&
288 (!ldb_attr_in_list(ac->attrs, "objectClass") &&
289 !ldb_attr_in_list(ac->attrs, "*"))) {
290 ldb_msg_remove_attr(ares->message, "objectClass");
293 return ac->up_callback(ldb, ac->up_context, ares);
296 static int kludge_acl_search(struct ldb_module *module, struct ldb_request *req)
298 struct kludge_acl_context *ac;
299 struct ldb_request *down_req;
300 struct kludge_private_data *data;
305 ac = talloc(req, struct kludge_acl_context);
307 return LDB_ERR_OPERATIONS_ERROR;
310 data = talloc_get_type(module->private_data, struct kludge_private_data);
313 ac->up_context = req->context;
314 ac->up_callback = req->callback;
315 ac->user_type = what_is_user(module);
316 ac->attrs = req->op.search.attrs;
318 down_req = talloc_zero(req, struct ldb_request);
319 if (down_req == NULL) {
320 return LDB_ERR_OPERATIONS_ERROR;
323 down_req->operation = req->operation;
324 down_req->op.search.base = req->op.search.base;
325 down_req->op.search.scope = req->op.search.scope;
326 down_req->op.search.tree = req->op.search.tree;
327 down_req->op.search.attrs = req->op.search.attrs;
329 ac->allowedAttributes = ldb_attr_in_list(req->op.search.attrs, "allowedAttributes");
331 ac->allowedAttributesEffective = ldb_attr_in_list(req->op.search.attrs, "allowedAttributesEffective");
333 ac->allowedChildClasses = ldb_attr_in_list(req->op.search.attrs, "allowedChildClasses");
335 ac->allowedChildClassesEffective = ldb_attr_in_list(req->op.search.attrs, "allowedChildClassesEffective");
337 if (ac->allowedAttributes || ac->allowedAttributesEffective || ac->allowedChildClasses || ac->allowedChildClassesEffective) {
338 down_req->op.search.attrs
339 = ldb_attr_list_copy_add(down_req, down_req->op.search.attrs, "objectClass");
342 /* FIXME: I hink we should copy the tree and keep the original
344 /* replace any attributes in the parse tree that are private,
345 so we don't allow a search for 'sambaPassword=penguin',
346 just as we would not allow that attribute to be returned */
347 switch (ac->user_type) {
351 /* remove password attributes */
352 for (i = 0; data && data->password_attrs && data->password_attrs[i]; i++) {
353 ldb_parse_tree_attr_replace(down_req->op.search.tree,
354 data->password_attrs[i],
355 "kludgeACLredactedattribute");
359 down_req->controls = req->controls;
361 down_req->context = ac;
362 down_req->callback = kludge_acl_callback;
363 ldb_set_timeout_from_prev_req(module->ldb, req, down_req);
365 /* perform the search */
366 ret = ldb_next_request(module, down_req);
368 /* do not free down_req as the call results may be linked to it,
369 * it will be freed when the upper level request get freed */
370 if (ret == LDB_SUCCESS) {
371 req->handle = down_req->handle;
377 /* ANY change type */
378 static int kludge_acl_change(struct ldb_module *module, struct ldb_request *req)
380 enum user_is user_type = what_is_user(module);
384 return ldb_next_request(module, req);
386 ldb_asprintf_errstring(module->ldb,
387 "kludge_acl_change: "
388 "attempted database modify not permitted. "
389 "User %s is not SYSTEM or an administrator",
390 user_name(req, module));
391 return LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS;
395 static int kludge_acl_init(struct ldb_module *module)
398 TALLOC_CTX *mem_ctx = talloc_new(module);
399 static const char *attrs[] = { "passwordAttribute", NULL };
400 struct ldb_result *res;
401 struct ldb_message *msg;
402 struct ldb_message_element *password_attributes;
404 struct kludge_private_data *data;
406 data = talloc(module, struct kludge_private_data);
408 return LDB_ERR_OPERATIONS_ERROR;
411 data->password_attrs = NULL;
412 module->private_data = data;
415 return LDB_ERR_OPERATIONS_ERROR;
418 ret = ldb_search(module->ldb, ldb_dn_new(mem_ctx, module->ldb, "@KLUDGEACL"),
422 if (ret != LDB_SUCCESS) {
425 talloc_steal(mem_ctx, res);
426 if (res->count == 0) {
430 if (res->count > 1) {
431 talloc_free(mem_ctx);
432 return LDB_ERR_CONSTRAINT_VIOLATION;
437 password_attributes = ldb_msg_find_element(msg, "passwordAttribute");
438 if (!password_attributes) {
441 data->password_attrs = talloc_array(data, const char *, password_attributes->num_values + 1);
442 if (!data->password_attrs) {
443 talloc_free(mem_ctx);
444 return LDB_ERR_OPERATIONS_ERROR;
446 for (i=0; i < password_attributes->num_values; i++) {
447 data->password_attrs[i] = (const char *)password_attributes->values[i].data;
448 talloc_steal(data->password_attrs, password_attributes->values[i].data);
450 data->password_attrs[i] = NULL;
453 talloc_free(mem_ctx);
454 return ldb_next_init(module);
457 static const struct ldb_module_ops kludge_acl_ops = {
458 .name = "kludge_acl",
459 .search = kludge_acl_search,
460 .add = kludge_acl_change,
461 .modify = kludge_acl_change,
462 .del = kludge_acl_change,
463 .rename = kludge_acl_change,
464 .extended = kludge_acl_change,
465 .init_context = kludge_acl_init
468 int ldb_kludge_acl_init(void)
470 return ldb_register_module(&kludge_acl_ops);