-
Notifications
You must be signed in to change notification settings - Fork 4
/
utils.c
123 lines (106 loc) · 2.51 KB
/
utils.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*
* Copyright (c) 2014, Joshua Wright <[email protected]>
*
* $Id: $
*
* See the LICENSE file for license details.
*
*/
#include <stdlib.h>
#include <stdio.h>
#include <stdarg.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <ctype.h>
#include <netinet/in.h> /* for ntohs() */
#include <pcap.h>
#include "utils.h"
/* A better version of hdump, from Lamont Granquist. Modified slightly
by Fyodor ([email protected]) */
void lamont_hdump(uint8_t *bp, unsigned int length)
{
/* stolen from tcpdump, then kludged extensively */
static const char asciify[] =
"................................ !\"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\\]^_`abcdefghijklmnopqrstuvwxyz{|}~.................................................................................................................................";
const unsigned short *sp;
const unsigned char *ap;
unsigned int i, j;
int nshorts, nshorts2;
int padding;
printf("\n\t");
padding = 0;
sp = (unsigned short *)bp;
ap = (unsigned char *)bp;
nshorts = (unsigned int)length / sizeof(unsigned short);
nshorts2 = (unsigned int)length / sizeof(unsigned short);
i = 0;
j = 0;
while (1) {
while (--nshorts >= 0) {
printf(" %04x", ntohs(*sp));
sp++;
if ((++i % 8) == 0)
break;
}
if (nshorts < 0) {
if ((length & 1) && (((i - 1) % 8) != 0)) {
printf(" %02x ", *(unsigned char *)sp);
padding++;
}
nshorts = (8 - (nshorts2 - nshorts));
while (--nshorts >= 0) {
printf(" ");
}
if (!padding)
printf(" ");
}
printf(" ");
while (--nshorts2 >= 0) {
printf("%c%c", asciify[*ap], asciify[*(ap + 1)]);
ap += 2;
if ((++j % 8) == 0) {
printf("\n\t");
break;
}
}
if (nshorts2 < 0) {
if ((length & 1) && (((j - 1) % 8) != 0)) {
printf("%c", asciify[*ap]);
}
break;
}
}
if ((length & 1) && (((i - 1) % 8) == 0)) {
printf(" %02x", *(unsigned char *)sp);
printf(" %c",
asciify[*ap]);
}
printf("\n");
}
int IsBlank(char *s)
{
int len, i;
if (s == NULL) {
return (1);
}
len = strlen(s);
if (len == 0) {
return (1);
}
for (i = 0; i < len; i++) {
if (s[i] != ' ') {
return (0);
}
}
return (1);
}
char *printmac(unsigned char *mac)
{
static char macstring[18];
memset(&macstring, 0, sizeof(macstring));
(void)snprintf(macstring, sizeof(macstring),
"%02x:%02x:%02x:%02x:%02x:%02x",
mac[0], mac[1], mac[2], mac[3], mac[4], mac[5]);
return (macstring);
}