2 * Decode and print Zephyr packets.
4 * http://web.mit.edu/zephyr/doc/protocol
6 * Copyright (c) 2001 Nickolai Zeldovich <kolya@MIT.EDU>
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that: (1) source code
11 * distributions retain the above copyright notice and this paragraph
12 * in its entirety, and (2) distributions including binary code include
13 * the above copyright notice and this paragraph in its entirety in
14 * the documentation or other materials provided with the distribution.
15 * The name of the author(s) may not be used to endorse or promote
16 * products derived from this software without specific prior written
17 * permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY
18 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE
19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
24 static const char rcsid
[] _U_
=
25 "@(#) $Header: /tcpdump/master/tcpdump/print-zephyr.c,v 1.10 2007-08-09 18:47:27 hannes Exp $";
32 #include <tcpdump-stdinc.h>
38 #include "interface.h"
53 const char *recipient
;
58 /* Other fields follow here.. */
73 static struct tok z_types
[] = {
74 { Z_PACKET_UNSAFE
, "unsafe" },
75 { Z_PACKET_UNACKED
, "unacked" },
76 { Z_PACKET_ACKED
, "acked" },
77 { Z_PACKET_HMACK
, "hm-ack" },
78 { Z_PACKET_HMCTL
, "hm-ctl" },
79 { Z_PACKET_SERVACK
, "serv-ack" },
80 { Z_PACKET_SERVNAK
, "serv-nak" },
81 { Z_PACKET_CLIENTACK
, "client-ack" },
82 { Z_PACKET_STAT
, "stat" }
88 parse_field(char **pptr
, int *len
)
92 if (*len
<= 0 || !pptr
|| !*pptr
)
94 if (*pptr
> (char *) snapend
)
98 while (*pptr
<= (char *) snapend
&& *len
>= 0 && **pptr
) {
104 if (*len
< 0 || *pptr
> (char *) snapend
)
110 z_triple(char *class, char *inst
, const char *recipient
)
114 snprintf(z_buf
, sizeof(z_buf
), "<%s,%s,%s>", class, inst
, recipient
);
115 z_buf
[sizeof(z_buf
)-1] = '\0';
120 str_to_lower(char *string
)
122 strncpy(z_buf
, string
, sizeof(z_buf
));
123 z_buf
[sizeof(z_buf
)-1] = '\0';
127 *string
= tolower((unsigned char)(*string
));
135 zephyr_print(const u_char
*cp
, int length
)
138 char *parse
= (char *) cp
;
139 int parselen
= length
;
143 /* squelch compiler warnings */
152 #define PARSE_STRING \
153 s = parse_field(&parse, &parselen); \
156 #define PARSE_FIELD_INT(field) \
158 if (!lose) field = strtol(s, 0, 16);
160 #define PARSE_FIELD_STR(field) \
162 if (!lose) field = s;
164 PARSE_FIELD_STR(z
.version
);
166 if (strncmp(z
.version
, "ZEPH", 4))
169 PARSE_FIELD_INT(z
.numfields
);
170 PARSE_FIELD_INT(z
.kind
);
171 PARSE_FIELD_STR(z
.uid
);
172 PARSE_FIELD_INT(z
.port
);
173 PARSE_FIELD_INT(z
.auth
);
174 PARSE_FIELD_INT(z
.authlen
);
175 PARSE_FIELD_STR(z
.authdata
);
176 PARSE_FIELD_STR(z
.class);
177 PARSE_FIELD_STR(z
.inst
);
178 PARSE_FIELD_STR(z
.opcode
);
179 PARSE_FIELD_STR(z
.sender
);
180 PARSE_FIELD_STR(z
.recipient
);
181 PARSE_FIELD_STR(z
.format
);
182 PARSE_FIELD_INT(z
.cksum
);
183 PARSE_FIELD_INT(z
.multi
);
184 PARSE_FIELD_STR(z
.multi_uid
);
187 printf(" [|zephyr] (%d)", length
);
192 if (strncmp(z
.version
+4, "0.2", 3)) {
193 printf(" v%s", z
.version
+4);
197 printf(" %s", tok2str(z_types
, "type %d", z
.kind
));
198 if (z
.kind
== Z_PACKET_SERVACK
) {
199 /* Initialization to silence warnings */
200 char *ackdata
= NULL
;
201 PARSE_FIELD_STR(ackdata
);
202 if (!lose
&& strcmp(ackdata
, "SENT"))
203 printf("/%s", str_to_lower(ackdata
));
205 if (*z
.sender
) printf(" %s", z
.sender
);
207 if (!strcmp(z
.class, "USER_LOCATE")) {
208 if (!strcmp(z
.opcode
, "USER_HIDE"))
210 else if (!strcmp(z
.opcode
, "USER_UNHIDE"))
213 printf(" locate %s", z
.inst
);
217 if (!strcmp(z
.class, "ZEPHYR_ADMIN")) {
218 printf(" zephyr-admin %s", str_to_lower(z
.opcode
));
222 if (!strcmp(z
.class, "ZEPHYR_CTL")) {
223 if (!strcmp(z
.inst
, "CLIENT")) {
224 if (!strcmp(z
.opcode
, "SUBSCRIBE") ||
225 !strcmp(z
.opcode
, "SUBSCRIBE_NODEFS") ||
226 !strcmp(z
.opcode
, "UNSUBSCRIBE")) {
228 printf(" %ssub%s", strcmp(z
.opcode
, "SUBSCRIBE") ? "un" : "",
229 strcmp(z
.opcode
, "SUBSCRIBE_NODEFS") ? "" :
231 if (z
.kind
!= Z_PACKET_SERVACK
) {
232 /* Initialization to silence warnings */
233 char *c
= NULL
, *i
= NULL
, *r
= NULL
;
237 if (!lose
) printf(" %s", z_triple(c
, i
, r
));
242 if (!strcmp(z
.opcode
, "GIMME")) {
247 if (!strcmp(z
.opcode
, "GIMMEDEFS")) {
248 printf(" gimme-defs");
252 if (!strcmp(z
.opcode
, "CLEARSUB")) {
253 printf(" clear-subs");
257 printf(" %s", str_to_lower(z
.opcode
));
261 if (!strcmp(z
.inst
, "HM")) {
262 printf(" %s", str_to_lower(z
.opcode
));
266 if (!strcmp(z
.inst
, "REALM")) {
267 if (!strcmp(z
.opcode
, "ADD_SUBSCRIBE"))
268 printf(" realm add-subs");
269 if (!strcmp(z
.opcode
, "REQ_SUBSCRIBE"))
270 printf(" realm req-subs");
271 if (!strcmp(z
.opcode
, "RLM_SUBSCRIBE"))
272 printf(" realm rlm-sub");
273 if (!strcmp(z
.opcode
, "RLM_UNSUBSCRIBE"))
274 printf(" realm rlm-unsub");
279 if (!strcmp(z
.class, "HM_CTL")) {
280 printf(" hm_ctl %s", str_to_lower(z
.inst
));
281 printf(" %s", str_to_lower(z
.opcode
));
285 if (!strcmp(z
.class, "HM_STAT")) {
286 if (!strcmp(z
.inst
, "HMST_CLIENT") && !strcmp(z
.opcode
, "GIMMESTATS")) {
287 printf(" get-client-stats");
292 if (!strcmp(z
.class, "WG_CTL")) {
293 printf(" wg_ctl %s", str_to_lower(z
.inst
));
294 printf(" %s", str_to_lower(z
.opcode
));
298 if (!strcmp(z
.class, "LOGIN")) {
299 if (!strcmp(z
.opcode
, "USER_FLUSH")) {
300 printf(" flush_locs");
304 if (!strcmp(z
.opcode
, "NONE") ||
305 !strcmp(z
.opcode
, "OPSTAFF") ||
306 !strcmp(z
.opcode
, "REALM-VISIBLE") ||
307 !strcmp(z
.opcode
, "REALM-ANNOUNCED") ||
308 !strcmp(z
.opcode
, "NET-VISIBLE") ||
309 !strcmp(z
.opcode
, "NET-ANNOUNCED")) {
310 printf(" set-exposure %s", str_to_lower(z
.opcode
));
318 printf(" to %s", z_triple(z
.class, z
.inst
, z
.recipient
));
320 printf(" op %s", z
.opcode
);