diff options
Diffstat (limited to 'lib/hdb/mkey.c')
| -rw-r--r-- | lib/hdb/mkey.c | 181 | 
1 files changed, 92 insertions, 89 deletions
diff --git a/lib/hdb/mkey.c b/lib/hdb/mkey.c index 05cf71c59311..9eb98fca32c0 100644 --- a/lib/hdb/mkey.c +++ b/lib/hdb/mkey.c @@ -1,34 +1,34 @@  /* - * Copyright (c) 2000 - 2004 Kungliga Tekniska Högskolan - * (Royal Institute of Technology, Stockholm, Sweden).  - * All rights reserved.  + * Copyright (c) 2000 - 2004 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:  + * 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.  + * 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.  + * 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. 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.  + * 3. 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.  + * 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 "hdb_locl.h" @@ -36,8 +36,6 @@  #define O_BINARY 0  #endif -RCSID("$Id: mkey.c 21745 2007-07-31 16:11:25Z lha $"); -  struct hdb_master_key_data {      krb5_keytab_entry keytab;      krb5_crypto crypto; @@ -67,7 +65,7 @@ hdb_process_master_key(krb5_context context,      *mkey = calloc(1, sizeof(**mkey));      if(*mkey == NULL) { -	krb5_set_error_string(context, "malloc: out of memory"); +	krb5_set_error_message(context, ENOMEM, "malloc: out of memory");  	return ENOMEM;      }      (*mkey)->keytab.vno = kvno; @@ -110,7 +108,7 @@ hdb_add_master_key(krb5_context context, krb5_keyblock *key,  }  static krb5_error_code -read_master_keytab(krb5_context context, const char *filename,  +read_master_keytab(krb5_context context, const char *filename,  		   hdb_master_key *mkey)  {      krb5_error_code ret; @@ -118,7 +116,7 @@ read_master_keytab(krb5_context context, const char *filename,      krb5_kt_cursor cursor;      krb5_keytab_entry entry;      hdb_master_key p; -     +      ret = krb5_kt_resolve(context, filename, &id);      if(ret)  	return ret; @@ -147,20 +145,20 @@ read_master_keytab(krb5_context context, const char *filename,  /* read a MIT master keyfile */  static krb5_error_code -read_master_mit(krb5_context context, const char *filename,  -		hdb_master_key *mkey) +read_master_mit(krb5_context context, const char *filename, +		int byteorder, hdb_master_key *mkey)  {      int fd;      krb5_error_code ret;      krb5_storage *sp;      int16_t enctype;      krb5_keyblock key; -	        +      fd = open(filename, O_RDONLY | O_BINARY);      if(fd < 0) {  	int save_errno = errno; -	krb5_set_error_string(context, "failed to open %s: %s", filename, -			      strerror(save_errno)); +	krb5_set_error_message(context, save_errno, "failed to open %s: %s", +			       filename, strerror(save_errno));  	return save_errno;      }      sp = krb5_storage_from_fd(fd); @@ -168,25 +166,22 @@ read_master_mit(krb5_context context, const char *filename,  	close(fd);  	return errno;      } -    krb5_storage_set_flags(sp, KRB5_STORAGE_HOST_BYTEORDER); -#if 0 +    krb5_storage_set_flags(sp, byteorder);      /* could possibly use ret_keyblock here, but do it with more         checks for now */ -    ret = krb5_ret_keyblock(sp, &key); -#else -    ret = krb5_ret_int16(sp, &enctype); -    if((htons(enctype) & 0xff00) == 0x3000) { -	krb5_set_error_string(context, "unknown keytype in %s: %#x, expected %#x",  -			      filename, htons(enctype), 0x3000); -	ret = HEIM_ERR_BAD_MKEY; -	goto out; +    { +	ret = krb5_ret_int16(sp, &enctype); +	if (ret) +	    goto out; +	ret = krb5_enctype_valid(context, enctype); +	if (ret) +	   goto out; +	key.keytype = enctype; +	ret = krb5_ret_data(sp, &key.keyvalue); +	if(ret) +	    goto out;      } -    key.keytype = enctype; -    ret = krb5_ret_data(sp, &key.keyvalue); -    if(ret) -	goto out; -#endif -    ret = hdb_process_master_key(context, 0, &key, 0, mkey); +    ret = hdb_process_master_key(context, 1, &key, 0, mkey);      krb5_free_keyblock_contents(context, &key);    out:      krb5_storage_free(sp); @@ -196,7 +191,7 @@ read_master_mit(krb5_context context, const char *filename,  /* read an old master key file */  static krb5_error_code -read_master_encryptionkey(krb5_context context, const char *filename,  +read_master_encryptionkey(krb5_context context, const char *filename,  			  hdb_master_key *mkey)  {      int fd; @@ -205,20 +200,20 @@ read_master_encryptionkey(krb5_context context, const char *filename,      unsigned char buf[256];      ssize_t len;      size_t ret_len; -	        +      fd = open(filename, O_RDONLY | O_BINARY);      if(fd < 0) {  	int save_errno = errno; -	krb5_set_error_string(context, "failed to open %s: %s",  +	krb5_set_error_message(context, save_errno, "failed to open %s: %s",  			      filename, strerror(save_errno));  	return save_errno;      } -     +      len = read(fd, buf, sizeof(buf));      close(fd);      if(len < 0) {  	int save_errno = errno; -	krb5_set_error_string(context, "error reading %s: %s",  +	krb5_set_error_message(context, save_errno, "error reading %s: %s",  			      filename, strerror(save_errno));  	return save_errno;      } @@ -233,9 +228,9 @@ read_master_encryptionkey(krb5_context context, const char *filename,         should cover all cases, but will break if someone has hacked         this code to really use des-cbc-md5 -- but then that's not my         problem. */ -    if(key.keytype == KEYTYPE_DES || key.keytype == ETYPE_DES_CBC_MD5) +    if(key.keytype == ETYPE_DES_CBC_CRC || key.keytype == ETYPE_DES_CBC_MD5)  	key.keytype = ETYPE_DES_CFB64_NONE; -     +      ret = hdb_process_master_key(context, 0, &key, 0, mkey);      krb5_free_keyblock_contents(context, &key);      return ret; @@ -243,7 +238,7 @@ read_master_encryptionkey(krb5_context context, const char *filename,  /* read a krb4 /.k style file */  static krb5_error_code -read_master_krb4(krb5_context context, const char *filename,  +read_master_krb4(krb5_context context, const char *filename,  		 hdb_master_key *mkey)  {      int fd; @@ -251,25 +246,26 @@ read_master_krb4(krb5_context context, const char *filename,      krb5_error_code ret;      unsigned char buf[256];      ssize_t len; -	        +      fd = open(filename, O_RDONLY | O_BINARY);      if(fd < 0) {  	int save_errno = errno; -	krb5_set_error_string(context, "failed to open %s: %s",  -			      filename, strerror(save_errno)); +	krb5_set_error_message(context, save_errno, "failed to open %s: %s", +			       filename, strerror(save_errno));  	return save_errno;      } -     +      len = read(fd, buf, sizeof(buf));      close(fd);      if(len < 0) {  	int save_errno = errno; -	krb5_set_error_string(context, "error reading %s: %s",  -			      filename, strerror(save_errno)); +	krb5_set_error_message(context, save_errno, "error reading %s: %s", +			       filename, strerror(save_errno));  	return save_errno;      }      if(len != 8) { -	krb5_set_error_string(context, "bad contents of %s", filename); +	krb5_set_error_message(context, HEIM_ERR_EOF, +			       "bad contents of %s", filename);  	return HEIM_ERR_EOF; /* XXX file might be too large */      } @@ -277,7 +273,7 @@ read_master_krb4(krb5_context context, const char *filename,      key.keytype = ETYPE_DES_PCBC_NONE;      ret = krb5_data_copy(&key.keyvalue, buf, len);      memset(buf, 0, sizeof(buf)); -    if(ret)  +    if(ret)  	return ret;      ret = hdb_process_master_key(context, 0, &key, 0, mkey); @@ -286,7 +282,7 @@ read_master_krb4(krb5_context context, const char *filename,  }  krb5_error_code -hdb_read_master_key(krb5_context context, const char *filename,  +hdb_read_master_key(krb5_context context, const char *filename,  		    hdb_master_key *mkey)  {      FILE *f; @@ -303,26 +299,26 @@ hdb_read_master_key(krb5_context context, const char *filename,      f = fopen(filename, "r");      if(f == NULL) {  	int save_errno = errno; -	krb5_set_error_string(context, "failed to open %s: %s",  -			      filename, strerror(save_errno)); +	krb5_set_error_message(context, save_errno, "failed to open %s: %s", +			       filename, strerror(save_errno));  	return save_errno;      } -     +      if(fread(buf, 1, 2, f) != 2) { -	krb5_set_error_string(context, "end of file reading %s", filename);  	fclose(f); +	krb5_set_error_message(context, HEIM_ERR_EOF, "end of file reading %s", filename);  	return HEIM_ERR_EOF;      } -     +      fseek(f, 0, SEEK_END);      len = ftell(f);      if(fclose(f) != 0)  	return errno; -     +      if(len < 0)  	return errno; -     +      if(len == 8) {  	ret = read_master_krb4(context, filename, mkey);      } else if(buf[0] == 0x30 && len <= 127 && buf[1] == len - 2) { @@ -330,13 +326,20 @@ hdb_read_master_key(krb5_context context, const char *filename,      } else if(buf[0] == 5 && buf[1] >= 1 && buf[1] <= 2) {  	ret = read_master_keytab(context, filename, mkey);      } else { -	ret = read_master_mit(context, filename, mkey); +      /* +       * Check both LittleEndian and BigEndian since they key file +       * might be moved from a machine with diffrent byte order, or +       * its running on MacOS X that always uses BE master keys. +       */ +      ret = read_master_mit(context, filename, KRB5_STORAGE_BYTEORDER_LE, mkey); +      if (ret) +          ret = read_master_mit(context, filename, KRB5_STORAGE_BYTEORDER_BE, mkey);      }      return ret;  }  krb5_error_code -hdb_write_master_key(krb5_context context, const char *filename,  +hdb_write_master_key(krb5_context context, const char *filename,  		     hdb_master_key mkey)  {      krb5_error_code ret; @@ -369,7 +372,7 @@ _hdb_find_master_key(uint32_t *mkvno, hdb_master_key mkey)  	if(mkvno == NULL) {  	    if(ret == NULL || mkey->keytab.vno > ret->keytab.vno)  		ret = mkey; -	} else if(mkey->keytab.vno == *mkvno) +	} else if((uint32_t)mkey->keytab.vno == *mkvno)  	    return mkey;  	mkey = mkey->next;      } @@ -401,9 +404,9 @@ _hdb_mkey_encrypt(krb5_context context, hdb_master_key key,  }  krb5_error_code -hdb_unseal_key_mkey(krb5_context context, Key *k, hdb_master_key mkey)  +hdb_unseal_key_mkey(krb5_context context, Key *k, hdb_master_key mkey)  { -	 +      krb5_error_code ret;      krb5_data res;      size_t keysize; @@ -412,7 +415,7 @@ hdb_unseal_key_mkey(krb5_context context, Key *k, hdb_master_key mkey)      if(k->mkvno == NULL)  	return 0; -	 +      key = _hdb_find_master_key(k->mkvno, mkey);      if (key == NULL) @@ -428,7 +431,7 @@ hdb_unseal_key_mkey(krb5_context context, Key *k, hdb_master_key mkey)  				k->key.keyvalue.data,  				k->key.keyvalue.length,  				&res); -    }     +    }      if (ret)  	return ret; @@ -456,13 +459,13 @@ hdb_unseal_key_mkey(krb5_context context, Key *k, hdb_master_key mkey)  krb5_error_code  hdb_unseal_keys_mkey(krb5_context context, hdb_entry *ent, hdb_master_key mkey)  { -    int i; +    size_t i;      for(i = 0; i < ent->keys.len; i++){  	krb5_error_code ret;  	ret = hdb_unseal_key_mkey(context, &ent->keys.val[i], mkey); -	if (ret)  +	if (ret)  	    return ret;      }      return 0; @@ -516,14 +519,14 @@ hdb_seal_key_mkey(krb5_context context, Key *k, hdb_master_key mkey)  	    return ENOMEM;      }      *k->mkvno = key->keytab.vno; -	 +      return 0;  }  krb5_error_code  hdb_seal_keys_mkey(krb5_context context, hdb_entry *ent, hdb_master_key mkey)  { -    int i; +    size_t i;      for(i = 0; i < ent->keys.len; i++){  	krb5_error_code ret; @@ -539,7 +542,7 @@ hdb_seal_keys(krb5_context context, HDB *db, hdb_entry *ent)  {      if (db->hdb_master_key_set == 0)  	return 0; -     +      return hdb_seal_keys_mkey(context, ent, db->hdb_master_key);  } @@ -548,7 +551,7 @@ hdb_seal_key(krb5_context context, HDB *db, Key *k)  {      if (db->hdb_master_key_set == 0)  	return 0; -     +      return hdb_seal_key_mkey(context, k, db->hdb_master_key);  } @@ -583,7 +586,7 @@ hdb_set_master_keyfile (krb5_context context,      if (ret) {  	if (ret != ENOENT)  	    return ret; -	krb5_clear_error_string(context); +	krb5_clear_error_message(context);  	return 0;      }      db->hdb_master_key = key;  | 
