git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@3595 ec53bebd-3082-4978-b11e-865c3cabbd6b
		
			
				
	
	
		
			385 lines
		
	
	
		
			8.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			385 lines
		
	
	
		
			8.9 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
/*
 | 
						|
 * Copyright (c) 1997 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$");
 | 
						|
 | 
						|
typedef struct krb5_fcache{
 | 
						|
    char *filename;
 | 
						|
    int version;
 | 
						|
}krb5_fcache;
 | 
						|
 | 
						|
#define KRB5_FCC_FVNO_3 0x503
 | 
						|
#define KRB5_FCC_FVNO_4 0x504
 | 
						|
 | 
						|
#define FCC_TAG_DELTATIME 1
 | 
						|
 | 
						|
#define FILENAME(X) (((krb5_fcache*)(X)->data.data)->filename)
 | 
						|
 | 
						|
#define FCACHE(X) ((krb5_fcache*)(X)->data.data)
 | 
						|
 | 
						|
static char*
 | 
						|
fcc_get_name(krb5_context context,
 | 
						|
	     krb5_ccache id)
 | 
						|
{
 | 
						|
    return FILENAME(id);
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_resolve(krb5_context context, krb5_ccache *id, const char *res)
 | 
						|
{
 | 
						|
    krb5_fcache *f;
 | 
						|
    f = malloc(sizeof(*f));
 | 
						|
    if(f == NULL)
 | 
						|
	return KRB5_CC_NOMEM;
 | 
						|
    f->filename = strdup(res);
 | 
						|
    if(f->filename == NULL){
 | 
						|
	free(f);
 | 
						|
	return KRB5_CC_NOMEM;
 | 
						|
    }
 | 
						|
    f->version = 0;
 | 
						|
    (*id)->data.data = f;
 | 
						|
    (*id)->data.length = sizeof(*f);
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
erase_file(const char *filename)
 | 
						|
{
 | 
						|
    int fd;
 | 
						|
    off_t pos;
 | 
						|
    char *p;
 | 
						|
 | 
						|
    fd = open(filename, O_RDWR);
 | 
						|
    if(fd < 0)
 | 
						|
	if(errno == ENOENT)
 | 
						|
	    return 0;
 | 
						|
	else
 | 
						|
	    return errno;
 | 
						|
    pos = lseek(fd, 0, SEEK_END);
 | 
						|
    lseek(fd, 0, SEEK_SET);
 | 
						|
    p = (char*) malloc(pos);
 | 
						|
    memset(p, 0, pos);
 | 
						|
    write(fd, p, pos);
 | 
						|
    free(p);
 | 
						|
    close(fd);
 | 
						|
    unlink(filename);
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_gen_new(krb5_context context, krb5_ccache *id)
 | 
						|
{
 | 
						|
    abort();
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_initialize(krb5_context context,
 | 
						|
	       krb5_ccache id,
 | 
						|
	       krb5_principal primary_principal)
 | 
						|
{
 | 
						|
    krb5_fcache *f = FCACHE(id);
 | 
						|
    int ret;
 | 
						|
    int fd;
 | 
						|
    char *filename = f->filename;
 | 
						|
 | 
						|
    if((ret = erase_file(filename)))
 | 
						|
	return ret;
 | 
						|
  
 | 
						|
    fd = open(filename, O_RDWR | O_CREAT | O_EXCL, 0600);
 | 
						|
    if(fd == -1)
 | 
						|
	return errno;
 | 
						|
    {
 | 
						|
	krb5_storage *sp;    
 | 
						|
	sp = krb5_storage_from_fd(fd);
 | 
						|
	f->version = KRB5_FCC_FVNO_4;
 | 
						|
	krb5_store_int16(sp, f->version);
 | 
						|
	/* V4 stuff */
 | 
						|
	if (context->kdc_sec_offset) {
 | 
						|
	    krb5_store_int16 (sp, 12); /* length */
 | 
						|
	    krb5_store_int16 (sp, FCC_TAG_DELTATIME); /* Tag */
 | 
						|
	    krb5_store_int16 (sp, 8); /* length of data */
 | 
						|
	    krb5_store_int32 (sp, context->kdc_sec_offset);
 | 
						|
	    krb5_store_int32 (sp, context->kdc_usec_offset);
 | 
						|
	} else {
 | 
						|
	    krb5_store_int16 (sp, 0);
 | 
						|
	}
 | 
						|
	krb5_store_principal(sp, primary_principal);
 | 
						|
	krb5_storage_free(sp);
 | 
						|
    }
 | 
						|
    close(fd);
 | 
						|
	
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_close(krb5_context context,
 | 
						|
	  krb5_ccache id)
 | 
						|
{
 | 
						|
    free (FILENAME(id));
 | 
						|
    krb5_data_free(&id->data);
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_destroy(krb5_context context,
 | 
						|
	    krb5_ccache id)
 | 
						|
{
 | 
						|
    char *f;
 | 
						|
    f = FILENAME(id);
 | 
						|
 | 
						|
    return erase_file(f);
 | 
						|
  
 | 
						|
    return fcc_close (context, id);
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_store_cred(krb5_context context,
 | 
						|
	       krb5_ccache id,
 | 
						|
	       krb5_creds *creds)
 | 
						|
{
 | 
						|
    int fd;
 | 
						|
    char *f;
 | 
						|
 | 
						|
    f = FILENAME(id);
 | 
						|
 | 
						|
    fd = open(f, O_WRONLY | O_APPEND);
 | 
						|
    if(fd < 0)
 | 
						|
	return errno;
 | 
						|
    {
 | 
						|
	krb5_storage *sp;
 | 
						|
	sp = krb5_storage_from_fd(fd);
 | 
						|
	krb5_store_principal(sp, creds->client);
 | 
						|
	krb5_store_principal(sp, creds->server);
 | 
						|
	krb5_store_keyblock(sp, creds->session);
 | 
						|
	krb5_store_times(sp, creds->times);
 | 
						|
	krb5_store_int8(sp, 0);  /* this is probably the
 | 
						|
				    enc-tkt-in-skey bit from KDCOptions */
 | 
						|
	krb5_store_int32(sp, creds->flags.i);
 | 
						|
	krb5_store_addrs(sp, creds->addresses);
 | 
						|
	krb5_store_authdata(sp, creds->authdata);
 | 
						|
	krb5_store_data(sp, creds->ticket);
 | 
						|
	krb5_store_data(sp, creds->second_ticket);
 | 
						|
	krb5_storage_free(sp);
 | 
						|
    }
 | 
						|
    close(fd);
 | 
						|
    return 0; /* XXX */
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_read_cred (int fd,
 | 
						|
	       krb5_creds *creds)
 | 
						|
{
 | 
						|
    int ret = 0;
 | 
						|
    int8_t dummy8;
 | 
						|
    int32_t dummy32;
 | 
						|
    krb5_storage *sp;
 | 
						|
 | 
						|
    sp = krb5_storage_from_fd(fd);
 | 
						|
 | 
						|
    ret = krb5_ret_principal (sp,  &creds->client);
 | 
						|
    if(ret) goto cleanup;
 | 
						|
    ret = krb5_ret_principal (sp,  &creds->server);
 | 
						|
    if(ret) goto cleanup;
 | 
						|
    ret = krb5_ret_keyblock (sp,  &creds->session);
 | 
						|
    if(ret) goto cleanup;
 | 
						|
    ret = krb5_ret_times (sp,  &creds->times);
 | 
						|
    if(ret) goto cleanup;
 | 
						|
    ret = krb5_ret_int8 (sp,  &dummy8);
 | 
						|
    if(ret) goto cleanup;
 | 
						|
    ret = krb5_ret_int32 (sp,  &dummy32);
 | 
						|
    if(ret) goto cleanup;
 | 
						|
    creds->flags.i = dummy32;
 | 
						|
    ret = krb5_ret_addrs (sp,  &creds->addresses);
 | 
						|
    if(ret) goto cleanup;
 | 
						|
    ret = krb5_ret_authdata (sp,  &creds->authdata);
 | 
						|
    if(ret) goto cleanup;
 | 
						|
    ret = krb5_ret_data (sp,  &creds->ticket);
 | 
						|
    if(ret) goto cleanup;
 | 
						|
    ret = krb5_ret_data (sp,  &creds->second_ticket);
 | 
						|
 | 
						|
cleanup:
 | 
						|
    krb5_storage_free(sp);
 | 
						|
    return ret;
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
init_fcc (krb5_context context,
 | 
						|
	  krb5_fcache *fcache,
 | 
						|
	  krb5_storage **ret_sp,
 | 
						|
	  int *ret_fd)
 | 
						|
{
 | 
						|
    int fd;
 | 
						|
    int16_t tag;
 | 
						|
    krb5_storage *sp;
 | 
						|
 | 
						|
    fd = open(fcache->filename, O_RDONLY);
 | 
						|
    if(fd < 0)
 | 
						|
	return errno;
 | 
						|
    sp = krb5_storage_from_fd(fd);
 | 
						|
    krb5_ret_int16(sp, &tag);
 | 
						|
    fcache->version = tag;
 | 
						|
    switch (tag) {
 | 
						|
    case KRB5_FCC_FVNO_4 : {
 | 
						|
	int16_t length;
 | 
						|
 | 
						|
	krb5_ret_int16 (sp, &length);
 | 
						|
	while(length > 0) {
 | 
						|
	    int16_t tag, data_len;
 | 
						|
	    int i;
 | 
						|
	    int8_t dummy;
 | 
						|
 | 
						|
	    krb5_ret_int16 (sp, &tag);
 | 
						|
	    krb5_ret_int16 (sp, &data_len);
 | 
						|
	    switch (tag) {
 | 
						|
	    case FCC_TAG_DELTATIME :
 | 
						|
		krb5_ret_int32 (sp, &context->kdc_sec_offset);
 | 
						|
		krb5_ret_int32 (sp, &context->kdc_usec_offset);
 | 
						|
		break;
 | 
						|
	    default :
 | 
						|
		for (i = 0; i < data_len; ++i)
 | 
						|
		    krb5_ret_int8 (sp, &dummy);
 | 
						|
		break;
 | 
						|
	    }
 | 
						|
	    length -= 4 + data_len;
 | 
						|
	}
 | 
						|
	break;
 | 
						|
    }
 | 
						|
    case KRB5_FCC_FVNO_3 :
 | 
						|
	break;
 | 
						|
    default :
 | 
						|
	krb5_storage_free (sp);
 | 
						|
	close (fd);
 | 
						|
	return KRB5_CCACHE_BADVNO;
 | 
						|
    }
 | 
						|
    *ret_sp = sp;
 | 
						|
    *ret_fd = fd;
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_get_principal(krb5_context context,
 | 
						|
		  krb5_ccache id,
 | 
						|
		  krb5_principal *principal)
 | 
						|
{
 | 
						|
    krb5_error_code ret;
 | 
						|
    krb5_fcache *f = FCACHE(id);
 | 
						|
    int fd;
 | 
						|
    krb5_storage *sp;
 | 
						|
 | 
						|
    ret = init_fcc (context, f, &sp, &fd);
 | 
						|
    if (ret)
 | 
						|
	return ret;
 | 
						|
    krb5_ret_principal(sp, principal);
 | 
						|
    krb5_storage_free(sp);
 | 
						|
    close(fd);
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_get_first (krb5_context context,
 | 
						|
	       krb5_ccache id,
 | 
						|
	       krb5_cc_cursor *cursor)
 | 
						|
{
 | 
						|
    krb5_error_code ret;
 | 
						|
    krb5_principal principal;
 | 
						|
    krb5_storage *sp;
 | 
						|
    krb5_fcache *f = FCACHE(id);
 | 
						|
 | 
						|
    ret = init_fcc (context, f, &sp, &cursor->u.fd);
 | 
						|
    if (ret)
 | 
						|
	return ret;
 | 
						|
    krb5_ret_principal (sp, &principal);
 | 
						|
    krb5_storage_free(sp);
 | 
						|
    krb5_free_principal (context, principal);
 | 
						|
    return 0;
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_get_next (krb5_context context,
 | 
						|
	      krb5_ccache id,
 | 
						|
	      krb5_cc_cursor *cursor,
 | 
						|
	      krb5_creds *creds)
 | 
						|
{
 | 
						|
    return fcc_read_cred (cursor->u.fd, creds);
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_end_get (krb5_context context,
 | 
						|
	     krb5_ccache id,
 | 
						|
	     krb5_cc_cursor *cursor)
 | 
						|
{
 | 
						|
    return close (cursor->u.fd);
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_remove_cred(krb5_context context,
 | 
						|
		 krb5_ccache id,
 | 
						|
		 krb5_flags which,
 | 
						|
		 krb5_creds *cred)
 | 
						|
{
 | 
						|
    return 0; /* XXX */
 | 
						|
}
 | 
						|
 | 
						|
static krb5_error_code
 | 
						|
fcc_set_flags(krb5_context context,
 | 
						|
	      krb5_ccache id,
 | 
						|
	      krb5_flags flags)
 | 
						|
{
 | 
						|
    return 0; /* XXX */
 | 
						|
}
 | 
						|
		    
 | 
						|
krb5_cc_ops krb5_fcc_ops = {
 | 
						|
    "FILE",
 | 
						|
    fcc_get_name,
 | 
						|
    fcc_resolve,
 | 
						|
    fcc_gen_new,
 | 
						|
    fcc_initialize,
 | 
						|
    fcc_destroy,
 | 
						|
    fcc_close,
 | 
						|
    fcc_store_cred,
 | 
						|
    NULL, /* fcc_retrieve */
 | 
						|
    fcc_get_principal,
 | 
						|
    fcc_get_first,
 | 
						|
    fcc_get_next,
 | 
						|
    fcc_end_get,
 | 
						|
    fcc_remove_cred,
 | 
						|
    fcc_set_flags
 | 
						|
};
 |