1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
|
/*
* Copyright 1993 by OpenVision Technologies, Inc.
*
* Permission to use, copy, modify, distribute, and sell this software
* and its documentation for any purpose is hereby granted without fee,
* provided that the above copyright notice appears in all copies and
* that both that copyright notice and this permission notice appear in
* supporting documentation, and that the name of OpenVision not be used
* in advertising or publicity pertaining to distribution of the software
* without specific, written prior permission. OpenVision makes no
* representations about the suitability of this software for any
* purpose. It is provided "as is" without express or implied warranty.
*
* OPENVISION DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
* EVENT SHALL OPENVISION BE LIABLE FOR ANY SPECIAL, INDIRECT OR
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF
* USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
* PERFORMANCE OF THIS SOFTWARE.
*/
#include "gssapiP_krb5.h"
#include <memory.h>
#include <krb5/rsa-md5.h>
/* message_buffer is an input if SIGN, output if SEAL, and ignored if DEL_CTX
conf_state is only valid if SEAL.
*/
OM_uint32 INTERFACE
kg_unseal(minor_status, context_handle, input_token_buffer, message_buffer,
conf_state, qop_state, toktype)
OM_uint32 *minor_status;
gss_ctx_id_t context_handle;
gss_buffer_t input_token_buffer;
gss_buffer_t message_buffer;
int *conf_state;
int *qop_state;
int toktype;
{
krb5_gss_ctx_id_rec *ctx;
krb5_error_code code;
int bodysize;
int tmsglen;
int signalg;
int sealalg;
gss_buffer_desc token;
unsigned char *ptr;
krb5_checksum desmac;
MD5_CTX md5;
unsigned char *cksum;
krb5_timestamp now;
unsigned char *plain;
int plainlen;
if (toktype == KG_TOK_SEAL_MSG) {
message_buffer->length = 0;
message_buffer->value = NULL;
}
/* validate the context handle */
if (! kg_validate_ctx_id(context_handle)) {
*minor_status = (OM_uint32) G_VALIDATE_FAILED;
return(GSS_S_NO_CONTEXT);
}
ctx = (krb5_gss_ctx_id_rec *) context_handle;
if (! ctx->established) {
*minor_status = KG_CTX_INCOMPLETE;
return(GSS_S_NO_CONTEXT);
}
/* parse the token, leave the data in message_buffer, setting conf_state */
/* verify the header */
ptr = (unsigned char *) input_token_buffer->value;
if (! g_verify_token_header(gss_mech_krb5, &bodysize,
&ptr, toktype, input_token_buffer->length)) {
*minor_status = 0;
return(GSS_S_DEFECTIVE_TOKEN);
}
if (toktype == KG_TOK_SEAL_MSG)
tmsglen = bodysize-22;
/* get the sign and seal algorithms */
signalg = ptr[0] + (ptr[1]<<8);
sealalg = ptr[2] + (ptr[3]<<8);
if (((signalg != 0) && (signalg != 1)) ||
((toktype != KG_TOK_SEAL_MSG) && (sealalg != 0xffff)) ||
((toktype == KG_TOK_SEAL_MSG) &&
((sealalg != 0xffff) && (sealalg != 0))) ||
(ptr[4] != 0xff) ||
(ptr[5] != 0xff)) {
*minor_status = 0;
return(GSS_S_DEFECTIVE_TOKEN);
}
/* get the token parameters */
/* decode the message, if SEAL */
if (toktype == KG_TOK_SEAL_MSG) {
if (sealalg == 0) {
if ((plain = (unsigned char *) xmalloc(tmsglen)) == NULL) {
*minor_status = ENOMEM;
return(GSS_S_FAILURE);
}
if (code = kg_decrypt(&ctx->enc, NULL, ptr+22, plain, tmsglen)) {
xfree(plain);
*minor_status = code;
return(GSS_S_FAILURE);
}
} else {
plain = ptr+22;
}
plainlen = tmsglen;
if (sealalg && ctx->big_endian)
token.length = tmsglen;
else
token.length = tmsglen - 8 - plain[tmsglen-1];
if (token.length) {
if ((token.value = xmalloc(token.length)) == NULL) {
if (sealalg == 0)
xfree(plain);
*minor_status = ENOMEM;
return(GSS_S_FAILURE);
}
if (sealalg && ctx->big_endian)
memcpy(token.value, plain, token.length);
else
memcpy(token.value, plain+8, token.length);
}
} else if (toktype == KG_TOK_SIGN_MSG) {
token = *message_buffer;
plain = token.value;
plainlen = token.length;
} else {
token.length = 0;
token.value = NULL;
plain = token.value;
plainlen = token.length;
}
/* compute the checksum of the message */
if (signalg == 0) {
/* compute the checksum of the message */
MD5Init(&md5);
MD5Update(&md5, (unsigned char *) ptr-2, 8);
if (ctx->big_endian)
MD5Update(&md5, token.value, token.length);
else
MD5Update(&md5, plain, plainlen);
MD5Final(&md5);
if (sealalg == 0)
xfree(plain);
/* XXX this depends on the key being a single-des key, but that's
all that kerberos supports right now */
if (code = krb5_calculate_checksum(context, CKSUMTYPE_DESCBC, md5.digest,
16, ctx->seq.key->contents,
ctx->seq.key->length,
&desmac)) {
if (toktype == KG_TOK_SEAL_MSG)
xfree(token.value);
*minor_status = code;
return(GSS_S_FAILURE);
}
cksum = desmac.contents;
} else {
if (! ctx->seed_init) {
if (code = kg_make_seed(ctx->subkey, ctx->seed)) {
if (sealalg == 0)
xfree(plain);
if (toktype == KG_TOK_SEAL_MSG)
xfree(token.value);
*minor_status = code;
return(GSS_S_FAILURE);
}
ctx->seed_init = 1;
}
MD5Init(&md5);
MD5Update(&md5, ctx->seed, sizeof(ctx->seed));
MD5Update(&md5, (unsigned char *) ptr-2, 8);
if (ctx->big_endian)
MD5Update(&md5, token.value, token.length);
else
MD5Update(&md5, plain, plainlen);
MD5Final(&md5);
if (sealalg == 0)
xfree(plain);
cksum = md5.digest;
}
/* compare the computed checksum against the transmitted checksum */
if (memcmp(cksum, ptr+14, 8) != 0) {
if (signalg == 0)
xfree(desmac.contents);
if (toktype == KG_TOK_SEAL_MSG)
xfree(token.value);
*minor_status = 0;
return(GSS_S_BAD_SIG);
}
if (signalg == 0)
xfree(desmac.contents);
/* XXX this is where the seq_num check would go */
/* it got through unscathed. Make sure the context is unexpired */
if (toktype == KG_TOK_SEAL_MSG)
*message_buffer = token;
if (conf_state)
*conf_state = (sealalg == 0);
if (qop_state)
*qop_state = GSS_C_QOP_DEFAULT;
if (code = krb5_timeofday(ctx->context, &now)) {
*minor_status = code;
return(GSS_S_FAILURE);
}
if (now > ctx->endtime) {
*minor_status = 0;
return(GSS_S_CONTEXT_EXPIRED);
}
/* success */
*minor_status = 0;
return(GSS_S_COMPLETE);
}
|