]> The Tcpdump Group git mirrors - tcpdump/blob - print-vrrp.c
Fix a bunch of de-constifications.
[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 #ifdef HAVE_CONFIG_H
27 #include "config.h"
28 #endif
29
30 #include <tcpdump-stdinc.h>
31
32 #include "interface.h"
33 #include "extract.h"
34 #include "addrtoname.h"
35
36 #include "ip.h"
37 #include "ipproto.h"
38 /*
39 * RFC 2338 (VRRP v2):
40 *
41 * 0 1 2 3
42 * 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
43 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
44 * |Version| Type | Virtual Rtr ID| Priority | Count IP Addrs|
45 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
46 * | Auth Type | Adver Int | Checksum |
47 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
48 * | IP Address (1) |
49 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
50 * | . |
51 * | . |
52 * | . |
53 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
54 * | IP Address (n) |
55 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
56 * | Authentication Data (1) |
57 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
58 * | Authentication Data (2) |
59 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
60 *
61 *
62 * RFC 5798 (VRRP v3):
63 *
64 * 0 1 2 3
65 * 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
66 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
67 * | IPv4 Fields or IPv6 Fields |
68 * ... ...
69 * | |
70 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
71 * |Version| Type | Virtual Rtr ID| Priority |Count IPvX Addr|
72 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
73 * |(rsvd) | Max Adver Int | Checksum |
74 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
75 * | |
76 * + +
77 * | IPvX Address(es) |
78 * + +
79 * | |
80 * +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
81 */
82
83 /* Type */
84 #define VRRP_TYPE_ADVERTISEMENT 1
85
86 static const struct tok type2str[] = {
87 { VRRP_TYPE_ADVERTISEMENT, "Advertisement" },
88 { 0, NULL }
89 };
90
91 /* Auth Type */
92 #define VRRP_AUTH_NONE 0
93 #define VRRP_AUTH_SIMPLE 1
94 #define VRRP_AUTH_AH 2
95
96 static const struct tok auth2str[] = {
97 { VRRP_AUTH_NONE, "none" },
98 { VRRP_AUTH_SIMPLE, "simple" },
99 { VRRP_AUTH_AH, "ah" },
100 { 0, NULL }
101 };
102
103 void
104 vrrp_print(netdissect_options *ndo,
105 register const u_char *bp, register u_int len,
106 register const u_char *bp2, int ttl)
107 {
108 int version, type, auth_type = VRRP_AUTH_NONE; /* keep compiler happy */
109 const char *type_s;
110
111 ND_TCHECK(bp[0]);
112 version = (bp[0] & 0xf0) >> 4;
113 type = bp[0] & 0x0f;
114 type_s = tok2str(type2str, "unknown type (%u)", type);
115 ND_PRINT((ndo, "VRRPv%u, %s", version, type_s));
116 if (ttl != 255)
117 ND_PRINT((ndo, ", (ttl %u)", ttl));
118 if (version < 2 || version > 3 || type != VRRP_TYPE_ADVERTISEMENT)
119 return;
120 ND_TCHECK(bp[2]);
121 ND_PRINT((ndo, ", vrid %u, prio %u", bp[1], bp[2]));
122 ND_TCHECK(bp[5]);
123
124 if (version == 2) {
125 auth_type = bp[4];
126 ND_PRINT((ndo, ", authtype %s", tok2str(auth2str, NULL, auth_type)));
127 ND_PRINT((ndo, ", intvl %us, length %u", bp[5], len));
128 } else { /* version == 3 */
129 uint16_t intvl = (bp[4] & 0x0f) << 8 | bp[5];
130 ND_PRINT((ndo, ", intvl %ucs, length %u", intvl, len));
131 }
132
133 if (ndo->ndo_vflag) {
134 int naddrs = bp[3];
135 int i;
136 char c;
137
138 if (version == 2 && ND_TTEST2(bp[0], len)) {
139 struct cksum_vec vec[1];
140
141 vec[0].ptr = bp;
142 vec[0].len = len;
143 if (in_cksum(vec, 1))
144 ND_PRINT((ndo, ", (bad vrrp cksum %x)",
145 EXTRACT_16BITS(&bp[6])));
146 }
147
148 if (version == 3 && ND_TTEST2(bp[0], len)) {
149 uint16_t cksum = nextproto4_cksum(ndo, (const struct ip *)bp2, bp,
150 len, len, IPPROTO_VRRP);
151 if (cksum)
152 ND_PRINT((ndo, ", (bad vrrp cksum %x)",
153 EXTRACT_16BITS(&bp[6])));
154 }
155
156 ND_PRINT((ndo, ", addrs"));
157 if (naddrs > 1)
158 ND_PRINT((ndo, "(%d)", naddrs));
159 ND_PRINT((ndo, ":"));
160 c = ' ';
161 bp += 8;
162 for (i = 0; i < naddrs; i++) {
163 ND_TCHECK(bp[3]);
164 ND_PRINT((ndo, "%c%s", c, ipaddr_string(ndo, bp)));
165 c = ',';
166 bp += 4;
167 }
168 if (version == 2 && auth_type == VRRP_AUTH_SIMPLE) { /* simple text password */
169 ND_TCHECK(bp[7]);
170 ND_PRINT((ndo, " auth \""));
171 if (fn_printn(ndo, bp, 8, ndo->ndo_snapend)) {
172 ND_PRINT((ndo, "\""));
173 goto trunc;
174 }
175 ND_PRINT((ndo, "\""));
176 }
177 }
178 return;
179 trunc:
180 ND_PRINT((ndo, "[|vrrp]"));
181 }