Initial import from FreeBSD RELENG_4:
[dragonfly.git] / crypto / kerberosIV / lib / krb / mk_priv.c
1 /*
2  * Copyright (c) 1995, 1996, 1997, 1998 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 /* $FreeBSD: src/crypto/kerberosIV/lib/krb/mk_priv.c,v 1.1.1.3.2.1 2003/02/13 21:34:36 nectar Exp $ */
34
35 #include "krb_locl.h"
36
37 RCSID("$Id: mk_priv.c,v 1.22 1999/12/02 16:58:43 joda Exp $");
38
39 /* application include files */
40 #include "krb-archaeology.h"
41
42 /*
43  * krb_mk_priv() constructs an AUTH_MSG_PRIVATE message.  It takes
44  * some user data "in" of "length" bytes and creates a packet in "out"
45  * consisting of the user data, a timestamp, and the sender's network
46  * address.
47  * The packet is encrypted by pcbc_encrypt(), using the given
48  * "key" and "schedule".
49  * The length of the resulting packet "out" is
50  * returned.
51  *
52  * It is similar to krb_mk_safe() except for the additional key
53  * schedule argument "schedule" and the fact that the data is encrypted
54  * rather than appended with a checksum.  The protocol version is
55  * KRB_PROT_VERSION, defined in "krb.h".
56  *
57  * The "out" packet consists of:
58  *
59  * Size                 Variable                Field
60  * ----                 --------                -----
61  *
62  * 1 byte               KRB_PROT_VERSION        protocol version number
63  * 1 byte               AUTH_MSG_PRIVATE |      message type plus local
64  *                      HOST_BYTE_ORDER         byte order in low bit
65  *
66  * 4 bytes              c_length                length of data
67  * we encrypt from here with pcbc_encrypt
68  * 
69  * 4 bytes              length                  length of user data
70  * length               in                      user data
71  * 1 byte               msg_time_5ms            timestamp milliseconds
72  * 4 bytes              sender->sin.addr.s_addr sender's IP address
73  *
74  * 4 bytes              msg_time_sec or         timestamp seconds with
75  *                      -msg_time_sec           direction in sign bit
76  *
77  * 0<=n<=7  bytes       pad to 8 byte multiple  zeroes
78  */
79
80 int32_t
81 krb_mk_priv(void *in, void *out, u_int32_t length, 
82             des_key_schedule schedule, des_cblock *key, 
83             struct sockaddr_in *sender, struct sockaddr_in *receiver)
84 {
85     unsigned char *p = (unsigned char*)out;
86     unsigned char *cipher;
87
88     struct timeval tv;
89     u_int32_t src_addr;
90     u_int32_t len;
91
92     p += krb_put_int(KRB_PROT_VERSION, p, 1, 1);
93     p += krb_put_int(AUTH_MSG_PRIVATE, p, 1, 1);
94
95     len = 4 + length + 1 + 4 + 4;
96     len = (len + 7) & ~7;
97     p += krb_put_int(len, p, 4, 4);
98     
99     cipher = p;
100
101     p += krb_put_int(length, p, 4, 4);
102     
103     memcpy(p, in, length);
104     p += length;
105     
106     krb_kdctimeofday(&tv);
107
108     *p++ =tv.tv_usec / 5000;
109     
110     src_addr = sender->sin_addr.s_addr;
111     p += krb_put_address(src_addr, p, 4);
112
113     p += krb_put_int(lsb_time(tv.tv_sec, sender, receiver), p, 4, 4);
114     
115     memset(p, 0, 7);
116
117     des_pcbc_encrypt((des_cblock *)cipher, (des_cblock *)cipher,
118                      len, schedule, key, DES_ENCRYPT);
119
120     return  (cipher - (unsigned char*)out) + len;
121 }