2 Unix SMB/CIFS implementation.
4 implement the DsWriteAccountSpn call
6 Copyright (C) Stefan Metzmacher 2009
7 Copyright (C) Andrew Tridgell 2010
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "rpc_server/dcerpc_server.h"
25 #include "dsdb/samdb/samdb.h"
26 #include "dsdb/common/util.h"
27 #include "system/kerberos.h"
28 #include "auth/kerberos/kerberos.h"
29 #include "libcli/security/security.h"
30 #include "libcli/security/session.h"
31 #include "rpc_server/drsuapi/dcesrv_drsuapi.h"
32 #include "librpc/gen_ndr/ndr_drsuapi.h"
33 #include "auth/session.h"
36 #define DBGC_CLASS DBGC_DRS_REPL
41 check that the SPN update should be allowed as an override
44 This is only called if the client is not a domain controller or
47 static bool writespn_check_spn(struct drsuapi_bind_state
*b_state
,
48 struct dcesrv_call_state
*dce_call
,
53 * we only allow SPN updates if:
55 * 1) they are on the clients own account object
56 * 2) they are of the form SERVICE/dnshostname
58 struct auth_session_info
*session_info
=
59 dcesrv_call_session_info(dce_call
);
60 struct dom_sid
*user_sid
, *sid
;
61 TALLOC_CTX
*tmp_ctx
= talloc_new(dce_call
);
62 struct ldb_result
*res
;
63 const char *attrs
[] = { "objectSID", "dNSHostName", NULL
};
67 krb5_principal principal
;
69 const char *dns_name
, *dnsHostName
;
71 /* The service principal name shouldn't be NULL */
78 get the objectSid of the DN that is being modified, and
79 check it matches the user_sid in their token
82 ret
= dsdb_search_dn(b_state
->sam_ctx
, tmp_ctx
, &res
, dn
, attrs
,
83 DSDB_SEARCH_ONE_ONLY
);
84 if (ret
!= LDB_SUCCESS
) {
89 user_sid
= &session_info
->security_token
->sids
[PRIMARY_USER_SID_INDEX
];
90 sid
= samdb_result_dom_sid(tmp_ctx
, res
->msgs
[0], "objectSid");
96 dnsHostName
= ldb_msg_find_attr_as_string(res
->msgs
[0], "dNSHostName",
98 if (dnsHostName
== NULL
) {
103 if (!dom_sid_equal(sid
, user_sid
)) {
104 talloc_free(tmp_ctx
);
108 kerr
= smb_krb5_init_context_basic(tmp_ctx
,
109 dce_call
->conn
->dce_ctx
->lp_ctx
,
112 talloc_free(tmp_ctx
);
116 kerr
= krb5_parse_name_flags(krb_ctx
, spn
, KRB5_PRINCIPAL_PARSE_NO_REALM
,
119 krb5_free_context(krb_ctx
);
120 talloc_free(tmp_ctx
);
124 if (krb5_princ_size(krb_ctx
, principal
) != 2) {
125 krb5_free_principal(krb_ctx
, principal
);
126 krb5_free_context(krb_ctx
);
127 talloc_free(tmp_ctx
);
131 kerr
= smb_krb5_princ_component(krb_ctx
, principal
, 1, &component
);
133 krb5_free_principal(krb_ctx
, principal
);
134 krb5_free_context(krb_ctx
);
135 talloc_free(tmp_ctx
);
138 dns_name
= (const char *)component
.data
;
140 if (strcasecmp(dns_name
, dnsHostName
) != 0) {
141 krb5_free_principal(krb_ctx
, principal
);
142 krb5_free_context(krb_ctx
);
143 talloc_free(tmp_ctx
);
147 /* its a simple update on their own account - allow it with
148 * permissions override */
149 krb5_free_principal(krb_ctx
, principal
);
150 krb5_free_context(krb_ctx
);
151 talloc_free(tmp_ctx
);
157 drsuapi_DsWriteAccountSpn
159 WERROR
dcesrv_drsuapi_DsWriteAccountSpn(struct dcesrv_call_state
*dce_call
, TALLOC_CTX
*mem_ctx
,
160 struct drsuapi_DsWriteAccountSpn
*r
)
162 struct drsuapi_bind_state
*b_state
;
163 struct dcesrv_handle
*h
;
165 *r
->out
.level_out
= r
->in
.level
;
167 DCESRV_PULL_HANDLE_WERR(h
, r
->in
.bind_handle
, DRSUAPI_BIND_HANDLE
);
170 r
->out
.res
= talloc(mem_ctx
, union drsuapi_DsWriteAccountSpnResult
);
171 W_ERROR_HAVE_NO_MEMORY(r
->out
.res
);
173 switch (r
->in
.level
) {
175 struct drsuapi_DsWriteAccountSpnRequest1
*req
;
176 struct ldb_message
*msg
;
180 unsigned spn_count
=0;
181 bool passed_checks
= true;
182 struct ldb_context
*sam_ctx
;
184 req
= &r
->in
.req
->req1
;
187 msg
= ldb_msg_new(mem_ctx
);
189 return WERR_NOT_ENOUGH_MEMORY
;
192 msg
->dn
= ldb_dn_new(msg
, b_state
->sam_ctx
,
194 if ( ! ldb_dn_validate(msg
->dn
)) {
195 r
->out
.res
->res1
.status
= WERR_OK
;
200 for (i
= 0; i
< count
; i
++) {
201 if (!writespn_check_spn(b_state
,
204 req
->spn_names
[i
].str
)) {
205 passed_checks
= false;
207 ret
= ldb_msg_add_string(msg
,
208 "servicePrincipalName",
209 req
->spn_names
[i
].str
);
210 if (ret
!= LDB_SUCCESS
) {
211 return WERR_NOT_ENOUGH_MEMORY
;
216 if (msg
->num_elements
== 0) {
217 DEBUG(2,("No SPNs need changing on %s\n",
218 ldb_dn_get_linearized(msg
->dn
)));
219 r
->out
.res
->res1
.status
= WERR_OK
;
223 for (i
=0;i
<msg
->num_elements
;i
++) {
224 switch (req
->operation
) {
225 case DRSUAPI_DS_SPN_OPERATION_ADD
:
226 msg
->elements
[i
].flags
= LDB_FLAG_MOD_ADD
;
228 case DRSUAPI_DS_SPN_OPERATION_REPLACE
:
229 msg
->elements
[i
].flags
= LDB_FLAG_MOD_REPLACE
;
231 case DRSUAPI_DS_SPN_OPERATION_DELETE
:
232 msg
->elements
[i
].flags
= LDB_FLAG_MOD_DELETE
;
237 if (passed_checks
&& b_state
->sam_ctx_system
) {
238 sam_ctx
= b_state
->sam_ctx_system
;
240 sam_ctx
= b_state
->sam_ctx
;
243 /* Apply to database */
244 ret
= dsdb_modify(sam_ctx
, msg
, DSDB_MODIFY_PERMISSIVE
);
245 if (ret
!= LDB_SUCCESS
) {
246 DEBUG(0,("Failed to modify SPNs on %s: %s\n",
247 ldb_dn_get_linearized(msg
->dn
),
248 ldb_errstring(b_state
->sam_ctx
)));
250 drsuapi_DsWriteAccountSpn
, r
);
251 r
->out
.res
->res1
.status
= WERR_ACCESS_DENIED
;
253 DEBUG(2,("Modified %u SPNs on %s\n", spn_count
,
254 ldb_dn_get_linearized(msg
->dn
)));
255 r
->out
.res
->res1
.status
= WERR_OK
;
262 return WERR_INVALID_LEVEL
;