4 * Decode and print Zephyr packets.
6 * http://web.mit.edu/zephyr/doc/protocol
8 * Copyright (c) 2001 Nickolai Zeldovich <kolya@MIT.EDU>
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that: (1) source code
13 * distributions retain the above copyright notice and this paragraph
14 * in its entirety, and (2) distributions including binary code include
15 * the above copyright notice and this paragraph in its entirety in
16 * the documentation or other materials provided with the distribution.
17 * The name of the author(s) may not be used to endorse or promote
18 * products derived from this software without specific prior written
19 * permission. THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY
20 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
25 #include <sys/cdefs.h>
28 static const char rcsid
[] _U_
=
29 "@(#) Header: /tcpdump/master/tcpdump/print-zephyr.c,v 1.8.2.1 2005/04/21 06:51:24 guy Exp";
31 __RCSID("$NetBSD: tcpdump2rcsid.ex,v 1.1 2001/06/25 20:09:58 itojun Exp $");
39 #include <tcpdump-stdinc.h>
45 #include "interface.h"
60 const char *recipient
;
65 /* Other fields follow here.. */
80 static struct tok z_types
[] = {
81 { Z_PACKET_UNSAFE
, "unsafe" },
82 { Z_PACKET_UNACKED
, "unacked" },
83 { Z_PACKET_ACKED
, "acked" },
84 { Z_PACKET_HMACK
, "hm-ack" },
85 { Z_PACKET_HMCTL
, "hm-ctl" },
86 { Z_PACKET_SERVACK
, "serv-ack" },
87 { Z_PACKET_SERVNAK
, "serv-nak" },
88 { Z_PACKET_CLIENTACK
, "client-ack" },
89 { Z_PACKET_STAT
, "stat" }
95 parse_field(char **pptr
, int *len
)
99 if (*len
<= 0 || !pptr
|| !*pptr
)
101 if (*pptr
> (char *) snapend
)
105 while (*pptr
<= (char *) snapend
&& *len
>= 0 && **pptr
) {
111 if (*len
< 0 || *pptr
> (char *) snapend
)
117 z_triple(char *class, char *inst
, const char *recipient
)
121 snprintf(z_buf
, sizeof(z_buf
), "<%s,%s,%s>", class, inst
, recipient
);
122 z_buf
[sizeof(z_buf
)-1] = '\0';
127 str_to_lower(char *string
)
129 strncpy(z_buf
, string
, sizeof(z_buf
));
130 z_buf
[sizeof(z_buf
)-1] = '\0';
134 *string
= tolower((unsigned char)(*string
));
142 zephyr_print(const u_char
*cp
, int length
)
145 char *parse
= (char *) cp
;
146 int parselen
= length
;
150 memset(&z
, 0, sizeof(z
)); /* XXX gcc */
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
);