/* * Copyright (c) 1997, 1998 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * 3. All advertising materials mentioning features or use of this software * must display the following acknowledgement: * This product includes software developed by Kungliga Tekniska * Högskolan and its contributors. * * 4. Neither the name of the Institute nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. */ #include "krb5_locl.h" RCSID("$Id$"); static struct krb5_keytab_data *kt_types; static int num_kt_types; static krb5_kt_ops fops, mops; /* forward declaration */ krb5_error_code krb5_kt_register(krb5_context context, krb5_kt_ops *ops) { struct krb5_keytab_data *tmp; tmp = realloc(kt_types, (num_kt_types + 1) * sizeof(*kt_types)); if(tmp == NULL) return ENOMEM; memcpy(&tmp[num_kt_types], ops, sizeof(tmp[num_kt_types])); kt_types = tmp; num_kt_types++; return 0; } krb5_error_code krb5_kt_resolve(krb5_context context, const char *name, krb5_keytab *id) { krb5_keytab k; int i; const char *p = strchr(name, ':'); krb5_error_code ret; if(p == NULL) return KRB5_KT_UNKNOWN_TYPE; if(num_kt_types == 0) { ret = krb5_kt_register(context, &fops); if(ret) return ret; ret = krb5_kt_register(context, &mops); if(ret) return ret; } for(i = 0; i < num_kt_types; i++) { if(strncmp(name, kt_types[i].prefix, p - name) == 0) break; } if(i == num_kt_types) return KRB5_KT_UNKNOWN_TYPE; ALLOC(k, 1); memcpy(k, &kt_types[i], sizeof(*k)); k->data = NULL; ret = (*k->resolve)(context, p + 1, k); if(ret) { free(k); k = NULL; } *id = k; return ret; return 0; } #define KEYTAB_DEFAULT "FILE:/etc/krb5.keytab" krb5_error_code krb5_kt_default_name(krb5_context context, char *name, int namesize) { strncpy (name, KEYTAB_DEFAULT, namesize); return 0; } krb5_error_code krb5_kt_default(krb5_context context, krb5_keytab *id) { return krb5_kt_resolve (context, KEYTAB_DEFAULT, id); } krb5_error_code krb5_kt_read_service_key(krb5_context context, krb5_pointer keyprocarg, krb5_principal principal, krb5_kvno vno, krb5_keytype keytype, krb5_keyblock **key) { krb5_keytab keytab; krb5_keytab_entry entry; krb5_error_code r; if (keyprocarg) r = krb5_kt_resolve (context, keyprocarg, &keytab); else r = krb5_kt_default (context, &keytab); if (r) return r; r = krb5_kt_get_entry (context, keytab, principal, vno, keytype, &entry); krb5_kt_close (context, keytab); if (r) return r; r = krb5_copy_keyblock (context, &entry.keyblock, key); krb5_kt_free_entry(context, &entry); return r; } krb5_error_code krb5_kt_remove_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry) { if(id->remove == NULL) return KRB5_KT_NOWRITE; return (*id->remove)(context, id, entry); } krb5_error_code krb5_kt_get_name(krb5_context context, krb5_keytab keytab, char *name, size_t namesize) { return (*keytab->get_name)(context, keytab, name, namesize); } krb5_error_code krb5_kt_close(krb5_context context, krb5_keytab id) { krb5_error_code ret; ret = (*id->close)(context, id); if(ret == 0) free(id); return ret; } static krb5_boolean kt_compare(krb5_context context, krb5_keytab_entry *entry, krb5_const_principal principal, krb5_kvno vno, krb5_keytype keytype) { if(principal != NULL && !krb5_principal_compare(context, entry->principal, principal)) return FALSE; if(vno && vno != entry->vno) return FALSE; if(keytype && keytype != entry->keyblock.keytype) return FALSE; return TRUE; } krb5_error_code krb5_kt_get_entry(krb5_context context, krb5_keytab id, krb5_const_principal principal, krb5_kvno kvno, krb5_keytype keytype, krb5_keytab_entry *entry) { krb5_keytab_entry tmp; krb5_error_code r; krb5_kt_cursor cursor; if(id->get) return (*id->get)(context, id, principal, kvno, keytype, entry); r = krb5_kt_start_seq_get (context, id, &cursor); if (r) return KRB5_KT_NOTFOUND; /* XXX i.e. file not found */ entry->vno = 0; while (krb5_kt_next_entry(context, id, &tmp, &cursor) == 0) { if (kt_compare(context, &tmp, principal, 0, keytype)) { if (kvno == tmp.vno) { krb5_kt_copy_entry_contents (context, &tmp, entry); krb5_kt_free_entry (context, &tmp); krb5_kt_end_seq_get(context, id, &cursor); return 0; } else if (kvno == 0 && tmp.vno > entry->vno) { if (entry->vno) krb5_kt_free_entry (context, entry); krb5_kt_copy_entry_contents (context, &tmp, entry); } } krb5_kt_free_entry(context, &tmp); } krb5_kt_end_seq_get (context, id, &cursor); if (entry->vno) return 0; else return KRB5_KT_NOTFOUND; } krb5_error_code krb5_kt_copy_entry_contents(krb5_context context, const krb5_keytab_entry *in, krb5_keytab_entry *out) { krb5_error_code ret; memset(out, 0, sizeof(*out)); out->vno = in->vno; ret = krb5_copy_principal (context, in->principal, &out->principal); if (ret) goto fail; ret = krb5_copy_keyblock_contents (context, &in->keyblock, &out->keyblock); if (ret) goto fail; return 0; fail: krb5_kt_free_entry (context, out); return ret; } krb5_error_code krb5_kt_free_entry(krb5_context context, krb5_keytab_entry *entry) { krb5_free_principal (context, entry->principal); krb5_free_keyblock_contents (context, &entry->keyblock); return 0; } #if 0 static int xxxlock(int fd, int write) { if(flock(fd, (write ? LOCK_EX : LOCK_SH) | LOCK_NB) < 0) { sleep(1); if(flock(fd, (write ? LOCK_EX : LOCK_SH) | LOCK_NB) < 0) return -1; } return 0; } static void xxxunlock(int fd) { flock(fd, LOCK_UN); } #endif krb5_error_code krb5_kt_start_seq_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor) { return (*id->start_seq_get)(context, id, cursor); } krb5_error_code krb5_kt_next_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry, krb5_kt_cursor *cursor) { return (*id->next_entry)(context, id, entry, cursor); } krb5_error_code krb5_kt_end_seq_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor) { return (*id->end_seq_get)(context, id, cursor); } static krb5_error_code krb5_kt_ret_data(krb5_storage *sp, krb5_data *data) { int ret; int16_t size; ret = krb5_ret_int16(sp, &size); if(ret) return ret; data->length = size; data->data = malloc(size); if (data->data == NULL) return ENOMEM; ret = sp->fetch(sp, data->data, size); if(ret != size) return (ret < 0)? errno : KRB5_KT_END; return 0; } static krb5_error_code krb5_kt_ret_string(krb5_storage *sp, general_string *data) { int ret; int16_t size; ret = krb5_ret_int16(sp, &size); if(ret) return ret; *data = malloc(size + 1); if (*data == NULL) return ENOMEM; ret = sp->fetch(sp, *data, size); (*data)[size] = '\0'; if(ret != size) return (ret < 0)? errno : KRB5_KT_END; return 0; } static krb5_error_code krb5_kt_ret_principal(krb5_storage *sp, krb5_principal *princ) { int i; int ret; krb5_principal p; int16_t tmp; ALLOC(p, 1); if(p == NULL) return ENOMEM; ret = krb5_ret_int16(sp, &tmp); if(ret) return ret; p->name.name_type = KRB5_NT_SRV_HST; p->name.name_string.len = tmp; ret = krb5_kt_ret_string(sp, &p->realm); if(ret) return ret; p->name.name_string.val = calloc(p->name.name_string.len, sizeof(*p->name.name_string.val)); if(p->name.name_string.val == NULL) return ENOMEM; for(i = 0; i < p->name.name_string.len; i++){ ret = krb5_kt_ret_string(sp, p->name.name_string.val + i); if(ret) return ret; } *princ = p; return 0; } static krb5_error_code krb5_kt_ret_keyblock(krb5_storage *sp, krb5_keyblock *p) { int ret; int16_t tmp; ret = krb5_ret_int16(sp, &tmp); /* keytype + etype */ if(ret) return ret; p->keytype = tmp; ret = krb5_kt_ret_data(sp, &p->keyvalue); return ret; } static krb5_error_code krb5_kt_store_data(krb5_storage *sp, krb5_data data) { int ret; ret = krb5_store_int16(sp, data.length); if(ret < 0) return ret; ret = sp->store(sp, data.data, data.length); if(ret != data.length){ if(ret < 0) return errno; return KRB5_KT_END; } return 0; } static krb5_error_code krb5_kt_store_string(krb5_storage *sp, general_string data) { int ret; size_t len = strlen(data); ret = krb5_store_int16(sp, len); if(ret < 0) return ret; ret = sp->store(sp, data, len); if(ret != len){ if(ret < 0) return errno; return KRB5_KT_END; } return 0; } static krb5_error_code krb5_kt_store_keyblock(krb5_storage *sp, krb5_keyblock *p) { int ret; ret = krb5_store_int16(sp, p->keytype); /* keytype + etype */ if(ret) return ret; ret = krb5_kt_store_data(sp, p->keyvalue); return ret; } static krb5_error_code krb5_kt_store_principal(krb5_storage *sp, krb5_principal p) { int i; int ret; ret = krb5_store_int16(sp, p->name.name_string.len); if(ret) return ret; ret = krb5_kt_store_string(sp, p->realm); if(ret) return ret; for(i = 0; i < p->name.name_string.len; i++){ ret = krb5_kt_store_string(sp, p->name.name_string.val[i]); if(ret) return ret; } return 0; } krb5_error_code krb5_kt_add_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry) { if(id->add == NULL) return KRB5_KT_NOWRITE; return (*id->add)(context, id,entry); } /* file operations -------------------------------------------- */ struct fkt_data { char *filename; }; static krb5_error_code fkt_resolve(krb5_context context, const char *name, krb5_keytab id) { struct fkt_data *d; d = malloc(sizeof(*d)); if(d == NULL) return ENOMEM; d->filename = strdup(name); if(d->filename == NULL) { return ENOMEM; free(d); } id->data = d; return 0; } static krb5_error_code fkt_close(krb5_context context, krb5_keytab id) { struct fkt_data *d = id->data; free(d->filename); free(d); return 0; } static krb5_error_code fkt_get_name(krb5_context context, krb5_keytab id, char *name, size_t namesize) { /* This function is XXX */ struct fkt_data *d = id->data; strncpy(name, d->filename, namesize); return 0; } static krb5_error_code fkt_start_seq_get_int(krb5_context context, krb5_keytab id, int flags, krb5_kt_cursor *c) { int16_t tag; krb5_error_code ret; struct fkt_data *d = id->data; c->fd = open (d->filename, flags); if (c->fd < 0) return errno; c->sp = krb5_storage_from_fd(c->fd); ret = krb5_ret_int16(c->sp, &tag); if (ret) { close(c->fd); return ret; } if (tag != 0x0502) { return KRB5_KT_UNKNOWN_TYPE; krb5_storage_free(c->sp); close(c->fd); } c->offset = c->sp->seek(c->sp, 0, SEEK_CUR); return 0; } static krb5_error_code fkt_start_seq_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *c) { return fkt_start_seq_get_int(context, id, O_RDONLY, c); } static krb5_error_code fkt_next_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry, krb5_kt_cursor *cursor) { u_int32_t len; u_int32_t timestamp; int ret; int8_t tmp8; int32_t tmp32; loop: cursor->sp->seek(cursor->sp, cursor->offset, SEEK_SET); ret = krb5_ret_int32(cursor->sp, &tmp32); if (ret) return ret; if(tmp32 < 0) { cursor->offset += 4 + -tmp32; goto loop; } len = tmp32; cursor->offset += 4 + len; ret = krb5_kt_ret_principal (cursor->sp, &entry->principal); if (ret) return ret; ret = krb5_ret_int32(cursor->sp, &tmp32); entry->principal->name.name_type = tmp32; if (ret) return ret; ret = krb5_ret_int32(cursor->sp, &tmp32); timestamp = tmp32; if (ret) return ret; ret = krb5_ret_int8(cursor->sp, &tmp8); if (ret) return ret; entry->vno = tmp8; ret = krb5_kt_ret_keyblock (cursor->sp, &entry->keyblock); if (ret) return ret; /* backwards compatibility with Heimdal <= 0.0n */ if(len == 4711) cursor->offset = cursor->sp->seek(cursor->sp, 0, SEEK_CUR); return 0; } static krb5_error_code fkt_end_seq_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor) { krb5_storage_free(cursor->sp); close(cursor->fd); return 0; } static krb5_error_code fkt_add_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry) { int ret; int fd; krb5_storage *sp; struct fkt_data *d = id->data; off_t pos_start, pos_end; fd = open (d->filename, O_WRONLY); if (fd < 0) { fd = open (d->filename, O_WRONLY | O_CREAT, 0600); if (fd < 0) return errno; sp = krb5_storage_from_fd(fd); ret = krb5_store_int16 (sp, 0x0502); if (ret) { close(fd); return ret; } } else { sp = krb5_storage_from_fd(fd); } pos_start = sp->seek(sp, 0, SEEK_END); ret = krb5_store_int32 (sp, 0); /* store real size at end */ if (ret) goto out; ret = krb5_kt_store_principal (sp, entry->principal); if (ret) goto out; ret = krb5_store_int32 (sp, entry->principal->name.name_type); if (ret) goto out; ret = krb5_store_int32 (sp, time(NULL)); if (ret) goto out; ret = krb5_store_int8 (sp, entry->vno); if (ret) goto out; ret = krb5_kt_store_keyblock (sp, &entry->keyblock); if (ret) goto out; pos_end = sp->seek(sp, 0, SEEK_CUR); sp->seek(sp, pos_start, SEEK_SET); ret = krb5_store_int32 (sp, pos_end - pos_start - 4); if (ret) goto out; krb5_storage_free (sp); out: close (fd); return ret; } static krb5_error_code fkt_remove_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry) { krb5_keytab_entry e; krb5_kt_cursor cursor; off_t pos_start, pos_end; fkt_start_seq_get_int(context, id, O_RDWR, &cursor); pos_start = cursor.offset; while(krb5_kt_next_entry(context, id, &e, &cursor) == 0) { if(kt_compare(context, &e, entry->principal, entry->vno, entry->keyblock.keytype)) { int32_t len; unsigned char buf[128]; pos_end = cursor.offset; cursor.sp->seek(cursor.sp, pos_start, SEEK_SET); krb5_ret_int32(cursor.sp, &len); cursor.sp->seek(cursor.sp, pos_start, SEEK_SET); if(len == 4711) len = pos_end - pos_start; krb5_store_int32(cursor.sp, -len); memset(buf, 0, sizeof(buf)); while(len > 0) { cursor.sp->store(cursor.sp, buf, min(len, sizeof(buf))); len -= min(len, sizeof(buf)); } break; } pos_start = cursor.offset; } krb5_kt_end_seq_get(context, id, &cursor); return 0; } static krb5_kt_ops fops = { "FILE", fkt_resolve, fkt_get_name, fkt_close, NULL, /* get */ fkt_start_seq_get, fkt_next_entry, fkt_end_seq_get, fkt_add_entry, fkt_remove_entry }; /* memory operations -------------------------------------------- */ struct mkt_data { krb5_keytab_entry *entries; int num_entries; }; static krb5_error_code mkt_resolve(krb5_context context, const char *name, krb5_keytab id) { struct mkt_data *d; d = malloc(sizeof(*d)); if(d == NULL) return ENOMEM; d->entries = NULL; d->num_entries = 0; id->data = d; return 0; } static krb5_error_code mkt_close(krb5_context context, krb5_keytab id) { struct mkt_data *d = id->data; int i; for(i = 0; i < d->num_entries; i++) krb5_kt_free_entry(context, &d->entries[i]); free(d->entries); free(d); return 0; } static krb5_error_code mkt_get_name(krb5_context context, krb5_keytab id, char *name, size_t namesize) { strncpy(name, "", namesize); return 0; } static krb5_error_code mkt_start_seq_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *c) { /* XXX */ c->fd = 0; return 0; } static krb5_error_code mkt_next_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry, krb5_kt_cursor *c) { struct mkt_data *d = id->data; if(c->fd >= d->num_entries) return KRB5_KT_END; return krb5_kt_copy_entry_contents(context, &d->entries[c->fd++], entry); } static krb5_error_code mkt_end_seq_get(krb5_context context, krb5_keytab id, krb5_kt_cursor *cursor) { return 0; } static krb5_error_code mkt_add_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry) { struct mkt_data *d = id->data; krb5_keytab_entry *tmp; tmp = realloc(d->entries, (d->num_entries + 1) * sizeof(*d->entries)); if(tmp == NULL) return ENOMEM; d->entries = tmp; return krb5_kt_copy_entry_contents(context, entry, &d->entries[d->num_entries++]); } static krb5_error_code mkt_remove_entry(krb5_context context, krb5_keytab id, krb5_keytab_entry *entry) { struct mkt_data *d = id->data; krb5_keytab_entry *e, *end; /* do this backwards to minimize copying */ for(end = d->entries + d->num_entries, e = end - 1; e >= d->entries; e--) { if(kt_compare(context, e, entry->principal, entry->vno, entry->keyblock.keytype)) { krb5_kt_free_entry(context, e); memmove(e, e + 1, (end - e - 1) * sizeof(*e)); memset(end - 1, 0, sizeof(*end)); d->num_entries--; end--; } } e = realloc(d->entries, d->num_entries * sizeof(*d->entries)); if(e != NULL) d->entries = e; return 0; } static krb5_kt_ops mops = { "MEMORY", mkt_resolve, mkt_get_name, mkt_close, NULL, /* get */ mkt_start_seq_get, mkt_next_entry, mkt_end_seq_get, mkt_add_entry, mkt_remove_entry };