2 Unix SMB/CIFS implementation.
4 Kerberos utility functions
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/>.
25 #include "system/kerberos.h"
26 #include "auth/kerberos/kerberos.h"
27 #include "auth/kerberos/kerberos_srv_keytab.h"
29 static void keytab_principals_free(krb5_context context
, krb5_principal
*set
)
32 for (i
= 0; set
[i
] != NULL
; i
++) {
33 krb5_free_principal(context
, set
[i
]);
37 static krb5_error_code
principals_from_list(TALLOC_CTX
*parent_ctx
,
38 const char *samAccountName
,
40 const char **SPNs
, int num_SPNs
,
42 krb5_principal
**principals_out
,
43 const char **error_string
)
49 krb5_principal
*principals
= NULL
;
50 tmp_ctx
= talloc_new(parent_ctx
);
52 *error_string
= "Cannot allocate tmp_ctx";
57 *error_string
= "Cannot make principal without a realm";
62 upper_realm
= strupper_talloc(tmp_ctx
, realm
);
64 *error_string
= "Cannot allocate full upper case realm";
69 principals
= talloc_zero_array(tmp_ctx
, krb5_principal
,
70 num_SPNs
? (num_SPNs
+ 2) : 2);
72 for (i
= 0; num_SPNs
&& i
< num_SPNs
; i
++) {
73 ret
= krb5_parse_name(context
, SPNs
[i
], &principals
[i
]);
76 *error_string
= smb_get_krb5_error_message(context
, ret
,
83 ret
= smb_krb5_make_principal(context
, &principals
[i
],
84 upper_realm
, samAccountName
,
87 *error_string
= smb_get_krb5_error_message(context
, ret
,
95 keytab_principals_free(context
, principals
);
97 *principals_out
= talloc_steal(parent_ctx
, principals
);
103 static krb5_error_code
salt_principal(TALLOC_CTX
*parent_ctx
,
104 const char *samAccountName
,
106 const char *saltPrincipal
,
107 krb5_context context
,
108 krb5_principal
*salt_princ
,
109 const char **error_string
)
113 char *machine_username
;
121 ret
= krb5_parse_name(context
, saltPrincipal
, salt_princ
);
123 *error_string
= smb_get_krb5_error_message(
124 context
, ret
, parent_ctx
);
129 if (!samAccountName
) {
130 (*error_string
) = "Cannot determine salt principal, no "
131 "saltPrincipal or samAccountName specified";
136 *error_string
= "Cannot make principal without a realm";
140 tmp_ctx
= talloc_new(parent_ctx
);
142 *error_string
= "Cannot allocate tmp_ctx";
146 machine_username
= talloc_strdup(tmp_ctx
, samAccountName
);
147 if (!machine_username
) {
148 *error_string
= "Cannot duplicate samAccountName";
149 talloc_free(tmp_ctx
);
153 if (machine_username
[strlen(machine_username
)-1] == '$') {
154 machine_username
[strlen(machine_username
)-1] = '\0';
157 lower_realm
= strlower_talloc(tmp_ctx
, realm
);
159 *error_string
= "Cannot allocate to lower case realm";
160 talloc_free(tmp_ctx
);
164 upper_realm
= strupper_talloc(tmp_ctx
, realm
);
166 *error_string
= "Cannot allocate to upper case realm";
167 talloc_free(tmp_ctx
);
171 salt_body
= talloc_asprintf(tmp_ctx
, "%s.%s",
172 machine_username
, lower_realm
);
174 *error_string
= "Cannot form salt principal body";
175 talloc_free(tmp_ctx
);
179 ret
= smb_krb5_make_principal(context
, salt_princ
, upper_realm
,
180 "host", salt_body
, NULL
);
182 *error_string
= smb_get_krb5_error_message(context
,
186 talloc_free(tmp_ctx
);
190 static krb5_error_code
keytab_add_keys(TALLOC_CTX
*parent_ctx
,
191 krb5_principal
*principals
,
192 krb5_principal salt_princ
,
194 const char *password_s
,
195 krb5_context context
,
196 krb5_enctype
*enctypes
,
198 const char **error_string
)
205 password
.data
= discard_const_p(char, password_s
);
206 password
.length
= strlen(password_s
);
208 for (i
= 0; enctypes
[i
]; i
++) {
209 krb5_keytab_entry entry
;
213 ret
= create_kerberos_key_from_string_direct(context
,
214 salt_princ
, &password
,
223 for (p
= 0; principals
[p
]; p
++) {
225 entry
.principal
= principals
[p
];
226 ret
= krb5_kt_add_entry(context
, keytab
, &entry
);
228 char *k5_error_string
=
229 smb_get_krb5_error_message(context
,
231 krb5_unparse_name(context
,
232 principals
[p
], &unparsed
);
233 *error_string
= talloc_asprintf(parent_ctx
,
234 "Failed to add enctype %d entry for "
235 "%s(kvno %d) to keytab: %s\n",
236 (int)enctypes
[i
], unparsed
,
237 kvno
, k5_error_string
);
240 talloc_free(k5_error_string
);
241 krb5_free_keyblock_contents(context
,
242 KRB5_KT_KEY(&entry
));
246 DEBUG(5, ("Added key (kvno %d) to keytab (enctype %d)\n",
247 kvno
, (int)enctypes
[i
]));
249 krb5_free_keyblock_contents(context
, KRB5_KT_KEY(&entry
));
254 static krb5_error_code
create_keytab(TALLOC_CTX
*parent_ctx
,
255 const char *samAccountName
,
257 const char *saltPrincipal
,
259 const char *new_secret
,
260 const char *old_secret
,
261 uint32_t supp_enctypes
,
262 krb5_principal
*principals
,
263 krb5_context context
,
266 const char **error_string
)
269 krb5_principal salt_princ
= NULL
;
270 krb5_enctype
*enctypes
;
274 /* There is no password here, so nothing to do */
278 mem_ctx
= talloc_new(parent_ctx
);
280 *error_string
= "unable to allocate tmp_ctx for create_keytab";
284 /* The salt used to generate these entries may be different however,
286 ret
= salt_principal(mem_ctx
, samAccountName
, realm
, saltPrincipal
,
287 context
, &salt_princ
, error_string
);
289 talloc_free(mem_ctx
);
293 ret
= ms_suptypes_to_ietf_enctypes(mem_ctx
, supp_enctypes
, &enctypes
);
295 *error_string
= talloc_asprintf(parent_ctx
,
296 "create_keytab: generating list of "
297 "encryption types failed (%s)\n",
298 smb_get_krb5_error_message(context
,
303 ret
= keytab_add_keys(mem_ctx
, principals
,
304 salt_princ
, kvno
, new_secret
,
305 context
, enctypes
, keytab
, error_string
);
310 if (old_secret
&& add_old
&& kvno
!= 0) {
311 ret
= keytab_add_keys(mem_ctx
, principals
,
312 salt_princ
, kvno
- 1, old_secret
,
313 context
, enctypes
, keytab
, error_string
);
317 krb5_free_principal(context
, salt_princ
);
318 talloc_free(mem_ctx
);
323 * Walk the keytab, looking for entries of this principal name,
324 * with KVNO other than current kvno -1.
326 * These entries are now stale,
327 * we only keep the current and previous entries around.
329 * Inspired by the code in Samba3 for 'use kerberos keytab'.
332 static krb5_error_code
remove_old_entries(TALLOC_CTX
*parent_ctx
,
334 krb5_principal
*principals
,
335 bool delete_all_kvno
,
336 krb5_context context
,
338 bool *found_previous
,
339 const char **error_string
)
341 krb5_error_code ret
, ret2
;
342 krb5_kt_cursor cursor
;
343 TALLOC_CTX
*mem_ctx
= talloc_new(parent_ctx
);
349 *found_previous
= false;
351 /* for each entry in the keytab */
352 ret
= krb5_kt_start_seq_get(context
, keytab
, &cursor
);
356 #ifdef HEIM_ERR_OPNOTSUPP
357 case HEIM_ERR_OPNOTSUPP
:
361 /* no point enumerating if there isn't anything here */
362 talloc_free(mem_ctx
);
365 *error_string
= talloc_asprintf(parent_ctx
,
366 "failed to open keytab for read of old entries: %s\n",
367 smb_get_krb5_error_message(context
, ret
, mem_ctx
));
368 talloc_free(mem_ctx
);
374 bool matched
= false;
375 krb5_keytab_entry entry
;
376 ret
= krb5_kt_next_entry(context
, keytab
, &entry
, &cursor
);
380 for (i
= 0; principals
[i
]; i
++) {
381 /* if it matches our principal */
382 if (smb_krb5_kt_compare(context
, &entry
,
383 principals
[i
], 0, 0)) {
391 * it wasn't the one we were looking for anyway */
392 krb5_kt_free_entry(context
, &entry
);
396 /* delete it, if it is not kvno -1 */
397 if (entry
.vno
!= (kvno
- 1 )) {
398 /* Release the enumeration. We are going to
399 * have to start this from the top again,
400 * because deletes during enumeration may not
401 * always be consistent.
403 * Also, the enumeration locks a FILE: keytab
406 krb5_kt_end_seq_get(context
, keytab
, &cursor
);
408 ret
= krb5_kt_remove_entry(context
, keytab
, &entry
);
409 krb5_kt_free_entry(context
, &entry
);
411 /* Deleted: Restart from the top */
412 ret2
= krb5_kt_start_seq_get(context
, keytab
, &cursor
);
414 krb5_kt_free_entry(context
, &entry
);
415 DEBUG(1, ("failed to restart enumeration of keytab: %s\n",
416 smb_get_krb5_error_message(context
,
419 talloc_free(mem_ctx
);
428 *found_previous
= true;
431 /* Free the entry, we don't need it any more */
432 krb5_kt_free_entry(context
, &entry
);
434 krb5_kt_end_seq_get(context
, keytab
, &cursor
);
444 *error_string
= talloc_asprintf(parent_ctx
,
445 "failed in deleting old entries for principal: %s\n",
446 smb_get_krb5_error_message(context
, ret
, mem_ctx
));
448 talloc_free(mem_ctx
);
452 krb5_error_code
smb_krb5_update_keytab(TALLOC_CTX
*parent_ctx
,
453 krb5_context context
,
454 const char *keytab_name
,
455 const char *samAccountName
,
459 const char *saltPrincipal
,
460 const char *new_secret
,
461 const char *old_secret
,
463 uint32_t supp_enctypes
,
464 bool delete_all_kvno
,
465 krb5_keytab
*_keytab
,
466 const char **error_string
)
472 krb5_principal
*principals
= NULL
;
474 if (keytab_name
== NULL
) {
478 ret
= krb5_kt_resolve(context
, keytab_name
, &keytab
);
480 *error_string
= smb_get_krb5_error_message(context
,
485 DEBUG(5, ("Opened keytab %s\n", keytab_name
));
487 tmp_ctx
= talloc_new(parent_ctx
);
492 /* Get the principal we will store the new keytab entries under */
493 ret
= principals_from_list(tmp_ctx
,
494 samAccountName
, realm
, SPNs
, num_SPNs
,
495 context
, &principals
, error_string
);
498 *error_string
= talloc_asprintf(parent_ctx
,
499 "Failed to load principals from ldb message: %s\n",
504 ret
= remove_old_entries(tmp_ctx
, kvno
, principals
, delete_all_kvno
,
505 context
, keytab
, &found_previous
, error_string
);
507 *error_string
= talloc_asprintf(parent_ctx
,
508 "Failed to remove old principals from keytab: %s\n",
513 if (!delete_all_kvno
) {
514 /* Create a new keytab. If during the cleanout we found
515 * entires for kvno -1, then don't try and duplicate them.
516 * Otherwise, add kvno, and kvno -1 */
518 ret
= create_keytab(tmp_ctx
,
519 samAccountName
, realm
, saltPrincipal
,
520 kvno
, new_secret
, old_secret
,
521 supp_enctypes
, principals
,
523 found_previous
? false : true,
526 talloc_steal(parent_ctx
, *error_string
);
530 if (ret
== 0 && _keytab
!= NULL
) {
531 /* caller wants the keytab handle back */
536 keytab_principals_free(context
, principals
);
537 if (ret
!= 0 || _keytab
== NULL
) {
538 krb5_kt_close(context
, keytab
);
540 talloc_free(tmp_ctx
);
544 krb5_error_code
smb_krb5_create_memory_keytab(TALLOC_CTX
*parent_ctx
,
545 krb5_context context
,
546 const char *new_secret
,
547 const char *samAccountName
,
551 const char **keytab_name
)
554 TALLOC_CTX
*mem_ctx
= talloc_new(parent_ctx
);
555 const char *rand_string
;
556 const char *error_string
;
561 rand_string
= generate_random_str(mem_ctx
, 16);
563 talloc_free(mem_ctx
);
567 *keytab_name
= talloc_asprintf(mem_ctx
, "MEMORY:%s", rand_string
);
568 if (*keytab_name
== NULL
) {
569 talloc_free(mem_ctx
);
574 ret
= smb_krb5_update_keytab(mem_ctx
, context
,
575 *keytab_name
, samAccountName
, realm
,
576 NULL
, 0, NULL
, new_secret
, NULL
,
578 false, keytab
, &error_string
);
580 talloc_steal(parent_ctx
, *keytab_name
);
582 DEBUG(0, ("Failed to create in-memory keytab: %s\n",
586 talloc_free(mem_ctx
);