s4-auth: Call krb5_get_init_creds_opt_set_canonicalize() in MIT case.
[Samba.git] / source4 / auth / kerberos / kerberos_util.c
blob2026af326d0754e40374314918bbdc26b8df6a85
1 /*
2 Unix SMB/CIFS implementation.
4 Kerberos utility functions for GENSEC
6 Copyright (C) Andrew Bartlett <abartlet@samba.org> 2004-2005
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.
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/>.
23 #include "includes.h"
24 #include "system/kerberos.h"
25 #include "auth/kerberos/kerberos.h"
26 #include "auth/credentials/credentials.h"
27 #include "auth/credentials/credentials_proto.h"
28 #include "auth/credentials/credentials_krb5.h"
29 #include "auth/kerberos/kerberos_credentials.h"
30 #include "auth/kerberos/kerberos_util.h"
32 struct principal_container {
33 struct smb_krb5_context *smb_krb5_context;
34 krb5_principal principal;
35 const char *string_form; /* Optional */
38 static krb5_error_code free_principal(struct principal_container *pc)
40 /* current heimdal - 0.6.3, which we need anyway, fixes segfaults here */
41 krb5_free_principal(pc->smb_krb5_context->krb5_context, pc->principal);
43 return 0;
47 static krb5_error_code parse_principal(TALLOC_CTX *parent_ctx,
48 const char *princ_string,
49 struct smb_krb5_context *smb_krb5_context,
50 krb5_principal *princ,
51 const char **error_string)
53 int ret;
54 struct principal_container *mem_ctx;
55 if (princ_string == NULL) {
56 *princ = NULL;
57 return 0;
60 ret = krb5_parse_name(smb_krb5_context->krb5_context,
61 princ_string, princ);
63 if (ret) {
64 (*error_string) = smb_get_krb5_error_message(
65 smb_krb5_context->krb5_context,
66 ret, parent_ctx);
67 return ret;
70 mem_ctx = talloc(parent_ctx, struct principal_container);
71 if (!mem_ctx) {
72 (*error_string) = error_message(ENOMEM);
73 return ENOMEM;
76 /* This song-and-dance effectivly puts the principal
77 * into talloc, so we can't loose it. */
78 mem_ctx->smb_krb5_context = talloc_reference(mem_ctx,
79 smb_krb5_context);
80 mem_ctx->principal = *princ;
81 talloc_set_destructor(mem_ctx, free_principal);
82 return 0;
85 /* Obtain the principal set on this context. Requires a
86 * smb_krb5_context because we are doing krb5 principal parsing with
87 * the library routines. The returned princ is placed in the talloc
88 * system by means of a destructor (do *not* free). */
90 krb5_error_code principal_from_credentials(TALLOC_CTX *parent_ctx,
91 struct cli_credentials *credentials,
92 struct smb_krb5_context *smb_krb5_context,
93 krb5_principal *princ,
94 enum credentials_obtained *obtained,
95 const char **error_string)
97 krb5_error_code ret;
98 const char *princ_string;
99 TALLOC_CTX *mem_ctx = talloc_new(parent_ctx);
100 *obtained = CRED_UNINITIALISED;
102 if (!mem_ctx) {
103 (*error_string) = error_message(ENOMEM);
104 return ENOMEM;
106 princ_string = cli_credentials_get_principal_and_obtained(credentials,
107 mem_ctx,
108 obtained);
109 if (!princ_string) {
110 *princ = NULL;
111 return 0;
114 ret = parse_principal(parent_ctx, princ_string,
115 smb_krb5_context, princ, error_string);
116 talloc_free(mem_ctx);
117 return ret;
120 /* Obtain the principal set on this context. Requires a
121 * smb_krb5_context because we are doing krb5 principal parsing with
122 * the library routines. The returned princ is placed in the talloc
123 * system by means of a destructor (do *not* free). */
125 static krb5_error_code impersonate_principal_from_credentials(
126 TALLOC_CTX *parent_ctx,
127 struct cli_credentials *credentials,
128 struct smb_krb5_context *smb_krb5_context,
129 krb5_principal *princ,
130 const char **error_string)
132 return parse_principal(parent_ctx,
133 cli_credentials_get_impersonate_principal(credentials),
134 smb_krb5_context, princ, error_string);
137 krb5_error_code smb_krb5_create_principals_array(TALLOC_CTX *mem_ctx,
138 krb5_context context,
139 const char *account_name,
140 const char *realm,
141 uint32_t num_spns,
142 const char *spns[],
143 uint32_t *pnum_principals,
144 krb5_principal **pprincipals,
145 const char **error_string)
147 krb5_error_code code;
148 TALLOC_CTX *tmp_ctx;
149 uint32_t num_principals = 0;
150 krb5_principal *principals;
151 uint32_t i;
153 tmp_ctx = talloc_new(mem_ctx);
154 if (tmp_ctx == NULL) {
155 *error_string = "Cannot allocate tmp_ctx";
156 return ENOMEM;
159 if (realm == NULL) {
160 *error_string = "Cannot create principal without a realm";
161 code = EINVAL;
162 goto done;
165 if (account_name == NULL && (num_spns == 0 || spns == NULL)) {
166 *error_string = "Cannot create principal without an account or SPN";
167 code = EINVAL;
168 goto done;
171 if (account_name != NULL && account_name[0] != '\0') {
172 num_principals++;
174 num_principals += num_spns;
176 principals = talloc_zero_array(tmp_ctx,
177 krb5_principal,
178 num_principals);
179 if (principals == NULL) {
180 *error_string = "Cannot allocate principals";
181 code = ENOMEM;
182 goto done;
185 for (i = 0; i < num_spns; i++) {
186 code = krb5_parse_name(context, spns[i], &(principals[i]));
187 if (code != 0) {
188 *error_string = smb_get_krb5_error_message(context,
189 code,
190 mem_ctx);
191 goto done;
195 if (account_name != NULL && account_name[0] != '\0') {
196 code = smb_krb5_make_principal(context,
197 &(principals[i]),
198 realm,
199 account_name,
200 NULL);
201 if (code != 0) {
202 *error_string = smb_get_krb5_error_message(context,
203 code,
204 mem_ctx);
205 goto done;
209 if (pnum_principals != NULL) {
210 *pnum_principals = num_principals;
212 if (pprincipals != NULL) {
213 *pprincipals = talloc_steal(mem_ctx, principals);
217 code = 0;
218 done:
219 talloc_free(tmp_ctx);
220 return code;
224 * Return a freshly allocated ccache (destroyed by destructor on child
225 * of parent_ctx), for a given set of client credentials
228 krb5_error_code kinit_to_ccache(TALLOC_CTX *parent_ctx,
229 struct cli_credentials *credentials,
230 struct smb_krb5_context *smb_krb5_context,
231 struct tevent_context *event_ctx,
232 krb5_ccache ccache,
233 enum credentials_obtained *obtained,
234 const char **error_string)
236 krb5_error_code ret;
237 const char *password;
238 const char *self_service;
239 const char *target_service;
240 time_t kdc_time = 0;
241 krb5_principal princ;
242 krb5_principal impersonate_principal;
243 int tries;
244 TALLOC_CTX *mem_ctx = talloc_new(parent_ctx);
245 krb5_get_init_creds_opt *krb_options;
247 if (!mem_ctx) {
248 (*error_string) = strerror(ENOMEM);
249 return ENOMEM;
252 ret = principal_from_credentials(mem_ctx, credentials, smb_krb5_context, &princ, obtained, error_string);
253 if (ret) {
254 talloc_free(mem_ctx);
255 return ret;
258 if (princ == NULL) {
259 (*error_string) = talloc_asprintf(credentials, "principal, username or realm was not specified in the credentials");
260 talloc_free(mem_ctx);
261 return KRB5KDC_ERR_C_PRINCIPAL_UNKNOWN;
264 ret = impersonate_principal_from_credentials(mem_ctx, credentials, smb_krb5_context, &impersonate_principal, error_string);
265 if (ret) {
266 talloc_free(mem_ctx);
267 return ret;
270 self_service = cli_credentials_get_self_service(credentials);
271 target_service = cli_credentials_get_target_service(credentials);
273 password = cli_credentials_get_password(credentials);
275 /* setup the krb5 options we want */
276 if ((ret = krb5_get_init_creds_opt_alloc(smb_krb5_context->krb5_context, &krb_options))) {
277 (*error_string) = talloc_asprintf(credentials, "krb5_get_init_creds_opt_alloc failed (%s)\n",
278 smb_get_krb5_error_message(smb_krb5_context->krb5_context,
279 ret, mem_ctx));
280 talloc_free(mem_ctx);
281 return ret;
284 #ifdef SAMBA4_USES_HEIMDAL /* Disable for now MIT reads defaults when needed */
285 /* get the defaults */
286 krb5_get_init_creds_opt_set_default_flags(smb_krb5_context->krb5_context, NULL, NULL, krb_options);
287 #endif
288 /* set if we want a forwardable ticket */
289 switch (cli_credentials_get_krb_forwardable(credentials)) {
290 case CRED_AUTO_KRB_FORWARDABLE:
291 break;
292 case CRED_NO_KRB_FORWARDABLE:
293 krb5_get_init_creds_opt_set_forwardable(krb_options, FALSE);
294 break;
295 case CRED_FORCE_KRB_FORWARDABLE:
296 krb5_get_init_creds_opt_set_forwardable(krb_options, TRUE);
297 break;
300 #ifdef SAMBA4_USES_HEIMDAL /* FIXME: MIT does not have this yet */
302 * In order to work against windows KDCs even if we use
303 * the netbios domain name as realm, we need to add the following
304 * flags:
305 * KRB5_INIT_CREDS_NO_C_CANON_CHECK;
306 * KRB5_INIT_CREDS_NO_C_NO_EKU_CHECK;
308 * On MIT: Set pkinit_eku_checking to none
310 krb5_get_init_creds_opt_set_win2k(smb_krb5_context->krb5_context,
311 krb_options, true);
312 #else /* MIT */
313 krb5_get_init_creds_opt_set_canonicalize(krb_options, true);
314 #endif
316 tries = 2;
317 while (tries--) {
318 #ifdef SAMBA4_USES_HEIMDAL
319 struct tevent_context *previous_ev;
320 /* Do this every time, in case we have weird recursive issues here */
321 ret = smb_krb5_context_set_event_ctx(smb_krb5_context, event_ctx, &previous_ev);
322 if (ret) {
323 talloc_free(mem_ctx);
324 return ret;
326 #endif
327 if (password) {
328 if (impersonate_principal) {
329 #ifdef SAMBA4_USES_HEIMDAL
330 ret = kerberos_kinit_s4u2_cc(
331 smb_krb5_context->krb5_context,
332 ccache, princ, password,
333 impersonate_principal,
334 self_service, target_service,
335 krb_options, NULL, &kdc_time);
336 #else
337 talloc_free(mem_ctx);
338 (*error_string) = "INTERNAL error: s4u2 ops "
339 "are not supported with MIT build yet";
340 return EINVAL;
341 #endif
342 } else {
343 ret = kerberos_kinit_password_cc(
344 smb_krb5_context->krb5_context,
345 ccache, princ, password,
346 target_service,
347 krb_options, NULL, &kdc_time);
349 } else if (impersonate_principal) {
350 talloc_free(mem_ctx);
351 (*error_string) = "INTERNAL error: Cannot impersonate principal with just a keyblock. A password must be specified in the credentials";
352 return EINVAL;
353 } else {
354 /* No password available, try to use a keyblock instead */
356 krb5_keyblock keyblock;
357 const struct samr_Password *mach_pwd;
358 mach_pwd = cli_credentials_get_nt_hash(credentials, mem_ctx);
359 if (!mach_pwd) {
360 talloc_free(mem_ctx);
361 (*error_string) = "kinit_to_ccache: No password available for kinit\n";
362 krb5_get_init_creds_opt_free(smb_krb5_context->krb5_context, krb_options);
363 #ifdef SAMBA4_USES_HEIMDAL
364 smb_krb5_context_remove_event_ctx(smb_krb5_context, previous_ev, event_ctx);
365 #endif
366 return EINVAL;
368 ret = smb_krb5_keyblock_init_contents(smb_krb5_context->krb5_context,
369 ENCTYPE_ARCFOUR_HMAC,
370 mach_pwd->hash, sizeof(mach_pwd->hash),
371 &keyblock);
373 if (ret == 0) {
374 ret = kerberos_kinit_keyblock_cc(smb_krb5_context->krb5_context, ccache,
375 princ, &keyblock,
376 target_service, krb_options,
377 NULL, &kdc_time);
378 krb5_free_keyblock_contents(smb_krb5_context->krb5_context, &keyblock);
382 #ifdef SAMBA4_USES_HEIMDAL
383 smb_krb5_context_remove_event_ctx(smb_krb5_context, previous_ev, event_ctx);
384 #endif
386 if (ret == KRB5KRB_AP_ERR_SKEW || ret == KRB5_KDCREP_SKEW) {
387 /* Perhaps we have been given an invalid skew, so try again without it */
388 time_t t = time(NULL);
389 krb5_set_real_time(smb_krb5_context->krb5_context, t, 0);
390 } else {
391 /* not a skew problem */
392 break;
396 krb5_get_init_creds_opt_free(smb_krb5_context->krb5_context, krb_options);
398 if (ret == KRB5KRB_AP_ERR_SKEW || ret == KRB5_KDCREP_SKEW) {
399 (*error_string) = talloc_asprintf(credentials, "kinit for %s failed (%s)\n",
400 cli_credentials_get_principal(credentials, mem_ctx),
401 smb_get_krb5_error_message(smb_krb5_context->krb5_context,
402 ret, mem_ctx));
403 talloc_free(mem_ctx);
404 return ret;
407 /* cope with ticket being in the future due to clock skew */
408 if ((unsigned)kdc_time > time(NULL)) {
409 time_t t = time(NULL);
410 int time_offset =(unsigned)kdc_time-t;
411 DEBUG(4,("Advancing clock by %d seconds to cope with clock skew\n", time_offset));
412 krb5_set_real_time(smb_krb5_context->krb5_context, t + time_offset + 1, 0);
415 if (ret == KRB5KDC_ERR_PREAUTH_FAILED && cli_credentials_wrong_password(credentials)) {
416 ret = kinit_to_ccache(parent_ctx,
417 credentials,
418 smb_krb5_context,
419 event_ctx,
420 ccache, obtained,
421 error_string);
424 if (ret) {
425 (*error_string) = talloc_asprintf(credentials, "kinit for %s failed (%s)\n",
426 cli_credentials_get_principal(credentials, mem_ctx),
427 smb_get_krb5_error_message(smb_krb5_context->krb5_context,
428 ret, mem_ctx));
429 talloc_free(mem_ctx);
430 return ret;
433 DEBUG(10,("kinit for %s succeeded\n",
434 cli_credentials_get_principal(credentials, mem_ctx)));
437 talloc_free(mem_ctx);
438 return 0;
441 static krb5_error_code free_keytab_container(struct keytab_container *ktc)
443 return krb5_kt_close(ktc->smb_krb5_context->krb5_context, ktc->keytab);
446 krb5_error_code smb_krb5_get_keytab_container(TALLOC_CTX *mem_ctx,
447 struct smb_krb5_context *smb_krb5_context,
448 krb5_keytab opt_keytab,
449 const char *keytab_name,
450 struct keytab_container **ktc)
452 krb5_keytab keytab;
453 krb5_error_code ret;
455 if (opt_keytab) {
456 keytab = opt_keytab;
457 } else {
458 ret = krb5_kt_resolve(smb_krb5_context->krb5_context,
459 keytab_name, &keytab);
460 if (ret) {
461 DEBUG(1,("failed to open krb5 keytab: %s\n",
462 smb_get_krb5_error_message(
463 smb_krb5_context->krb5_context,
464 ret, mem_ctx)));
465 return ret;
469 *ktc = talloc(mem_ctx, struct keytab_container);
470 if (!*ktc) {
471 return ENOMEM;
474 (*ktc)->smb_krb5_context = talloc_reference(*ktc, smb_krb5_context);
475 (*ktc)->keytab = keytab;
476 (*ktc)->password_based = false;
477 talloc_set_destructor(*ktc, free_keytab_container);
479 return 0;
483 * Walk the keytab, looking for entries of this principal name,
484 * with KVNO other than current kvno -1.
486 * These entries are now stale,
487 * we only keep the current and previous entries around.
489 * Inspired by the code in Samba3 for 'use kerberos keytab'.
491 krb5_error_code smb_krb5_remove_obsolete_keytab_entries(TALLOC_CTX *mem_ctx,
492 krb5_context context,
493 krb5_keytab keytab,
494 uint32_t num_principals,
495 krb5_principal *principals,
496 krb5_kvno kvno,
497 bool *found_previous,
498 const char **error_string)
500 TALLOC_CTX *tmp_ctx;
501 krb5_error_code code;
502 krb5_kt_cursor cursor;
504 tmp_ctx = talloc_new(mem_ctx);
505 if (tmp_ctx == NULL) {
506 *error_string = "Cannot allocate tmp_ctx";
507 return ENOMEM;
510 *found_previous = true;
512 code = krb5_kt_start_seq_get(context, keytab, &cursor);
513 switch (code) {
514 case 0:
515 break;
516 #ifdef HEIM_ERR_OPNOTSUPP
517 case HEIM_ERR_OPNOTSUPP:
518 #endif
519 case ENOENT:
520 case KRB5_KT_END:
521 /* no point enumerating if there isn't anything here */
522 code = 0;
523 goto done;
524 default:
525 *error_string = talloc_asprintf(mem_ctx,
526 "failed to open keytab for read of old entries: %s\n",
527 smb_get_krb5_error_message(context, code, mem_ctx));
528 goto done;
531 do {
532 krb5_kvno old_kvno = kvno - 1;
533 krb5_keytab_entry entry;
534 bool matched = false;
535 uint32_t i;
537 code = krb5_kt_next_entry(context, keytab, &entry, &cursor);
538 if (code) {
539 break;
542 for (i = 0; i < num_principals; i++) {
543 krb5_boolean ok;
545 ok = smb_krb5_kt_compare(context,
546 &entry,
547 principals[i],
550 if (ok) {
551 matched = true;
552 break;
556 if (!matched) {
558 * Free the entry, it wasn't the one we were looking
559 * for anyway
561 krb5_kt_free_entry(context, &entry);
562 /* Make sure we do not double free */
563 ZERO_STRUCT(entry);
564 continue;
568 * Delete it, if it is not kvno - 1.
570 * Some keytab files store the kvno only in 8bits. Limit the
571 * compare to 8bits, so that we don't miss old keys and delete
572 * them.
574 if ((entry.vno & 0xff) != (old_kvno & 0xff)) {
575 krb5_error_code rc;
577 /* Release the enumeration. We are going to
578 * have to start this from the top again,
579 * because deletes during enumeration may not
580 * always be consistent.
582 * Also, the enumeration locks a FILE: keytab
584 krb5_kt_end_seq_get(context, keytab, &cursor);
586 code = krb5_kt_remove_entry(context, keytab, &entry);
587 krb5_kt_free_entry(context, &entry);
589 /* Make sure we do not double free */
590 ZERO_STRUCT(entry);
592 /* Deleted: Restart from the top */
593 rc = krb5_kt_start_seq_get(context, keytab, &cursor);
594 if (rc != 0) {
595 krb5_kt_free_entry(context, &entry);
597 /* Make sure we do not double free */
598 ZERO_STRUCT(entry);
600 DEBUG(1, ("failed to restart enumeration of keytab: %s\n",
601 smb_get_krb5_error_message(context,
602 code,
603 tmp_ctx)));
605 talloc_free(tmp_ctx);
606 return rc;
609 if (code != 0) {
610 break;
613 } else {
614 *found_previous = true;
617 /* Free the entry, we don't need it any more */
618 krb5_kt_free_entry(context, &entry);
619 /* Make sure we do not double free */
620 ZERO_STRUCT(entry);
621 } while (code != 0);
623 krb5_kt_end_seq_get(context, keytab, &cursor);
625 switch (code) {
626 case 0:
627 break;
628 case ENOENT:
629 case KRB5_KT_END:
630 code = 0;
631 break;
632 default:
633 *error_string = talloc_asprintf(mem_ctx,
634 "failed in deleting old entries for principal: %s\n",
635 smb_get_krb5_error_message(context,
636 code,
637 mem_ctx));
640 code = 0;
641 done:
642 talloc_free(tmp_ctx);
643 return code;