#include "k5-int.h"
#include "k5-thread.h"
#include "fcc.h"
#include "cc-int.h"
struct krb5_cc_typelist {
const krb5_cc_ops *ops;
struct krb5_cc_typelist *next;
};
struct krb5_cc_typecursor {
struct krb5_cc_typelist *tptr;
};
extern const krb5_cc_ops krb5_mcc_ops;
#define NEXT NULL
#ifdef _WIN32
extern const krb5_cc_ops krb5_lcc_ops;
static struct krb5_cc_typelist cc_lcc_entry = { &krb5_lcc_ops, NEXT };
#undef NEXT
#define NEXT &cc_lcc_entry
#endif
#ifdef USE_CCAPI
extern const krb5_cc_ops krb5_cc_stdcc_ops;
static struct krb5_cc_typelist cc_stdcc_entry = { &krb5_cc_stdcc_ops, NEXT };
#undef NEXT
#define NEXT &cc_stdcc_entry
#endif
static struct krb5_cc_typelist cc_mcc_entry = { &krb5_mcc_ops, NEXT };
#undef NEXT
#define NEXT &cc_mcc_entry
#ifndef NO_FILE_CCACHE
static struct krb5_cc_typelist cc_fcc_entry = { &krb5_cc_file_ops, NEXT };
#undef NEXT
#define NEXT &cc_fcc_entry
#endif
#ifdef USE_KEYRING_CCACHE
extern const krb5_cc_ops krb5_krcc_ops;
static struct krb5_cc_typelist cc_krcc_entry = { &krb5_krcc_ops, NEXT };
#undef NEXT
#define NEXT &cc_krcc_entry
#endif
#ifndef _WIN32
extern const krb5_cc_ops krb5_dcc_ops;
static struct krb5_cc_typelist cc_dcc_entry = { &krb5_dcc_ops, NEXT };
#undef NEXT
#define NEXT &cc_dcc_entry
extern const krb5_cc_ops krb5_kcm_ops;
static struct krb5_cc_typelist cc_kcm_entry = { &krb5_kcm_ops, NEXT };
#undef NEXT
#define NEXT &cc_kcm_entry
#endif
#ifdef USE_CCAPI_MACOS
extern const krb5_cc_ops krb5_api_macos_ops;
static struct krb5_cc_typelist cc_macos_entry = { &krb5_api_macos_ops, NEXT };
#undef NEXT
#define NEXT &cc_macos_entry
#endif
#define INITIAL_TYPEHEAD (NEXT)
static struct krb5_cc_typelist *cc_typehead = INITIAL_TYPEHEAD;
static k5_mutex_t cc_typelist_lock = K5_MUTEX_PARTIAL_INITIALIZER;
static k5_cc_mutex cccol_lock = K5_CC_MUTEX_PARTIAL_INITIALIZER;
static krb5_error_code
krb5int_cc_getops(krb5_context, const char *, const krb5_cc_ops **);
int
krb5int_cc_initialize(void)
{
int err;
err = k5_cc_mutex_finish_init(&cccol_lock);
if (err)
return err;
err = k5_cc_mutex_finish_init(&krb5int_mcc_mutex);
if (err)
return err;
err = k5_mutex_finish_init(&cc_typelist_lock);
if (err)
return err;
#ifndef NO_FILE_CCACHE
err = k5_cc_mutex_finish_init(&krb5int_cc_file_mutex);
if (err)
return err;
#endif
#ifdef USE_KEYRING_CCACHE
err = k5_cc_mutex_finish_init(&krb5int_krcc_mutex);
if (err)
return err;
#endif
return 0;
}
void
krb5int_cc_finalize(void)
{
struct krb5_cc_typelist *t, *t_next;
k5_cccol_force_unlock();
k5_cc_mutex_destroy(&cccol_lock);
k5_mutex_destroy(&cc_typelist_lock);
#ifndef NO_FILE_CCACHE
k5_cc_mutex_destroy(&krb5int_cc_file_mutex);
#endif
k5_cc_mutex_destroy(&krb5int_mcc_mutex);
#ifdef USE_KEYRING_CCACHE
k5_cc_mutex_destroy(&krb5int_krcc_mutex);
#endif
for (t = cc_typehead; t != INITIAL_TYPEHEAD; t = t_next) {
t_next = t->next;
free(t);
}
}
krb5_error_code KRB5_CALLCONV
krb5_cc_register(krb5_context context, const krb5_cc_ops *ops,
krb5_boolean override)
{
struct krb5_cc_typelist *t;
k5_mutex_lock(&cc_typelist_lock);
for (t = cc_typehead;t && strcmp(t->ops->prefix,ops->prefix);t = t->next)
;
if (t) {
if (override) {
t->ops = ops;
k5_mutex_unlock(&cc_typelist_lock);
return 0;
} else {
k5_mutex_unlock(&cc_typelist_lock);
return KRB5_CC_TYPE_EXISTS;
}
}
if (!(t = (struct krb5_cc_typelist *) malloc(sizeof(*t)))) {
k5_mutex_unlock(&cc_typelist_lock);
return ENOMEM;
}
t->next = cc_typehead;
t->ops = ops;
cc_typehead = t;
k5_mutex_unlock(&cc_typelist_lock);
return 0;
}
#include <ctype.h>
krb5_error_code KRB5_CALLCONV
krb5_cc_resolve (krb5_context context, const char *name, krb5_ccache *cache)
{
char *pfx, *cp;
const char *resid;
unsigned int pfxlen;
krb5_error_code err;
const krb5_cc_ops *ops;
if (name == NULL)
return KRB5_CC_BADNAME;
pfx = NULL;
cp = strchr (name, ':');
if (!cp) {
if (krb5_cc_dfl_ops)
return (*krb5_cc_dfl_ops->resolve)(context, cache, name);
else
return KRB5_CC_BADNAME;
}
pfxlen = cp - name;
if ( pfxlen == 1 && isalpha((unsigned char) name[0]) ) {
pfx = strdup("FILE");
if (!pfx)
return ENOMEM;
resid = name;
} else {
resid = name + pfxlen + 1;
pfx = k5memdup0(name, pfxlen, &err);
if (pfx == NULL)
return err;
}
*cache = (krb5_ccache) 0;
err = krb5int_cc_getops(context, pfx, &ops);
if (pfx != NULL)
free(pfx);
if (err)
return err;
return ops->resolve(context, cache, resid);
}
krb5_error_code KRB5_CALLCONV
krb5_cc_dup(krb5_context context, krb5_ccache in, krb5_ccache *out)
{
return in->ops->resolve(context, out, in->ops->get_name(context, in));
}
static krb5_error_code
krb5int_cc_getops(krb5_context context,
const char *pfx,
const krb5_cc_ops **ops)
{
struct krb5_cc_typelist *tlist;
k5_mutex_lock(&cc_typelist_lock);
for (tlist = cc_typehead; tlist; tlist = tlist->next) {
if (strcmp (tlist->ops->prefix, pfx) == 0) {
*ops = tlist->ops;
k5_mutex_unlock(&cc_typelist_lock);
return 0;
}
}
k5_mutex_unlock(&cc_typelist_lock);
if (krb5_cc_dfl_ops && !strcmp (pfx, krb5_cc_dfl_ops->prefix)) {
*ops = krb5_cc_dfl_ops;
return 0;
}
return KRB5_CC_UNKNOWN_TYPE;
}
krb5_error_code KRB5_CALLCONV
krb5_cc_new_unique(
krb5_context context,
const char *type,
const char *hint,
krb5_ccache *id)
{
const krb5_cc_ops *ops;
krb5_error_code err;
*id = NULL;
TRACE_CC_NEW_UNIQUE(context, type);
err = krb5int_cc_getops(context, type, &ops);
if (err)
return err;
return ops->gen_new(context, id);
}
krb5_error_code
krb5int_cc_typecursor_new(krb5_context context, krb5_cc_typecursor *t)
{
krb5_cc_typecursor n = NULL;
*t = NULL;
n = malloc(sizeof(*n));
if (n == NULL)
return ENOMEM;
k5_mutex_lock(&cc_typelist_lock);
n->tptr = cc_typehead;
k5_mutex_unlock(&cc_typelist_lock);
*t = n;
return 0;
}
krb5_error_code
krb5int_cc_typecursor_next(krb5_context context,
krb5_cc_typecursor t,
const krb5_cc_ops **ops)
{
*ops = NULL;
if (t->tptr == NULL)
return 0;
k5_mutex_lock(&cc_typelist_lock);
*ops = t->tptr->ops;
t->tptr = t->tptr->next;
k5_mutex_unlock(&cc_typelist_lock);
return 0;
}
krb5_error_code
krb5int_cc_typecursor_free(krb5_context context, krb5_cc_typecursor *t)
{
free(*t);
*t = NULL;
return 0;
}
krb5_error_code
k5_nonatomic_replace(krb5_context context, krb5_ccache ccache,
krb5_principal princ, krb5_creds **creds)
{
krb5_error_code ret;
int i;
ret = krb5_cc_initialize(context, ccache, princ);
for (i = 0; !ret && creds[i] != NULL; creds++)
ret = krb5_cc_store_cred(context, ccache, creds[i]);
return ret;
}
static krb5_error_code
read_creds(krb5_context context, krb5_ccache ccache, krb5_creds ***creds_out)
{
krb5_error_code ret;
krb5_cc_cursor cur = NULL;
krb5_creds **list = NULL, *cred = NULL, **newptr;
int i;
*creds_out = NULL;
ret = krb5_cc_start_seq_get(context, ccache, &cur);
if (ret)
goto cleanup;
list = k5calloc(2, sizeof(*list), &ret);
if (list == NULL)
goto cleanup;
i = 0;
for (;;) {
cred = k5alloc(sizeof(*cred), &ret);
if (cred == NULL)
goto cleanup;
ret = krb5_cc_next_cred(context, ccache, &cur, cred);
if (ret == KRB5_CC_END)
break;
if (ret)
goto cleanup;
list[i++] = cred;
list[i] = NULL;
cred = NULL;
newptr = realloc(list, (i + 2) * sizeof(*list));
if (newptr == NULL) {
ret = ENOMEM;
goto cleanup;
}
list = newptr;
list[i + 1] = NULL;
}
ret = 0;
*creds_out = list;
list = NULL;
cleanup:
if (cur != NULL)
(void)krb5_cc_end_seq_get(context, ccache, &cur);
krb5_free_tgt_creds(context, list);
free(cred);
return ret;
}
krb5_error_code KRB5_CALLCONV
krb5_cc_move(krb5_context context, krb5_ccache src, krb5_ccache dst)
{
krb5_error_code ret;
krb5_principal princ = NULL;
krb5_creds **creds = NULL;
TRACE_CC_MOVE(context, src, dst);
ret = krb5_cc_get_principal(context, src, &princ);
if (ret)
goto cleanup;
ret = read_creds(context, src, &creds);
if (ret)
goto cleanup;
if (dst->ops->replace == NULL)
ret = k5_nonatomic_replace(context, dst, princ, creds);
else
ret = dst->ops->replace(context, dst, princ, creds);
if (ret)
goto cleanup;
ret = krb5_cc_destroy(context, src);
cleanup:
krb5_free_principal(context, princ);
krb5_free_tgt_creds(context, creds);
return ret;
}
krb5_boolean KRB5_CALLCONV
krb5_cc_support_switch(krb5_context context, const char *type)
{
const krb5_cc_ops *ops;
krb5_error_code err;
err = krb5int_cc_getops(context, type, &ops);
return (err ? FALSE : (ops->switch_to != NULL));
}
krb5_error_code
k5_cc_mutex_init(k5_cc_mutex *m)
{
krb5_error_code ret = 0;
ret = k5_mutex_init(&m->lock);
if (ret) return ret;
m->owner = NULL;
m->refcount = 0;
return ret;
}
krb5_error_code
k5_cc_mutex_finish_init(k5_cc_mutex *m)
{
krb5_error_code ret = 0;
ret = k5_mutex_finish_init(&m->lock);
if (ret) return ret;
m->owner = NULL;
m->refcount = 0;
return ret;
}
void
k5_cc_mutex_assert_locked(krb5_context context, k5_cc_mutex *m)
{
#ifdef DEBUG_THREADS
assert(m->refcount > 0);
assert(m->owner == context);
#endif
k5_assert_locked(&m->lock);
}
void
k5_cc_mutex_assert_unlocked(krb5_context context, k5_cc_mutex *m)
{
#ifdef DEBUG_THREADS
assert(m->refcount == 0);
assert(m->owner == NULL);
#endif
k5_assert_unlocked(&m->lock);
}
void
k5_cc_mutex_lock(krb5_context context, k5_cc_mutex *m)
{
if (m->owner != context) {
k5_mutex_lock(&m->lock);
m->owner = context;
m->refcount = 1;
}
else {
m->refcount++;
}
}
void
k5_cc_mutex_unlock(krb5_context context, k5_cc_mutex *m)
{
if ((m->owner != context) || (m->refcount < 1)) {
return;
}
m->refcount--;
if (m->refcount == 0) {
m->owner = NULL;
k5_mutex_unlock(&m->lock);
}
}
void
k5_cc_mutex_force_unlock(k5_cc_mutex *m)
{
m->refcount = 0;
m->owner = NULL;
if (m->refcount > 0) {
k5_mutex_unlock(&m->lock);
}
}
krb5_error_code
k5_cccol_lock(krb5_context context)
{
krb5_error_code ret = 0;
k5_cc_mutex_lock(context, &cccol_lock);
k5_mutex_lock(&cc_typelist_lock);
k5_cc_mutex_lock(context, &krb5int_cc_file_mutex);
k5_cc_mutex_lock(context, &krb5int_mcc_mutex);
#ifdef USE_KEYRING_CCACHE
k5_cc_mutex_lock(context, &krb5int_krcc_mutex);
#endif
#ifdef USE_CCAPI
ret = krb5_stdccv3_context_lock(context);
if (ret) {
k5_cc_mutex_unlock(context, &krb5int_mcc_mutex);
k5_cc_mutex_unlock(context, &krb5int_cc_file_mutex);
k5_mutex_unlock(&cc_typelist_lock);
k5_cc_mutex_unlock(context, &cccol_lock);
return ret;
}
#endif
k5_mutex_unlock(&cc_typelist_lock);
return ret;
}
krb5_error_code
k5_cccol_unlock(krb5_context context)
{
krb5_error_code ret = 0;
k5_cc_mutex_assert_locked(context, &cccol_lock);
k5_mutex_lock(&cc_typelist_lock);
#ifdef USE_CCAPI
krb5_stdccv3_context_unlock(context);
#endif
#ifdef USE_KEYRING_CCACHE
k5_cc_mutex_assert_locked(context, &krb5int_krcc_mutex);
k5_cc_mutex_unlock(context, &krb5int_krcc_mutex);
#endif
k5_cc_mutex_assert_locked(context, &krb5int_mcc_mutex);
k5_cc_mutex_unlock(context, &krb5int_mcc_mutex);
k5_cc_mutex_assert_locked(context, &krb5int_cc_file_mutex);
k5_cc_mutex_unlock(context, &krb5int_cc_file_mutex);
k5_mutex_assert_locked(&cc_typelist_lock);
k5_mutex_unlock(&cc_typelist_lock);
k5_cc_mutex_unlock(context, &cccol_lock);
return ret;
}
void
k5_cccol_force_unlock(void)
{
if ((&cccol_lock)->refcount == 0) {
return;
}
k5_mutex_lock(&cc_typelist_lock);
#ifdef USE_KEYRING_CCACHE
k5_cc_mutex_force_unlock(&krb5int_krcc_mutex);
#endif
#ifdef USE_CCAPI
krb5_stdccv3_context_unlock(NULL);
#endif
k5_cc_mutex_force_unlock(&krb5int_mcc_mutex);
k5_cc_mutex_force_unlock(&krb5int_cc_file_mutex);
k5_mutex_unlock(&cc_typelist_lock);
k5_cc_mutex_force_unlock(&cccol_lock);
}