r13121: Tag 4.0.0TP1
[Samba.git] / source / heimdal / lib / krb5 / cache.c
blobefb2ad1374da9be147f9916aebe37e544e42f969
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: cache.c,v 1.77 2005/12/13 15:42:36 lha Exp $");
39 * Add a new ccache type with operations `ops', overwriting any
40 * existing one if `override'.
41 * Return an error code or 0.
44 krb5_error_code KRB5_LIB_FUNCTION
45 krb5_cc_register(krb5_context context,
46 const krb5_cc_ops *ops,
47 krb5_boolean override)
49 int i;
51 for(i = 0; i < context->num_cc_ops && context->cc_ops[i].prefix; i++) {
52 if(strcmp(context->cc_ops[i].prefix, ops->prefix) == 0) {
53 if(!override) {
54 krb5_set_error_string(context,
55 "ccache type %s already exists",
56 ops->prefix);
57 return KRB5_CC_TYPE_EXISTS;
59 break;
62 if(i == context->num_cc_ops) {
63 krb5_cc_ops *o = realloc(context->cc_ops,
64 (context->num_cc_ops + 1) *
65 sizeof(*context->cc_ops));
66 if(o == NULL) {
67 krb5_set_error_string(context, "malloc: out of memory");
68 return KRB5_CC_NOMEM;
70 context->num_cc_ops++;
71 context->cc_ops = o;
72 memset(context->cc_ops + i, 0,
73 (context->num_cc_ops - i) * sizeof(*context->cc_ops));
75 memcpy(&context->cc_ops[i], ops, sizeof(context->cc_ops[i]));
76 return 0;
80 * Allocate the memory for a `id' and the that function table to
81 * `ops'. Returns 0 or and error code.
84 krb5_error_code
85 _krb5_cc_allocate(krb5_context context,
86 const krb5_cc_ops *ops,
87 krb5_ccache *id)
89 krb5_ccache p;
91 p = malloc (sizeof(*p));
92 if(p == NULL) {
93 krb5_set_error_string(context, "malloc: out of memory");
94 return KRB5_CC_NOMEM;
96 p->ops = ops;
97 *id = p;
99 return 0;
103 * Allocate memory for a new ccache in `id' with operations `ops'
104 * and name `residual'.
105 * Return 0 or an error code.
108 static krb5_error_code
109 allocate_ccache (krb5_context context,
110 const krb5_cc_ops *ops,
111 const char *residual,
112 krb5_ccache *id)
114 krb5_error_code ret;
116 ret = _krb5_cc_allocate(context, ops, id);
117 if (ret)
118 return ret;
119 ret = (*id)->ops->resolve(context, id, residual);
120 if(ret)
121 free(*id);
122 return ret;
126 * Find and allocate a ccache in `id' from the specification in `residual'.
127 * If the ccache name doesn't contain any colon, interpret it as a file name.
128 * Return 0 or an error code.
131 krb5_error_code KRB5_LIB_FUNCTION
132 krb5_cc_resolve(krb5_context context,
133 const char *name,
134 krb5_ccache *id)
136 int i;
138 for(i = 0; i < context->num_cc_ops && context->cc_ops[i].prefix; i++) {
139 size_t prefix_len = strlen(context->cc_ops[i].prefix);
141 if(strncmp(context->cc_ops[i].prefix, name, prefix_len) == 0
142 && name[prefix_len] == ':') {
143 return allocate_ccache (context, &context->cc_ops[i],
144 name + prefix_len + 1,
145 id);
148 if (strchr (name, ':') == NULL)
149 return allocate_ccache (context, &krb5_fcc_ops, name, id);
150 else {
151 krb5_set_error_string(context, "unknown ccache type %s", name);
152 return KRB5_CC_UNKNOWN_TYPE;
157 * Generate a new ccache of type `ops' in `id'.
158 * Return 0 or an error code.
161 krb5_error_code KRB5_LIB_FUNCTION
162 krb5_cc_gen_new(krb5_context context,
163 const krb5_cc_ops *ops,
164 krb5_ccache *id)
166 krb5_error_code ret;
168 ret = _krb5_cc_allocate(context, ops, id);
169 if (ret)
170 return ret;
171 return (*id)->ops->gen_new(context, id);
175 * Generates a new unique ccache of `type` in `id'. If `type' is NULL,
176 * the library chooses the default credential cache type. The supplied
177 * `hint' (that can be NULL) is a string that the credential cache
178 * type can use to base the name of the credential on, this is to make
179 * its easier for the user to differentiate the credentials.
181 * Returns 0 or an error code.
184 krb5_error_code KRB5_LIB_FUNCTION
185 krb5_cc_new_unique(krb5_context context, const char *type,
186 const char *hint, krb5_ccache *id)
188 const krb5_cc_ops *ops;
190 if (type == NULL)
191 type = "FILE";
193 ops = krb5_cc_get_prefix_ops(context, type);
194 if (ops == NULL) {
195 krb5_set_error_string(context, "Credential cache type %s is unknown",
196 type);
197 return KRB5_CC_UNKNOWN_TYPE;
200 return krb5_cc_gen_new(context, ops, id);
204 * Return the name of the ccache `id'
207 const char* KRB5_LIB_FUNCTION
208 krb5_cc_get_name(krb5_context context,
209 krb5_ccache id)
211 return id->ops->get_name(context, id);
215 * Return the type of the ccache `id'.
218 const char* KRB5_LIB_FUNCTION
219 krb5_cc_get_type(krb5_context context,
220 krb5_ccache id)
222 return id->ops->prefix;
226 * Return the complete resolvable name the ccache `id' in `str´.
227 * `str` should be freed with free(3).
228 * Returns 0 or an error (and then *str is set to NULL).
231 krb5_error_code KRB5_LIB_FUNCTION
232 krb5_cc_get_full_name(krb5_context context,
233 krb5_ccache id,
234 char **str)
236 const char *type, *name;
238 *str = NULL;
240 type = krb5_cc_get_type(context, id);
241 if (type == NULL) {
242 krb5_set_error_string(context, "cache have no name of type");
243 return KRB5_CC_UNKNOWN_TYPE;
246 name = krb5_cc_get_name(context, id);
247 if (name == NULL) {
248 krb5_set_error_string(context, "cache of type %s have no name", type);
249 return KRB5_CC_BADNAME;
252 if (asprintf(str, "%s:%s", type, name) == -1) {
253 krb5_set_error_string(context, "malloc - out of memory");
254 *str = NULL;
255 return ENOMEM;
257 return 0;
261 * Return krb5_cc_ops of a the ccache `id'.
264 const krb5_cc_ops *
265 krb5_cc_get_ops(krb5_context context, krb5_ccache id)
267 return id->ops;
271 * Expand variables in `str' into `res'
274 krb5_error_code
275 _krb5_expand_default_cc_name(krb5_context context, const char *str, char **res)
277 size_t tlen, len = 0;
278 char *tmp, *tmp2, *append;
280 *res = NULL;
282 while (str && *str) {
283 tmp = strstr(str, "%{");
284 if (tmp && tmp != str) {
285 append = malloc((tmp - str) + 1);
286 if (append) {
287 memcpy(append, str, tmp - str);
288 append[tmp - str] = '\0';
290 str = tmp;
291 } else if (tmp) {
292 tmp2 = strchr(tmp, '}');
293 if (tmp2 == NULL) {
294 free(*res);
295 *res = NULL;
296 krb5_set_error_string(context, "variable missing }");
297 return KRB5_CONFIG_BADFORMAT;
299 if (strncasecmp(tmp, "%{uid}", 6) == 0)
300 asprintf(&append, "%u", (unsigned)getuid());
301 else if (strncasecmp(tmp, "%{null}", 7) == 0)
302 append = strdup("");
303 else {
304 free(*res);
305 *res = NULL;
306 krb5_set_error_string(context,
307 "expand default cache unknown "
308 "variable \"%.*s\"",
309 (int)(tmp2 - tmp) - 2, tmp + 2);
310 return KRB5_CONFIG_BADFORMAT;
312 str = tmp2 + 1;
313 } else {
314 append = strdup(str);
315 str = NULL;
317 if (append == NULL) {
318 free(*res);
319 res = NULL;
320 krb5_set_error_string(context, "malloc - out of memory");
321 return ENOMEM;
324 tlen = strlen(append);
325 tmp = realloc(*res, len + tlen + 1);
326 if (tmp == NULL) {
327 free(*res);
328 *res = NULL;
329 krb5_set_error_string(context, "malloc - out of memory");
330 return ENOMEM;
332 *res = tmp;
333 memcpy(*res + len, append, tlen + 1);
334 len = len + tlen;
335 free(append);
337 return 0;
341 * Set the default cc name for `context' to `name'.
344 krb5_error_code KRB5_LIB_FUNCTION
345 krb5_cc_set_default_name(krb5_context context, const char *name)
347 krb5_error_code ret = 0;
348 char *p;
350 if (name == NULL) {
351 const char *e = NULL;
353 if(!issuid()) {
354 e = getenv("KRB5CCNAME");
355 if (e)
356 p = strdup(e);
358 if (e == NULL) {
359 e = krb5_config_get_string(context, NULL, "libdefaults",
360 "default_cc_name", NULL);
361 if (e == NULL)
362 e = KRB5_DEFAULT_CCNAME;
363 ret = _krb5_expand_default_cc_name(context, e, &p);
364 if (ret)
365 return ret;
367 } else
368 p = strdup(name);
370 if (p == NULL) {
371 krb5_set_error_string(context, "malloc - out of memory");
372 return ENOMEM;
375 if (context->default_cc_name)
376 free(context->default_cc_name);
378 context->default_cc_name = p;
380 return ret;
384 * Return a pointer to a context static string containing the default
385 * ccache name.
388 const char* KRB5_LIB_FUNCTION
389 krb5_cc_default_name(krb5_context context)
391 if (context->default_cc_name == NULL)
392 krb5_cc_set_default_name(context, NULL);
394 return context->default_cc_name;
398 * Open the default ccache in `id'.
399 * Return 0 or an error code.
402 krb5_error_code KRB5_LIB_FUNCTION
403 krb5_cc_default(krb5_context context,
404 krb5_ccache *id)
406 const char *p = krb5_cc_default_name(context);
408 if (p == NULL) {
409 krb5_set_error_string(context, "malloc - out of memory");
410 return ENOMEM;
412 return krb5_cc_resolve(context, p, id);
416 * Create a new ccache in `id' for `primary_principal'.
417 * Return 0 or an error code.
420 krb5_error_code KRB5_LIB_FUNCTION
421 krb5_cc_initialize(krb5_context context,
422 krb5_ccache id,
423 krb5_principal primary_principal)
425 return id->ops->init(context, id, primary_principal);
430 * Remove the ccache `id'.
431 * Return 0 or an error code.
434 krb5_error_code KRB5_LIB_FUNCTION
435 krb5_cc_destroy(krb5_context context,
436 krb5_ccache id)
438 krb5_error_code ret;
440 ret = id->ops->destroy(context, id);
441 krb5_cc_close (context, id);
442 return ret;
446 * Stop using the ccache `id' and free the related resources.
447 * Return 0 or an error code.
450 krb5_error_code KRB5_LIB_FUNCTION
451 krb5_cc_close(krb5_context context,
452 krb5_ccache id)
454 krb5_error_code ret;
455 ret = id->ops->close(context, id);
456 free(id);
457 return ret;
461 * Store `creds' in the ccache `id'.
462 * Return 0 or an error code.
465 krb5_error_code KRB5_LIB_FUNCTION
466 krb5_cc_store_cred(krb5_context context,
467 krb5_ccache id,
468 krb5_creds *creds)
470 return id->ops->store(context, id, creds);
474 * Retrieve the credential identified by `mcreds' (and `whichfields')
475 * from `id' in `creds'.
476 * Return 0 or an error code.
479 krb5_error_code KRB5_LIB_FUNCTION
480 krb5_cc_retrieve_cred(krb5_context context,
481 krb5_ccache id,
482 krb5_flags whichfields,
483 const krb5_creds *mcreds,
484 krb5_creds *creds)
486 krb5_error_code ret;
487 krb5_cc_cursor cursor;
489 if (id->ops->retrieve != NULL) {
490 return id->ops->retrieve(context, id, whichfields,
491 mcreds, creds);
494 krb5_cc_start_seq_get(context, id, &cursor);
495 while((ret = krb5_cc_next_cred(context, id, &cursor, creds)) == 0){
496 if(krb5_compare_creds(context, whichfields, mcreds, creds)){
497 ret = 0;
498 break;
500 krb5_free_cred_contents (context, creds);
502 krb5_cc_end_seq_get(context, id, &cursor);
503 return ret;
507 * Return the principal of `id' in `principal'.
508 * Return 0 or an error code.
511 krb5_error_code KRB5_LIB_FUNCTION
512 krb5_cc_get_principal(krb5_context context,
513 krb5_ccache id,
514 krb5_principal *principal)
516 return id->ops->get_princ(context, id, principal);
520 * Start iterating over `id', `cursor' is initialized to the
521 * beginning.
522 * Return 0 or an error code.
525 krb5_error_code KRB5_LIB_FUNCTION
526 krb5_cc_start_seq_get (krb5_context context,
527 const krb5_ccache id,
528 krb5_cc_cursor *cursor)
530 return id->ops->get_first(context, id, cursor);
534 * Retrieve the next cred pointed to by (`id', `cursor') in `creds'
535 * and advance `cursor'.
536 * Return 0 or an error code.
539 krb5_error_code KRB5_LIB_FUNCTION
540 krb5_cc_next_cred (krb5_context context,
541 const krb5_ccache id,
542 krb5_cc_cursor *cursor,
543 krb5_creds *creds)
545 return id->ops->get_next(context, id, cursor, creds);
548 /* like krb5_cc_next_cred, but allow for selective retrieval */
550 krb5_error_code KRB5_LIB_FUNCTION
551 krb5_cc_next_cred_match(krb5_context context,
552 const krb5_ccache id,
553 krb5_cc_cursor * cursor,
554 krb5_creds * creds,
555 krb5_flags whichfields,
556 const krb5_creds * mcreds)
558 krb5_error_code ret;
559 while (1) {
560 ret = krb5_cc_next_cred(context, id, cursor, creds);
561 if (ret)
562 return ret;
563 if (mcreds == NULL || krb5_compare_creds(context, whichfields, mcreds, creds))
564 return 0;
565 krb5_free_cred_contents(context, creds);
570 * Destroy the cursor `cursor'.
573 krb5_error_code KRB5_LIB_FUNCTION
574 krb5_cc_end_seq_get (krb5_context context,
575 const krb5_ccache id,
576 krb5_cc_cursor *cursor)
578 return id->ops->end_get(context, id, cursor);
582 * Remove the credential identified by `cred', `which' from `id'.
585 krb5_error_code KRB5_LIB_FUNCTION
586 krb5_cc_remove_cred(krb5_context context,
587 krb5_ccache id,
588 krb5_flags which,
589 krb5_creds *cred)
591 if(id->ops->remove_cred == NULL) {
592 krb5_set_error_string(context,
593 "ccache %s does not support remove_cred",
594 id->ops->prefix);
595 return EACCES; /* XXX */
597 return (*id->ops->remove_cred)(context, id, which, cred);
601 * Set the flags of `id' to `flags'.
604 krb5_error_code KRB5_LIB_FUNCTION
605 krb5_cc_set_flags(krb5_context context,
606 krb5_ccache id,
607 krb5_flags flags)
609 return id->ops->set_flags(context, id, flags);
613 * Copy the contents of `from' to `to'.
616 krb5_error_code KRB5_LIB_FUNCTION
617 krb5_cc_copy_cache_match(krb5_context context,
618 const krb5_ccache from,
619 krb5_ccache to,
620 krb5_flags whichfields,
621 const krb5_creds * mcreds,
622 unsigned int *matched)
624 krb5_error_code ret;
625 krb5_cc_cursor cursor;
626 krb5_creds cred;
627 krb5_principal princ;
629 ret = krb5_cc_get_principal(context, from, &princ);
630 if (ret)
631 return ret;
632 ret = krb5_cc_initialize(context, to, princ);
633 if (ret) {
634 krb5_free_principal(context, princ);
635 return ret;
637 ret = krb5_cc_start_seq_get(context, from, &cursor);
638 if (ret) {
639 krb5_free_principal(context, princ);
640 return ret;
642 if (matched)
643 *matched = 0;
644 while (ret == 0 &&
645 krb5_cc_next_cred_match(context, from, &cursor, &cred,
646 whichfields, mcreds) == 0) {
647 if (matched)
648 (*matched)++;
649 ret = krb5_cc_store_cred(context, to, &cred);
650 krb5_free_cred_contents(context, &cred);
652 krb5_cc_end_seq_get(context, from, &cursor);
653 krb5_free_principal(context, princ);
654 return ret;
657 krb5_error_code KRB5_LIB_FUNCTION
658 krb5_cc_copy_cache(krb5_context context,
659 const krb5_ccache from,
660 krb5_ccache to)
662 return krb5_cc_copy_cache_match(context, from, to, 0, NULL, NULL);
666 * Return the version of `id'.
669 krb5_error_code KRB5_LIB_FUNCTION
670 krb5_cc_get_version(krb5_context context,
671 const krb5_ccache id)
673 if(id->ops->get_version)
674 return id->ops->get_version(context, id);
675 else
676 return 0;
680 * Clear `mcreds' so it can be used with krb5_cc_retrieve_cred
683 void KRB5_LIB_FUNCTION
684 krb5_cc_clear_mcred(krb5_creds *mcred)
686 memset(mcred, 0, sizeof(*mcred));
690 * Get the cc ops that is registered in `context' to handle the
691 * `prefix'. `prefix' can be a complete credential cache name or a
692 * prefix, the function will only use part up to the first colon (:)
693 * if there is one. Returns NULL if ops not found.
696 const krb5_cc_ops *
697 krb5_cc_get_prefix_ops(krb5_context context, const char *prefix)
699 char *p, *p1;
700 int i;
702 if (prefix[0] == '/')
703 return &krb5_fcc_ops;
705 p = strdup(prefix);
706 if (p == NULL) {
707 krb5_set_error_string(context, "malloc - out of memory");
708 return NULL;
710 p1 = strchr(p, ':');
711 if (p1)
712 *p1 = '\0';
714 for(i = 0; i < context->num_cc_ops && context->cc_ops[i].prefix; i++) {
715 if(strcmp(context->cc_ops[i].prefix, p) == 0) {
716 free(p);
717 return &context->cc_ops[i];
720 free(p);
721 return NULL;
724 struct krb5_cc_cache_cursor_data {
725 const krb5_cc_ops *ops;
726 krb5_cc_cursor cursor;
730 * Start iterating over all caches of `type'. If `type' is NULL, the
731 * default type is * used. `cursor' is initialized to the beginning.
732 * Return 0 or an error code.
735 krb5_error_code KRB5_LIB_FUNCTION
736 krb5_cc_cache_get_first (krb5_context context,
737 const char *type,
738 krb5_cc_cache_cursor *cursor)
740 const krb5_cc_ops *ops;
741 krb5_error_code ret;
743 if (type == NULL)
744 type = krb5_cc_default_name(context);
746 ops = krb5_cc_get_prefix_ops(context, type);
747 if (ops == NULL) {
748 krb5_set_error_string(context, "Unknown type \"%s\" when iterating "
749 "trying to iterate the credential caches", type);
750 return KRB5_CC_UNKNOWN_TYPE;
753 if (ops->get_cache_first == NULL) {
754 krb5_set_error_string(context, "Credential cache type %s doesn't support "
755 "iterations over caches", ops->prefix);
756 return KRB5_CC_NOSUPP;
759 *cursor = calloc(1, sizeof(**cursor));
760 if (*cursor == NULL) {
761 krb5_set_error_string(context, "malloc - out of memory");
762 return ENOMEM;
765 (*cursor)->ops = ops;
767 ret = ops->get_cache_first(context, &(*cursor)->cursor);
768 if (ret) {
769 free(*cursor);
770 *cursor = NULL;
772 return ret;
776 * Retrieve the next cache pointed to by (`cursor') in `id'
777 * and advance `cursor'.
778 * Return 0 or an error code.
781 krb5_error_code KRB5_LIB_FUNCTION
782 krb5_cc_cache_next (krb5_context context,
783 krb5_cc_cache_cursor cursor,
784 krb5_ccache *id)
786 return cursor->ops->get_cache_next(context, cursor->cursor, id);
790 * Destroy the cursor `cursor'.
793 krb5_error_code KRB5_LIB_FUNCTION
794 krb5_cc_cache_end_seq_get (krb5_context context,
795 krb5_cc_cache_cursor cursor)
797 krb5_error_code ret;
798 ret = cursor->ops->end_cache_get(context, cursor->cursor);
799 cursor->ops = NULL;
800 free(cursor);
801 return ret;
805 * Search for a matching credential cache of type `type' that have the
806 * `principal' as the default principal. If NULL is used for `type',
807 * the default type is used. On success, `id' needs to be freed with
808 * krb5_cc_close or krb5_cc_destroy. On failure, error code is
809 * returned and `id' is set to NULL.
812 krb5_error_code KRB5_LIB_FUNCTION
813 krb5_cc_cache_match (krb5_context context,
814 krb5_principal client,
815 const char *type,
816 krb5_ccache *id)
818 krb5_cc_cache_cursor cursor;
819 krb5_error_code ret;
820 krb5_ccache cache = NULL;
822 *id = NULL;
824 ret = krb5_cc_cache_get_first (context, type, &cursor);
825 if (ret)
826 return ret;
828 while ((ret = krb5_cc_cache_next (context, cursor, &cache)) == 0) {
829 krb5_principal principal;
831 ret = krb5_cc_get_principal(context, cache, &principal);
832 if (ret == 0) {
833 krb5_boolean match;
835 match = krb5_principal_compare(context, principal, client);
836 krb5_free_principal(context, principal);
837 if (match)
838 break;
841 krb5_cc_close(context, cache);
842 cache = NULL;
845 krb5_cc_cache_end_seq_get(context, cursor);
847 if (cache == NULL) {
848 char *str;
850 krb5_unparse_name(context, client, &str);
852 krb5_set_error_string(context, "Principal %s not found in a "
853 "credential cache", str ? str : "<out of memory>");
854 if (str)
855 free(str);
856 return KRB5_CC_NOTFOUND;
858 *id = cache;
860 return 0;