]> The Tcpdump Group git mirrors - tcpdump/blob - print-vrrp.c
print more data with `-v'. From Kevin Steves <[email protected]>
[tcpdump] / print-vrrp.c
1 /*
2 * Copyright (c) 2000 William C. Fenner.
3 * All rights reserved.
4 *
5 * Kevin Steves <ks@hp.se> July 2000
6 * Modified to:
7 * - print version, type string and packet length
8 * - print IP address count if > 1 (-v)
9 * - verify checksum (-v)
10 * - print authentication string (-v)
11 *
12 * Redistribution and use in source and binary forms, with or without
13 * modification, are permitted provided that: (1) source code
14 * distributions retain the above copyright notice and this paragraph
15 * in its entirety, and (2) distributions including binary code include
16 * the above copyright notice and this paragraph in its entirety in
17 * the documentation or other materials provided with the distribution.
18 * The name of William C. Fenner may not be used to endorse or
19 * promote products derived from this software without specific prior
20 * written permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND
21 * WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
22 * LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 * FOR A PARTICULAR PURPOSE.
24 */
25
26 #ifndef lint
27 static const char rcsid[] =
28 "@(#) $Header: /tcpdump/master/tcpdump/print-vrrp.c,v 1.2 2000-07-29 06:22:17 assar Exp $";
29 #endif
30
31 #ifdef HAVE_CONFIG_H
32 #include "config.h"
33 #endif
34
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <unistd.h>
38
39 #include "interface.h"
40 #include "extract.h"
41 #include "addrtoname.h"
42
43 /*
44 * RFC 2338:
45 * 0 1 2 3
46 * 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
47 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
48 * |Version| Type | Virtual Rtr ID| Priority | Count IP Addrs|
49 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
50 * | Auth Type | Adver Int | Checksum |
51 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
52 * | IP Address (1) |
53 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
54 * | . |
55 * | . |
56 * | . |
57 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
58 * | IP Address (n) |
59 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
60 * | Authentication Data (1) |
61 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
62 * | Authentication Data (2) |
63 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
64 */
65 void
66 vrrp_print(register const u_char *bp, register u_int len, int ttl)
67 {
68 int version, type, auth_type;
69 char *type_s;
70
71 TCHECK(bp[0]);
72 version = (bp[0] & 0xf0) >> 4;
73 type = bp[0] & 0x0f;
74 if (type == 1)
75 type_s = "advertise";
76 else
77 type_s = "unknown";
78 printf("VRRPv%d-%s %d: ", version, type_s, len);
79 if (ttl != 255)
80 printf("[ttl=%d!] ", ttl);
81 if (version != 2 || type != 1)
82 return;
83 TCHECK(bp[2]);
84 printf("vrid=%d prio=%d", bp[1], bp[2]);
85 TCHECK(bp[5]);
86 auth_type = bp[4];
87 if (auth_type != 0)
88 printf(" authtype=%d", auth_type);
89 printf(" intvl=%d", bp[5]);
90 if (vflag) {
91 int naddrs = bp[3];
92 int i;
93 char c;
94
95 if (TTEST2(bp[0], len) && in_cksum((const u_short*)bp, len, 0))
96 printf(" (bad vrrp cksum %x!)",
97 EXTRACT_16BITS(&bp[6]));
98 printf(" addrs");
99 if (naddrs > 1)
100 printf("(%d)", naddrs);
101 printf(":");
102 c = ' ';
103 bp += 8;
104 for (i = 0; i < naddrs; i++) {
105 TCHECK(bp[3]);
106 printf("%c%s", c, ipaddr_string(bp));
107 c = ',';
108 bp += 4;
109 }
110 if (auth_type == 1) { /* simple text password */
111 TCHECK(bp[7]);
112 printf(" auth %.8s", bp);
113 }
114 }
115 return;
116 trunc:
117 printf("[|vrrp]");
118 }