2 * Copyright (c) 1997 - 2000 Kungliga Tekniska Högskolan
3 * (Royal Institute of Technology, Stockholm, Sweden).
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
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.
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.
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
34 #include "gssapi_locl.h"
38 static krb5_error_code
39 encode_om_uint32(OM_uint32 n
, u_char
*p
)
41 p
[0] = (n
>> 0) & 0xFF;
42 p
[1] = (n
>> 8) & 0xFF;
43 p
[2] = (n
>> 16) & 0xFF;
44 p
[3] = (n
>> 24) & 0xFF;
48 static krb5_error_code
49 decode_om_uint32(u_char
*p
, OM_uint32
*n
)
51 *n
= (p
[0] << 0) | (p
[1] << 8) | (p
[2] << 16) | (p
[3] << 24);
55 static krb5_error_code
56 hash_input_chan_bindings (const gss_channel_bindings_t b
,
63 encode_om_uint32 (b
->initiator_addrtype
, num
);
64 MD5Update (&md5
, num
, sizeof(num
));
65 encode_om_uint32 (b
->initiator_address
.length
, num
);
66 MD5Update (&md5
, num
, sizeof(num
));
67 if (b
->initiator_address
.length
)
69 b
->initiator_address
.value
,
70 b
->initiator_address
.length
);
71 encode_om_uint32 (b
->acceptor_addrtype
, num
);
72 MD5Update (&md5
, num
, sizeof(num
));
73 encode_om_uint32 (b
->acceptor_address
.length
, num
);
74 MD5Update (&md5
, num
, sizeof(num
));
75 if (b
->acceptor_address
.length
)
77 b
->acceptor_address
.value
,
78 b
->acceptor_address
.length
);
79 encode_om_uint32 (b
->application_data
.length
, num
);
80 MD5Update (&md5
, num
, sizeof(num
));
81 if (b
->application_data
.length
)
83 b
->application_data
.value
,
84 b
->application_data
.length
);
90 gssapi_krb5_create_8003_checksum (
91 const gss_channel_bindings_t input_chan_bindings
,
99 * see rfc1964 (section 1.1.1 (Initial Token), and the checksum value
102 result
->cksumtype
= 0x8003;
103 if (fwd_data
->length
> 0 && (flags
& GSS_C_DELEG_FLAG
))
104 result
->checksum
.length
= 24 + 4 + fwd_data
->length
;
106 result
->checksum
.length
= 24;
107 result
->checksum
.data
= malloc (result
->checksum
.length
);
108 if (result
->checksum
.data
== NULL
)
111 p
= result
->checksum
.data
;
112 encode_om_uint32 (16, p
);
114 if (input_chan_bindings
== GSS_C_NO_CHANNEL_BINDINGS
) {
117 hash_input_chan_bindings (input_chan_bindings
, p
);
120 encode_om_uint32 (flags
, p
);
123 if (fwd_data
->length
> 0 && (flags
& GSS_C_DELEG_FLAG
)) {
127 result
->checksum
.length
= 28 + fwd_data
->length
;
128 tmp
= realloc(result
->checksum
.data
, result
->checksum
.length
);
131 result
->checksum
.data
= tmp
;
133 p
= (u_char
*)result
->checksum
.data
+ 24;
135 *p
++ = (1 >> 0) & 0xFF; /* DlgOpt */ /* == 1 */
136 *p
++ = (1 >> 8) & 0xFF; /* DlgOpt */ /* == 0 */
137 *p
++ = (fwd_data
->length
>> 0) & 0xFF; /* Dlgth */
138 *p
++ = (fwd_data
->length
>> 8) & 0xFF; /* Dlgth */
139 memcpy(p
, (unsigned char *) fwd_data
->data
, fwd_data
->length
);
141 p
+= fwd_data
->length
;
143 if (p
- (u_char
*)result
->checksum
.data
!= result
->checksum
.length
)
151 gssapi_krb5_verify_8003_checksum(
152 const gss_channel_bindings_t input_chan_bindings
,
157 unsigned char hash
[16];
162 /* XXX should handle checksums > 24 bytes */
163 if(cksum
->cksumtype
!= 0x8003)
164 return GSS_S_BAD_BINDINGS
;
166 p
= cksum
->checksum
.data
;
167 decode_om_uint32(p
, &length
);
168 if(length
!= sizeof(hash
))
169 return GSS_S_FAILURE
;
173 if (input_chan_bindings
!= GSS_C_NO_CHANNEL_BINDINGS
) {
174 if(hash_input_chan_bindings(input_chan_bindings
, hash
) != 0)
175 return GSS_S_FAILURE
;
176 if(memcmp(hash
, p
, sizeof(hash
)) != 0)
177 return GSS_S_FAILURE
;
182 decode_om_uint32(p
, flags
);
184 if (cksum
->checksum
.length
> 24 && (*flags
& GSS_C_DELEG_FLAG
)) {
188 DlgOpt
= (p
[0] << 0) | (p
[1] << 8 );
190 return GSS_S_BAD_BINDINGS
;
193 fwd_data
->length
= (p
[0] << 0) | (p
[1] << 8);
194 fwd_data
->data
= malloc(fwd_data
->length
);
195 if (fwd_data
->data
== NULL
)
199 memcpy(fwd_data
->data
, p
, fwd_data
->length
);