2 Unix SMB/CIFS implementation.
4 useful utilities for the DRS server
6 Copyright (C) Andrew Tridgell 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/>.
23 #include "rpc_server/dcerpc_server.h"
24 #include "dsdb/samdb/samdb.h"
25 #include "libcli/security/security.h"
26 #include "libcli/security/session.h"
27 #include "param/param.h"
28 #include "auth/session.h"
29 #include "rpc_server/drsuapi/dcesrv_drsuapi.h"
32 #define DBGC_CLASS DBGC_DRS_REPL
34 int drsuapi_search_with_extended_dn(struct ldb_context
*ldb
,
36 struct ldb_result
**_res
,
37 struct ldb_dn
*basedn
,
39 const char * const *attrs
,
43 struct ldb_request
*req
;
45 struct ldb_result
*res
;
47 tmp_ctx
= talloc_new(mem_ctx
);
49 res
= talloc_zero(tmp_ctx
, struct ldb_result
);
51 return LDB_ERR_OPERATIONS_ERROR
;
54 ret
= ldb_build_search_req(&req
, ldb
, tmp_ctx
,
61 ldb_search_default_callback
,
63 if (ret
!= LDB_SUCCESS
) {
68 ret
= ldb_request_add_control(req
, LDB_CONTROL_EXTENDED_DN_OID
, true, NULL
);
69 if (ret
!= LDB_SUCCESS
) {
73 ret
= ldb_request_add_control(req
, LDB_CONTROL_SHOW_RECYCLED_OID
, true, NULL
);
74 if (ret
!= LDB_SUCCESS
) {
78 ret
= ldb_request_add_control(req
, LDB_CONTROL_REVEAL_INTERNALS
, false, NULL
);
79 if (ret
!= LDB_SUCCESS
) {
83 ret
= ldb_request(ldb
, req
);
84 if (ret
== LDB_SUCCESS
) {
85 ret
= ldb_wait(req
->handle
, LDB_WAIT_ALL
);
89 *_res
= talloc_steal(mem_ctx
, res
);
93 WERROR
drs_security_level_check(struct dcesrv_call_state
*dce_call
,
95 enum security_user_level minimum_level
,
96 const struct dom_sid
*domain_sid
)
98 struct auth_session_info
*session_info
=
99 dcesrv_call_session_info(dce_call
);
100 enum security_user_level level
;
102 if (lpcfg_parm_bool(dce_call
->conn
->dce_ctx
->lp_ctx
, NULL
,
103 "drs", "disable_sec_check", false)) {
107 level
= security_session_user_level(session_info
, domain_sid
);
108 if (level
< minimum_level
) {
110 DEBUG(0,("%s refused for security token (level=%u)\n",
111 call
, (unsigned)level
));
112 security_token_debug(DBGC_DRS_REPL
, 2, session_info
->security_token
);
114 return WERR_DS_DRA_ACCESS_DENIED
;
120 void drsuapi_process_secret_attribute(struct drsuapi_DsReplicaAttribute
*attr
,
121 struct drsuapi_DsReplicaMetaData
*meta_data
)
123 if (attr
->value_ctr
.num_values
== 0) {
127 switch (attr
->attid
) {
128 case DRSUAPI_ATTID_dBCSPwd
:
129 case DRSUAPI_ATTID_unicodePwd
:
130 case DRSUAPI_ATTID_ntPwdHistory
:
131 case DRSUAPI_ATTID_lmPwdHistory
:
132 case DRSUAPI_ATTID_supplementalCredentials
:
133 case DRSUAPI_ATTID_priorValue
:
134 case DRSUAPI_ATTID_currentValue
:
135 case DRSUAPI_ATTID_trustAuthOutgoing
:
136 case DRSUAPI_ATTID_trustAuthIncoming
:
137 case DRSUAPI_ATTID_initialAuthOutgoing
:
138 case DRSUAPI_ATTID_initialAuthIncoming
:
139 /*set value to null*/
140 attr
->value_ctr
.num_values
= 0;
141 talloc_free(attr
->value_ctr
.values
);
142 attr
->value_ctr
.values
= NULL
;
143 meta_data
->originating_change_time
= 0;
152 check security on a DN, with logging of errors
154 static WERROR
drs_security_access_check_log(struct ldb_context
*sam_ctx
,
156 struct security_token
*token
,
158 const char *ext_right
)
162 DEBUG(3,("drs_security_access_check: Null dn provided, access is denied for %s\n",
164 return WERR_DS_DRA_ACCESS_DENIED
;
166 ret
= dsdb_check_access_on_dn(sam_ctx
,
170 SEC_ADS_CONTROL_ACCESS
,
172 if (ret
== LDB_ERR_INSUFFICIENT_ACCESS_RIGHTS
) {
173 DEBUG(3,("%s refused for security token on %s\n",
174 ext_right
, ldb_dn_get_linearized(dn
)));
175 security_token_debug(DBGC_DRS_REPL
, 3, token
);
176 return WERR_DS_DRA_ACCESS_DENIED
;
177 } else if (ret
!= LDB_SUCCESS
) {
178 DEBUG(1,("Failed to perform access check on %s: %s\n", ldb_dn_get_linearized(dn
), ldb_strerror(ret
)));
179 return WERR_DS_DRA_INTERNAL_ERROR
;
186 check security on a object identifier
188 WERROR
drs_security_access_check(struct ldb_context
*sam_ctx
,
190 struct security_token
*token
,
191 struct drsuapi_DsReplicaObjectIdentifier
*nc
,
192 const char *ext_right
)
198 ret
= drs_ObjectIdentifier_to_dn_and_nc_root(mem_ctx
,
203 if (ret
!= LDB_SUCCESS
) {
204 return WERR_DS_DRA_BAD_DN
;
207 werr
= drs_security_access_check_log(sam_ctx
, mem_ctx
, token
, dn
, ext_right
);
213 check security on the NC root of a object identifier
215 WERROR
drs_security_access_check_nc_root(struct ldb_context
*sam_ctx
,
217 struct security_token
*token
,
218 struct drsuapi_DsReplicaObjectIdentifier
*nc
,
219 const char *ext_right
)
221 struct ldb_dn
*nc_root
;
225 ret
= drs_ObjectIdentifier_to_dn_and_nc_root(mem_ctx
,
230 if (ret
!= LDB_SUCCESS
) {
231 return WERR_DS_DRA_BAD_NC
;
234 werr
= drs_security_access_check_log(sam_ctx
, mem_ctx
, token
, nc_root
, ext_right
);
235 talloc_free(nc_root
);