Home | History | Annotate | Line # | Download | only in dist
print-krb.c revision 1.8.2.1
      1      1.1  christos /*
      2      1.1  christos  * Copyright (c) 1995, 1996, 1997
      3      1.1  christos  *	The Regents of the University of California.  All rights reserved.
      4      1.1  christos  *
      5      1.1  christos  * Redistribution and use in source and binary forms, with or without
      6      1.1  christos  * modification, are permitted provided that: (1) source code distributions
      7      1.1  christos  * retain the above copyright notice and this paragraph in its entirety, (2)
      8      1.1  christos  * distributions including binary code include the above copyright notice and
      9      1.1  christos  * this paragraph in its entirety in the documentation or other materials
     10      1.1  christos  * provided with the distribution, and (3) all advertising materials mentioning
     11      1.1  christos  * features or use of this software display the following acknowledgement:
     12      1.1  christos  * ``This product includes software developed by the University of California,
     13      1.1  christos  * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
     14      1.1  christos  * the University nor the names of its contributors may be used to endorse
     15      1.1  christos  * or promote products derived from this software without specific prior
     16      1.1  christos  * written permission.
     17      1.1  christos  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
     18      1.1  christos  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
     19      1.1  christos  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
     20      1.1  christos  *
     21      1.1  christos  * Initial contribution from John Hawkinson (jhawk (at) mit.edu).
     22      1.1  christos  */
     23      1.1  christos 
     24      1.2  christos #include <sys/cdefs.h>
     25      1.1  christos #ifndef lint
     26  1.8.2.1  perseant __RCSID("$NetBSD: print-krb.c,v 1.8.2.1 2025/08/02 05:23:24 perseant Exp $");
     27      1.1  christos #endif
     28      1.1  christos 
     29      1.7       spz /* \summary: Kerberos printer */
     30      1.7       spz 
     31      1.8  christos #include <config.h>
     32      1.1  christos 
     33      1.8  christos #include "netdissect-stdinc.h"
     34      1.1  christos 
     35      1.6  christos #include "netdissect.h"
     36      1.1  christos #include "extract.h"
     37      1.1  christos 
     38      1.8  christos /*
     39      1.8  christos  * Kerberos 4:
     40      1.8  christos  *
     41      1.8  christos  * Athena Technical Plan
     42      1.8  christos  * Section E.2.1
     43      1.8  christos  * Kerberos Authentication and Authorization System
     44      1.8  christos  * by S. P. Miller, B. C. Neuman, J. I. Schiller, and J. H. Saltzer
     45      1.8  christos  *
     46      1.8  christos  * https://web.mit.edu/Saltzer/www/publications/athenaplan/e.2.1.pdf
     47      1.8  christos  *
     48      1.8  christos  * 7. Appendix I Design Specifications
     49      1.8  christos  *
     50      1.8  christos  * Kerberos 5:
     51      1.8  christos  *
     52      1.8  christos  * RFC 1510, RFC 2630, etc.
     53      1.8  christos  */
     54      1.5  christos 
     55      1.8  christos 
     56      1.8  christos static const u_char *c_print(netdissect_options *, const u_char *, const u_char *);
     57      1.5  christos static const u_char *krb4_print_hdr(netdissect_options *, const u_char *);
     58      1.5  christos static void krb4_print(netdissect_options *, const u_char *);
     59      1.1  christos 
     60      1.1  christos #define AUTH_MSG_KDC_REQUEST			1<<1
     61      1.1  christos #define AUTH_MSG_KDC_REPLY			2<<1
     62      1.1  christos #define AUTH_MSG_APPL_REQUEST			3<<1
     63      1.1  christos #define AUTH_MSG_APPL_REQUEST_MUTUAL		4<<1
     64      1.1  christos #define AUTH_MSG_ERR_REPLY			5<<1
     65      1.1  christos #define AUTH_MSG_PRIVATE			6<<1
     66      1.1  christos #define AUTH_MSG_SAFE				7<<1
     67      1.1  christos #define AUTH_MSG_APPL_ERR			8<<1
     68      1.1  christos #define AUTH_MSG_DIE				63<<1
     69      1.1  christos 
     70      1.1  christos #define KERB_ERR_OK				0
     71      1.1  christos #define KERB_ERR_NAME_EXP			1
     72      1.1  christos #define KERB_ERR_SERVICE_EXP			2
     73      1.1  christos #define KERB_ERR_AUTH_EXP			3
     74      1.1  christos #define KERB_ERR_PKT_VER			4
     75      1.1  christos #define KERB_ERR_NAME_MAST_KEY_VER		5
     76      1.1  christos #define KERB_ERR_SERV_MAST_KEY_VER		6
     77      1.1  christos #define KERB_ERR_BYTE_ORDER			7
     78      1.1  christos #define KERB_ERR_PRINCIPAL_UNKNOWN		8
     79      1.1  christos #define KERB_ERR_PRINCIPAL_NOT_UNIQUE		9
     80      1.1  christos #define KERB_ERR_NULL_KEY			10
     81      1.1  christos 
     82      1.1  christos struct krb {
     83      1.8  christos 	nd_uint8_t pvno;	/* Protocol Version */
     84      1.8  christos 	nd_uint8_t type;	/* Type+B */
     85      1.1  christos };
     86      1.1  christos 
     87      1.4  christos static const struct tok type2str[] = {
     88      1.1  christos 	{ AUTH_MSG_KDC_REQUEST,		"KDC_REQUEST" },
     89      1.1  christos 	{ AUTH_MSG_KDC_REPLY,		"KDC_REPLY" },
     90      1.1  christos 	{ AUTH_MSG_APPL_REQUEST,	"APPL_REQUEST" },
     91      1.1  christos 	{ AUTH_MSG_APPL_REQUEST_MUTUAL,	"APPL_REQUEST_MUTUAL" },
     92      1.1  christos 	{ AUTH_MSG_ERR_REPLY,		"ERR_REPLY" },
     93      1.1  christos 	{ AUTH_MSG_PRIVATE,		"PRIVATE" },
     94      1.1  christos 	{ AUTH_MSG_SAFE,		"SAFE" },
     95      1.1  christos 	{ AUTH_MSG_APPL_ERR,		"APPL_ERR" },
     96      1.1  christos 	{ AUTH_MSG_DIE,			"DIE" },
     97      1.1  christos 	{ 0,				NULL }
     98      1.1  christos };
     99      1.1  christos 
    100      1.4  christos static const struct tok kerr2str[] = {
    101      1.1  christos 	{ KERB_ERR_OK,			"OK" },
    102      1.1  christos 	{ KERB_ERR_NAME_EXP,		"NAME_EXP" },
    103      1.1  christos 	{ KERB_ERR_SERVICE_EXP,		"SERVICE_EXP" },
    104      1.1  christos 	{ KERB_ERR_AUTH_EXP,		"AUTH_EXP" },
    105      1.1  christos 	{ KERB_ERR_PKT_VER,		"PKT_VER" },
    106      1.1  christos 	{ KERB_ERR_NAME_MAST_KEY_VER,	"NAME_MAST_KEY_VER" },
    107      1.1  christos 	{ KERB_ERR_SERV_MAST_KEY_VER,	"SERV_MAST_KEY_VER" },
    108      1.1  christos 	{ KERB_ERR_BYTE_ORDER,		"BYTE_ORDER" },
    109      1.1  christos 	{ KERB_ERR_PRINCIPAL_UNKNOWN,	"PRINCIPAL_UNKNOWN" },
    110      1.1  christos 	{ KERB_ERR_PRINCIPAL_NOT_UNIQUE,"PRINCIPAL_NOT_UNIQUE" },
    111      1.1  christos 	{ KERB_ERR_NULL_KEY,		"NULL_KEY"},
    112      1.1  christos 	{ 0,				NULL}
    113      1.1  christos };
    114      1.1  christos 
    115      1.1  christos static const u_char *
    116      1.5  christos c_print(netdissect_options *ndo,
    117      1.8  christos         const u_char *s, const u_char *ep)
    118      1.1  christos {
    119      1.8  christos 	u_char c;
    120      1.8  christos 	int flag;
    121      1.1  christos 
    122      1.1  christos 	flag = 1;
    123      1.1  christos 	while (s < ep) {
    124      1.8  christos 		c = GET_U_1(s);
    125      1.8  christos 		s++;
    126      1.1  christos 		if (c == '\0') {
    127      1.1  christos 			flag = 0;
    128      1.1  christos 			break;
    129      1.1  christos 		}
    130      1.8  christos 		fn_print_char(ndo, c);
    131      1.1  christos 	}
    132      1.1  christos 	if (flag)
    133      1.1  christos 		return NULL;
    134      1.1  christos 	return (s);
    135      1.1  christos }
    136      1.1  christos 
    137      1.1  christos static const u_char *
    138      1.5  christos krb4_print_hdr(netdissect_options *ndo,
    139      1.5  christos                const u_char *cp)
    140      1.1  christos {
    141      1.1  christos 	cp += 2;
    142      1.1  christos 
    143      1.5  christos #define PRINT		if ((cp = c_print(ndo, cp, ndo->ndo_snapend)) == NULL) goto trunc
    144      1.1  christos 
    145      1.1  christos 	PRINT;
    146      1.8  christos 	ND_PRINT(".");
    147      1.1  christos 	PRINT;
    148      1.8  christos 	ND_PRINT("@");
    149      1.1  christos 	PRINT;
    150      1.1  christos 	return (cp);
    151      1.1  christos 
    152      1.1  christos trunc:
    153      1.8  christos 	nd_print_trunc(ndo);
    154      1.1  christos 	return (NULL);
    155      1.1  christos 
    156      1.1  christos #undef PRINT
    157      1.1  christos }
    158      1.1  christos 
    159      1.1  christos static void
    160      1.5  christos krb4_print(netdissect_options *ndo,
    161      1.5  christos            const u_char *cp)
    162      1.1  christos {
    163      1.8  christos 	const struct krb *kp;
    164      1.1  christos 	u_char type;
    165      1.1  christos 	u_short len;
    166      1.1  christos 
    167      1.5  christos #define PRINT		if ((cp = c_print(ndo, cp, ndo->ndo_snapend)) == NULL) goto trunc
    168      1.1  christos /*  True if struct krb is little endian */
    169      1.8  christos #define IS_LENDIAN(kp)	((GET_U_1((kp)->type) & 0x01) != 0)
    170      1.8  christos #define KTOHSP(kp, cp)	(IS_LENDIAN(kp) ? GET_LE_U_2(cp) : GET_BE_U_2(cp))
    171      1.1  christos 
    172      1.6  christos 	kp = (const struct krb *)cp;
    173      1.1  christos 
    174      1.8  christos 	type = GET_U_1(kp->type) & (0xFF << 1);
    175      1.1  christos 
    176      1.8  christos 	ND_PRINT(" %s %s: ",
    177      1.8  christos 	    IS_LENDIAN(kp) ? "le" : "be", tok2str(type2str, NULL, type));
    178      1.1  christos 
    179      1.1  christos 	switch (type) {
    180      1.1  christos 
    181      1.1  christos 	case AUTH_MSG_KDC_REQUEST:
    182      1.5  christos 		if ((cp = krb4_print_hdr(ndo, cp)) == NULL)
    183      1.1  christos 			return;
    184      1.1  christos 		cp += 4;	/* ctime */
    185      1.8  christos 		ND_PRINT(" %umin ", GET_U_1(cp) * 5);
    186      1.8  christos 		cp++;
    187      1.1  christos 		PRINT;
    188      1.8  christos 		ND_PRINT(".");
    189      1.1  christos 		PRINT;
    190      1.1  christos 		break;
    191      1.1  christos 
    192      1.1  christos 	case AUTH_MSG_APPL_REQUEST:
    193      1.1  christos 		cp += 2;
    194      1.8  christos 		ND_PRINT("v%u ", GET_U_1(cp));
    195      1.8  christos 		cp++;
    196      1.1  christos 		PRINT;
    197      1.8  christos 		ND_PRINT(" (%u)", GET_U_1(cp));
    198      1.8  christos 		cp++;
    199      1.8  christos 		ND_PRINT(" (%u)", GET_U_1(cp));
    200      1.1  christos 		break;
    201      1.1  christos 
    202      1.1  christos 	case AUTH_MSG_KDC_REPLY:
    203      1.5  christos 		if ((cp = krb4_print_hdr(ndo, cp)) == NULL)
    204      1.1  christos 			return;
    205      1.1  christos 		cp += 10;	/* timestamp + n + exp + kvno */
    206      1.1  christos 		len = KTOHSP(kp, cp);
    207      1.8  christos 		ND_PRINT(" (%u)", len);
    208      1.1  christos 		break;
    209      1.1  christos 
    210      1.1  christos 	case AUTH_MSG_ERR_REPLY:
    211      1.5  christos 		if ((cp = krb4_print_hdr(ndo, cp)) == NULL)
    212      1.1  christos 			return;
    213      1.8  christos 		cp += 4;	  /* timestamp */
    214      1.8  christos 		ND_PRINT(" %s ", tok2str(kerr2str, NULL, KTOHSP(kp, cp)));
    215      1.1  christos 		cp += 4;
    216      1.1  christos 		PRINT;
    217      1.1  christos 		break;
    218      1.1  christos 
    219      1.1  christos 	default:
    220      1.8  christos 		ND_PRINT("(unknown)");
    221      1.1  christos 		break;
    222      1.1  christos 	}
    223      1.1  christos 
    224      1.1  christos 	return;
    225      1.1  christos trunc:
    226      1.8  christos 	nd_print_trunc(ndo);
    227      1.1  christos }
    228      1.1  christos 
    229      1.1  christos void
    230      1.5  christos krb_print(netdissect_options *ndo,
    231      1.5  christos           const u_char *dat)
    232      1.1  christos {
    233      1.8  christos 	const struct krb *kp;
    234      1.1  christos 
    235  1.8.2.1  perseant 	ndo->ndo_protocol = "kerberos";
    236  1.8.2.1  perseant 	nd_print_protocol(ndo);
    237      1.1  christos 
    238  1.8.2.1  perseant 	kp = (const struct krb *)dat;
    239      1.1  christos 
    240      1.8  christos 	switch (GET_U_1(kp->pvno)) {
    241      1.1  christos 
    242      1.1  christos 	case 1:
    243      1.1  christos 	case 2:
    244      1.1  christos 	case 3:
    245      1.8  christos 		ND_PRINT(" v%u", GET_U_1(kp->pvno));
    246      1.1  christos 		break;
    247      1.1  christos 
    248      1.1  christos 	case 4:
    249      1.8  christos 		ND_PRINT(" v%u", GET_U_1(kp->pvno));
    250      1.5  christos 		krb4_print(ndo, (const u_char *)kp);
    251      1.1  christos 		break;
    252      1.1  christos 
    253      1.1  christos 	case 106:
    254      1.1  christos 	case 107:
    255      1.8  christos 		ND_PRINT(" v5");
    256      1.1  christos 		/* Decode ASN.1 here "someday" */
    257      1.1  christos 		break;
    258      1.1  christos 	}
    259      1.1  christos }
    260