2 * Copyright (c) 1995, 1996, 1997
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that: (1) source code distributions
7 * retain the above copyright notice and this paragraph in its entirety, (2)
8 * distributions including binary code include the above copyright notice and
9 * this paragraph in its entirety in the documentation or other materials
10 * provided with the distribution, and (3) all advertising materials mentioning
11 * features or use of this software display the following acknowledgement:
12 * ``This product includes software developed by the University of California,
13 * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14 * the University nor the names of its contributors may be used to endorse
15 * or promote products derived from this software without specific prior
17 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
21 * Initial contribution from John Hawkinson (jhawk@mit.edu).
25 static const char rcsid
[] =
26 "@(#) $Header: /tcpdump/master/tcpdump/print-krb.c,v 1.14 2000-09-23 08:54:34 guy Exp $";
33 #include <sys/param.h>
35 #include <sys/socket.h>
37 #include <netinet/in.h>
38 #include <netinet/in_systm.h>
44 #include "interface.h"
45 #include "addrtoname.h"
47 const u_char
*c_print(register const u_char
*, register const u_char
*);
48 const u_char
*krb4_print_hdr(const u_char
*);
49 void krb4_print(const u_char
*);
50 void krb_print(const u_char
*, u_int
);
53 #define AUTH_MSG_KDC_REQUEST 1<<1
54 #define AUTH_MSG_KDC_REPLY 2<<1
55 #define AUTH_MSG_APPL_REQUEST 3<<1
56 #define AUTH_MSG_APPL_REQUEST_MUTUAL 4<<1
57 #define AUTH_MSG_ERR_REPLY 5<<1
58 #define AUTH_MSG_PRIVATE 6<<1
59 #define AUTH_MSG_SAFE 7<<1
60 #define AUTH_MSG_APPL_ERR 8<<1
61 #define AUTH_MSG_DIE 63<<1
64 #define KERB_ERR_NAME_EXP 1
65 #define KERB_ERR_SERVICE_EXP 2
66 #define KERB_ERR_AUTH_EXP 3
67 #define KERB_ERR_PKT_VER 4
68 #define KERB_ERR_NAME_MAST_KEY_VER 5
69 #define KERB_ERR_SERV_MAST_KEY_VER 6
70 #define KERB_ERR_BYTE_ORDER 7
71 #define KERB_ERR_PRINCIPAL_UNKNOWN 8
72 #define KERB_ERR_PRINCIPAL_NOT_UNIQUE 9
73 #define KERB_ERR_NULL_KEY 10
76 u_char pvno
; /* Protocol Version */
77 u_char type
; /* Type+B */
80 static char tstr
[] = " [|kerberos]";
82 static struct tok type2str
[] = {
83 { AUTH_MSG_KDC_REQUEST
, "KDC_REQUEST" },
84 { AUTH_MSG_KDC_REPLY
, "KDC_REPLY" },
85 { AUTH_MSG_APPL_REQUEST
, "APPL_REQUEST" },
86 { AUTH_MSG_APPL_REQUEST_MUTUAL
, "APPL_REQUEST_MUTUAL" },
87 { AUTH_MSG_ERR_REPLY
, "ERR_REPLY" },
88 { AUTH_MSG_PRIVATE
, "PRIVATE" },
89 { AUTH_MSG_SAFE
, "SAFE" },
90 { AUTH_MSG_APPL_ERR
, "APPL_ERR" },
91 { AUTH_MSG_DIE
, "DIE" },
95 static struct tok kerr2str
[] = {
96 { KERB_ERR_OK
, "OK" },
97 { KERB_ERR_NAME_EXP
, "NAME_EXP" },
98 { KERB_ERR_SERVICE_EXP
, "SERVICE_EXP" },
99 { KERB_ERR_AUTH_EXP
, "AUTH_EXP" },
100 { KERB_ERR_PKT_VER
, "PKT_VER" },
101 { KERB_ERR_NAME_MAST_KEY_VER
, "NAME_MAST_KEY_VER" },
102 { KERB_ERR_SERV_MAST_KEY_VER
, "SERV_MAST_KEY_VER" },
103 { KERB_ERR_BYTE_ORDER
, "BYTE_ORDER" },
104 { KERB_ERR_PRINCIPAL_UNKNOWN
, "PRINCIPAL_UNKNOWN" },
105 { KERB_ERR_PRINCIPAL_NOT_UNIQUE
,"PRINCIPAL_NOT_UNIQUE" },
106 { KERB_ERR_NULL_KEY
, "NULL_KEY"},
111 /* little endian (unaligned) to host byte order */
112 /* XXX need to look at this... */
113 #define vtohlp(x) ((( ((char *)(x))[0] ) ) | \
114 (( ((char *)(x))[1] ) << 8) | \
115 (( ((char *)(x))[2] ) << 16) | \
116 (( ((char *)(x))[3] ) << 24))
117 #define vtohsp(x) ((( ((char *)(x))[0] ) ) | \
118 (( ((char *)(x))[1] ) << 8))
119 /* network (big endian) (unaligned) to host byte order */
120 #define ntohlp(x) ((( ((char *)(x))[3] ) ) | \
121 (( ((char *)(x))[2] ) << 8) | \
122 (( ((char *)(x))[1] ) << 16) | \
123 (( ((char *)(x))[0] ) << 24))
124 #define ntohsp(x) ((( ((char *)(x))[1] ) ) | \
125 (( ((char *)(x))[0] ) << 8))
130 c_print(register const u_char
*s
, register const u_char
*ep
)
148 c
^= 0x40; /* DEL to ?, others to alpha */
159 krb4_print_hdr(const u_char
*cp
)
163 #define PRINT if ((cp = c_print(cp, snapend)) == NULL) goto trunc
180 krb4_print(const u_char
*cp
)
182 register const struct krb
*kp
;
186 #define PRINT if ((cp = c_print(cp, snapend)) == NULL) goto trunc
187 /* True if struct krb is little endian */
188 #define IS_LENDIAN(kp) (((kp)->type & 0x01) != 0)
189 #define KTOHSP(kp, cp) (IS_LENDIAN(kp) ? vtohsp(cp) : ntohsp(cp))
191 kp
= (struct krb
*)cp
;
193 if ((&kp
->type
) >= snapend
) {
198 type
= kp
->type
& (0xFF << 1);
201 IS_LENDIAN(kp
) ? "le" : "be", tok2str(type2str
, NULL
, type
));
205 case AUTH_MSG_KDC_REQUEST
:
206 if ((cp
= krb4_print_hdr(cp
)) == NULL
)
210 printf(" %dmin ", *cp
++ * 5);
216 case AUTH_MSG_APPL_REQUEST
:
219 printf("v%d ", *cp
++);
222 printf(" (%d)", *cp
++);
224 printf(" (%d)", *cp
);
227 case AUTH_MSG_KDC_REPLY
:
228 if ((cp
= krb4_print_hdr(cp
)) == NULL
)
230 cp
+= 10; /* timestamp + n + exp + kvno */
231 TCHECK2(*cp
, sizeof(short));
232 len
= KTOHSP(kp
, cp
);
233 printf(" (%d)", len
);
236 case AUTH_MSG_ERR_REPLY
:
237 if ((cp
= krb4_print_hdr(cp
)) == NULL
)
239 cp
+= 4; /* timestamp */
240 TCHECK2(*cp
, sizeof(short));
241 printf(" %s ", tok2str(kerr2str
, NULL
, KTOHSP(kp
, cp
)));
247 fputs("(unknown)", stdout
);
257 krb_print(const u_char
*dat
, u_int length
)
259 register const struct krb
*kp
;
261 kp
= (struct krb
*)dat
;
263 if (dat
>= snapend
) {
273 printf(" v%d", kp
->pvno
);
277 printf(" v%d", kp
->pvno
);
278 krb4_print((const u_char
*)kp
);
283 fputs(" v5", stdout
);
284 /* Decode ASN.1 here "someday" */