2 Unix SMB/CIFS implementation.
4 PAC Glue between Samba and the KDC
6 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2005-2009
7 Copyright (C) Simo Sorce <idra@samba.org> 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.
20 You should have received a copy of the GNU General Public License
21 along with this program. If not, see <http://www.gnu.org/licenses/>.
25 #include "../libds/common/flags.h"
27 #include "auth/auth.h"
28 #include "auth/auth_sam_reply.h"
29 #include "kdc/kdc-glue.h"
30 #include "kdc/pac-glue.h"
31 #include "param/param.h"
32 #include "librpc/gen_ndr/ndr_krb5pac.h"
33 #include "libcli/security/security.h"
34 #include "dsdb/samdb/samdb.h"
37 NTSTATUS
samba_get_logon_info_pac_blob(TALLOC_CTX
*mem_ctx
,
38 struct auth_user_info_dc
*info
,
41 struct netr_SamInfo3
*info3
;
42 union PAC_INFO pac_info
;
43 enum ndr_err_code ndr_err
;
46 ZERO_STRUCT(pac_info
);
48 nt_status
= auth_convert_user_info_dc_saminfo3(mem_ctx
, info
, &info3
);
49 if (!NT_STATUS_IS_OK(nt_status
)) {
50 DEBUG(1, ("Getting Samba info failed: %s\n",
51 nt_errstr(nt_status
)));
55 pac_info
.logon_info
.info
= talloc_zero(mem_ctx
, struct PAC_LOGON_INFO
);
56 if (!pac_info
.logon_info
.info
) {
57 return NT_STATUS_NO_MEMORY
;
60 pac_info
.logon_info
.info
->info3
= *info3
;
62 ndr_err
= ndr_push_union_blob(pac_data
, mem_ctx
, &pac_info
,
64 (ndr_push_flags_fn_t
)ndr_push_PAC_INFO
);
65 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
66 nt_status
= ndr_map_error2ntstatus(ndr_err
);
67 DEBUG(1, ("PAC (presig) push failed: %s\n",
68 nt_errstr(nt_status
)));
75 krb5_error_code
samba_make_krb5_pac(krb5_context context
,
77 DATA_BLOB
*deleg_blob
,
84 /* The user account may be set not to want the PAC */
89 ret
= krb5_data_copy(&pac_data
, pac_blob
->data
, pac_blob
->length
);
94 ZERO_STRUCT(deleg_data
);
96 ret
= krb5_data_copy(&deleg_data
,
100 krb5_data_free(&pac_data
);
105 ret
= krb5_pac_init(context
, pac
);
107 krb5_data_free(&pac_data
);
108 krb5_data_free(&deleg_data
);
112 ret
= krb5_pac_add_buffer(context
, *pac
, PAC_TYPE_LOGON_INFO
, &pac_data
);
113 krb5_data_free(&pac_data
);
115 krb5_data_free(&deleg_data
);
120 ret
= krb5_pac_add_buffer(context
, *pac
,
121 PAC_TYPE_CONSTRAINED_DELEGATION
,
123 krb5_data_free(&deleg_data
);
132 bool samba_princ_needs_pac(struct hdb_entry_ex
*princ
)
135 struct samba_kdc_entry
*p
= talloc_get_type(princ
->ctx
, struct samba_kdc_entry
);
136 uint32_t userAccountControl
;
139 /* The service account may be set not to want the PAC */
140 userAccountControl
= ldb_msg_find_attr_as_uint(p
->msg
, "userAccountControl", 0);
141 if (userAccountControl
& UF_NO_AUTH_DATA_REQUIRED
) {
148 /* Was the krbtgt in this DB (ie, should we check the incoming signature) and was it an RODC */
149 int samba_krbtgt_is_in_db(struct hdb_entry_ex
*princ
, bool *is_in_db
, bool *is_untrusted
)
152 struct samba_kdc_entry
*p
= talloc_get_type(princ
->ctx
, struct samba_kdc_entry
);
153 int rodc_krbtgt_number
, trust_direction
;
156 TALLOC_CTX
*mem_ctx
= talloc_new(NULL
);
161 trust_direction
= ldb_msg_find_attr_as_int(p
->msg
, "trustDirection", 0);
163 if (trust_direction
!= 0) {
164 /* Domain trust - we cannot check the sig, but we trust it for a correct PAC
166 This is exactly where we should flag for SID
167 validation when we do inter-foreest trusts
169 talloc_free(mem_ctx
);
170 *is_untrusted
= false;
175 /* The lack of password controls etc applies to krbtgt by
176 * virtue of being that particular RID */
177 status
= dom_sid_split_rid(NULL
, samdb_result_dom_sid(mem_ctx
, p
->msg
, "objectSid"), NULL
, &rid
);
179 if (!NT_STATUS_IS_OK(status
)) {
180 talloc_free(mem_ctx
);
184 rodc_krbtgt_number
= ldb_msg_find_attr_as_int(p
->msg
, "msDS-SecondaryKrbTgtNumber", -1);
186 if (p
->kdc_db_ctx
->my_krbtgt_number
== 0) {
187 if (rid
== DOMAIN_RID_KRBTGT
) {
188 *is_untrusted
= false;
190 talloc_free(mem_ctx
);
192 } else if (rodc_krbtgt_number
!= -1) {
194 *is_untrusted
= true;
195 talloc_free(mem_ctx
);
198 } else if ((rid
!= DOMAIN_RID_KRBTGT
) && (rodc_krbtgt_number
== p
->kdc_db_ctx
->my_krbtgt_number
)) {
199 talloc_free(mem_ctx
);
200 *is_untrusted
= false;
203 } else if (rid
== DOMAIN_RID_KRBTGT
) {
204 /* krbtgt viewed from an RODC */
205 talloc_free(mem_ctx
);
206 *is_untrusted
= false;
212 talloc_free(mem_ctx
);
213 *is_untrusted
= true;
218 NTSTATUS
samba_kdc_get_pac_blob(TALLOC_CTX
*mem_ctx
,
219 struct hdb_entry_ex
*client
,
220 DATA_BLOB
**_pac_blob
)
222 struct samba_kdc_entry
*p
= talloc_get_type(client
->ctx
, struct samba_kdc_entry
);
223 struct auth_user_info_dc
*user_info_dc
;
227 /* The user account may be set not to want the PAC */
228 if ( ! samba_princ_needs_pac(client
)) {
233 pac_blob
= talloc_zero(mem_ctx
, DATA_BLOB
);
235 return NT_STATUS_NO_MEMORY
;
238 nt_status
= authsam_make_user_info_dc(mem_ctx
, p
->kdc_db_ctx
->samdb
,
239 lpcfg_netbios_name(p
->kdc_db_ctx
->lp_ctx
),
240 lpcfg_sam_name(p
->kdc_db_ctx
->lp_ctx
),
246 if (!NT_STATUS_IS_OK(nt_status
)) {
247 DEBUG(0, ("Getting user info for PAC failed: %s\n",
248 nt_errstr(nt_status
)));
252 nt_status
= samba_get_logon_info_pac_blob(mem_ctx
, user_info_dc
, pac_blob
);
253 if (!NT_STATUS_IS_OK(nt_status
)) {
254 DEBUG(0, ("Building PAC failed: %s\n",
255 nt_errstr(nt_status
)));
259 *_pac_blob
= pac_blob
;
263 NTSTATUS
samba_kdc_update_pac_blob(TALLOC_CTX
*mem_ctx
,
264 krb5_context context
,
265 const krb5_pac pac
, DATA_BLOB
*pac_blob
,
266 struct PAC_SIGNATURE_DATA
*pac_srv_sig
,
267 struct PAC_SIGNATURE_DATA
*pac_kdc_sig
)
269 struct auth_user_info_dc
*user_info_dc
;
273 ret
= kerberos_pac_to_user_info_dc(mem_ctx
, pac
,
274 context
, &user_info_dc
, pac_srv_sig
, pac_kdc_sig
);
276 return NT_STATUS_UNSUCCESSFUL
;
279 nt_status
= samba_get_logon_info_pac_blob(mem_ctx
,
280 user_info_dc
, pac_blob
);
285 NTSTATUS
samba_kdc_update_delegation_info_blob(TALLOC_CTX
*mem_ctx
,
286 krb5_context context
,
288 const krb5_principal server_principal
,
289 const krb5_principal proxy_principal
,
296 enum ndr_err_code ndr_err
;
298 struct PAC_CONSTRAINED_DELEGATION _d
;
299 struct PAC_CONSTRAINED_DELEGATION
*d
= NULL
;
303 TALLOC_CTX
*tmp_ctx
= talloc_new(mem_ctx
);
305 if (tmp_ctx
== NULL
) {
306 return NT_STATUS_NO_MEMORY
;
309 ret
= krb5_pac_get_buffer(context
, pac
, PAC_TYPE_CONSTRAINED_DELEGATION
, &old_data
);
311 ZERO_STRUCT(old_data
);
313 talloc_free(tmp_ctx
);
314 return NT_STATUS_UNSUCCESSFUL
;
317 old_blob
.length
= old_data
.length
;
318 old_blob
.data
= (uint8_t *)old_data
.data
;
321 if (old_blob
.length
> 0) {
322 ndr_err
= ndr_pull_union_blob(&old_blob
, mem_ctx
,
323 &info
, PAC_TYPE_CONSTRAINED_DELEGATION
,
324 (ndr_pull_flags_fn_t
)ndr_pull_PAC_INFO
);
325 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
326 krb5_data_free(&old_data
);
327 nt_status
= ndr_map_error2ntstatus(ndr_err
);
328 DEBUG(0,("can't parse the PAC LOGON_INFO: %s\n", nt_errstr(nt_status
)));
329 talloc_free(tmp_ctx
);
334 info
.constrained_delegation
.info
= &_d
;
336 krb5_data_free(&old_data
);
338 ret
= krb5_unparse_name(context
, server_principal
, &server
);
340 talloc_free(tmp_ctx
);
341 return NT_STATUS_INTERNAL_ERROR
;
344 ret
= krb5_unparse_name_flags(context
, proxy_principal
,
345 KRB5_PRINCIPAL_UNPARSE_NO_REALM
, &proxy
);
348 talloc_free(tmp_ctx
);
349 return NT_STATUS_INTERNAL_ERROR
;
352 d
= info
.constrained_delegation
.info
;
353 i
= d
->num_transited_services
;
354 d
->proxy_target
.string
= server
;
355 d
->transited_services
= talloc_realloc(mem_ctx
, d
->transited_services
,
356 struct lsa_String
, i
+ 1);
357 d
->transited_services
[i
].string
= proxy
;
358 d
->num_transited_services
= i
+ 1;
360 ndr_err
= ndr_push_union_blob(new_blob
, mem_ctx
,
361 &info
, PAC_TYPE_CONSTRAINED_DELEGATION
,
362 (ndr_push_flags_fn_t
)ndr_push_PAC_INFO
);
365 if (!NDR_ERR_CODE_IS_SUCCESS(ndr_err
)) {
366 krb5_data_free(&old_data
);
367 nt_status
= ndr_map_error2ntstatus(ndr_err
);
368 DEBUG(0,("can't parse the PAC LOGON_INFO: %s\n", nt_errstr(nt_status
)));
369 talloc_free(tmp_ctx
);
373 talloc_free(tmp_ctx
);
377 /* this function allocates 'data' using malloc.
378 * The caller is responsible for freeing it */
379 void samba_kdc_build_edata_reply(NTSTATUS nt_status
, DATA_BLOB
*e_data
)
384 krb5_error_code ret
= 0;
389 pa
.padata_type
= KRB5_PADATA_PW_SALT
;
390 pa
.padata_value
.length
= 12;
391 pa
.padata_value
.data
= malloc(pa
.padata_value
.length
);
392 if (!pa
.padata_value
.data
) {
398 SIVAL(pa
.padata_value
.data
, 0, NT_STATUS_V(nt_status
));
399 SIVAL(pa
.padata_value
.data
, 4, 0);
400 SIVAL(pa
.padata_value
.data
, 8, 1);
402 ASN1_MALLOC_ENCODE(PA_DATA
, buf
, len
, &pa
, &len
, ret
);
403 free(pa
.padata_value
.data
);
406 e_data
->length
= len
;
411 /* function to map policy errors */
412 krb5_error_code
samba_kdc_map_policy_err(NTSTATUS nt_status
)
416 if (NT_STATUS_EQUAL(nt_status
, NT_STATUS_PASSWORD_MUST_CHANGE
))
417 ret
= KRB5KDC_ERR_KEY_EXPIRED
;
418 else if (NT_STATUS_EQUAL(nt_status
, NT_STATUS_PASSWORD_EXPIRED
))
419 ret
= KRB5KDC_ERR_KEY_EXPIRED
;
420 else if (NT_STATUS_EQUAL(nt_status
, NT_STATUS_ACCOUNT_EXPIRED
))
421 ret
= KRB5KDC_ERR_CLIENT_REVOKED
;
422 else if (NT_STATUS_EQUAL(nt_status
, NT_STATUS_ACCOUNT_DISABLED
))
423 ret
= KRB5KDC_ERR_CLIENT_REVOKED
;
424 else if (NT_STATUS_EQUAL(nt_status
, NT_STATUS_INVALID_LOGON_HOURS
))
425 ret
= KRB5KDC_ERR_CLIENT_REVOKED
;
426 else if (NT_STATUS_EQUAL(nt_status
, NT_STATUS_ACCOUNT_LOCKED_OUT
))
427 ret
= KRB5KDC_ERR_CLIENT_REVOKED
;
428 else if (NT_STATUS_EQUAL(nt_status
, NT_STATUS_INVALID_WORKSTATION
))
429 ret
= KRB5KDC_ERR_POLICY
;
431 ret
= KRB5KDC_ERR_POLICY
;
436 /* Given a kdc entry, consult the account_ok routine in auth/auth_sam.c
438 NTSTATUS
samba_kdc_check_client_access(struct samba_kdc_entry
*kdc_entry
,
439 const char *client_name
,
440 const char *workstation
,
441 bool password_change
)
446 tmp_ctx
= talloc_named(NULL
, 0, "samba_kdc_check_client_access");
448 return NT_STATUS_NO_MEMORY
;
451 /* we allow all kinds of trusts here */
452 nt_status
= authsam_account_ok(tmp_ctx
,
453 kdc_entry
->kdc_db_ctx
->samdb
,
454 MSV1_0_ALLOW_SERVER_TRUST_ACCOUNT
|
455 MSV1_0_ALLOW_WORKSTATION_TRUST_ACCOUNT
,
456 kdc_entry
->realm_dn
, kdc_entry
->msg
,
457 workstation
, client_name
,
458 true, password_change
);
460 talloc_free(tmp_ctx
);
464 int kdc_check_pac(krb5_context context
,
466 struct PAC_SIGNATURE_DATA
*kdc_sig
,
471 krb5_keyblock keyblock
;
473 if (kdc_sig
->type
== CKSUMTYPE_HMAC_MD5
) {
474 etype
= ETYPE_ARCFOUR_HMAC_MD5
;
476 ret
= krb5_cksumtype_to_enctype(context
,
484 ret
= hdb_enctype2key(context
, &ent
->entry
, etype
, &key
);
492 return check_pac_checksum(srv_sig
, kdc_sig
,