1996-08-19 20:34:12 +00:00
|
|
|
/*
|
1998-09-15 19:36:32 +00:00
|
|
|
* Copyright (c) 1990, 1991, 1993, 1994, 1995, 1996, 1997
|
1996-08-19 20:34:12 +00:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
#define NETDISSECT_REWORKED
|
2000-01-30 00:45:58 +00:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
1996-08-19 20:34:12 +00:00
|
|
|
#endif
|
|
|
|
|
2004-03-31 09:17:26 +00:00
|
|
|
#include <tcpdump-stdinc.h>
|
|
|
|
|
1996-08-19 20:34:12 +00:00
|
|
|
#include <sys/stat.h>
|
|
|
|
|
|
|
|
#ifdef HAVE_FCNTL_H
|
|
|
|
#include <fcntl.h>
|
|
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include "interface.h"
|
|
|
|
|
|
|
|
/*
|
2005-07-11 03:54:22 +00:00
|
|
|
* Print out a null-terminated filename (or other ascii string).
|
1996-08-19 20:34:12 +00:00
|
|
|
* If ep is NULL, assume no truncation check is needed.
|
|
|
|
* Return true if truncated.
|
|
|
|
*/
|
|
|
|
int
|
2015-01-06 19:03:11 +00:00
|
|
|
fn_print(netdissect_options *ndo,
|
|
|
|
register const u_char *s, register const u_char *ep)
|
1996-08-19 20:34:12 +00:00
|
|
|
{
|
|
|
|
register int ret;
|
|
|
|
register u_char c;
|
|
|
|
|
|
|
|
ret = 1; /* assume truncated */
|
|
|
|
while (ep == NULL || s < ep) {
|
|
|
|
c = *s++;
|
|
|
|
if (c == '\0') {
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
if (!ND_ISASCII(c)) {
|
|
|
|
c = ND_TOASCII(c);
|
|
|
|
ND_PRINT((ndo, "M-"));
|
1996-08-19 20:34:12 +00:00
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
if (!ND_ISPRINT(c)) {
|
1996-08-19 20:34:12 +00:00
|
|
|
c ^= 0x40; /* DEL to ?, others to alpha */
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "^"));
|
1996-08-19 20:34:12 +00:00
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "%c", c));
|
1996-08-19 20:34:12 +00:00
|
|
|
}
|
|
|
|
return(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print out a counted filename (or other ascii string).
|
|
|
|
* If ep is NULL, assume no truncation check is needed.
|
|
|
|
* Return true if truncated.
|
|
|
|
*/
|
|
|
|
int
|
2015-01-06 19:03:11 +00:00
|
|
|
fn_printn(netdissect_options *ndo,
|
|
|
|
register const u_char *s, register u_int n, register const u_char *ep)
|
1996-08-19 20:34:12 +00:00
|
|
|
{
|
|
|
|
register u_char c;
|
|
|
|
|
2004-03-31 09:17:26 +00:00
|
|
|
while (n > 0 && (ep == NULL || s < ep)) {
|
|
|
|
n--;
|
1996-08-19 20:34:12 +00:00
|
|
|
c = *s++;
|
2015-01-06 19:03:11 +00:00
|
|
|
if (!ND_ISASCII(c)) {
|
|
|
|
c = ND_TOASCII(c);
|
|
|
|
ND_PRINT((ndo, "M-"));
|
1996-08-19 20:34:12 +00:00
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
if (!ND_ISPRINT(c)) {
|
1996-08-19 20:34:12 +00:00
|
|
|
c ^= 0x40; /* DEL to ?, others to alpha */
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "^"));
|
1996-08-19 20:34:12 +00:00
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "%c", c));
|
1996-08-19 20:34:12 +00:00
|
|
|
}
|
2004-03-31 09:17:26 +00:00
|
|
|
return (n == 0) ? 0 : 1;
|
1996-08-19 20:34:12 +00:00
|
|
|
}
|
|
|
|
|
2005-07-11 03:54:22 +00:00
|
|
|
/*
|
|
|
|
* Print out a null-padded filename (or other ascii string).
|
|
|
|
* If ep is NULL, assume no truncation check is needed.
|
|
|
|
* Return true if truncated.
|
|
|
|
*/
|
|
|
|
int
|
2015-01-06 19:03:11 +00:00
|
|
|
fn_printzp(netdissect_options *ndo,
|
|
|
|
register const u_char *s, register u_int n,
|
|
|
|
register const u_char *ep)
|
2005-07-11 03:54:22 +00:00
|
|
|
{
|
|
|
|
register int ret;
|
|
|
|
register u_char c;
|
|
|
|
|
|
|
|
ret = 1; /* assume truncated */
|
|
|
|
while (n > 0 && (ep == NULL || s < ep)) {
|
|
|
|
n--;
|
|
|
|
c = *s++;
|
|
|
|
if (c == '\0') {
|
|
|
|
ret = 0;
|
|
|
|
break;
|
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
if (!ND_ISASCII(c)) {
|
|
|
|
c = ND_TOASCII(c);
|
|
|
|
ND_PRINT((ndo, "M-"));
|
2005-07-11 03:54:22 +00:00
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
if (!ND_ISPRINT(c)) {
|
2005-07-11 03:54:22 +00:00
|
|
|
c ^= 0x40; /* DEL to ?, others to alpha */
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "^"));
|
2005-07-11 03:54:22 +00:00
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "%c", c));
|
2005-07-11 03:54:22 +00:00
|
|
|
}
|
|
|
|
return (n == 0) ? 0 : ret;
|
|
|
|
}
|
|
|
|
|
2009-03-21 16:23:46 +00:00
|
|
|
/*
|
|
|
|
* Format the timestamp
|
|
|
|
*/
|
2015-01-06 19:03:11 +00:00
|
|
|
static char *
|
|
|
|
ts_format(netdissect_options *ndo, int sec, int usec)
|
2009-03-21 16:23:46 +00:00
|
|
|
{
|
2015-01-06 19:03:11 +00:00
|
|
|
static char buf[sizeof("00:00:00.000000000")];
|
|
|
|
const char *format;
|
|
|
|
|
|
|
|
#ifdef HAVE_PCAP_SET_TSTAMP_PRECISION
|
|
|
|
switch (ndo->ndo_tstamp_precision) {
|
|
|
|
|
|
|
|
case PCAP_TSTAMP_PRECISION_MICRO:
|
|
|
|
format = "%02d:%02d:%02d.%06u";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PCAP_TSTAMP_PRECISION_NANO:
|
|
|
|
format = "%02d:%02d:%02d.%09u";
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
format = "%02d:%02d:%02d.{unknown precision}";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
format = "%02d:%02d:%02d.%06u";
|
|
|
|
#endif
|
|
|
|
|
|
|
|
snprintf(buf, sizeof(buf), format,
|
|
|
|
sec / 3600, (sec % 3600) / 60, sec % 60, usec);
|
2009-03-21 16:23:46 +00:00
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
1996-08-19 20:34:12 +00:00
|
|
|
/*
|
|
|
|
* Print the timestamp
|
|
|
|
*/
|
|
|
|
void
|
2015-01-06 19:03:11 +00:00
|
|
|
ts_print(netdissect_options *ndo,
|
|
|
|
register const struct timeval *tvp)
|
1996-08-19 20:34:12 +00:00
|
|
|
{
|
|
|
|
register int s;
|
2001-04-03 07:45:48 +00:00
|
|
|
struct tm *tm;
|
|
|
|
time_t Time;
|
|
|
|
static unsigned b_sec;
|
|
|
|
static unsigned b_usec;
|
2009-03-21 16:23:46 +00:00
|
|
|
int d_usec;
|
|
|
|
int d_sec;
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
switch (ndo->ndo_tflag) {
|
2005-05-29 18:17:16 +00:00
|
|
|
|
|
|
|
case 0: /* Default */
|
1996-08-19 20:34:12 +00:00
|
|
|
s = (tvp->tv_sec + thiszone) % 86400;
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "%s ", ts_format(ndo, s, tvp->tv_usec)));
|
2001-04-03 07:45:48 +00:00
|
|
|
break;
|
2005-05-29 18:17:16 +00:00
|
|
|
|
|
|
|
case 1: /* No time stamp */
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2: /* Unix timeval style */
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "%u.%06u ",
|
2001-04-03 07:45:48 +00:00
|
|
|
(unsigned)tvp->tv_sec,
|
2015-01-06 19:03:11 +00:00
|
|
|
(unsigned)tvp->tv_usec));
|
2001-04-03 07:45:48 +00:00
|
|
|
break;
|
2005-05-29 18:17:16 +00:00
|
|
|
|
|
|
|
case 3: /* Microseconds since previous packet */
|
2009-03-21 16:23:46 +00:00
|
|
|
case 5: /* Microseconds since first packet */
|
2001-04-03 07:45:48 +00:00
|
|
|
if (b_sec == 0) {
|
2009-03-21 16:23:46 +00:00
|
|
|
/* init timestamp for first packet */
|
|
|
|
b_usec = tvp->tv_usec;
|
2015-01-06 19:03:11 +00:00
|
|
|
b_sec = tvp->tv_sec;
|
2009-03-21 16:23:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
d_usec = tvp->tv_usec - b_usec;
|
|
|
|
d_sec = tvp->tv_sec - b_sec;
|
2015-01-06 19:03:11 +00:00
|
|
|
|
2009-03-21 16:23:46 +00:00
|
|
|
while (d_usec < 0) {
|
|
|
|
d_usec += 1000000;
|
|
|
|
d_sec--;
|
|
|
|
}
|
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "%s ", ts_format(ndo, d_sec, d_usec)));
|
2009-03-21 16:23:46 +00:00
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
if (ndo->ndo_tflag == 3) { /* set timestamp for last packet */
|
2009-03-21 16:23:46 +00:00
|
|
|
b_sec = tvp->tv_sec;
|
|
|
|
b_usec = tvp->tv_usec;
|
|
|
|
}
|
2001-04-03 07:45:48 +00:00
|
|
|
break;
|
2005-05-29 18:17:16 +00:00
|
|
|
|
|
|
|
case 4: /* Default + Date*/
|
2001-04-03 07:45:48 +00:00
|
|
|
s = (tvp->tv_sec + thiszone) % 86400;
|
|
|
|
Time = (tvp->tv_sec + thiszone) - s;
|
2004-03-31 09:17:26 +00:00
|
|
|
tm = gmtime (&Time);
|
|
|
|
if (!tm)
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "Date fail "));
|
2004-03-31 09:17:26 +00:00
|
|
|
else
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "%04d-%02d-%02d %s ",
|
2009-03-21 16:23:46 +00:00
|
|
|
tm->tm_year+1900, tm->tm_mon+1, tm->tm_mday,
|
2015-01-06 19:03:11 +00:00
|
|
|
ts_format(ndo, s, tvp->tv_usec)));
|
2001-04-03 07:45:48 +00:00
|
|
|
break;
|
2000-01-30 00:45:58 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Print a relative number of seconds (e.g. hold time, prune timer)
|
|
|
|
* in the form 5m1s. This does no truncation, so 32230861 seconds
|
|
|
|
* is represented as 1y1w1d1h1m1s.
|
|
|
|
*/
|
|
|
|
void
|
2015-01-06 19:03:11 +00:00
|
|
|
relts_print(netdissect_options *ndo,
|
|
|
|
int secs)
|
2000-01-30 00:45:58 +00:00
|
|
|
{
|
2002-06-21 00:43:23 +00:00
|
|
|
static const char *lengths[] = {"y", "w", "d", "h", "m", "s"};
|
|
|
|
static const int seconds[] = {31536000, 604800, 86400, 3600, 60, 1};
|
|
|
|
const char **l = lengths;
|
|
|
|
const int *s = seconds;
|
2001-04-03 07:45:48 +00:00
|
|
|
|
2002-06-21 00:43:23 +00:00
|
|
|
if (secs == 0) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "0s"));
|
2001-04-03 07:45:48 +00:00
|
|
|
return;
|
|
|
|
}
|
2002-06-21 00:43:23 +00:00
|
|
|
if (secs < 0) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "-"));
|
2002-06-21 00:43:23 +00:00
|
|
|
secs = -secs;
|
|
|
|
}
|
2001-04-03 07:45:48 +00:00
|
|
|
while (secs > 0) {
|
|
|
|
if (secs >= *s) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, "%d%s", secs / *s, *l));
|
2001-04-03 07:45:48 +00:00
|
|
|
secs -= (secs / *s) * *s;
|
|
|
|
}
|
|
|
|
s++;
|
|
|
|
l++;
|
1996-08-19 20:34:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2004-03-31 09:17:26 +00:00
|
|
|
/*
|
|
|
|
* this is a generic routine for printing unknown data;
|
|
|
|
* we pass on the linefeed plus indentation string to
|
|
|
|
* get a proper output - returns 0 on error
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2015-01-06 19:03:11 +00:00
|
|
|
print_unknown_data(netdissect_options *ndo, const u_char *cp,const char *ident,int len)
|
2004-03-31 09:17:26 +00:00
|
|
|
{
|
2005-07-11 03:54:22 +00:00
|
|
|
if (len < 0) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo,"%sDissector error: print_unknown_data called with negative length",
|
|
|
|
ident));
|
2005-07-11 03:54:22 +00:00
|
|
|
return(0);
|
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
if (ndo->ndo_snapend - cp < len)
|
|
|
|
len = ndo->ndo_snapend - cp;
|
2005-07-11 03:54:22 +00:00
|
|
|
if (len < 0) {
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo,"%sDissector error: print_unknown_data called with pointer past end of packet",
|
|
|
|
ident));
|
2005-07-11 03:54:22 +00:00
|
|
|
return(0);
|
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
hex_print(ndo, ident,cp,len);
|
2004-03-31 09:17:26 +00:00
|
|
|
return(1); /* everything is ok */
|
|
|
|
}
|
|
|
|
|
1996-08-19 20:34:12 +00:00
|
|
|
/*
|
|
|
|
* Convert a token value to a string; use "fmt" if not found.
|
|
|
|
*/
|
|
|
|
const char *
|
2005-05-29 18:17:16 +00:00
|
|
|
tok2strbuf(register const struct tok *lp, register const char *fmt,
|
2015-01-06 19:03:11 +00:00
|
|
|
register u_int v, char *buf, size_t bufsize)
|
1996-08-19 20:34:12 +00:00
|
|
|
{
|
2005-07-11 03:54:22 +00:00
|
|
|
if (lp != NULL) {
|
|
|
|
while (lp->s != NULL) {
|
|
|
|
if (lp->v == v)
|
|
|
|
return (lp->s);
|
|
|
|
++lp;
|
|
|
|
}
|
1996-08-19 20:34:12 +00:00
|
|
|
}
|
|
|
|
if (fmt == NULL)
|
|
|
|
fmt = "#%d";
|
2005-05-29 18:17:16 +00:00
|
|
|
|
|
|
|
(void)snprintf(buf, bufsize, fmt, v);
|
|
|
|
return (const char *)buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert a token value to a string; use "fmt" if not found.
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
tok2str(register const struct tok *lp, register const char *fmt,
|
|
|
|
register int v)
|
|
|
|
{
|
|
|
|
static char buf[4][128];
|
|
|
|
static int idx = 0;
|
|
|
|
char *ret;
|
|
|
|
|
|
|
|
ret = buf[idx];
|
|
|
|
idx = (idx+1) & 3;
|
|
|
|
return tok2strbuf(lp, fmt, v, ret, sizeof(buf[0]));
|
1996-08-19 20:34:12 +00:00
|
|
|
}
|
|
|
|
|
2004-03-31 09:17:26 +00:00
|
|
|
/*
|
|
|
|
* Convert a bit token value to a string; use "fmt" if not found.
|
2009-03-21 16:23:46 +00:00
|
|
|
* this is useful for parsing bitfields, the output strings are seperated
|
|
|
|
* if the s field is positive.
|
2004-03-31 09:17:26 +00:00
|
|
|
*/
|
2009-03-21 16:23:46 +00:00
|
|
|
static char *
|
|
|
|
bittok2str_internal(register const struct tok *lp, register const char *fmt,
|
|
|
|
register int v, register int sep)
|
2004-03-31 09:17:26 +00:00
|
|
|
{
|
|
|
|
static char buf[256]; /* our stringbuffer */
|
|
|
|
int buflen=0;
|
|
|
|
register int rotbit; /* this is the bit we rotate through all bitpositions */
|
|
|
|
register int tokval;
|
2015-01-06 19:03:11 +00:00
|
|
|
const char * sepstr = "";
|
2004-03-31 09:17:26 +00:00
|
|
|
|
2010-10-28 16:23:25 +00:00
|
|
|
while (lp != NULL && lp->s != NULL) {
|
2004-03-31 09:17:26 +00:00
|
|
|
tokval=lp->v; /* load our first value */
|
|
|
|
rotbit=1;
|
|
|
|
while (rotbit != 0) {
|
|
|
|
/*
|
|
|
|
* lets AND the rotating bit with our token value
|
|
|
|
* and see if we have got a match
|
|
|
|
*/
|
|
|
|
if (tokval == (v&rotbit)) {
|
|
|
|
/* ok we have found something */
|
2009-03-21 16:23:46 +00:00
|
|
|
buflen+=snprintf(buf+buflen, sizeof(buf)-buflen, "%s%s",
|
2015-01-06 19:03:11 +00:00
|
|
|
sepstr, lp->s);
|
|
|
|
sepstr = sep ? ", " : "";
|
2004-03-31 09:17:26 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
rotbit=rotbit<<1; /* no match - lets shift and try again */
|
|
|
|
}
|
|
|
|
lp++;
|
|
|
|
}
|
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
if (buflen == 0)
|
2004-03-31 09:17:26 +00:00
|
|
|
/* bummer - lets print the "unknown" message as advised in the fmt string if we got one */
|
2015-01-06 19:03:11 +00:00
|
|
|
(void)snprintf(buf, sizeof(buf), fmt == NULL ? "#%d" : fmt, v);
|
|
|
|
return (buf);
|
2004-03-31 09:17:26 +00:00
|
|
|
}
|
|
|
|
|
2009-03-21 16:23:46 +00:00
|
|
|
/*
|
|
|
|
* Convert a bit token value to a string; use "fmt" if not found.
|
|
|
|
* this is useful for parsing bitfields, the output strings are not seperated.
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
bittok2str_nosep(register const struct tok *lp, register const char *fmt,
|
|
|
|
register int v)
|
|
|
|
{
|
|
|
|
return (bittok2str_internal(lp, fmt, v, 0));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert a bit token value to a string; use "fmt" if not found.
|
|
|
|
* this is useful for parsing bitfields, the output strings are comma seperated.
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
bittok2str(register const struct tok *lp, register const char *fmt,
|
|
|
|
register int v)
|
|
|
|
{
|
|
|
|
return (bittok2str_internal(lp, fmt, v, 1));
|
|
|
|
}
|
|
|
|
|
2002-06-21 00:43:23 +00:00
|
|
|
/*
|
|
|
|
* Convert a value to a string using an array; the macro
|
|
|
|
* tok2strary() in <interface.h> is the public interface to
|
|
|
|
* this function and ensures that the second argument is
|
|
|
|
* correct for bounds-checking.
|
|
|
|
*/
|
|
|
|
const char *
|
|
|
|
tok2strary_internal(register const char **lp, int n, register const char *fmt,
|
|
|
|
register int v)
|
|
|
|
{
|
|
|
|
static char buf[128];
|
|
|
|
|
|
|
|
if (v >= 0 && v < n && lp[v] != NULL)
|
|
|
|
return lp[v];
|
|
|
|
if (fmt == NULL)
|
|
|
|
fmt = "#%d";
|
|
|
|
(void)snprintf(buf, sizeof(buf), fmt, v);
|
|
|
|
return (buf);
|
|
|
|
}
|
1996-08-19 20:34:12 +00:00
|
|
|
|
2004-03-31 09:17:26 +00:00
|
|
|
/*
|
|
|
|
* Convert a 32-bit netmask to prefixlen if possible
|
|
|
|
* the function returns the prefix-len; if plen == -1
|
|
|
|
* then conversion was not possible;
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
2015-01-06 19:03:11 +00:00
|
|
|
mask2plen(uint32_t mask)
|
2004-03-31 09:17:26 +00:00
|
|
|
{
|
2015-01-06 19:03:11 +00:00
|
|
|
uint32_t bitmasks[33] = {
|
2004-03-31 09:17:26 +00:00
|
|
|
0x00000000,
|
|
|
|
0x80000000, 0xc0000000, 0xe0000000, 0xf0000000,
|
|
|
|
0xf8000000, 0xfc000000, 0xfe000000, 0xff000000,
|
|
|
|
0xff800000, 0xffc00000, 0xffe00000, 0xfff00000,
|
|
|
|
0xfff80000, 0xfffc0000, 0xfffe0000, 0xffff0000,
|
|
|
|
0xffff8000, 0xffffc000, 0xffffe000, 0xfffff000,
|
|
|
|
0xfffff800, 0xfffffc00, 0xfffffe00, 0xffffff00,
|
|
|
|
0xffffff80, 0xffffffc0, 0xffffffe0, 0xfffffff0,
|
|
|
|
0xfffffff8, 0xfffffffc, 0xfffffffe, 0xffffffff
|
|
|
|
};
|
|
|
|
int prefix_len = 32;
|
|
|
|
|
|
|
|
/* let's see if we can transform the mask into a prefixlen */
|
|
|
|
while (prefix_len >= 0) {
|
|
|
|
if (bitmasks[prefix_len] == mask)
|
|
|
|
break;
|
|
|
|
prefix_len--;
|
|
|
|
}
|
|
|
|
return (prefix_len);
|
|
|
|
}
|
|
|
|
|
2010-10-28 16:23:25 +00:00
|
|
|
#ifdef INET6
|
|
|
|
int
|
|
|
|
mask62plen(const u_char *mask)
|
|
|
|
{
|
|
|
|
u_char bitmasks[9] = {
|
|
|
|
0x00,
|
|
|
|
0x80, 0xc0, 0xe0, 0xf0,
|
|
|
|
0xf8, 0xfc, 0xfe, 0xff
|
|
|
|
};
|
|
|
|
int byte;
|
|
|
|
int cidr_len = 0;
|
|
|
|
|
|
|
|
for (byte = 0; byte < 16; byte++) {
|
|
|
|
u_int bits;
|
|
|
|
|
|
|
|
for (bits = 0; bits < (sizeof (bitmasks) / sizeof (bitmasks[0])); bits++) {
|
|
|
|
if (mask[byte] == bitmasks[bits]) {
|
|
|
|
cidr_len += bits;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (mask[byte] != 0xff)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return (cidr_len);
|
|
|
|
}
|
|
|
|
#endif /* INET6 */
|
|
|
|
|
1996-08-19 20:34:12 +00:00
|
|
|
/* VARARGS */
|
2001-04-03 07:45:48 +00:00
|
|
|
void
|
1996-08-19 20:34:12 +00:00
|
|
|
error(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
(void)fprintf(stderr, "%s: ", program_name);
|
|
|
|
va_start(ap, fmt);
|
|
|
|
(void)vfprintf(stderr, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
if (*fmt) {
|
|
|
|
fmt += strlen(fmt);
|
|
|
|
if (fmt[-1] != '\n')
|
|
|
|
(void)fputc('\n', stderr);
|
|
|
|
}
|
|
|
|
exit(1);
|
|
|
|
/* NOTREACHED */
|
|
|
|
}
|
|
|
|
|
|
|
|
/* VARARGS */
|
|
|
|
void
|
|
|
|
warning(const char *fmt, ...)
|
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
(void)fprintf(stderr, "%s: WARNING: ", program_name);
|
|
|
|
va_start(ap, fmt);
|
|
|
|
(void)vfprintf(stderr, fmt, ap);
|
|
|
|
va_end(ap);
|
|
|
|
if (*fmt) {
|
|
|
|
fmt += strlen(fmt);
|
|
|
|
if (fmt[-1] != '\n')
|
|
|
|
(void)fputc('\n', stderr);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copy arg vector into a new buffer, concatenating arguments with spaces.
|
|
|
|
*/
|
|
|
|
char *
|
|
|
|
copy_argv(register char **argv)
|
|
|
|
{
|
|
|
|
register char **p;
|
|
|
|
register u_int len = 0;
|
|
|
|
char *buf;
|
|
|
|
char *src, *dst;
|
|
|
|
|
|
|
|
p = argv;
|
|
|
|
if (*p == 0)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
while (*p)
|
|
|
|
len += strlen(*p++) + 1;
|
|
|
|
|
|
|
|
buf = (char *)malloc(len);
|
|
|
|
if (buf == NULL)
|
|
|
|
error("copy_argv: malloc");
|
|
|
|
|
|
|
|
p = argv;
|
|
|
|
dst = buf;
|
|
|
|
while ((src = *p++) != NULL) {
|
|
|
|
while ((*dst++ = *src++) != '\0')
|
|
|
|
;
|
|
|
|
dst[-1] = ' ';
|
|
|
|
}
|
|
|
|
dst[-1] = '\0';
|
|
|
|
|
|
|
|
return buf;
|
|
|
|
}
|
|
|
|
|
2004-03-31 09:17:26 +00:00
|
|
|
/*
|
|
|
|
* On Windows, we need to open the file in binary mode, so that
|
|
|
|
* we get all the bytes specified by the size we get from "fstat()".
|
|
|
|
* On UNIX, that's not necessary. O_BINARY is defined on Windows;
|
|
|
|
* we define it as 0 if it's not defined, so it does nothing.
|
|
|
|
*/
|
|
|
|
#ifndef O_BINARY
|
|
|
|
#define O_BINARY 0
|
|
|
|
#endif
|
|
|
|
|
1996-08-19 20:34:12 +00:00
|
|
|
char *
|
|
|
|
read_infile(char *fname)
|
|
|
|
{
|
2004-03-31 09:17:26 +00:00
|
|
|
register int i, fd, cc;
|
1996-08-19 20:34:12 +00:00
|
|
|
register char *cp;
|
|
|
|
struct stat buf;
|
|
|
|
|
2004-03-31 09:17:26 +00:00
|
|
|
fd = open(fname, O_RDONLY|O_BINARY);
|
1996-08-19 20:34:12 +00:00
|
|
|
if (fd < 0)
|
|
|
|
error("can't open %s: %s", fname, pcap_strerror(errno));
|
|
|
|
|
|
|
|
if (fstat(fd, &buf) < 0)
|
|
|
|
error("can't stat %s: %s", fname, pcap_strerror(errno));
|
|
|
|
|
|
|
|
cp = malloc((u_int)buf.st_size + 1);
|
2002-06-21 00:43:23 +00:00
|
|
|
if (cp == NULL)
|
|
|
|
error("malloc(%d) for %s: %s", (u_int)buf.st_size + 1,
|
|
|
|
fname, pcap_strerror(errno));
|
|
|
|
cc = read(fd, cp, (u_int)buf.st_size);
|
1996-08-19 20:34:12 +00:00
|
|
|
if (cc < 0)
|
|
|
|
error("read %s: %s", fname, pcap_strerror(errno));
|
|
|
|
if (cc != buf.st_size)
|
|
|
|
error("short read %s (%d != %d)", fname, cc, (int)buf.st_size);
|
|
|
|
|
2004-03-31 09:17:26 +00:00
|
|
|
close(fd);
|
|
|
|
/* replace "# comment" with spaces */
|
|
|
|
for (i = 0; i < cc; i++) {
|
|
|
|
if (cp[i] == '#')
|
|
|
|
while (i < cc && cp[i] != '\n')
|
|
|
|
cp[i++] = ' ';
|
|
|
|
}
|
|
|
|
cp[cc] = '\0';
|
1996-08-19 20:34:12 +00:00
|
|
|
return (cp);
|
|
|
|
}
|
2001-04-03 07:45:48 +00:00
|
|
|
|
|
|
|
void
|
2015-01-06 19:03:11 +00:00
|
|
|
safeputs(netdissect_options *ndo,
|
|
|
|
const u_char *s, const u_int maxlen)
|
2001-04-03 07:45:48 +00:00
|
|
|
{
|
2015-01-06 19:03:11 +00:00
|
|
|
u_int idx = 0;
|
2009-03-21 16:23:46 +00:00
|
|
|
|
2007-10-16 02:20:42 +00:00
|
|
|
while (*s && idx < maxlen) {
|
2015-01-06 19:03:11 +00:00
|
|
|
safeputchar(ndo, *s);
|
|
|
|
idx++;
|
2001-04-03 07:45:48 +00:00
|
|
|
s++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2015-01-06 19:03:11 +00:00
|
|
|
safeputchar(netdissect_options *ndo,
|
|
|
|
const u_char c)
|
2001-04-03 07:45:48 +00:00
|
|
|
{
|
2015-01-06 19:03:11 +00:00
|
|
|
ND_PRINT((ndo, (c < 0x80 && ND_ISPRINT(c)) ? "%c" : "\\0x%02x", c));
|
|
|
|
}
|
2001-04-03 07:45:48 +00:00
|
|
|
|
2015-01-06 19:03:11 +00:00
|
|
|
#ifdef LBL_ALIGN
|
|
|
|
/*
|
|
|
|
* Some compilers try to optimize memcpy(), using the alignment constraint
|
|
|
|
* on the argument pointer type. by using this function, we try to avoid the
|
|
|
|
* optimization.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
unaligned_memcpy(void *p, const void *q, size_t l)
|
|
|
|
{
|
|
|
|
memcpy(p, q, l);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* As with memcpy(), so with memcmp(). */
|
|
|
|
int
|
|
|
|
unaligned_memcmp(const void *p, const void *q, size_t l)
|
|
|
|
{
|
|
|
|
return (memcmp(p, q, l));
|
2001-04-03 07:45:48 +00:00
|
|
|
}
|
2015-01-06 19:03:11 +00:00
|
|
|
#endif
|