X-Git-Url: https://git.tcpdump.org/tcpdump/blobdiff_plain/dff10c7f70d539c431a1eba9ab5e076d8b0f5c8e..9c2395aa1d25c89e552cf6c680ad9a3c2ea82d88:/print-ascii.c diff --git a/print-ascii.c b/print-ascii.c index a97faf77..1bbc8be4 100644 --- a/print-ascii.c +++ b/print-ascii.c @@ -42,20 +42,20 @@ #ifndef lint static const char rcsid[] = - "@(#) $Header: /tcpdump/master/tcpdump/print-ascii.c,v 1.5 2000-01-17 06:24:24 itojun Exp $"; + "@(#) $Header: /tcpdump/master/tcpdump/print-ascii.c,v 1.10 2002-09-05 00:00:10 guy Exp $"; #endif +#include #include -#include -#include #include "interface.h" +#define ASCII_LINELENGTH 300 #define HEXDUMP_BYTES_PER_LINE 16 #define HEXDUMP_SHORTS_PER_LINE (HEXDUMP_BYTES_PER_LINE / 2) #define HEXDUMP_HEXSTUFF_PER_SHORT 5 /* 4 hex digits and a space */ #define HEXDUMP_HEXSTUFF_PER_LINE \ (HEXDUMP_HEXSTUFF_PER_SHORT * HEXDUMP_SHORTS_PER_LINE) - + void ascii_print_with_offset(register const u_char *cp, register u_int length, register u_int oset) @@ -64,39 +64,64 @@ ascii_print_with_offset(register const u_char *cp, register u_int length, register int s1, s2; register int nshorts; char hexstuff[HEXDUMP_SHORTS_PER_LINE*HEXDUMP_HEXSTUFF_PER_SHORT+1], *hsp; - char asciistuff[HEXDUMP_BYTES_PER_LINE+1], *asp; + char asciistuff[ASCII_LINELENGTH+1], *asp; + u_int maxlength = (Aflag ? ASCII_LINELENGTH : HEXDUMP_SHORTS_PER_LINE); nshorts = length / sizeof(u_short); i = 0; hsp = hexstuff; asp = asciistuff; + if (Aflag) *(asp++) = '\n'; while (--nshorts >= 0) { s1 = *cp++; s2 = *cp++; - (void)snprintf(hsp, sizeof(hsp), " %02x%02x", s1, s2); - hsp += HEXDUMP_HEXSTUFF_PER_SHORT; - *(asp++) = (isgraph(s1) ? s1 : '.'); - *(asp++) = (isgraph(s2) ? s2 : '.'); - if (++i >= HEXDUMP_SHORTS_PER_LINE) { - *hsp = *asp = '\0'; - (void)printf("\n0x%04x\t%-*s\t%s", - oset, HEXDUMP_HEXSTUFF_PER_LINE, - hexstuff, asciistuff); - i = 0; hsp = hexstuff; asp = asciistuff; - oset += HEXDUMP_BYTES_PER_LINE; + if (Aflag) { + i += 2; + *(asp++) = (isgraph(s1) ? s1 : (s1 != '\t' && s1 != ' ' && s1 != '\n' && s1 != '\r' ? '.' : s1) ); + *(asp++) = (isgraph(s2) ? s2 : (s2 != '\t' && s2 != ' ' && s2 != '\n' && s2 != '\r' ? '.' : s2) ); + if (s1 == '\n' || s2 == '\n') i = maxlength; + + } else { + (void)snprintf(hsp, sizeof(hexstuff) - (hsp - hexstuff), + " %02x%02x", s1, s2); + hsp += HEXDUMP_HEXSTUFF_PER_SHORT; + *(asp++) = (isgraph(s1) ? s1 : '.'); + *(asp++) = (isgraph(s2) ? s2 : '.'); + i++; + } + if (i >= maxlength) { + *hsp = *asp = '\0'; + if (Aflag) { + (void)printf("%s", asciistuff); + } else { + (void)printf("\n0x%04x\t%-*s\t%s", + oset, HEXDUMP_HEXSTUFF_PER_LINE, + hexstuff, asciistuff); + } + i = 0; hsp = hexstuff; asp = asciistuff; + oset += HEXDUMP_BYTES_PER_LINE; } } if (length & 1) { s1 = *cp++; - (void)snprintf(hsp, sizeof(hsp), " %02x", s1); - hsp += 3; - *(asp++) = (isgraph(s1) ? s1 : '.'); + if (Aflag) { + *(asp++) = (isgraph(s1) ? s1 : (s1 != '\t' && s1 != ' ' && s1 != '\n' && s1 != '\r' ? '.' : s1) ); + } else { + (void)snprintf(hsp, sizeof(hexstuff) - (hsp - hexstuff), + " %02x", s1); + hsp += 3; + *(asp++) = (isgraph(s1) ? s1 : '.'); + } ++i; } if (i > 0) { *hsp = *asp = '\0'; - (void)printf("\n0x%04x\t%-*s\t%s", + if (Aflag) { + (void)printf("\n%s", asciistuff); + } else { + (void)printf("\n0x%04x\t%-*s\t%s", oset, HEXDUMP_HEXSTUFF_PER_LINE, hexstuff, asciistuff); + } } } @@ -105,7 +130,7 @@ ascii_print(register const u_char *cp, register u_int length) { ascii_print_with_offset(cp, length, 0); } - + /* * telnet_print() wants this. It is essentially default_print_unaligned() */