1 /* 2 * Copyright (c) 1997 - 2001 Kungliga Tekniska H�gskolan 3 * (Royal Institute of Technology, Stockholm, Sweden). 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions 8 * are met: 9 * 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions and the following disclaimer. 12 * 13 * 2. Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in the 15 * documentation and/or other materials provided with the distribution. 16 * 17 * 3. Neither the name of the Institute nor the names of its contributors 18 * may be used to endorse or promote products derived from this software 19 * without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND 22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 24 * ARE DISCLAIMED. IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE 25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 31 * SUCH DAMAGE. 32 */ 33 34 #include <krb5_locl.h> 35 36 RCSID("$Id: mk_safe.c,v 1.26 2001/05/14 06:14:50 assar Exp $"); 37 38 krb5_error_code 39 krb5_mk_safe(krb5_context context, 40 krb5_auth_context auth_context, 41 const krb5_data *userdata, 42 krb5_data *outbuf, 43 /*krb5_replay_data*/ void *outdata) 44 { 45 krb5_error_code ret; 46 KRB_SAFE s; 47 int32_t sec, usec; 48 KerberosTime sec2; 49 int usec2; 50 u_char *buf = NULL; 51 void *tmp; 52 size_t buf_size; 53 size_t len; 54 u_int32_t tmp_seq; 55 krb5_crypto crypto; 56 57 s.pvno = 5; 58 s.msg_type = krb_safe; 59 60 s.safe_body.user_data = *userdata; 61 krb5_us_timeofday (context, &sec, &usec); 62 63 sec2 = sec; 64 s.safe_body.timestamp = &sec2; 65 usec2 = usec2; 66 s.safe_body.usec = &usec2; 67 if (auth_context->flags & KRB5_AUTH_CONTEXT_DO_SEQUENCE) { 68 tmp_seq = auth_context->local_seqnumber; 69 s.safe_body.seq_number = &tmp_seq; 70 } else 71 s.safe_body.seq_number = NULL; 72 73 s.safe_body.s_address = auth_context->local_address; 74 s.safe_body.r_address = auth_context->remote_address; 75 76 s.cksum.cksumtype = 0; 77 s.cksum.checksum.data = NULL; 78 s.cksum.checksum.length = 0; 79 80 buf_size = length_KRB_SAFE(&s); 81 buf = malloc(buf_size + 128); /* add some for checksum */ 82 if(buf == NULL) { 83 krb5_set_error_string (context, "malloc: out of memory"); 84 return ENOMEM; 85 } 86 ret = encode_KRB_SAFE (buf + buf_size - 1, buf_size, &s, &len); 87 if (ret) { 88 free (buf); 89 return ret; 90 } 91 ret = krb5_crypto_init(context, auth_context->keyblock, 0, &crypto); 92 if (ret) { 93 free (buf); 94 return ret; 95 } 96 ret = krb5_create_checksum(context, 97 crypto, 98 KRB5_KU_KRB_SAFE_CKSUM, 99 0, 100 buf + buf_size - len, 101 len, 102 &s.cksum); 103 krb5_crypto_destroy(context, crypto); 104 if (ret) { 105 free (buf); 106 return ret; 107 } 108 109 buf_size = length_KRB_SAFE(&s); 110 tmp = realloc(buf, buf_size); 111 if(tmp == NULL) { 112 free(buf); 113 krb5_set_error_string (context, "malloc: out of memory"); 114 return ENOMEM; 115 } 116 buf = tmp; 117 118 ret = encode_KRB_SAFE (buf + buf_size - 1, buf_size, &s, &len); 119 free_Checksum (&s.cksum); 120 121 outbuf->length = len; 122 outbuf->data = malloc (len); 123 if (outbuf->data == NULL) { 124 free (buf); 125 krb5_set_error_string (context, "malloc: out of memory"); 126 return ENOMEM; 127 } 128 memcpy (outbuf->data, buf + buf_size - len, len); 129 free (buf); 130 if (auth_context->flags & KRB5_AUTH_CONTEXT_DO_SEQUENCE) 131 auth_context->local_seqnumber = 132 (auth_context->local_seqnumber + 1) & 0xFFFFFFFF; 133 return 0; 134 } 135