1999-10-08 07:47:09 +08:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1993, 1994, 1995, 1996
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that: (1) source code distributions
|
|
|
|
* retain the above copyright notice and this paragraph in its entirety, (2)
|
|
|
|
* distributions including binary code include the above copyright notice and
|
|
|
|
* this paragraph in its entirety in the documentation or other materials
|
|
|
|
* provided with the distribution, and (3) all advertising materials mentioning
|
|
|
|
* features or use of this software display the following acknowledgement:
|
|
|
|
* ``This product includes software developed by the University of California,
|
|
|
|
* Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
|
|
|
|
* the University nor the names of its contributors may be used to endorse
|
|
|
|
* or promote products derived from this software without specific prior
|
|
|
|
* written permission.
|
|
|
|
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
|
|
|
|
* WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
*/
|
|
|
|
|
2003-11-16 17:36:07 +08:00
|
|
|
#ifndef lint
|
|
|
|
static const char rcsid[] _U_ =
|
2004-03-24 12:06:28 +08:00
|
|
|
"@(#) $Header: /tcpdump/master/tcpdump/print-wb.c,v 1.33 2004-03-24 04:06:28 guy Exp $ (LBL)";
|
2003-11-16 17:36:07 +08:00
|
|
|
#endif
|
1999-11-21 17:36:43 +08:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
#endif
|
|
|
|
|
2002-08-01 16:52:55 +08:00
|
|
|
#include <tcpdump-stdinc.h>
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
|
|
|
#include "interface.h"
|
|
|
|
#include "addrtoname.h"
|
2002-12-11 15:13:49 +08:00
|
|
|
#include "extract.h"
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
/* XXX need to add byte-swapping macros! */
|
2002-12-11 15:13:49 +08:00
|
|
|
/* XXX - you mean like the ones in "extract.h"? */
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Largest packet size. Everything should fit within this space.
|
|
|
|
* For instance, multiline objects are sent piecewise.
|
|
|
|
*/
|
|
|
|
#define MAXFRAMESIZE 1024
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Multiple drawing ops can be sent in one packet. Each one starts on a
|
|
|
|
* an even multiple of DOP_ALIGN bytes, which must be a power of two.
|
|
|
|
*/
|
|
|
|
#define DOP_ALIGN 4
|
|
|
|
#define DOP_ROUNDUP(x) ((((int)(x)) + (DOP_ALIGN - 1)) & ~(DOP_ALIGN - 1))
|
|
|
|
#define DOP_NEXT(d)\
|
|
|
|
((struct dophdr *)((u_char *)(d) + \
|
2002-12-11 15:13:49 +08:00
|
|
|
DOP_ROUNDUP(EXTRACT_16BITS(&(d)->dh_len) + sizeof(*(d)))))
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Format of the whiteboard packet header.
|
|
|
|
* The transport level header.
|
|
|
|
*/
|
|
|
|
struct pkt_hdr {
|
|
|
|
u_int32_t ph_src; /* site id of source */
|
|
|
|
u_int32_t ph_ts; /* time stamp (for skew computation) */
|
2002-11-10 01:19:16 +08:00
|
|
|
u_int16_t ph_version; /* version number */
|
1999-10-08 07:47:09 +08:00
|
|
|
u_char ph_type; /* message type */
|
|
|
|
u_char ph_flags; /* message flags */
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
/* Packet types */
|
|
|
|
#define PT_DRAWOP 0 /* drawing operation */
|
|
|
|
#define PT_ID 1 /* announcement packet */
|
|
|
|
#define PT_RREQ 2 /* repair request */
|
|
|
|
#define PT_RREP 3 /* repair reply */
|
|
|
|
#define PT_KILL 4 /* terminate participation */
|
|
|
|
#define PT_PREQ 5 /* page vector request */
|
|
|
|
#define PT_PREP 7 /* page vector reply */
|
|
|
|
|
2001-06-27 13:37:19 +08:00
|
|
|
#ifdef PF_USER
|
|
|
|
#undef PF_USER /* {Digital,Tru64} UNIX define this, alas */
|
|
|
|
#endif
|
|
|
|
|
1999-10-08 07:47:09 +08:00
|
|
|
/* flags */
|
|
|
|
#define PF_USER 0x01 /* hint that packet has interactive data */
|
|
|
|
#define PF_VIS 0x02 /* only visible ops wanted */
|
|
|
|
|
|
|
|
struct PageID {
|
|
|
|
u_int32_t p_sid; /* session id of initiator */
|
|
|
|
u_int32_t p_uid; /* page number */
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
struct dophdr {
|
|
|
|
u_int32_t dh_ts; /* sender's timestamp */
|
2002-11-10 01:19:16 +08:00
|
|
|
u_int16_t dh_len; /* body length */
|
1999-10-08 07:47:09 +08:00
|
|
|
u_char dh_flags;
|
|
|
|
u_char dh_type; /* body type */
|
|
|
|
/* body follows */
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
/*
|
|
|
|
* Drawing op sub-types.
|
|
|
|
*/
|
|
|
|
#define DT_RECT 2
|
|
|
|
#define DT_LINE 3
|
|
|
|
#define DT_ML 4
|
|
|
|
#define DT_DEL 5
|
|
|
|
#define DT_XFORM 6
|
|
|
|
#define DT_ELL 7
|
|
|
|
#define DT_CHAR 8
|
|
|
|
#define DT_STR 9
|
|
|
|
#define DT_NOP 10
|
|
|
|
#define DT_PSCODE 11
|
|
|
|
#define DT_PSCOMP 12
|
|
|
|
#define DT_REF 13
|
|
|
|
#define DT_SKIP 14
|
|
|
|
#define DT_HOLE 15
|
|
|
|
#define DT_MAXTYPE 15
|
|
|
|
|
|
|
|
/*
|
|
|
|
* A drawing operation.
|
|
|
|
*/
|
|
|
|
struct pkt_dop {
|
|
|
|
struct PageID pd_page; /* page that operations apply to */
|
|
|
|
u_int32_t pd_sseq; /* start sequence number */
|
|
|
|
u_int32_t pd_eseq; /* end sequence number */
|
|
|
|
/* drawing ops follow */
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A repair request.
|
|
|
|
*/
|
|
|
|
struct pkt_rreq {
|
|
|
|
u_int32_t pr_id; /* source id of drawops to be repaired */
|
|
|
|
struct PageID pr_page; /* page of drawops */
|
|
|
|
u_int32_t pr_sseq; /* start seqno */
|
|
|
|
u_int32_t pr_eseq; /* end seqno */
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* A repair reply.
|
|
|
|
*/
|
|
|
|
struct pkt_rrep {
|
|
|
|
u_int32_t pr_id; /* original site id of ops */
|
|
|
|
struct pkt_dop pr_dop;
|
|
|
|
/* drawing ops follow */
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
struct id_off {
|
|
|
|
u_int32_t id;
|
|
|
|
u_int32_t off;
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
struct pgstate {
|
|
|
|
u_int32_t slot;
|
|
|
|
struct PageID page;
|
2002-11-10 01:19:16 +08:00
|
|
|
u_int16_t nid;
|
|
|
|
u_int16_t rsvd;
|
1999-10-08 07:47:09 +08:00
|
|
|
/* seqptr's */
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* An announcement packet.
|
|
|
|
*/
|
|
|
|
struct pkt_id {
|
|
|
|
u_int32_t pi_mslot;
|
|
|
|
struct PageID pi_mpage; /* current page */
|
|
|
|
struct pgstate pi_ps;
|
|
|
|
/* seqptr's */
|
|
|
|
/* null-terminated site name */
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
struct pkt_preq {
|
|
|
|
struct PageID pp_page;
|
|
|
|
u_int32_t pp_low;
|
|
|
|
u_int32_t pp_high;
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
struct pkt_prep {
|
|
|
|
u_int32_t pp_n; /* size of pageid array */
|
|
|
|
/* pgstate's follow */
|
2002-12-11 15:13:49 +08:00
|
|
|
};
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
static int
|
|
|
|
wb_id(const struct pkt_id *id, u_int len)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
const char *cp;
|
|
|
|
const struct id_off *io;
|
|
|
|
char c;
|
|
|
|
int nid;
|
|
|
|
|
|
|
|
printf(" wb-id:");
|
|
|
|
if (len < sizeof(*id) || (u_char *)(id + 1) > snapend)
|
|
|
|
return (-1);
|
|
|
|
len -= sizeof(*id);
|
|
|
|
|
|
|
|
printf(" %u/%s:%u (max %u/%s:%u) ",
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&id->pi_ps.slot),
|
1999-10-08 07:47:09 +08:00
|
|
|
ipaddr_string(&id->pi_ps.page.p_sid),
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&id->pi_ps.page.p_uid),
|
|
|
|
EXTRACT_32BITS(&id->pi_mslot),
|
1999-10-08 07:47:09 +08:00
|
|
|
ipaddr_string(&id->pi_mpage.p_sid),
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&id->pi_mpage.p_uid));
|
1999-10-08 07:47:09 +08:00
|
|
|
|
2002-12-11 15:13:49 +08:00
|
|
|
nid = EXTRACT_16BITS(&id->pi_ps.nid);
|
1999-10-08 07:47:09 +08:00
|
|
|
len -= sizeof(*io) * nid;
|
|
|
|
io = (struct id_off *)(id + 1);
|
|
|
|
cp = (char *)(io + nid);
|
|
|
|
if ((u_char *)cp + len <= snapend) {
|
|
|
|
putchar('"');
|
|
|
|
(void)fn_print((u_char *)cp, (u_char *)cp + len);
|
|
|
|
putchar('"');
|
|
|
|
}
|
|
|
|
|
|
|
|
c = '<';
|
2004-03-24 12:06:28 +08:00
|
|
|
for (i = 0; i < nid && (u_char *)(io + 1) <= snapend; ++io, ++i) {
|
1999-10-08 07:47:09 +08:00
|
|
|
printf("%c%s:%u",
|
2002-12-11 15:13:49 +08:00
|
|
|
c, ipaddr_string(&io->id), EXTRACT_32BITS(&io->off));
|
1999-10-08 07:47:09 +08:00
|
|
|
c = ',';
|
|
|
|
}
|
|
|
|
if (i >= nid) {
|
|
|
|
printf(">");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
wb_rreq(const struct pkt_rreq *rreq, u_int len)
|
|
|
|
{
|
|
|
|
printf(" wb-rreq:");
|
|
|
|
if (len < sizeof(*rreq) || (u_char *)(rreq + 1) > snapend)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
printf(" please repair %s %s:%u<%u:%u>",
|
|
|
|
ipaddr_string(&rreq->pr_id),
|
|
|
|
ipaddr_string(&rreq->pr_page.p_sid),
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&rreq->pr_page.p_uid),
|
|
|
|
EXTRACT_32BITS(&rreq->pr_sseq),
|
|
|
|
EXTRACT_32BITS(&rreq->pr_eseq));
|
1999-10-08 07:47:09 +08:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
wb_preq(const struct pkt_preq *preq, u_int len)
|
|
|
|
{
|
|
|
|
printf(" wb-preq:");
|
|
|
|
if (len < sizeof(*preq) || (u_char *)(preq + 1) > snapend)
|
|
|
|
return (-1);
|
|
|
|
|
|
|
|
printf(" need %u/%s:%u",
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&preq->pp_low),
|
1999-10-08 07:47:09 +08:00
|
|
|
ipaddr_string(&preq->pp_page.p_sid),
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&preq->pp_page.p_uid));
|
1999-10-08 07:47:09 +08:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
wb_prep(const struct pkt_prep *prep, u_int len)
|
|
|
|
{
|
|
|
|
int n;
|
|
|
|
const struct pgstate *ps;
|
|
|
|
const u_char *ep = snapend;
|
|
|
|
|
|
|
|
printf(" wb-prep:");
|
|
|
|
if (len < sizeof(*prep)) {
|
|
|
|
return (-1);
|
|
|
|
}
|
2002-12-11 15:13:49 +08:00
|
|
|
n = EXTRACT_32BITS(&prep->pp_n);
|
1999-10-08 07:47:09 +08:00
|
|
|
ps = (const struct pgstate *)(prep + 1);
|
2004-03-24 12:06:28 +08:00
|
|
|
while (--n >= 0 && (u_char *)(ps + 1) <= ep) {
|
1999-10-08 07:47:09 +08:00
|
|
|
const struct id_off *io, *ie;
|
|
|
|
char c = '<';
|
|
|
|
|
|
|
|
printf(" %u/%s:%u",
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&ps->slot),
|
1999-10-08 07:47:09 +08:00
|
|
|
ipaddr_string(&ps->page.p_sid),
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&ps->page.p_uid));
|
1999-10-08 07:47:09 +08:00
|
|
|
io = (struct id_off *)(ps + 1);
|
2004-03-24 12:06:28 +08:00
|
|
|
for (ie = io + ps->nid; io < ie && (u_char *)(io + 1) <= ep; ++io) {
|
1999-10-08 07:47:09 +08:00
|
|
|
printf("%c%s:%u", c, ipaddr_string(&io->id),
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&io->off));
|
1999-10-08 07:47:09 +08:00
|
|
|
c = ',';
|
|
|
|
}
|
|
|
|
printf(">");
|
|
|
|
ps = (struct pgstate *)io;
|
|
|
|
}
|
|
|
|
return ((u_char *)ps <= ep? 0 : -1);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
Add a few more GCC warnings on GCC >= 2 for ".devel" builds.
From Neil T. Spring: fixes for many of those warnings:
addrtoname.c, configure.in: Linux needs netinet/ether.h for
ether_ntohost
print-*.c: change char *foo = "bar" to const char *foo = "bar"
to appease -Wwrite-strings; should affect no run-time behavior.
print-*.c: make some variables unsigned.
print-bgp.c: plen ('prefix len') is unsigned, no reason to
validate by comparing to zero.
print-cnfp.c, print-rx.c: use intoa, provided by addrtoname,
instead of inet_ntoa.
print-domain.c: unsigned int l; (l=foo()) < 0 is guaranteed to
be false, so check for (u_int)-1, which represents failure,
explicitly.
print-isakmp.c: complete initialization of attrmap objects.
print-lwres.c: "if(x); print foo;" seemed much more likely to be
intended to be "if(x) { print foo; }".
print-smb.c: complete initialization of some structures.
In addition, add some fixes for the signed vs. unsigned comparison
warnings:
extract.h: cast the result of the byte-extraction-and-combining,
as, at least for the 16-bit version, C's integral promotions
will turn "u_int16_t" into "int" if there are other "int"s
nearby.
print-*.c: make some more variables unsigned, or add casts to an
unsigned type of signed values known not to be negative, or add
casts to "int" of unsigned values known to fit in an "int", and
make other changes needed to handle the aforementioned variables
now being unsigned.
print-isakmp.c: clean up the handling of error/status indicators
in notify messages.
print-ppp.c: get rid of a check that an unsigned quantity is >=
0.
print-radius.c: clean up some of the bounds checking.
print-smb.c: extract the word count into a "u_int" to avoid the
aforementioned problems with C's integral promotions.
print-snmp.c: change a check that an unsigned variable is >= 0
to a check that it's != 0.
Also, fix some formats to use "%u" rather than "%d" for unsigned
quantities.
2002-09-05 08:00:07 +08:00
|
|
|
const char *dopstr[] = {
|
1999-10-08 07:47:09 +08:00
|
|
|
"dop-0!",
|
|
|
|
"dop-1!",
|
|
|
|
"RECT",
|
|
|
|
"LINE",
|
|
|
|
"ML",
|
|
|
|
"DEL",
|
|
|
|
"XFORM",
|
|
|
|
"ELL",
|
|
|
|
"CHAR",
|
|
|
|
"STR",
|
|
|
|
"NOP",
|
|
|
|
"PSCODE",
|
|
|
|
"PSCOMP",
|
|
|
|
"REF",
|
|
|
|
"SKIP",
|
|
|
|
"HOLE",
|
|
|
|
};
|
|
|
|
|
|
|
|
static int
|
|
|
|
wb_dops(const struct dophdr *dh, u_int32_t ss, u_int32_t es)
|
|
|
|
{
|
|
|
|
printf(" <");
|
|
|
|
for ( ; ss <= es; ++ss) {
|
|
|
|
register int t = dh->dh_type;
|
|
|
|
|
|
|
|
if (t > DT_MAXTYPE)
|
|
|
|
printf(" dop-%d!", t);
|
|
|
|
else {
|
|
|
|
printf(" %s", dopstr[t]);
|
|
|
|
if (t == DT_SKIP || t == DT_HOLE) {
|
2002-12-11 15:13:49 +08:00
|
|
|
u_int32_t ts = EXTRACT_32BITS(&dh->dh_ts);
|
1999-10-08 07:47:09 +08:00
|
|
|
printf("%d", ts - ss + 1);
|
|
|
|
if (ss > ts || ts > es) {
|
|
|
|
printf("[|]");
|
|
|
|
if (ts < ss)
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
ss = ts;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
dh = DOP_NEXT(dh);
|
|
|
|
if ((u_char *)dh > snapend) {
|
|
|
|
printf("[|wb]");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
printf(" >");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
wb_rrep(const struct pkt_rrep *rrep, u_int len)
|
|
|
|
{
|
|
|
|
const struct pkt_dop *dop = &rrep->pr_dop;
|
|
|
|
|
|
|
|
printf(" wb-rrep:");
|
|
|
|
if (len < sizeof(*rrep) || (u_char *)(rrep + 1) > snapend)
|
|
|
|
return (-1);
|
|
|
|
len -= sizeof(*rrep);
|
|
|
|
|
|
|
|
printf(" for %s %s:%u<%u:%u>",
|
|
|
|
ipaddr_string(&rrep->pr_id),
|
|
|
|
ipaddr_string(&dop->pd_page.p_sid),
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&dop->pd_page.p_uid),
|
|
|
|
EXTRACT_32BITS(&dop->pd_sseq),
|
|
|
|
EXTRACT_32BITS(&dop->pd_eseq));
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
if (vflag)
|
|
|
|
return (wb_dops((const struct dophdr *)(dop + 1),
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&dop->pd_sseq),
|
|
|
|
EXTRACT_32BITS(&dop->pd_eseq)));
|
1999-10-08 07:47:09 +08:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
wb_drawop(const struct pkt_dop *dop, u_int len)
|
|
|
|
{
|
|
|
|
printf(" wb-dop:");
|
|
|
|
if (len < sizeof(*dop) || (u_char *)(dop + 1) > snapend)
|
|
|
|
return (-1);
|
|
|
|
len -= sizeof(*dop);
|
|
|
|
|
|
|
|
printf(" %s:%u<%u:%u>",
|
|
|
|
ipaddr_string(&dop->pd_page.p_sid),
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&dop->pd_page.p_uid),
|
|
|
|
EXTRACT_32BITS(&dop->pd_sseq),
|
|
|
|
EXTRACT_32BITS(&dop->pd_eseq));
|
1999-10-08 07:47:09 +08:00
|
|
|
|
|
|
|
if (vflag)
|
|
|
|
return (wb_dops((const struct dophdr *)(dop + 1),
|
2002-12-11 15:13:49 +08:00
|
|
|
EXTRACT_32BITS(&dop->pd_sseq),
|
|
|
|
EXTRACT_32BITS(&dop->pd_eseq)));
|
1999-10-08 07:47:09 +08:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print whiteboard multicast packets.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
wb_print(register const void *hdr, register u_int len)
|
|
|
|
{
|
|
|
|
register const struct pkt_hdr *ph;
|
|
|
|
|
|
|
|
ph = (const struct pkt_hdr *)hdr;
|
|
|
|
if (len < sizeof(*ph) || (u_char *)(ph + 1) > snapend) {
|
|
|
|
printf("[|wb]");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
len -= sizeof(*ph);
|
|
|
|
|
|
|
|
if (ph->ph_flags)
|
|
|
|
printf("*");
|
|
|
|
switch (ph->ph_type) {
|
|
|
|
|
|
|
|
case PT_KILL:
|
|
|
|
printf(" wb-kill");
|
|
|
|
return;
|
|
|
|
|
|
|
|
case PT_ID:
|
|
|
|
if (wb_id((struct pkt_id *)(ph + 1), len) >= 0)
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PT_RREQ:
|
|
|
|
if (wb_rreq((struct pkt_rreq *)(ph + 1), len) >= 0)
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PT_RREP:
|
|
|
|
if (wb_rrep((struct pkt_rrep *)(ph + 1), len) >= 0)
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PT_DRAWOP:
|
|
|
|
if (wb_drawop((struct pkt_dop *)(ph + 1), len) >= 0)
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PT_PREQ:
|
|
|
|
if (wb_preq((struct pkt_preq *)(ph + 1), len) >= 0)
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PT_PREP:
|
|
|
|
if (wb_prep((struct pkt_prep *)(ph + 1), len) >= 0)
|
|
|
|
return;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
printf(" wb-%d!", ph->ph_type);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|