2 * Copyright (c) 1995, 1996, 1997, 2002 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 * Copyright 1992, 2002 by the Massachusetts Institute of Technology.
35 * All Rights Reserved.
37 * Export of this software from the United States of America may
38 * require a specific license from the United States Government.
39 * It is the responsibility of any person or organization contemplating
40 * export to obtain such a license before exporting.
42 * WITHIN THAT CONSTRAINT, permission to use, copy, modify, and
43 * distribute this software and its documentation for any purpose and
44 * without fee is hereby granted, provided that the above copyright
45 * notice appear in all copies and that both that copyright notice and
46 * this permission notice appear in supporting documentation, and that
47 * the name of M.I.T. not be used in advertising or publicity pertaining
48 * to distribution of the software without specific, written prior
49 * permission. Furthermore if you modify this software you must label
50 * your software as modified software and not distribute it in such a
51 * fashion that it might be confused with the original M.I.T. software.
52 * M.I.T. makes no representations about the suitability of
53 * this software for any purpose. It is provided "as is" without express
54 * or implied warranty.
57 #include <afsconfig.h>
58 #include <afs/param.h>
63 #ifdef IGNORE_SOME_GCC_WARNINGS
64 # pragma GCC diagnostic warning "-Wimplicit-function-declaration"
70 #include <hcrypto/md4.h>
71 #include <hcrypto/md5.h>
73 #include "lifetimes.h"
75 #include "rxkad_convert.h"
77 #include "v5gen-rewrite.h"
84 * Principal conversion Taken from src/lib/krb5/krb/conv_princ from MIT Kerberos. If you
85 * find a need to change the services here, please consider opening a
86 * bug with MIT by sending mail to krb5-bugs@mit.edu.
96 #define DO_REALM_CONVERSION 0x00000001
99 * Kadmin doesn't do realm conversion because it's currently
100 * kadmin/REALM.NAME. Zephyr doesn't because it's just zephyr/zephyr.
102 * "Realm conversion" is a bit of a misnomer; really, the v5 name is
103 * using a FQDN or something that looks like it, where the v4 name is
104 * just using the first label. Sometimes that second principal name
105 * component is a hostname, sometimes the realm name, sometimes it's
108 * This list should probably be more configurable, and more than
109 * likely on a per-realm basis, so locally-defined services can be
112 static const struct krb_convert sconv_list[] = {
113 /* Realm conversion, Change service name */
114 #define RC(V5NAME,V4NAME) { V5NAME, V4NAME, DO_REALM_CONVERSION, sizeof(V5NAME)-1 }
115 /* Realm conversion */
116 #define R(NAME) { NAME, NAME, DO_REALM_CONVERSION, sizeof(NAME)-1 }
117 /* No Realm conversion */
118 #define NR(NAME) { NAME, NAME, 0, sizeof(NAME)-1 }
169 krb5_des_decrypt(struct ktc_encryptionKey *, int, void *, size_t, void *,
176 tkt_DecodeTicket5(char *ticket, afs_int32 ticket_len,
177 int (*get_key) (void *, int, struct ktc_encryptionKey *),
178 char *get_key_rock, int serv_kvno, char *name, char *inst,
179 char *cell, struct ktc_encryptionKey *session_key, afs_int32 * host,
180 afs_uint32 * start, afs_uint32 * end, afs_int32 disableCheckdot)
182 char plain[MAXKRB5TICKETLEN];
183 struct ktc_encryptionKey serv_key;
184 Ticket t5; /* Must free */
185 EncTicketPart decr_part; /* Must free */
187 size_t siz, plainsiz;
189 char *v5_comp0, *v5_comp1, *c;
190 const struct krb_convert *p;
192 memset(&t5, 0, sizeof(t5));
193 memset(&decr_part, 0, sizeof(decr_part));
198 return RXKADBADTICKET; /* no ticket */
200 if (serv_kvno == RXKAD_TKT_TYPE_KERBEROS_V5) {
201 code = decode_Ticket((unsigned char *)ticket, ticket_len, &t5, &siz);
208 code = decode_EncryptedData((unsigned char *)ticket, ticket_len, &t5.enc_part, &siz);
213 /* If kvno is null, it's probably not included because it was kvno==0
215 if (t5.enc_part.kvno == NULL) {
218 v5_serv_kvno = *t5.enc_part.kvno;
221 /* Check that the key type really fit into 8 bytes */
222 switch (t5.enc_part.etype) {
223 case ETYPE_DES_CBC_CRC:
224 case ETYPE_DES_CBC_MD4:
225 case ETYPE_DES_CBC_MD5:
232 if (t5.enc_part.cipher.length > sizeof(plain)
233 || t5.enc_part.cipher.length % 8 != 0)
236 code = (*get_key) (get_key_rock, v5_serv_kvno, &serv_key);
240 /* Decrypt data here, save in plain, assume it will shrink */
242 krb5_des_decrypt(&serv_key, t5.enc_part.etype,
243 t5.enc_part.cipher.data, t5.enc_part.cipher.length,
249 code = decode_EncTicketPart((unsigned char *)plain, plainsiz, &decr_part, &siz);
253 /* Extract realm and principal */
254 strncpy(cell, decr_part.crealm, MAXKTCNAMELEN);
255 cell[MAXKTCNAMELEN - 1] = '\0';
257 switch (decr_part.cname.name_string.len) {
259 v5_comp0 = decr_part.cname.name_string.val[0];
260 v5_comp1 = decr_part.cname.name_string.val[1];
263 if (strcmp(p->v5_str, v5_comp0) == 0) {
265 * It is, so set the new name now, and chop off
266 * instance's domain name if requested.
268 strncpy(name, p->v4_str, MAXKTCNAMELEN);
269 name[MAXKTCNAMELEN - 1] = '\0';
270 if (p->flags & DO_REALM_CONVERSION) {
271 c = strchr(v5_comp1, '.');
272 if (!c || (c - v5_comp1) >= MAXKTCNAMELEN - 1)
274 strncpy(inst, v5_comp1, c - v5_comp1);
275 inst[c - v5_comp1] = '\0';
283 strncpy(inst, decr_part.cname.name_string.val[1], MAXKTCNAMELEN);
284 inst[MAXKTCNAMELEN - 1] = '\0';
285 strncpy(name, decr_part.cname.name_string.val[0], MAXKTCNAMELEN);
286 name[MAXKTCNAMELEN - 1] = '\0';
290 strncpy(name, decr_part.cname.name_string.val[0], MAXKTCNAMELEN);
291 name[MAXKTCNAMELEN - 1] = '\0';
297 if (!disableCheckdot) {
299 * If the first part of the name_string contains a dot, punt since
300 * then we can't see the diffrence between the kerberos 5
301 * principals foo.root and foo/root later in the fileserver.
303 if (strchr(decr_part.cname.name_string.val[0], '.') != NULL)
307 /* Verify that decr_part.key is of right type */
308 switch (decr_part.key.keytype) {
309 case ETYPE_DES_CBC_CRC:
310 case ETYPE_DES_CBC_MD4:
311 case ETYPE_DES_CBC_MD5:
317 if (decr_part.key.keyvalue.length != 8)
320 /* Extract session key */
321 memcpy(session_key, decr_part.key.keyvalue.data, 8);
323 /* Check lifetimes and host addresses, flags etc */
325 time_t now = time(0); /* Use fast time package instead??? */
326 *start = decr_part.authtime;
327 if (decr_part.starttime)
328 *start = *decr_part.starttime;
330 if (*start - now > CLOCK_SKEW || decr_part.flags.invalid)
333 if (decr_part.flags.invalid)
336 if (now > decr_part.endtime)
338 *end = decr_part.endtime;
342 if (serv_kvno == RXKAD_TKT_TYPE_KERBEROS_V5)
345 free_EncryptedData(&t5.enc_part);
346 free_EncTicketPart(&decr_part);
347 memset(&serv_key, 0, sizeof(serv_key));
351 code = RXKADUNKNOWNKEY;
360 code = RXKADBADTICKET;
366 verify_checksum_md4(void *data, size_t len,
367 void *cksum, size_t cksumsz,
368 struct ktc_encryptionKey *key)
371 unsigned char tmp[16];
374 MD4_Update(&md4, data, len);
375 MD4_Final(tmp, &md4);
377 if (memcmp(tmp, cksum, cksumsz) != 0)
383 verify_checksum_md5(void *data, size_t len,
384 void *cksum, size_t cksumsz,
385 struct ktc_encryptionKey *key)
388 unsigned char tmp[16];
391 MD5_Update(&md5, data, len);
392 MD5_Final(tmp, &md5);
394 if (memcmp(tmp, cksum, cksumsz) != 0)
400 verify_checksum_crc(void *data, size_t len, void *cksum, size_t cksumsz,
401 struct ktc_encryptionKey *key)
406 _rxkad_crc_init_table();
407 crc = _rxkad_crc_update(data, len, 0);
409 r[1] = (crc >> 8) & 0xff;
410 r[2] = (crc >> 16) & 0xff;
411 r[3] = (crc >> 24) & 0xff;
413 if (memcmp(cksum, r, 4) != 0)
420 krb5_des_decrypt(struct ktc_encryptionKey *key, int etype, void *in,
421 size_t insz, void *out, size_t * outsz)
423 int (*cksum_func) (void *, size_t, void *, size_t,
424 struct ktc_encryptionKey *);
429 int ret = 1; /* failure */
433 DES_key_sched(ktc_to_cblock(key), &s);
435 #define CONFOUNDERSZ 8
438 case ETYPE_DES_CBC_CRC:
439 memcpy(&ivec, key, sizeof(ivec));
441 cksum_func = verify_checksum_crc;
443 case ETYPE_DES_CBC_MD4:
444 memset(&ivec, 0, sizeof(ivec));
446 cksum_func = verify_checksum_md4;
448 case ETYPE_DES_CBC_MD5:
449 memset(&ivec, 0, sizeof(ivec));
451 cksum_func = verify_checksum_md5;
457 DES_cbc_encrypt(in, out, insz, &s, &ivec, 0);
459 memcpy(cksum, (char *)out + CONFOUNDERSZ, cksumsz);
460 memset((char *)out + CONFOUNDERSZ, 0, cksumsz);
463 ret = (*cksum_func) (out, insz, cksum, cksumsz, key);
465 *outsz = insz - CONFOUNDERSZ - cksumsz;
466 memmove(out, (char *)out + CONFOUNDERSZ + cksumsz, *outsz);