test debug
[heimdal.git] / lib / krb5 / keytab.c
blob23ef5582fd7219fa62a4539ae63dd4ea1739f259
1 /*
2 * Copyright (c) 1997 - 2005 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
4 * All rights reserved.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
13 * 2. Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in the
15 * documentation and/or other materials provided with the distribution.
17 * 3. Neither the name of the Institute nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
34 #include "krb5_locl.h"
36 RCSID("$Id$");
39 * Register a new keytab in `ops'
40 * Return 0 or an error.
43 krb5_error_code KRB5_LIB_FUNCTION
44 krb5_kt_register(krb5_context context,
45 const krb5_kt_ops *ops)
47 struct krb5_keytab_data *tmp;
49 if (strlen(ops->prefix) > KRB5_KT_PREFIX_MAX_LEN - 1) {
50 krb5_set_error_string(context, "krb5_kt_register; prefix too long");
51 return KRB5_KT_BADNAME;
54 tmp = realloc(context->kt_types,
55 (context->num_kt_types + 1) * sizeof(*context->kt_types));
56 if(tmp == NULL) {
57 krb5_set_error_string(context, "malloc: out of memory");
58 return ENOMEM;
60 memcpy(&tmp[context->num_kt_types], ops,
61 sizeof(tmp[context->num_kt_types]));
62 context->kt_types = tmp;
63 context->num_kt_types++;
64 return 0;
68 * Resolve the keytab name (of the form `type:residual') in `name'
69 * into a keytab in `id'.
70 * Return 0 or an error
73 krb5_error_code KRB5_LIB_FUNCTION
74 krb5_kt_resolve(krb5_context context,
75 const char *name,
76 krb5_keytab *id)
78 krb5_keytab k;
79 int i;
80 const char *type, *residual;
81 size_t type_len;
82 krb5_error_code ret;
84 residual = strchr(name, ':');
85 if(residual == NULL) {
86 type = "FILE";
87 type_len = strlen(type);
88 residual = name;
89 } else {
90 type = name;
91 type_len = residual - name;
92 residual++;
95 for(i = 0; i < context->num_kt_types; i++) {
96 if(strncasecmp(type, context->kt_types[i].prefix, type_len) == 0)
97 break;
99 if(i == context->num_kt_types) {
100 krb5_set_error_string(context, "unknown keytab type %.*s",
101 (int)type_len, type);
102 return KRB5_KT_UNKNOWN_TYPE;
105 k = malloc (sizeof(*k));
106 if (k == NULL) {
107 krb5_set_error_string(context, "malloc: out of memory");
108 return ENOMEM;
110 memcpy(k, &context->kt_types[i], sizeof(*k));
111 k->data = NULL;
112 ret = (*k->resolve)(context, residual, k);
113 if(ret) {
114 free(k);
115 k = NULL;
117 *id = k;
118 return ret;
122 * copy the name of the default keytab into `name'.
123 * Return 0 or KRB5_CONFIG_NOTENUFSPACE if `namesize' is too short.
126 krb5_error_code KRB5_LIB_FUNCTION
127 krb5_kt_default_name(krb5_context context, char *name, size_t namesize)
129 if (strlcpy (name, context->default_keytab, namesize) >= namesize) {
130 krb5_clear_error_string (context);
131 return KRB5_CONFIG_NOTENUFSPACE;
133 return 0;
137 * copy the name of the default modify keytab into `name'.
138 * Return 0 or KRB5_CONFIG_NOTENUFSPACE if `namesize' is too short.
141 krb5_error_code KRB5_LIB_FUNCTION
142 krb5_kt_default_modify_name(krb5_context context, char *name, size_t namesize)
144 const char *kt = NULL;
145 if(context->default_keytab_modify == NULL) {
146 if(strncasecmp(context->default_keytab, "ANY:", 4) != 0)
147 kt = context->default_keytab;
148 else {
149 size_t len = strcspn(context->default_keytab + 4, ",");
150 if(len >= namesize) {
151 krb5_clear_error_string(context);
152 return KRB5_CONFIG_NOTENUFSPACE;
154 strlcpy(name, context->default_keytab + 4, namesize);
155 name[len] = '\0';
156 return 0;
158 } else
159 kt = context->default_keytab_modify;
160 if (strlcpy (name, kt, namesize) >= namesize) {
161 krb5_clear_error_string (context);
162 return KRB5_CONFIG_NOTENUFSPACE;
164 return 0;
168 * Set `id' to the default keytab.
169 * Return 0 or an error.
172 krb5_error_code KRB5_LIB_FUNCTION
173 krb5_kt_default(krb5_context context, krb5_keytab *id)
175 return krb5_kt_resolve (context, context->default_keytab, id);
179 * Read the key identified by `(principal, vno, enctype)' from the
180 * keytab in `keyprocarg' (the default if == NULL) into `*key'.
181 * Return 0 or an error.
184 krb5_error_code KRB5_LIB_FUNCTION
185 krb5_kt_read_service_key(krb5_context context,
186 krb5_pointer keyprocarg,
187 krb5_principal principal,
188 krb5_kvno vno,
189 krb5_enctype enctype,
190 krb5_keyblock **key)
192 krb5_keytab keytab;
193 krb5_keytab_entry entry;
194 krb5_error_code ret;
196 if (keyprocarg)
197 ret = krb5_kt_resolve (context, keyprocarg, &keytab);
198 else
199 ret = krb5_kt_default (context, &keytab);
201 if (ret)
202 return ret;
204 ret = krb5_kt_get_entry (context, keytab, principal, vno, enctype, &entry);
205 krb5_kt_close (context, keytab);
206 if (ret)
207 return ret;
208 ret = krb5_copy_keyblock (context, &entry.keyblock, key);
209 krb5_kt_free_entry(context, &entry);
210 return ret;
214 * Return the type of the `keytab' in the string `prefix of length
215 * `prefixsize'.
218 krb5_error_code KRB5_LIB_FUNCTION
219 krb5_kt_get_type(krb5_context context,
220 krb5_keytab keytab,
221 char *prefix,
222 size_t prefixsize)
224 strlcpy(prefix, keytab->prefix, prefixsize);
225 return 0;
229 * Retrieve the name of the keytab `keytab' into `name', `namesize'
230 * Return 0 or an error.
233 krb5_error_code KRB5_LIB_FUNCTION
234 krb5_kt_get_name(krb5_context context,
235 krb5_keytab keytab,
236 char *name,
237 size_t namesize)
239 return (*keytab->get_name)(context, keytab, name, namesize);
243 * Retrieve the full name of the keytab `keytab' and store the name in
244 * `str'. `str' needs to be freed by the caller using free(3).
245 * Returns 0 or an error. On error, *str is set to NULL.
248 krb5_error_code KRB5_LIB_FUNCTION
249 krb5_kt_get_full_name(krb5_context context,
250 krb5_keytab keytab,
251 char **str)
253 char type[KRB5_KT_PREFIX_MAX_LEN];
254 char name[MAXPATHLEN];
255 krb5_error_code ret;
257 *str = NULL;
259 ret = krb5_kt_get_type(context, keytab, type, sizeof(type));
260 if (ret)
261 return ret;
263 ret = krb5_kt_get_name(context, keytab, name, sizeof(name));
264 if (ret)
265 return ret;
267 if (asprintf(str, "%s:%s", type, name) == -1) {
268 krb5_set_error_string(context, "malloc - out of memory");
269 *str = NULL;
270 return ENOMEM;
273 return 0;
277 * Finish using the keytab in `id'. All resources will be released,
278 * even on errors. Return 0 or an error.
281 krb5_error_code KRB5_LIB_FUNCTION
282 krb5_kt_close(krb5_context context,
283 krb5_keytab id)
285 krb5_error_code ret;
287 ret = (*id->close)(context, id);
288 memset(id, 0, sizeof(*id));
289 free(id);
290 return ret;
294 * Compare `entry' against `principal, vno, enctype'.
295 * Any of `principal, vno, enctype' might be 0 which acts as a wildcard.
296 * Return TRUE if they compare the same, FALSE otherwise.
299 krb5_boolean KRB5_LIB_FUNCTION
300 krb5_kt_compare(krb5_context context,
301 krb5_keytab_entry *entry,
302 krb5_const_principal principal,
303 krb5_kvno vno,
304 krb5_enctype enctype)
306 if(principal != NULL &&
307 !krb5_principal_compare(context, entry->principal, principal))
308 return FALSE;
309 if(vno && vno != entry->vno)
310 return FALSE;
311 if(enctype && enctype != entry->keyblock.keytype)
312 return FALSE;
313 return TRUE;
317 * Retrieve the keytab entry for `principal, kvno, enctype' into `entry'
318 * from the keytab `id'.
319 * kvno == 0 is a wildcard and gives the keytab with the highest vno.
320 * Return 0 or an error.
323 krb5_error_code KRB5_LIB_FUNCTION
324 krb5_kt_get_entry(krb5_context context,
325 krb5_keytab id,
326 krb5_const_principal principal,
327 krb5_kvno kvno,
328 krb5_enctype enctype,
329 krb5_keytab_entry *entry)
331 krb5_keytab_entry tmp;
332 krb5_error_code ret;
333 krb5_kt_cursor cursor;
335 if(id->get)
336 return (*id->get)(context, id, principal, kvno, enctype, entry);
338 ret = krb5_kt_start_seq_get (context, id, &cursor);
339 if (ret) {
340 krb5_clear_error_string(context);
341 return KRB5_KT_NOTFOUND; /* XXX i.e. file not found */
344 entry->vno = 0;
345 while (krb5_kt_next_entry(context, id, &tmp, &cursor) == 0) {
346 if (krb5_kt_compare(context, &tmp, principal, 0, enctype)) {
347 /* the file keytab might only store the lower 8 bits of
348 the kvno, so only compare those bits */
349 if (kvno == tmp.vno
350 || (tmp.vno < 256 && kvno % 256 == tmp.vno)) {
351 krb5_kt_copy_entry_contents (context, &tmp, entry);
352 krb5_kt_free_entry (context, &tmp);
353 krb5_kt_end_seq_get(context, id, &cursor);
354 return 0;
355 } else if (kvno == 0 && tmp.vno > entry->vno) {
356 if (entry->vno)
357 krb5_kt_free_entry (context, entry);
358 krb5_kt_copy_entry_contents (context, &tmp, entry);
361 krb5_kt_free_entry(context, &tmp);
363 krb5_kt_end_seq_get (context, id, &cursor);
364 if (entry->vno) {
365 return 0;
366 } else {
367 char princ[256], kvno_str[25], *kt_name;
368 char *enctype_str = NULL;
370 krb5_unparse_name_fixed (context, principal, princ, sizeof(princ));
371 krb5_kt_get_full_name (context, id, &kt_name);
372 krb5_enctype_to_string(context, enctype, &enctype_str);
374 if (kvno)
375 snprintf(kvno_str, sizeof(kvno_str), "(kvno %d)", kvno);
376 else
377 kvno_str[0] = '\0';
379 krb5_set_error_string (context,
380 "Failed to find %s%s in keytab %s (%s)",
381 princ,
382 kvno_str,
383 kt_name ? kt_name : "unknown keytab",
384 enctype_str ? enctype_str : "unknown enctype");
385 free(kt_name);
386 free(enctype_str);
387 return KRB5_KT_NOTFOUND;
392 * Copy the contents of `in' into `out'.
393 * Return 0 or an error. */
395 krb5_error_code KRB5_LIB_FUNCTION
396 krb5_kt_copy_entry_contents(krb5_context context,
397 const krb5_keytab_entry *in,
398 krb5_keytab_entry *out)
400 krb5_error_code ret;
402 memset(out, 0, sizeof(*out));
403 out->vno = in->vno;
405 ret = krb5_copy_principal (context, in->principal, &out->principal);
406 if (ret)
407 goto fail;
408 ret = krb5_copy_keyblock_contents (context,
409 &in->keyblock,
410 &out->keyblock);
411 if (ret)
412 goto fail;
413 out->timestamp = in->timestamp;
414 return 0;
415 fail:
416 krb5_kt_free_entry (context, out);
417 return ret;
421 * Free the contents of `entry'.
424 krb5_error_code KRB5_LIB_FUNCTION
425 krb5_kt_free_entry(krb5_context context,
426 krb5_keytab_entry *entry)
428 krb5_free_principal (context, entry->principal);
429 krb5_free_keyblock_contents (context, &entry->keyblock);
430 memset(entry, 0, sizeof(*entry));
431 return 0;
435 * Set `cursor' to point at the beginning of `id'.
436 * Return 0 or an error.
439 krb5_error_code KRB5_LIB_FUNCTION
440 krb5_kt_start_seq_get(krb5_context context,
441 krb5_keytab id,
442 krb5_kt_cursor *cursor)
444 if(id->start_seq_get == NULL) {
445 krb5_set_error_string(context,
446 "start_seq_get is not supported in the %s "
447 " keytab", id->prefix);
448 return HEIM_ERR_OPNOTSUPP;
450 return (*id->start_seq_get)(context, id, cursor);
454 * Get the next entry from `id' pointed to by `cursor' and advance the
455 * `cursor'.
456 * Return 0 or an error.
459 krb5_error_code KRB5_LIB_FUNCTION
460 krb5_kt_next_entry(krb5_context context,
461 krb5_keytab id,
462 krb5_keytab_entry *entry,
463 krb5_kt_cursor *cursor)
465 if(id->next_entry == NULL) {
466 krb5_set_error_string(context,
467 "next_entry is not supported in the %s "
468 " keytab", id->prefix);
469 return HEIM_ERR_OPNOTSUPP;
471 return (*id->next_entry)(context, id, entry, cursor);
475 * Release all resources associated with `cursor'.
478 krb5_error_code KRB5_LIB_FUNCTION
479 krb5_kt_end_seq_get(krb5_context context,
480 krb5_keytab id,
481 krb5_kt_cursor *cursor)
483 if(id->end_seq_get == NULL) {
484 krb5_set_error_string(context,
485 "end_seq_get is not supported in the %s "
486 " keytab", id->prefix);
487 return HEIM_ERR_OPNOTSUPP;
489 return (*id->end_seq_get)(context, id, cursor);
493 * Add the entry in `entry' to the keytab `id'.
494 * Return 0 or an error.
497 krb5_error_code KRB5_LIB_FUNCTION
498 krb5_kt_add_entry(krb5_context context,
499 krb5_keytab id,
500 krb5_keytab_entry *entry)
502 if(id->add == NULL) {
503 krb5_set_error_string(context, "Add is not supported in the %s keytab",
504 id->prefix);
505 return KRB5_KT_NOWRITE;
507 entry->timestamp = time(NULL);
508 return (*id->add)(context, id,entry);
512 * Remove the entry `entry' from the keytab `id'.
513 * Return 0 or an error.
516 krb5_error_code KRB5_LIB_FUNCTION
517 krb5_kt_remove_entry(krb5_context context,
518 krb5_keytab id,
519 krb5_keytab_entry *entry)
521 if(id->remove == NULL) {
522 krb5_set_error_string(context,
523 "Remove is not supported in the %s keytab",
524 id->prefix);
525 return KRB5_KT_NOWRITE;
527 return (*id->remove)(context, id, entry);