4 Copyright (C) Simo Sorce 2006-2008
5 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005-2007
6 Copyright (C) Nadezhda Ivanova 2009
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 * Component: DS Security descriptor module
28 * - Calculate the security descriptor of a newly created object
29 * - Perform sd recalculation on a move operation
30 * - Handle sd modification invariants
32 * Author: Nadezhda Ivanova
36 #include "ldb_module.h"
37 #include "dlinklist.h"
38 #include "dsdb/samdb/samdb.h"
39 #include "librpc/ndr/libndr.h"
40 #include "librpc/gen_ndr/ndr_security.h"
41 #include "libcli/security/security.h"
42 #include "auth/auth.h"
43 #include "param/param.h"
45 struct descriptor_context
{
46 struct ldb_module
*module
;
47 struct ldb_request
*req
;
48 struct ldb_reply
*search_res
;
49 int (*step_fn
)(struct descriptor_context
*);
52 static const struct dsdb_class
* get_last_structural_class(const struct dsdb_schema
*schema
, struct ldb_message_element
*element
)
54 const struct dsdb_class
*last_class
= NULL
;
56 for (i
= 0; i
< element
->num_values
; i
++){
58 last_class
= dsdb_class_by_lDAPDisplayName_ldb_val(schema
, &element
->values
[i
]);
60 const struct dsdb_class
*tmp_class
= dsdb_class_by_lDAPDisplayName_ldb_val(schema
, &element
->values
[i
]);
61 if (tmp_class
->subClass_order
> last_class
->subClass_order
)
62 last_class
= tmp_class
;
68 struct dom_sid
*get_default_ag(TALLOC_CTX
*mem_ctx
,
70 struct security_token
*token
,
71 struct ldb_context
*ldb
)
73 TALLOC_CTX
*tmp_ctx
= talloc_new(mem_ctx
);
74 struct ldb_dn
*root_base_dn
= ldb_get_root_basedn(ldb
);
75 struct ldb_dn
*schema_base_dn
= ldb_get_schema_basedn(ldb
);
76 struct ldb_dn
*config_base_dn
= ldb_get_config_basedn(ldb
);
77 const struct dom_sid
*domain_sid
= samdb_domain_sid(ldb
);
78 struct dom_sid
*da_sid
= dom_sid_add_rid(tmp_ctx
, domain_sid
, DOMAIN_RID_ADMINS
);
79 struct dom_sid
*ea_sid
= dom_sid_add_rid(tmp_ctx
, domain_sid
, DOMAIN_RID_ENTERPRISE_ADMINS
);
80 struct dom_sid
*sa_sid
= dom_sid_add_rid(tmp_ctx
, domain_sid
, DOMAIN_RID_SCHEMA_ADMINS
);
81 struct dom_sid
*dag_sid
;
83 if (ldb_dn_compare_base(schema_base_dn
, dn
) == 0){
84 if (security_token_has_sid(token
, sa_sid
))
85 dag_sid
= dom_sid_dup(mem_ctx
, sa_sid
);
86 else if (security_token_has_sid(token
, ea_sid
))
87 dag_sid
= dom_sid_dup(mem_ctx
, ea_sid
);
88 else if (security_token_has_sid(token
, da_sid
))
89 dag_sid
= dom_sid_dup(mem_ctx
, da_sid
);
93 else if (ldb_dn_compare_base(config_base_dn
, dn
) == 0){
94 if (security_token_has_sid(token
, ea_sid
))
95 dag_sid
= dom_sid_dup(mem_ctx
, ea_sid
);
96 else if (security_token_has_sid(token
, da_sid
))
97 dag_sid
= dom_sid_dup(mem_ctx
, da_sid
);
101 else if (ldb_dn_compare_base(root_base_dn
, dn
) == 0){
102 if (security_token_has_sid(token
, da_sid
))
103 dag_sid
= dom_sid_dup(mem_ctx
, da_sid
);
104 else if (security_token_has_sid(token
, ea_sid
))
105 dag_sid
= dom_sid_dup(mem_ctx
, ea_sid
);
112 talloc_free(tmp_ctx
);
116 static struct security_descriptor
*get_sd_unpacked(struct ldb_module
*module
, TALLOC_CTX
*mem_ctx
,
117 const struct dsdb_class
*objectclass
)
119 struct ldb_context
*ldb
= ldb_module_get_ctx(module
);
120 struct security_descriptor
*sd
;
121 const struct dom_sid
*domain_sid
= samdb_domain_sid(ldb
);
123 if (!objectclass
->defaultSecurityDescriptor
|| !domain_sid
) {
127 sd
= sddl_decode(mem_ctx
,
128 objectclass
->defaultSecurityDescriptor
,
133 static struct dom_sid
*get_default_group(TALLOC_CTX
*mem_ctx
,
134 struct ldb_context
*ldb
,
137 int *domainFunctionality
;
139 domainFunctionality
= talloc_get_type(
140 ldb_get_opaque(ldb
, "domainFunctionality"), int);
142 if (*domainFunctionality
143 && (*domainFunctionality
>= DS_DOMAIN_FUNCTION_2008
)) {
150 static DATA_BLOB
*get_new_descriptor(struct ldb_module
*module
,
153 const struct dsdb_class
*objectclass
,
154 const struct ldb_val
*parent
,
155 struct ldb_val
*object
)
157 struct security_descriptor
*user_descriptor
= NULL
, *parent_descriptor
= NULL
;
158 struct security_descriptor
*new_sd
;
159 DATA_BLOB
*linear_sd
;
160 enum ndr_err_code ndr_err
;
161 struct ldb_context
*ldb
= ldb_module_get_ctx(module
);
162 struct auth_session_info
*session_info
163 = ldb_get_opaque(ldb
, "sessionInfo");
164 const struct dom_sid
*domain_sid
= samdb_domain_sid(ldb
);
166 struct dom_sid
*default_owner
;
167 struct dom_sid
*default_group
;
170 user_descriptor
= talloc(mem_ctx
, struct security_descriptor
);
173 ndr_err
= ndr_pull_struct_blob(object
, user_descriptor
, NULL
,
175 (ndr_pull_flags_fn_t
)ndr_pull_security_descriptor
);
177 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)){
178 talloc_free(user_descriptor
);
183 user_descriptor
= get_sd_unpacked(module
, mem_ctx
, objectclass
);
186 parent_descriptor
= talloc(mem_ctx
, struct security_descriptor
);
187 if(!parent_descriptor
)
189 ndr_err
= ndr_pull_struct_blob(parent
, parent_descriptor
, NULL
,
191 (ndr_pull_flags_fn_t
)ndr_pull_security_descriptor
);
193 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)){
194 talloc_free(parent_descriptor
);
198 default_owner
= get_default_ag(mem_ctx
, dn
,
199 session_info
->security_token
, ldb
);
200 default_group
= get_default_group(mem_ctx
, ldb
, default_owner
);
201 new_sd
= create_security_descriptor(mem_ctx
, parent_descriptor
, user_descriptor
, true,
202 NULL
, SEC_DACL_AUTO_INHERIT
|SEC_SACL_AUTO_INHERIT
,
203 session_info
->security_token
,
204 default_owner
, default_group
,
205 map_generic_rights_ds
);
210 sddl_sd
= sddl_encode(mem_ctx
, new_sd
, domain_sid
);
211 DEBUG(10, ("Object %s created with desriptor %s", ldb_dn_get_linearized(dn
), sddl_sd
));
213 linear_sd
= talloc(mem_ctx
, DATA_BLOB
);
218 ndr_err
= ndr_push_struct_blob(linear_sd
, mem_ctx
,
219 lp_iconv_convenience(ldb_get_opaque(ldb
, "loadparm")),
221 (ndr_push_flags_fn_t
)ndr_push_security_descriptor
);
222 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
229 static struct descriptor_context
*descriptor_init_context(struct ldb_module
*module
,
230 struct ldb_request
*req
)
232 struct ldb_context
*ldb
;
233 struct descriptor_context
*ac
;
235 ldb
= ldb_module_get_ctx(module
);
237 ac
= talloc_zero(req
, struct descriptor_context
);
239 ldb_set_errstring(ldb
, "Out of Memory");
248 static int get_search_callback(struct ldb_request
*req
, struct ldb_reply
*ares
)
250 struct ldb_context
*ldb
;
251 struct descriptor_context
*ac
;
254 ac
= talloc_get_type(req
->context
, struct descriptor_context
);
255 ldb
= ldb_module_get_ctx(ac
->module
);
258 return ldb_module_done(ac
->req
, NULL
, NULL
,
259 LDB_ERR_OPERATIONS_ERROR
);
261 if (ares
->error
!= LDB_SUCCESS
&&
262 ares
->error
!= LDB_ERR_NO_SUCH_OBJECT
) {
263 return ldb_module_done(ac
->req
, ares
->controls
,
264 ares
->response
, ares
->error
);
267 switch (ares
->type
) {
268 case LDB_REPLY_ENTRY
:
269 if (ac
->search_res
!= NULL
) {
270 ldb_set_errstring(ldb
, "Too many results");
272 return ldb_module_done(ac
->req
, NULL
, NULL
,
273 LDB_ERR_OPERATIONS_ERROR
);
276 ac
->search_res
= talloc_steal(ac
, ares
);
279 case LDB_REPLY_REFERRAL
:
286 ret
= ac
->step_fn(ac
);
287 if (ret
!= LDB_SUCCESS
) {
288 return ldb_module_done(ac
->req
, NULL
, NULL
, ret
);
295 static int descriptor_op_callback(struct ldb_request
*req
, struct ldb_reply
*ares
)
297 struct descriptor_context
*ac
;
299 ac
= talloc_get_type(req
->context
, struct descriptor_context
);
302 return ldb_module_done(ac
->req
, NULL
, NULL
,
303 LDB_ERR_OPERATIONS_ERROR
);
305 if (ares
->error
!= LDB_SUCCESS
) {
306 return ldb_module_done(ac
->req
, ares
->controls
,
307 ares
->response
, ares
->error
);
310 if (ares
->type
!= LDB_REPLY_DONE
) {
312 return ldb_module_done(ac
->req
, NULL
, NULL
,
313 LDB_ERR_OPERATIONS_ERROR
);
316 return ldb_module_done(ac
->req
, ares
->controls
,
317 ares
->response
, ares
->error
);
320 static int descriptor_do_add(struct descriptor_context
*ac
)
322 struct ldb_context
*ldb
;
323 const struct dsdb_schema
*schema
;
324 struct ldb_request
*add_req
;
325 struct ldb_message_element
*objectclass_element
, *sd_element
= NULL
;
326 struct ldb_message
*msg
;
329 struct ldb_val
*sd_val
= NULL
;
330 const struct ldb_val
*parentsd_val
= NULL
;
332 const struct dsdb_class
*objectclass
;
334 ldb
= ldb_module_get_ctx(ac
->module
);
335 schema
= dsdb_get_schema(ldb
);
337 mem_ctx
= talloc_new(ac
);
338 if (mem_ctx
== NULL
) {
339 return LDB_ERR_OPERATIONS_ERROR
;
342 msg
= ldb_msg_copy_shallow(ac
, ac
->req
->op
.add
.message
);
344 /* get the security descriptor values*/
345 sd_element
= ldb_msg_find_element(msg
, "nTSecurityDescriptor");
346 objectclass_element
= ldb_msg_find_element(msg
, "objectClass");
347 objectclass
= get_last_structural_class(schema
, objectclass_element
);
350 return LDB_ERR_OPERATIONS_ERROR
;
353 sd_val
= &sd_element
->values
[0];
354 /* NC's have no parent */
355 if ((ldb_dn_compare(msg
->dn
, (ldb_get_schema_basedn(ldb
))) == 0) ||
356 (ldb_dn_compare(msg
->dn
, (ldb_get_config_basedn(ldb
))) == 0) ||
357 (ldb_dn_compare(msg
->dn
, (ldb_get_root_basedn(ldb
))) == 0))
359 else if (ac
->search_res
!= NULL
)
360 parentsd_val
= ldb_msg_find_ldb_val(ac
->search_res
->message
, "nTSecurityDescriptor");
363 /* get the parent descriptor and the one provided. If not provided, get the default.*/
364 /* convert to security descriptor and calculate */
365 sd
= get_new_descriptor(ac
->module
, msg
->dn
, mem_ctx
, objectclass
,
366 parentsd_val
, sd_val
);
368 ldb_msg_add_steal_value(msg
, "nTSecurityDescriptor", sd
);
371 talloc_free(mem_ctx
);
372 ret
= ldb_msg_sanity_check(ldb
, msg
);
374 if (ret
!= LDB_SUCCESS
) {
378 ret
= ldb_build_add_req(&add_req
, ldb
, ac
,
381 ac
, descriptor_op_callback
,
383 if (ret
!= LDB_SUCCESS
) {
387 /* perform the add */
388 return ldb_next_request(ac
->module
, add_req
);
391 static int descriptor_add(struct ldb_module
*module
, struct ldb_request
*req
)
393 struct ldb_context
*ldb
;
394 struct ldb_request
*search_req
;
395 struct descriptor_context
*ac
;
396 struct ldb_dn
*parent_dn
;
398 static const char * const descr_attrs
[] = { "nTSecurityDescriptor", NULL
};
400 ldb
= ldb_module_get_ctx(module
);
402 ldb_debug(ldb
, LDB_DEBUG_TRACE
, "descriptor_add\n");
404 if (ldb_dn_is_special(req
->op
.add
.message
->dn
)) {
405 return ldb_next_request(module
, req
);
408 ac
= descriptor_init_context(module
, req
);
410 return LDB_ERR_OPERATIONS_ERROR
;
413 /* If there isn't a parent, just go on to the add processing */
414 if (ldb_dn_get_comp_num(ac
->req
->op
.add
.message
->dn
) == 1) {
415 return descriptor_do_add(ac
);
418 /* get copy of parent DN */
419 parent_dn
= ldb_dn_get_parent(ac
, ac
->req
->op
.add
.message
->dn
);
420 if (parent_dn
== NULL
) {
422 return LDB_ERR_OPERATIONS_ERROR
;
425 ret
= ldb_build_search_req(&search_req
, ldb
,
426 ac
, parent_dn
, LDB_SCOPE_BASE
,
427 "(objectClass=*)", descr_attrs
,
429 ac
, get_search_callback
,
431 if (ret
!= LDB_SUCCESS
) {
434 talloc_steal(search_req
, parent_dn
);
436 ac
->step_fn
= descriptor_do_add
;
438 return ldb_next_request(ac
->module
, search_req
);
441 static int descriptor_modify(struct ldb_module
*module
, struct ldb_request
*req
)
443 struct ldb_context
*ldb
= ldb_module_get_ctx(module
);
444 ldb_debug(ldb
, LDB_DEBUG_TRACE
, "descriptor_modify\n");
445 return ldb_next_request(module
, req
);
448 static int descriptor_rename(struct ldb_module
*module
, struct ldb_request
*req
)
450 struct ldb_context
*ldb
= ldb_module_get_ctx(module
);
451 ldb_debug(ldb
, LDB_DEBUG_TRACE
, "descriptor_rename\n");
452 return ldb_next_request(module
, req
);
455 _PUBLIC_
const struct ldb_module_ops ldb_descriptor_module_ops
= {
456 .name
= "descriptor",
457 .add
= descriptor_add
,
458 .modify
= descriptor_modify
,
459 .rename
= descriptor_rename
,