2 * Copyright (c) 1997 - 2008 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Portions Copyright (c) 2009 Apple Inc. All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions
12 * 1. Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
19 * 3. Neither the name of the Institute nor the names of its contributors
20 * may be used to endorse or promote products derived from this software
21 * without specific prior written permission.
23 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
24 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
27 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 #include "krb5_locl.h"
39 * @page krb5_ccache_intro The credential cache functions
40 * @section section_krb5_ccache Kerberos credential caches
42 * krb5_ccache structure holds a Kerberos credential cache.
44 * Heimdal support the follow types of credential caches:
47 * Store the credential in a database
49 * Store the credential in memory
51 * Store the credential in memory
53 * A credential cache server based solution for Mac OS X
55 * A credential cache server based solution for all platforms
59 * This is a minimalistic version of klist:
64 main (int argc, char **argv)
67 krb5_cc_cursor cursor;
72 if (krb5_init_context (&context) != 0)
73 errx(1, "krb5_context");
75 ret = krb5_cc_default (context, &id);
77 krb5_err(context, 1, ret, "krb5_cc_default");
79 ret = krb5_cc_start_seq_get(context, id, &cursor);
81 krb5_err(context, 1, ret, "krb5_cc_start_seq_get");
83 while((ret = krb5_cc_next_cred(context, id, &cursor, &creds)) == 0){
86 krb5_unparse_name_short(context, creds.server, &principal);
87 printf("principal: %s\\n", principal);
89 krb5_free_cred_contents (context, &creds);
91 ret = krb5_cc_end_seq_get(context, id, &cursor);
93 krb5_err(context, 1, ret, "krb5_cc_end_seq_get");
95 krb5_cc_close(context, id);
97 krb5_free_context(context);
104 * Add a new ccache type with operations `ops', overwriting any
105 * existing one if `override'.
107 * @param context a Keberos context
108 * @param ops type of plugin symbol
109 * @param override flag to select if the registration is to overide
110 * an existing ops with the same name.
112 * @return Return an error code or 0, see krb5_get_error_message().
114 * @ingroup krb5_ccache
117 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
118 krb5_cc_register(krb5_context context
,
119 const krb5_cc_ops
*ops
,
120 krb5_boolean override
)
124 for(i
= 0; i
< context
->num_cc_ops
&& context
->cc_ops
[i
]->prefix
; i
++) {
125 if(strcmp(context
->cc_ops
[i
]->prefix
, ops
->prefix
) == 0) {
127 krb5_set_error_message(context
,
129 N_("cache type %s already exists", "type"),
131 return KRB5_CC_TYPE_EXISTS
;
136 if(i
== context
->num_cc_ops
) {
137 const krb5_cc_ops
**o
= realloc(context
->cc_ops
,
138 (context
->num_cc_ops
+ 1) *
139 sizeof(context
->cc_ops
[0]));
141 krb5_set_error_message(context
, KRB5_CC_NOMEM
,
142 N_("malloc: out of memory", ""));
143 return KRB5_CC_NOMEM
;
146 context
->cc_ops
[context
->num_cc_ops
] = NULL
;
147 context
->num_cc_ops
++;
149 context
->cc_ops
[i
] = ops
;
154 * Allocate the memory for a `id' and the that function table to
155 * `ops'. Returns 0 or and error code.
159 _krb5_cc_allocate(krb5_context context
,
160 const krb5_cc_ops
*ops
,
165 p
= malloc (sizeof(*p
));
167 krb5_set_error_message(context
, KRB5_CC_NOMEM
,
168 N_("malloc: out of memory", ""));
169 return KRB5_CC_NOMEM
;
178 * Allocate memory for a new ccache in `id' with operations `ops'
179 * and name `residual'. Return 0 or an error code.
182 static krb5_error_code
183 allocate_ccache (krb5_context context
,
184 const krb5_cc_ops
*ops
,
185 const char *residual
,
189 #ifdef KRB5_USE_PATH_TOKENS
190 char * exp_residual
= NULL
;
192 ret
= _krb5_expand_path_tokens(context
, residual
, &exp_residual
);
196 residual
= exp_residual
;
199 ret
= _krb5_cc_allocate(context
, ops
, id
);
201 #ifdef KRB5_USE_PATH_TOKENS
208 ret
= (*id
)->ops
->resolve(context
, id
, residual
);
212 #ifdef KRB5_USE_PATH_TOKENS
221 * Find and allocate a ccache in `id' from the specification in `residual'.
222 * If the ccache name doesn't contain any colon, interpret it as a file name.
224 * @param context a Keberos context.
225 * @param name string name of a credential cache.
226 * @param id return pointer to a found credential cache.
228 * @return Return 0 or an error code. In case of an error, id is set
229 * to NULL, see krb5_get_error_message().
231 * @ingroup krb5_ccache
235 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
236 krb5_cc_resolve(krb5_context context
,
244 for(i
= 0; i
< context
->num_cc_ops
&& context
->cc_ops
[i
]->prefix
; i
++) {
245 size_t prefix_len
= strlen(context
->cc_ops
[i
]->prefix
);
247 if(strncmp(context
->cc_ops
[i
]->prefix
, name
, prefix_len
) == 0
248 && name
[prefix_len
] == ':') {
249 return allocate_ccache (context
, context
->cc_ops
[i
],
250 name
+ prefix_len
+ 1,
254 if (strchr (name
, ':') == NULL
)
255 return allocate_ccache (context
, &krb5_fcc_ops
, name
, id
);
257 krb5_set_error_message(context
, KRB5_CC_UNKNOWN_TYPE
,
258 N_("unknown ccache type %s", "name"), name
);
259 return KRB5_CC_UNKNOWN_TYPE
;
264 * Generates a new unique ccache of `type` in `id'. If `type' is NULL,
265 * the library chooses the default credential cache type. The supplied
266 * `hint' (that can be NULL) is a string that the credential cache
267 * type can use to base the name of the credential on, this is to make
268 * it easier for the user to differentiate the credentials.
270 * @return Return an error code or 0, see krb5_get_error_message().
272 * @ingroup krb5_ccache
275 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
276 krb5_cc_new_unique(krb5_context context
, const char *type
,
277 const char *hint
, krb5_ccache
*id
)
279 const krb5_cc_ops
*ops
;
282 ops
= krb5_cc_get_prefix_ops(context
, type
);
284 krb5_set_error_message(context
, KRB5_CC_UNKNOWN_TYPE
,
285 "Credential cache type %s is unknown", type
);
286 return KRB5_CC_UNKNOWN_TYPE
;
289 ret
= _krb5_cc_allocate(context
, ops
, id
);
292 ret
= (*id
)->ops
->gen_new(context
, id
);
301 * Return the name of the ccache `id'
303 * @ingroup krb5_ccache
307 KRB5_LIB_FUNCTION
const char* KRB5_LIB_CALL
308 krb5_cc_get_name(krb5_context context
,
311 return id
->ops
->get_name(context
, id
);
315 * Return the type of the ccache `id'.
317 * @ingroup krb5_ccache
321 KRB5_LIB_FUNCTION
const char* KRB5_LIB_CALL
322 krb5_cc_get_type(krb5_context context
,
325 return id
->ops
->prefix
;
329 * Return the complete resolvable name the cache
331 * @param context a Keberos context
332 * @param id return pointer to a found credential cache
333 * @param str the returned name of a credential cache, free with krb5_xfree()
335 * @return Returns 0 or an error (and then *str is set to NULL).
337 * @ingroup krb5_ccache
341 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
342 krb5_cc_get_full_name(krb5_context context
,
346 const char *type
, *name
;
350 type
= krb5_cc_get_type(context
, id
);
352 krb5_set_error_message(context
, KRB5_CC_UNKNOWN_TYPE
,
353 "cache have no name of type");
354 return KRB5_CC_UNKNOWN_TYPE
;
357 name
= krb5_cc_get_name(context
, id
);
359 krb5_set_error_message(context
, KRB5_CC_BADNAME
,
360 "cache of type %s have no name", type
);
361 return KRB5_CC_BADNAME
;
364 if (asprintf(str
, "%s:%s", type
, name
) == -1) {
365 krb5_set_error_message(context
, ENOMEM
, N_("malloc: out of memory", ""));
373 * Return krb5_cc_ops of a the ccache `id'.
375 * @ingroup krb5_ccache
380 krb5_cc_get_ops(krb5_context context
, krb5_ccache id
)
386 * Expand variables in `str' into `res'
390 _krb5_expand_default_cc_name(krb5_context context
, const char *str
, char **res
)
392 return _krb5_expand_path_tokens(context
, str
, res
);
396 * Return non-zero if envirnoment that will determine default krb5cc
401 environment_changed(krb5_context context
)
405 /* if the cc name was set, don't change it */
406 if (context
->default_cc_name_set
)
409 /* XXX performance: always ask KCM/API if default name has changed */
410 if (context
->default_cc_name
&&
411 (strncmp(context
->default_cc_name
, "KCM:", 4) == 0 ||
412 strncmp(context
->default_cc_name
, "API:", 4) == 0))
418 e
= getenv("KRB5CCNAME");
420 if (context
->default_cc_name_env
) {
421 free(context
->default_cc_name_env
);
422 context
->default_cc_name_env
= NULL
;
426 if (context
->default_cc_name_env
== NULL
)
428 if (strcmp(e
, context
->default_cc_name_env
) != 0)
435 * Switch the default default credential cache for a specific
436 * credcache type (and name for some implementations).
438 * @return Return an error code or 0, see krb5_get_error_message().
440 * @ingroup krb5_ccache
443 krb5_error_code KRB5_LIB_FUNCTION
444 krb5_cc_switch(krb5_context context
, krb5_ccache id
)
447 if (id
->ops
->set_default
== NULL
)
450 return (*id
->ops
->set_default
)(context
, id
);
454 * Return true if the default credential cache support switch
456 * @ingroup krb5_ccache
459 krb5_boolean KRB5_LIB_FUNCTION
460 krb5_cc_support_switch(krb5_context context
, const char *type
)
462 const krb5_cc_ops
*ops
;
464 ops
= krb5_cc_get_prefix_ops(context
, type
);
465 if (ops
&& ops
->set_default
)
471 * Set the default cc name for `context' to `name'.
473 * @ingroup krb5_ccache
476 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
477 krb5_cc_set_default_name(krb5_context context
, const char *name
)
479 krb5_error_code ret
= 0;
480 char *p
= NULL
, *exp_p
= NULL
;
483 const char *e
= NULL
;
486 e
= getenv("KRB5CCNAME");
489 if (context
->default_cc_name_env
)
490 free(context
->default_cc_name_env
);
491 context
->default_cc_name_env
= strdup(e
);
495 e
= krb5_config_get_string(context
, NULL
, "libdefaults",
496 "default_cc_name", NULL
);
498 ret
= _krb5_expand_default_cc_name(context
, e
, &p
);
503 const krb5_cc_ops
*ops
= KRB5_DEFAULT_CCTYPE
;
504 e
= krb5_config_get_string(context
, NULL
, "libdefaults",
505 "default_cc_type", NULL
);
507 ops
= krb5_cc_get_prefix_ops(context
, e
);
509 krb5_set_error_message(context
,
510 KRB5_CC_UNKNOWN_TYPE
,
511 "Credential cache type %s "
513 return KRB5_CC_UNKNOWN_TYPE
;
516 ret
= (*ops
->get_default_name
)(context
, &p
);
521 context
->default_cc_name_set
= 0;
524 context
->default_cc_name_set
= 1;
528 krb5_set_error_message(context
, ENOMEM
, N_("malloc: out of memory", ""));
532 ret
= _krb5_expand_path_tokens(context
, p
, &exp_p
);
537 if (context
->default_cc_name
)
538 free(context
->default_cc_name
);
540 context
->default_cc_name
= exp_p
;
546 * Return a pointer to a context static string containing the default
549 * @return String to the default credential cache name.
551 * @ingroup krb5_ccache
555 KRB5_LIB_FUNCTION
const char* KRB5_LIB_CALL
556 krb5_cc_default_name(krb5_context context
)
558 if (context
->default_cc_name
== NULL
|| environment_changed(context
))
559 krb5_cc_set_default_name(context
, NULL
);
561 return context
->default_cc_name
;
565 * Open the default ccache in `id'.
567 * @return Return an error code or 0, see krb5_get_error_message().
569 * @ingroup krb5_ccache
573 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
574 krb5_cc_default(krb5_context context
,
577 const char *p
= krb5_cc_default_name(context
);
580 krb5_set_error_message(context
, ENOMEM
, N_("malloc: out of memory", ""));
583 return krb5_cc_resolve(context
, p
, id
);
587 * Create a new ccache in `id' for `primary_principal'.
589 * @return Return an error code or 0, see krb5_get_error_message().
591 * @ingroup krb5_ccache
595 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
596 krb5_cc_initialize(krb5_context context
,
598 krb5_principal primary_principal
)
600 return (*id
->ops
->init
)(context
, id
, primary_principal
);
605 * Remove the ccache `id'.
607 * @return Return an error code or 0, see krb5_get_error_message().
609 * @ingroup krb5_ccache
613 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
614 krb5_cc_destroy(krb5_context context
,
619 ret
= (*id
->ops
->destroy
)(context
, id
);
620 krb5_cc_close (context
, id
);
625 * Stop using the ccache `id' and free the related resources.
627 * @return Return an error code or 0, see krb5_get_error_message().
629 * @ingroup krb5_ccache
633 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
634 krb5_cc_close(krb5_context context
,
638 ret
= (*id
->ops
->close
)(context
, id
);
644 * Store `creds' in the ccache `id'.
646 * @return Return an error code or 0, see krb5_get_error_message().
648 * @ingroup krb5_ccache
652 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
653 krb5_cc_store_cred(krb5_context context
,
657 return (*id
->ops
->store
)(context
, id
, creds
);
661 * Retrieve the credential identified by `mcreds' (and `whichfields')
662 * from `id' in `creds'. 'creds' must be free by the caller using
663 * krb5_free_cred_contents.
665 * @param context A Kerberos 5 context
666 * @param id a Kerberos 5 credential cache
667 * @param whichfields what fields to use for matching credentials, same
668 * flags as whichfields in krb5_compare_creds()
669 * @param mcreds template credential to use for comparing
670 * @param creds returned credential, free with krb5_free_cred_contents()
672 * @return Return an error code or 0, see krb5_get_error_message().
674 * @ingroup krb5_ccache
678 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
679 krb5_cc_retrieve_cred(krb5_context context
,
681 krb5_flags whichfields
,
682 const krb5_creds
*mcreds
,
686 krb5_cc_cursor cursor
;
688 if (id
->ops
->retrieve
!= NULL
) {
689 return (*id
->ops
->retrieve
)(context
, id
, whichfields
,
693 ret
= krb5_cc_start_seq_get(context
, id
, &cursor
);
696 while((ret
= krb5_cc_next_cred(context
, id
, &cursor
, creds
)) == 0){
697 if(krb5_compare_creds(context
, whichfields
, mcreds
, creds
)){
701 krb5_free_cred_contents (context
, creds
);
703 krb5_cc_end_seq_get(context
, id
, &cursor
);
708 * Return the principal of `id' in `principal'.
710 * @return Return an error code or 0, see krb5_get_error_message().
712 * @ingroup krb5_ccache
716 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
717 krb5_cc_get_principal(krb5_context context
,
719 krb5_principal
*principal
)
721 return (*id
->ops
->get_princ
)(context
, id
, principal
);
725 * Start iterating over `id', `cursor' is initialized to the
726 * beginning. Caller must free the cursor with krb5_cc_end_seq_get().
728 * @return Return an error code or 0, see krb5_get_error_message().
730 * @ingroup krb5_ccache
734 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
735 krb5_cc_start_seq_get (krb5_context context
,
736 const krb5_ccache id
,
737 krb5_cc_cursor
*cursor
)
739 return (*id
->ops
->get_first
)(context
, id
, cursor
);
743 * Retrieve the next cred pointed to by (`id', `cursor') in `creds'
744 * and advance `cursor'.
746 * @return Return an error code or 0, see krb5_get_error_message().
748 * @ingroup krb5_ccache
752 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
753 krb5_cc_next_cred (krb5_context context
,
754 const krb5_ccache id
,
755 krb5_cc_cursor
*cursor
,
758 return (*id
->ops
->get_next
)(context
, id
, cursor
, creds
);
762 * Destroy the cursor `cursor'.
764 * @ingroup krb5_ccache
768 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
769 krb5_cc_end_seq_get (krb5_context context
,
770 const krb5_ccache id
,
771 krb5_cc_cursor
*cursor
)
773 return (*id
->ops
->end_get
)(context
, id
, cursor
);
777 * Remove the credential identified by `cred', `which' from `id'.
779 * @ingroup krb5_ccache
783 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
784 krb5_cc_remove_cred(krb5_context context
,
789 if(id
->ops
->remove_cred
== NULL
) {
790 krb5_set_error_message(context
,
792 "ccache %s does not support remove_cred",
794 return EACCES
; /* XXX */
796 return (*id
->ops
->remove_cred
)(context
, id
, which
, cred
);
800 * Set the flags of `id' to `flags'.
802 * @ingroup krb5_ccache
806 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
807 krb5_cc_set_flags(krb5_context context
,
811 return (*id
->ops
->set_flags
)(context
, id
, flags
);
815 * Get the flags of `id', store them in `flags'.
817 * @ingroup krb5_ccache
820 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
821 krb5_cc_get_flags(krb5_context context
,
830 * Copy the contents of `from' to `to' if the given match function
833 * @param context A Kerberos 5 context.
834 * @param from the cache to copy data from.
835 * @param to the cache to copy data to.
836 * @param match a match function that should return TRUE if cred argument should be copied, if NULL, all credentials are copied.
837 * @param matchctx context passed to match function.
838 * @param matched set to true if there was a credential that matched, may be NULL.
840 * @return Return an error code or 0, see krb5_get_error_message().
842 * @ingroup krb5_ccache
845 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
846 krb5_cc_copy_match_f(krb5_context context
,
847 const krb5_ccache from
,
849 krb5_boolean (*match
)(krb5_context
, void *, const krb5_creds
*),
851 unsigned int *matched
)
854 krb5_cc_cursor cursor
;
856 krb5_principal princ
;
861 ret
= krb5_cc_get_principal(context
, from
, &princ
);
864 ret
= krb5_cc_initialize(context
, to
, princ
);
866 krb5_free_principal(context
, princ
);
869 ret
= krb5_cc_start_seq_get(context
, from
, &cursor
);
871 krb5_free_principal(context
, princ
);
875 while ((ret
= krb5_cc_next_cred(context
, from
, &cursor
, &cred
)) == 0) {
876 if (match
== NULL
|| (*match
)(context
, matchctx
, &cred
) == 0) {
879 ret
= krb5_cc_store_cred(context
, to
, &cred
);
883 krb5_free_cred_contents(context
, &cred
);
885 krb5_cc_end_seq_get(context
, from
, &cursor
);
886 krb5_free_principal(context
, princ
);
887 if (ret
== KRB5_CC_END
)
893 * Just like krb5_cc_copy_match_f(), but copy everything.
895 * @ingroup @krb5_ccache
898 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
899 krb5_cc_copy_cache(krb5_context context
,
900 const krb5_ccache from
,
903 return krb5_cc_copy_match_f(context
, from
, to
, NULL
, NULL
, NULL
);
907 * Return the version of `id'.
909 * @ingroup krb5_ccache
913 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
914 krb5_cc_get_version(krb5_context context
,
915 const krb5_ccache id
)
917 if(id
->ops
->get_version
)
918 return (*id
->ops
->get_version
)(context
, id
);
924 * Clear `mcreds' so it can be used with krb5_cc_retrieve_cred
926 * @ingroup krb5_ccache
930 KRB5_LIB_FUNCTION
void KRB5_LIB_CALL
931 krb5_cc_clear_mcred(krb5_creds
*mcred
)
933 memset(mcred
, 0, sizeof(*mcred
));
937 * Get the cc ops that is registered in `context' to handle the
938 * prefix. prefix can be a complete credential cache name or a
939 * prefix, the function will only use part up to the first colon (:)
940 * if there is one. If prefix the argument is NULL, the default ccache
941 * implemtation is returned.
943 * @return Returns NULL if ops not found.
945 * @ingroup krb5_ccache
950 krb5_cc_get_prefix_ops(krb5_context context
, const char *prefix
)
956 return KRB5_DEFAULT_CCTYPE
;
957 if (prefix
[0] == '/')
958 return &krb5_fcc_ops
;
962 krb5_set_error_message(context
, ENOMEM
, N_("malloc: out of memory", ""));
969 for(i
= 0; i
< context
->num_cc_ops
&& context
->cc_ops
[i
]->prefix
; i
++) {
970 if(strcmp(context
->cc_ops
[i
]->prefix
, p
) == 0) {
972 return context
->cc_ops
[i
];
979 struct krb5_cc_cache_cursor_data
{
980 const krb5_cc_ops
*ops
;
981 krb5_cc_cursor cursor
;
985 * Start iterating over all caches of specified type. See also
986 * krb5_cccol_cursor_new().
988 * @param context A Kerberos 5 context
989 * @param type optional type to iterate over, if NULL, the default cache is used.
990 * @param cursor cursor should be freed with krb5_cc_cache_end_seq_get().
992 * @return Return an error code or 0, see krb5_get_error_message().
994 * @ingroup krb5_ccache
998 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
999 krb5_cc_cache_get_first (krb5_context context
,
1001 krb5_cc_cache_cursor
*cursor
)
1003 const krb5_cc_ops
*ops
;
1004 krb5_error_code ret
;
1007 type
= krb5_cc_default_name(context
);
1009 ops
= krb5_cc_get_prefix_ops(context
, type
);
1011 krb5_set_error_message(context
, KRB5_CC_UNKNOWN_TYPE
,
1012 "Unknown type \"%s\" when iterating "
1013 "trying to iterate the credential caches", type
);
1014 return KRB5_CC_UNKNOWN_TYPE
;
1017 if (ops
->get_cache_first
== NULL
) {
1018 krb5_set_error_message(context
, KRB5_CC_NOSUPP
,
1019 N_("Credential cache type %s doesn't support "
1020 "iterations over caches", "type"),
1022 return KRB5_CC_NOSUPP
;
1025 *cursor
= calloc(1, sizeof(**cursor
));
1026 if (*cursor
== NULL
) {
1027 krb5_set_error_message(context
, ENOMEM
, N_("malloc: out of memory", ""));
1031 (*cursor
)->ops
= ops
;
1033 ret
= ops
->get_cache_first(context
, &(*cursor
)->cursor
);
1042 * Retrieve the next cache pointed to by (`cursor') in `id'
1043 * and advance `cursor'.
1045 * @param context A Kerberos 5 context
1046 * @param cursor the iterator cursor, returned by krb5_cc_cache_get_first()
1047 * @param id next ccache
1049 * @return Return 0 or an error code. Returns KRB5_CC_END when the end
1050 * of caches is reached, see krb5_get_error_message().
1052 * @ingroup krb5_ccache
1056 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1057 krb5_cc_cache_next (krb5_context context
,
1058 krb5_cc_cache_cursor cursor
,
1061 return cursor
->ops
->get_cache_next(context
, cursor
->cursor
, id
);
1065 * Destroy the cursor `cursor'.
1067 * @return Return an error code or 0, see krb5_get_error_message().
1069 * @ingroup krb5_ccache
1073 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1074 krb5_cc_cache_end_seq_get (krb5_context context
,
1075 krb5_cc_cache_cursor cursor
)
1077 krb5_error_code ret
;
1078 ret
= cursor
->ops
->end_cache_get(context
, cursor
->cursor
);
1085 * Search for a matching credential cache that have the
1086 * `principal' as the default principal. On success, `id' needs to be
1087 * freed with krb5_cc_close() or krb5_cc_destroy().
1089 * @param context A Kerberos 5 context
1090 * @param client The principal to search for
1091 * @param id the returned credential cache
1093 * @return On failure, error code is returned and `id' is set to NULL.
1095 * @ingroup krb5_ccache
1099 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1100 krb5_cc_cache_match (krb5_context context
,
1101 krb5_principal client
,
1104 krb5_cccol_cursor cursor
;
1105 krb5_error_code ret
;
1106 krb5_ccache cache
= NULL
;
1110 ret
= krb5_cccol_cursor_new (context
, &cursor
);
1114 while (krb5_cccol_cursor_next (context
, cursor
, &cache
) == 0 && cache
!= NULL
) {
1115 krb5_principal principal
;
1117 ret
= krb5_cc_get_principal(context
, cache
, &principal
);
1121 match
= krb5_principal_compare(context
, principal
, client
);
1122 krb5_free_principal(context
, principal
);
1127 krb5_cc_close(context
, cache
);
1131 krb5_cccol_cursor_free(context
, &cursor
);
1133 if (cache
== NULL
) {
1136 krb5_unparse_name(context
, client
, &str
);
1138 krb5_set_error_message(context
, KRB5_CC_NOTFOUND
,
1139 N_("Principal %s not found in any "
1140 "credential cache", ""),
1141 str
? str
: "<out of memory>");
1144 return KRB5_CC_NOTFOUND
;
1152 * Move the content from one credential cache to another. The
1153 * operation is an atomic switch.
1155 * @param context a Keberos context
1156 * @param from the credential cache to move the content from
1157 * @param to the credential cache to move the content to
1159 * @return On sucess, from is freed. On failure, error code is
1160 * returned and from and to are both still allocated, see krb5_get_error_message().
1162 * @ingroup krb5_ccache
1166 krb5_cc_move(krb5_context context
, krb5_ccache from
, krb5_ccache to
)
1168 krb5_error_code ret
;
1170 if (strcmp(from
->ops
->prefix
, to
->ops
->prefix
) != 0) {
1171 krb5_set_error_message(context
, KRB5_CC_NOSUPP
,
1172 N_("Moving credentials between diffrent "
1173 "types not yet supported", ""));
1174 return KRB5_CC_NOSUPP
;
1177 ret
= (*to
->ops
->move
)(context
, from
, to
);
1179 memset(from
, 0, sizeof(*from
));
1185 #define KRB5_CONF_NAME "krb5_ccache_conf_data"
1186 #define KRB5_REALM_NAME "X-CACHECONF:"
1188 static krb5_error_code
1189 build_conf_principals(krb5_context context
, krb5_ccache id
,
1190 krb5_const_principal principal
,
1191 const char *name
, krb5_creds
*cred
)
1193 krb5_principal client
;
1194 krb5_error_code ret
;
1197 memset(cred
, 0, sizeof(*cred
));
1199 ret
= krb5_cc_get_principal(context
, id
, &client
);
1204 ret
= krb5_unparse_name(context
, principal
, &pname
);
1209 ret
= krb5_make_principal(context
, &cred
->server
,
1211 KRB5_CONF_NAME
, name
, pname
, NULL
);
1214 krb5_free_principal(context
, client
);
1217 ret
= krb5_copy_principal(context
, client
, &cred
->client
);
1218 krb5_free_principal(context
, client
);
1223 * Return TRUE (non zero) if the principal is a configuration
1224 * principal (generated part of krb5_cc_set_config()). Returns FALSE
1225 * (zero) if not a configuration principal.
1227 * @param context a Keberos context
1228 * @param principal principal to check if it a configuration principal
1230 * @ingroup krb5_ccache
1233 KRB5_LIB_FUNCTION krb5_boolean KRB5_LIB_CALL
1234 krb5_is_config_principal(krb5_context context
,
1235 krb5_const_principal principal
)
1237 if (strcmp(principal
->realm
, KRB5_REALM_NAME
) != 0)
1240 if (principal
->name
.name_string
.len
== 0 ||
1241 strcmp(principal
->name
.name_string
.val
[0], KRB5_CONF_NAME
) != 0)
1248 * Store some configuration for the credential cache in the cache.
1249 * Existing configuration under the same name is over-written.
1251 * @param context a Keberos context
1252 * @param id the credential cache to store the data for
1253 * @param principal configuration for a specific principal, if
1254 * NULL, global for the whole cache.
1255 * @param name name under which the configuraion is stored.
1256 * @param data data to store, if NULL, configure is removed.
1258 * @ingroup krb5_ccache
1261 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1262 krb5_cc_set_config(krb5_context context
, krb5_ccache id
,
1263 krb5_const_principal principal
,
1264 const char *name
, krb5_data
*data
)
1266 krb5_error_code ret
;
1269 ret
= build_conf_principals(context
, id
, principal
, name
, &cred
);
1273 /* Remove old configuration */
1274 ret
= krb5_cc_remove_cred(context
, id
, 0, &cred
);
1275 if (ret
&& ret
!= KRB5_CC_NOTFOUND
)
1279 /* not that anyone care when this expire */
1280 cred
.times
.authtime
= time(NULL
);
1281 cred
.times
.endtime
= cred
.times
.authtime
+ 3600 * 24 * 30;
1283 ret
= krb5_data_copy(&cred
.ticket
, data
->data
, data
->length
);
1287 ret
= krb5_cc_store_cred(context
, id
, &cred
);
1291 krb5_free_cred_contents (context
, &cred
);
1296 * Get some configuration for the credential cache in the cache.
1298 * @param context a Keberos context
1299 * @param id the credential cache to store the data for
1300 * @param principal configuration for a specific principal, if
1301 * NULL, global for the whole cache.
1302 * @param name name under which the configuraion is stored.
1303 * @param data data to fetched, free with krb5_data_free()
1305 * @ingroup krb5_ccache
1309 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1310 krb5_cc_get_config(krb5_context context
, krb5_ccache id
,
1311 krb5_const_principal principal
,
1312 const char *name
, krb5_data
*data
)
1314 krb5_creds mcred
, cred
;
1315 krb5_error_code ret
;
1317 memset(&cred
, 0, sizeof(cred
));
1318 krb5_data_zero(data
);
1320 ret
= build_conf_principals(context
, id
, principal
, name
, &mcred
);
1324 ret
= krb5_cc_retrieve_cred(context
, id
, 0, &mcred
, &cred
);
1328 ret
= krb5_data_copy(data
, cred
.ticket
.data
, cred
.ticket
.length
);
1331 krb5_free_cred_contents (context
, &cred
);
1332 krb5_free_cred_contents (context
, &mcred
);
1340 struct krb5_cccol_cursor_data
{
1342 krb5_cc_cache_cursor cursor
;
1346 * Get a new cache interation cursor that will interate over all
1347 * credentials caches independent of type.
1349 * @param context a Keberos context
1350 * @param cursor passed into krb5_cccol_cursor_next() and free with krb5_cccol_cursor_free().
1352 * @return Returns 0 or and error code, see krb5_get_error_message().
1354 * @ingroup krb5_ccache
1357 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1358 krb5_cccol_cursor_new(krb5_context context
, krb5_cccol_cursor
*cursor
)
1360 *cursor
= calloc(1, sizeof(**cursor
));
1361 if (*cursor
== NULL
) {
1362 krb5_set_error_message(context
, ENOMEM
, N_("malloc: out of memory", ""));
1366 (*cursor
)->cursor
= NULL
;
1372 * Get next credential cache from the iteration.
1374 * @param context A Kerberos 5 context
1375 * @param cursor the iteration cursor
1376 * @param cache the returned cursor, pointer is set to NULL on failure
1377 * and a cache on success. The returned cache needs to be freed
1378 * with krb5_cc_close() or destroyed with krb5_cc_destroy().
1379 * MIT Kerberos behavies slightly diffrent and sets cache to NULL
1380 * when all caches are iterated over and return 0.
1382 * @return Return 0 or and error, KRB5_CC_END is returned at the end
1383 * of iteration. See krb5_get_error_message().
1385 * @ingroup krb5_ccache
1389 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1390 krb5_cccol_cursor_next(krb5_context context
, krb5_cccol_cursor cursor
,
1393 krb5_error_code ret
;
1397 while (cursor
->idx
< context
->num_cc_ops
) {
1399 if (cursor
->cursor
== NULL
) {
1400 ret
= krb5_cc_cache_get_first (context
,
1401 context
->cc_ops
[cursor
->idx
]->prefix
,
1408 ret
= krb5_cc_cache_next(context
, cursor
->cursor
, cache
);
1412 krb5_cc_cache_end_seq_get(context
, cursor
->cursor
);
1413 cursor
->cursor
= NULL
;
1414 if (ret
!= KRB5_CC_END
)
1419 if (cursor
->idx
>= context
->num_cc_ops
) {
1420 krb5_set_error_message(context
, KRB5_CC_END
,
1421 N_("Reached end of credential caches", ""));
1429 * End an iteration and free all resources, can be done before end is reached.
1431 * @param context A Kerberos 5 context
1432 * @param cursor the iteration cursor to be freed.
1434 * @return Return 0 or and error, KRB5_CC_END is returned at the end
1435 * of iteration. See krb5_get_error_message().
1437 * @ingroup krb5_ccache
1440 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1441 krb5_cccol_cursor_free(krb5_context context
, krb5_cccol_cursor
*cursor
)
1443 krb5_cccol_cursor c
= *cursor
;
1448 krb5_cc_cache_end_seq_get(context
, c
->cursor
);
1455 * Return the last time the credential cache was modified.
1457 * @param context A Kerberos 5 context
1458 * @param id The credential cache to probe
1459 * @param mtime the last modification time, set to 0 on error.
1461 * @return Return 0 or and error. See krb5_get_error_message().
1463 * @ingroup krb5_ccache
1467 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1468 krb5_cc_last_change_time(krb5_context context
,
1470 krb5_timestamp
*mtime
)
1473 return (*id
->ops
->lastchange
)(context
, id
, mtime
);
1477 * Return the last modfication time for a cache collection. The query
1478 * can be limited to a specific cache type. If the function return 0
1479 * and mtime is 0, there was no credentials in the caches.
1481 * @param context A Kerberos 5 context
1482 * @param type The credential cache to probe, if NULL, all type are traversed.
1483 * @param mtime the last modification time, set to 0 on error.
1485 * @return Return 0 or and error. See krb5_get_error_message().
1487 * @ingroup krb5_ccache
1490 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1491 krb5_cccol_last_change_time(krb5_context context
,
1493 krb5_timestamp
*mtime
)
1495 krb5_cccol_cursor cursor
;
1496 krb5_error_code ret
;
1498 krb5_timestamp t
= 0;
1502 ret
= krb5_cccol_cursor_new (context
, &cursor
);
1506 while (krb5_cccol_cursor_next(context
, cursor
, &id
) == 0 && id
!= NULL
) {
1508 if (type
&& strcmp(krb5_cc_get_type(context
, id
), type
) != 0)
1511 ret
= krb5_cc_last_change_time(context
, id
, &t
);
1512 krb5_cc_close(context
, id
);
1519 krb5_cccol_cursor_free(context
, &cursor
);
1524 * Return a friendly name on credential cache. Free the result with krb5_xfree().
1526 * @return Return an error code or 0, see krb5_get_error_message().
1528 * @ingroup krb5_ccache
1531 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1532 krb5_cc_get_friendly_name(krb5_context context
,
1536 krb5_error_code ret
;
1539 ret
= krb5_cc_get_config(context
, id
, NULL
, "FriendlyName", &data
);
1541 krb5_principal principal
;
1542 ret
= krb5_cc_get_principal(context
, id
, &principal
);
1545 ret
= krb5_unparse_name(context
, principal
, name
);
1546 krb5_free_principal(context
, principal
);
1548 ret
= asprintf(name
, "%.*s", (int)data
.length
, (char *)data
.data
);
1549 krb5_data_free(&data
);
1552 krb5_set_error_message(context
, ret
, N_("malloc: out of memory", ""));
1561 * Set the friendly name on credential cache.
1563 * @return Return an error code or 0, see krb5_get_error_message().
1565 * @ingroup krb5_ccache
1568 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1569 krb5_cc_set_friendly_name(krb5_context context
,
1575 data
.data
= rk_UNCONST(name
);
1576 data
.length
= strlen(name
);
1578 return krb5_cc_set_config(context
, id
, NULL
, "FriendlyName", &data
);
1582 * Get the lifetime of the initial ticket in the cache
1584 * Get the lifetime of the initial ticket in the cache, if the initial
1585 * ticket was not found, the error code KRB5_CC_END is returned.
1587 * @param context A Kerberos 5 context.
1588 * @param id a credential cache
1589 * @param t the relative lifetime of the initial ticket
1591 * @return Return an error code or 0, see krb5_get_error_message().
1593 * @ingroup krb5_ccache
1596 KRB5_LIB_FUNCTION krb5_error_code KRB5_LIB_CALL
1597 krb5_cc_get_lifetime(krb5_context context
, krb5_ccache id
, time_t *t
)
1599 krb5_cc_cursor cursor
;
1600 krb5_error_code ret
;
1607 ret
= krb5_cc_start_seq_get(context
, id
, &cursor
);
1611 while ((ret
= krb5_cc_next_cred(context
, id
, &cursor
, &cred
)) == 0) {
1612 if (cred
.flags
.b
.initial
) {
1613 if (now
< cred
.times
.endtime
)
1614 *t
= cred
.times
.endtime
- now
;
1615 krb5_free_cred_contents(context
, &cred
);
1618 krb5_free_cred_contents(context
, &cred
);
1621 krb5_cc_end_seq_get(context
, id
, &cursor
);
1627 * Set the time offset betwen the client and the KDC
1629 * If the backend doesn't support KDC offset, use the context global setting.
1631 * @param context A Kerberos 5 context.
1632 * @param id a credential cache
1633 * @param offset the offset in seconds
1635 * @return Return an error code or 0, see krb5_get_error_message().
1637 * @ingroup krb5_ccache
1641 krb5_cc_set_kdc_offset(krb5_context context
, krb5_ccache id
, krb5_deltat offset
)
1643 if (id
->ops
->set_kdc_offset
== NULL
) {
1644 context
->kdc_sec_offset
= offset
;
1645 context
->kdc_usec_offset
= 0;
1648 return (*id
->ops
->set_kdc_offset
)(context
, id
, offset
);
1652 * Get the time offset betwen the client and the KDC
1654 * If the backend doesn't support KDC offset, use the context global setting.
1656 * @param context A Kerberos 5 context.
1657 * @param id a credential cache
1658 * @param offset the offset in seconds
1660 * @return Return an error code or 0, see krb5_get_error_message().
1662 * @ingroup krb5_ccache
1666 krb5_cc_get_kdc_offset(krb5_context context
, krb5_ccache id
, krb5_deltat
*offset
)
1668 if (id
->ops
->get_kdc_offset
== NULL
) {
1669 *offset
= context
->kdc_sec_offset
;
1672 return (*id
->ops
->get_kdc_offset
)(context
, id
, offset
);