-
Notifications
You must be signed in to change notification settings - Fork 0
/
tcpdump.c
820 lines (671 loc) · 25.9 KB
/
tcpdump.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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
/*
* Copyright (C) 2007-2012 B.A.T.M.A.N. contributors:
*
* Andreas Langer <[email protected]>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of version 2 of the GNU General Public
* License as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA
*
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <errno.h>
#include <sys/ioctl.h>
#include <time.h>
#include <sys/time.h>
#include <arpa/inet.h>
#include <net/if.h>
#include <net/if_arp.h>
#include <netinet/in.h>
#include <netinet/ip.h>
#include <netinet/tcp.h>
#include <netinet/udp.h>
#include <netinet/ip_icmp.h>
#include <linux/icmp.h>
//#include "if_ether.h"
#include "main.h"
#include "tcpdump.h"
#include "packet.h"
#include "bat-hosts.h"
#include "functions.h"
#define LEN_CHECK(buff_len, check_len, desc) \
if ((size_t)(buff_len) < (check_len)) { \
printf("Warning - dropping received %s packet as it is smaller than expected (%zu): %zu\n", \
desc, (check_len), (size_t)(buff_len)); \
return; \
}
static unsigned short dump_level_all = DUMP_TYPE_BATOGM | DUMP_TYPE_BATICMP | DUMP_TYPE_BATUCAST |
DUMP_TYPE_BATBCAST | DUMP_TYPE_BATVIS | DUMP_TYPE_BATFRAG | DUMP_TYPE_BATTT | DUMP_TYPE_NONBAT;
static unsigned short dump_level;
static void parse_eth_hdr(unsigned char *packet_buff, ssize_t buff_len, int read_opt, int time_printed);
static void tcpdump_usage(void)
{
printf("Usage: batctl tcpdump [options] interface [interface]\n");
printf("options:\n");
printf(" \t -h print this help\n");
printf(" \t -n don't convert addresses to bat-host names\n");
printf(" \t -p dump specific packet type\n");
printf(" \t -x dump all packet types except specified\n");
printf("packet types:\n");
printf(" \t\t%3d - batman ogm packets\n", DUMP_TYPE_BATOGM);
printf(" \t\t%3d - batman icmp packets\n", DUMP_TYPE_BATICMP);
printf(" \t\t%3d - batman unicast packets\n", DUMP_TYPE_BATUCAST);
printf(" \t\t%3d - batman broadcast packets\n", DUMP_TYPE_BATBCAST);
printf(" \t\t%3d - batman vis packets\n", DUMP_TYPE_BATVIS);
printf(" \t\t%3d - batman fragmented packets\n", DUMP_TYPE_BATFRAG);
printf(" \t\t%3d - batman tt / roaming packets\n", DUMP_TYPE_BATTT);
printf(" \t\t%3d - non batman packets\n", DUMP_TYPE_NONBAT);
printf(" \t\t%3d - batman ogm & non batman packets\n", DUMP_TYPE_BATOGM | DUMP_TYPE_NONBAT);
}
static int print_time(void)
{
struct timeval tv;
struct tm *tm;
gettimeofday(&tv, NULL);
tm = localtime(&tv.tv_sec);
printf("%02d:%02d:%02d.%06ld ", tm->tm_hour, tm->tm_min, tm->tm_sec, tv.tv_usec);
return 1;
}
static void dump_arp(unsigned char *packet_buff, ssize_t buff_len, int time_printed)
{
struct ether_arp *arphdr;
LEN_CHECK((size_t)buff_len, sizeof(struct ether_arp*), "ARP");
if (!time_printed)
print_time();
arphdr = (struct ether_arp *)packet_buff;
switch (ntohs(arphdr->arp_op)) {
case ARPOP_REQUEST:
printf("ARP, Request who-has %s", inet_ntoa(*(struct in_addr *)&arphdr->arp_tpa));
printf(" tell %s (%s), length %zd\n", inet_ntoa(*(struct in_addr *)&arphdr->arp_spa),
ether_ntoa_long((struct ether_addr *)&arphdr->arp_sha), buff_len);
break;
case ARPOP_REPLY:
printf("ARP, Reply %s is-at %s, length %zd\n", inet_ntoa(*(struct in_addr *)&arphdr->arp_spa),
ether_ntoa_long((struct ether_addr *)&arphdr->arp_sha), buff_len);
break;
default:
printf("ARP, unknown op code: %i\n", ntohs(arphdr->arp_op));
break;
}
}
static void dump_ip(unsigned char *packet_buff, ssize_t buff_len, int time_printed)
{
struct iphdr *iphdr, *tmp_iphdr;
struct tcphdr *tcphdr;
struct udphdr *udphdr, *tmp_udphdr;
struct icmphdr *icmphdr;
iphdr = (struct iphdr *)packet_buff;
LEN_CHECK((size_t)buff_len, (size_t)(iphdr->ihl * 4), "IP");
if (!time_printed)
print_time();
switch (iphdr->protocol) {
case IPPROTO_ICMP:
LEN_CHECK((size_t)buff_len - (iphdr->ihl * 4), sizeof(struct icmphdr), "ICMP");
icmphdr = (struct icmphdr *)(packet_buff + (iphdr->ihl * 4));
printf("IP %s > ", inet_ntoa(*(struct in_addr *)&iphdr->saddr));
switch (icmphdr->type) {
case ICMP_ECHOREPLY:
printf("%s: ICMP echo reply, id %hu, seq %hu, length %zu\n",
inet_ntoa(*(struct in_addr *)&iphdr->daddr),
ntohs(icmphdr->un.echo.id), ntohs(icmphdr->un.echo.sequence),
(size_t)buff_len - (iphdr->ihl * 4));
break;
case ICMP_DEST_UNREACH:
LEN_CHECK((size_t)buff_len - (iphdr->ihl * 4) - sizeof(struct icmphdr),
sizeof(struct iphdr) + 8, "ICMP DEST_UNREACH");
switch (icmphdr->code) {
case ICMP_PORT_UNREACH:
tmp_iphdr = (struct iphdr *)(((char *)icmphdr) + sizeof(struct icmphdr));
tmp_udphdr = (struct udphdr *)(((char *)tmp_iphdr) + (tmp_iphdr->ihl * 4));
printf("%s: ICMP ", inet_ntoa(*(struct in_addr *)&iphdr->daddr));
printf("%s udp port %hu unreachable, length %zu\n",
inet_ntoa(*(struct in_addr *)&tmp_iphdr->daddr),
ntohs(tmp_udphdr->dest), (size_t)buff_len - (iphdr->ihl * 4));
break;
default:
printf("%s: ICMP unreachable %hhu, length %zu\n",
inet_ntoa(*(struct in_addr *)&iphdr->daddr),
icmphdr->code, (size_t)buff_len - (iphdr->ihl * 4));
break;
}
break;
case ICMP_ECHO:
printf("%s: ICMP echo request, id %hu, seq %hu, length %zu\n",
inet_ntoa(*(struct in_addr *)&iphdr->daddr),
ntohs(icmphdr->un.echo.id), ntohs(icmphdr->un.echo.sequence),
(size_t)buff_len - (iphdr->ihl * 4));
break;
case ICMP_TIME_EXCEEDED:
printf("%s: ICMP time exceeded in-transit, length %zu\n",
inet_ntoa(*(struct in_addr *)&iphdr->daddr),
(size_t)buff_len - (iphdr->ihl * 4));
break;
default:
printf("%s: ICMP type %hhu, length %zu\n",
inet_ntoa(*(struct in_addr *)&iphdr->daddr), icmphdr->type,
(size_t)buff_len - (iphdr->ihl * 4));
break;
}
break;
case IPPROTO_TCP:
LEN_CHECK((size_t)buff_len - (iphdr->ihl * 4), sizeof(struct tcphdr), "TCP");
tcphdr = (struct tcphdr *)(packet_buff + (iphdr->ihl * 4));
printf("IP %s.%i > ", inet_ntoa(*(struct in_addr *)&iphdr->saddr), ntohs(tcphdr->source));
printf("%s.%i: TCP, flags [%c%c%c%c%c%c], length %zu\n",
inet_ntoa(*(struct in_addr *)&iphdr->daddr), ntohs(tcphdr->dest),
(tcphdr->fin ? 'F' : '.'), (tcphdr->syn ? 'S' : '.'),
(tcphdr->rst ? 'R' : '.'), (tcphdr->psh ? 'P' : '.'),
(tcphdr->ack ? 'A' : '.'), (tcphdr->urg ? 'U' : '.'),
(size_t)buff_len - (iphdr->ihl * 4) - sizeof(struct tcphdr));
break;
case IPPROTO_UDP:
LEN_CHECK((size_t)buff_len - (iphdr->ihl * 4), sizeof(struct udphdr), "UDP");
udphdr = (struct udphdr *)(packet_buff + (iphdr->ihl * 4));
printf("IP %s.%i > ", inet_ntoa(*(struct in_addr *)&iphdr->saddr), ntohs(udphdr->source));
switch (ntohs(udphdr->dest)) {
case 67:
LEN_CHECK((size_t)buff_len - (iphdr->ihl * 4) - sizeof(struct udphdr), (size_t) 44, "DHCP");
printf("%s.67: BOOTP/DHCP, Request from %s, length %zu\n",
inet_ntoa(*(struct in_addr *)&iphdr->daddr),
ether_ntoa_long((struct ether_addr *)(((char *)udphdr) + sizeof(struct udphdr) + 28)),
(size_t)buff_len - (iphdr->ihl * 4) - sizeof(struct udphdr));
break;
case 68:
printf("%s.68: BOOTP/DHCP, Reply, length %zu\n",
inet_ntoa(*(struct in_addr *)&iphdr->daddr),
(size_t)buff_len - (iphdr->ihl * 4) - sizeof(struct udphdr));
break;
default:
printf("%s.%i: UDP, length %zu\n",
inet_ntoa(*(struct in_addr *)&iphdr->daddr), ntohs(udphdr->dest),
(size_t)buff_len - (iphdr->ihl * 4) - sizeof(struct udphdr));
break;
}
break;
case IPPROTO_IPV6:
printf("IP6: not implemented yet\n");
break;
default:
printf("IP unknown protocol: %i\n", iphdr->protocol);
break;
}
}
static void dump_vlan(unsigned char *packet_buff, ssize_t buff_len, int read_opt, int time_printed)
{
struct vlanhdr *vlanhdr;
vlanhdr = (struct vlanhdr *)(packet_buff + sizeof(struct ether_header));
LEN_CHECK((size_t)buff_len, sizeof(struct ether_header) + sizeof(struct vlanhdr), "VLAN");
if (!time_printed)
time_printed = print_time();
vlanhdr->vid = ntohs(vlanhdr->vid);
printf("vlan %u, p %u, ", vlanhdr->vid, vlanhdr->vid >> 12);
/* overwrite vlan tags */
memmove(packet_buff + 4, packet_buff, 2 * ETH_ALEN);
parse_eth_hdr(packet_buff + 4, buff_len - 4, read_opt, time_printed);
}
static void dump_batman_tt(unsigned char *packet_buff, ssize_t buff_len, int read_opt, int time_printed)
{
struct tt_query_packet *tt_query_packet;
char *tt_desc, *tt_data, tt_type;
LEN_CHECK((size_t)buff_len - sizeof(struct ether_header), sizeof(struct tt_query_packet), "BAT TT");
tt_query_packet = (struct tt_query_packet *)(packet_buff + sizeof(struct ether_header));
if (!time_printed)
print_time();
switch (tt_query_packet->flags & TT_QUERY_TYPE_MASK) {
case TT_REQUEST:
tt_desc = "request";
tt_data = "crc";
tt_type = 'Q';
break;
case TT_RESPONSE:
tt_desc = "response";
tt_data = "entries";
tt_type = 'P';
break;
default:
tt_desc = "unknown";
tt_data = "unknown";
tt_type = '?';
break;
}
printf("BAT %s > ",
get_name_by_macaddr((struct ether_addr *)tt_query_packet->src, read_opt));
printf("%s: TT %s, ttvn %d, %s %u, ttl %2d, v %d, flags [%c%c], length %zu\n",
get_name_by_macaddr((struct ether_addr *)tt_query_packet->dst, read_opt),
tt_desc, tt_query_packet->ttvn, tt_data, ntohs(tt_query_packet->tt_data),
tt_query_packet->header.ttl, tt_query_packet->header.version,
tt_type, (tt_query_packet->flags & TT_FULL_TABLE ? 'F' : '.'),
(size_t)buff_len - sizeof(struct ether_header));
}
static void dump_batman_roam(unsigned char *packet_buff, ssize_t buff_len, int read_opt, int time_printed)
{
struct roam_adv_packet *roam_adv_packet;
LEN_CHECK((size_t)buff_len - sizeof(struct ether_header), sizeof(struct roam_adv_packet), "BAT ROAM");
roam_adv_packet = (struct roam_adv_packet *)(packet_buff + sizeof(struct ether_header));
if (!time_printed)
print_time();
printf("BAT %s > ",
get_name_by_macaddr((struct ether_addr *)roam_adv_packet->src, read_opt));
printf("%s: ROAM, ",
get_name_by_macaddr((struct ether_addr *)roam_adv_packet->dst, read_opt));
printf("client %s, ttl %2d, v %d, length %zu\n",
get_name_by_macaddr((struct ether_addr *)roam_adv_packet->client, read_opt),
roam_adv_packet->header.ttl, roam_adv_packet->header.version,
(size_t)buff_len - sizeof(struct ether_header));
}
static void dump_batman_ogm(unsigned char *packet_buff, ssize_t buff_len, int read_opt, int time_printed)
{
struct ether_header *ether_header;
struct batman_ogm_packet *batman_ogm_packet;
LEN_CHECK((size_t)buff_len - sizeof(struct ether_header), sizeof(struct batman_ogm_packet), "BAT OGM");
ether_header = (struct ether_header *)packet_buff;
batman_ogm_packet = (struct batman_ogm_packet *)(packet_buff + sizeof(struct ether_header));
if (!time_printed)
print_time();
printf("BAT %s: ",
get_name_by_macaddr((struct ether_addr *)batman_ogm_packet->orig, read_opt));
printf("OGM via neigh %s, seq %u, tq %3d, ttvn %d, ttcrc %hu, ttl %2d, v %d, flags [%c%c%c%c], length %zu\n",
get_name_by_macaddr((struct ether_addr *)ether_header->ether_shost, read_opt),
ntohl(batman_ogm_packet->seqno), batman_ogm_packet->tq, batman_ogm_packet->ttvn,
ntohs(batman_ogm_packet->tt_crc), batman_ogm_packet->header.ttl, batman_ogm_packet->header.version,
(batman_ogm_packet->flags & DIRECTLINK ? 'D' : '.'),
(batman_ogm_packet->flags & VIS_SERVER ? 'V' : '.'),
(batman_ogm_packet->flags & PRIMARIES_FIRST_HOP ? 'F' : '.'),
(batman_ogm_packet->gw_flags ? 'G' : '.'),
(size_t)buff_len - sizeof(struct ether_header));
}
static void dump_batman_icmp(unsigned char *packet_buff, ssize_t buff_len, int read_opt, int time_printed)
{
struct icmp_packet *icmp_packet;
char *name;
LEN_CHECK((size_t)buff_len - sizeof(struct ether_header), sizeof(struct icmp_packet), "BAT ICMP");
icmp_packet = (struct icmp_packet *)(packet_buff + sizeof(struct ether_header));
if (!time_printed)
print_time();
printf("BAT %s > ", get_name_by_macaddr((struct ether_addr *)icmp_packet->orig, read_opt));
name = get_name_by_macaddr((struct ether_addr *)icmp_packet->dst, read_opt);
switch (icmp_packet->msg_type) {
case ECHO_REPLY:
printf("%s: ICMP echo reply, id %hhu, seq %hu, ttl %2d, v %d, length %zu\n",
name, icmp_packet->uid, ntohs(icmp_packet->seqno),
icmp_packet->header.ttl, icmp_packet->header.version,
(size_t)buff_len - sizeof(struct ether_header));
break;
case ECHO_REQUEST:
printf("%s: ICMP echo request, id %hhu, seq %hu, ttl %2d, v %d, length %zu\n",
name, icmp_packet->uid, ntohs(icmp_packet->seqno),
icmp_packet->header.ttl, icmp_packet->header.version,
(size_t)buff_len - sizeof(struct ether_header));
break;
case TTL_EXCEEDED:
printf("%s: ICMP time exceeded in-transit, id %hhu, seq %hu, ttl %2d, v %d, length %zu\n",
name, icmp_packet->uid, ntohs(icmp_packet->seqno),
icmp_packet->header.ttl, icmp_packet->header.version,
(size_t)buff_len - sizeof(struct ether_header));
break;
default:
printf("%s: ICMP type %hhu, length %zu\n",
name, icmp_packet->msg_type, (size_t)buff_len - sizeof(struct ether_header));
break;
}
}
static void dump_batman_ucast(unsigned char *packet_buff, ssize_t buff_len, int read_opt, int time_printed)
{
struct ether_header *ether_header;
struct unicast_packet *unicast_packet;
LEN_CHECK((size_t)buff_len - sizeof(struct ether_header), sizeof(struct unicast_packet), "BAT UCAST");
LEN_CHECK((size_t)buff_len - sizeof(struct ether_header) - sizeof(struct unicast_packet),
sizeof(struct ether_header), "BAT UCAST (unpacked)");
ether_header = (struct ether_header *)packet_buff;
unicast_packet = (struct unicast_packet *)(packet_buff + sizeof(struct ether_header));
if (!time_printed)
time_printed = print_time();
printf("BAT %s > ",
get_name_by_macaddr((struct ether_addr *)ether_header->ether_shost, read_opt));
printf("%s: UCAST, ttvn %d, ttl %hhu, ",
get_name_by_macaddr((struct ether_addr *)unicast_packet->dest, read_opt),
unicast_packet->ttvn, unicast_packet->header.ttl);
parse_eth_hdr(packet_buff + ETH_HLEN + sizeof(struct unicast_packet),
buff_len - ETH_HLEN - sizeof(struct unicast_packet),
read_opt, time_printed);
}
static void dump_batman_bcast(unsigned char *packet_buff, ssize_t buff_len, int read_opt, int time_printed)
{
struct ether_header *ether_header;
struct bcast_packet *bcast_packet;
LEN_CHECK((size_t)buff_len - sizeof(struct ether_header), sizeof(struct bcast_packet), "BAT BCAST");
LEN_CHECK((size_t)buff_len - sizeof(struct ether_header) - sizeof(struct bcast_packet),
sizeof(struct ether_header), "BAT BCAST (unpacked)");
ether_header = (struct ether_header *)packet_buff;
bcast_packet = (struct bcast_packet *)(packet_buff + sizeof(struct ether_header));
if (!time_printed)
time_printed = print_time();
printf("BAT %s: ",
get_name_by_macaddr((struct ether_addr *)ether_header->ether_shost, read_opt));
printf("BCAST, orig %s, seq %u, ",
get_name_by_macaddr((struct ether_addr *)bcast_packet->orig, read_opt),
ntohl(bcast_packet->seqno));
parse_eth_hdr(packet_buff + ETH_HLEN + sizeof(struct bcast_packet),
buff_len - ETH_HLEN - sizeof(struct bcast_packet),
read_opt, time_printed);
}
static void dump_batman_frag(unsigned char *packet_buff, ssize_t buff_len, int read_opt, int time_printed)
{
struct unicast_frag_packet *unicast_frag_packet;
LEN_CHECK((size_t)buff_len - ETH_HLEN, sizeof(struct unicast_frag_packet), "BAT FRAG");
LEN_CHECK((size_t)buff_len - ETH_HLEN - sizeof(struct unicast_frag_packet), (size_t)ETH_HLEN, "BAT FRAG (unpacked)");
unicast_frag_packet = (struct unicast_frag_packet *)(packet_buff + ETH_HLEN);
if (!time_printed)
time_printed = print_time();
printf("BAT %s > ",
get_name_by_macaddr((struct ether_addr *)unicast_frag_packet->orig, read_opt));
printf("%s: FRAG, seq %hu, ttvn %d, ttl %hhu, flags [%c%c], ",
get_name_by_macaddr((struct ether_addr *)unicast_frag_packet->dest, read_opt),
ntohs(unicast_frag_packet->seqno), unicast_frag_packet->ttvn, unicast_frag_packet->header.ttl,
(unicast_frag_packet->flags & UNI_FRAG_HEAD ? 'H' : '.'),
(unicast_frag_packet->flags & UNI_FRAG_LARGETAIL ? 'L' : '.'));
if (unicast_frag_packet->flags & UNI_FRAG_HEAD)
parse_eth_hdr(packet_buff + ETH_HLEN + sizeof(struct unicast_frag_packet),
buff_len - ETH_HLEN - sizeof(struct unicast_frag_packet),
read_opt, time_printed);
else
printf("length %zu\n", (size_t)buff_len - ETH_HLEN - sizeof(struct unicast_frag_packet));
}
static void parse_eth_hdr(unsigned char *packet_buff, ssize_t buff_len, int read_opt, int time_printed)
{
struct batman_ogm_packet *batman_ogm_packet;
struct ether_header *eth_hdr;
eth_hdr = (struct ether_header *)packet_buff;
switch (ntohs(eth_hdr->ether_type)) {
case ETH_P_ARP:
if ((dump_level & DUMP_TYPE_NONBAT) || (time_printed))
dump_arp(packet_buff + ETH_HLEN, buff_len - ETH_HLEN, time_printed);
break;
case ETH_P_IP:
if ((dump_level & DUMP_TYPE_NONBAT) || (time_printed))
dump_ip(packet_buff + ETH_HLEN, buff_len - ETH_HLEN, time_printed);
break;
case ETH_P_8021Q:
if ((dump_level & DUMP_TYPE_NONBAT) || (time_printed))
dump_vlan(packet_buff, buff_len, read_opt, time_printed);
break;
case ETH_P_BATMAN:
batman_ogm_packet = (struct batman_ogm_packet *)(packet_buff + ETH_HLEN);
switch (batman_ogm_packet->header.packet_type) {
case BAT_OGM:
if (dump_level & DUMP_TYPE_BATOGM)
dump_batman_ogm(packet_buff, buff_len, read_opt, time_printed);
break;
case BAT_ICMP:
if (dump_level & DUMP_TYPE_BATICMP)
dump_batman_icmp(packet_buff, buff_len, read_opt, time_printed);
break;
case BAT_UNICAST:
if (dump_level & DUMP_TYPE_BATUCAST)
dump_batman_ucast(packet_buff, buff_len, read_opt, time_printed);
break;
case BAT_BCAST:
if (dump_level & DUMP_TYPE_BATBCAST)
dump_batman_bcast(packet_buff, buff_len, read_opt, time_printed);
break;
case BAT_VIS:
if (dump_level & DUMP_TYPE_BATVIS)
printf("Warning - batman vis packet received: function not implemented yet\n");
break;
case BAT_UNICAST_FRAG:
if (dump_level & DUMP_TYPE_BATFRAG)
dump_batman_frag(packet_buff, buff_len, read_opt, time_printed);
break;
case BAT_TT_QUERY:
if (dump_level & DUMP_TYPE_BATTT)
dump_batman_tt(packet_buff, buff_len, read_opt, time_printed);
break;
case BAT_ROAM_ADV:
if (dump_level & DUMP_TYPE_BATTT)
dump_batman_roam(packet_buff, buff_len, read_opt, time_printed);
break;
default:
printf("Warning - packet contains unknown batman packet type: 0x%02x\n", batman_ogm_packet->header.packet_type);
break;
}
break;
default:
printf("Warning - packet contains unknown ether type: 0x%04x\n", ntohs(eth_hdr->ether_type));
break;
}
}
static int monitor_header_length(unsigned char *packet_buff, ssize_t buff_len, int32_t hw_type)
{
struct radiotap_header *radiotap_hdr;
switch (hw_type) {
case ARPHRD_IEEE80211_PRISM:
if (buff_len <= (ssize_t)PRISM_HEADER_LEN)
return -1;
else
return PRISM_HEADER_LEN;
case ARPHRD_IEEE80211_RADIOTAP:
if (buff_len <= (ssize_t)RADIOTAP_HEADER_LEN)
return -1;
radiotap_hdr = (struct radiotap_header*)packet_buff;
if (buff_len <= radiotap_hdr->it_len)
return -1;
else
return radiotap_hdr->it_len;
}
return -1;
}
static void parse_wifi_hdr(unsigned char *packet_buff, ssize_t buff_len, int read_opt, int time_printed)
{
struct ether_header *eth_hdr;
struct ieee80211_hdr *wifi_hdr;
unsigned char *shost, *dhost;
uint16_t fc;
int hdr_len;
/* we assume a minimum size of 38 bytes
* (802.11 data frame + LLC)
* before we calculate the real size */
if (buff_len <= 38)
return;
wifi_hdr = (struct ieee80211_hdr *)packet_buff;
fc = ntohs(wifi_hdr->frame_control);
/* not carrying payload */
if ((fc & IEEE80211_FCTL_FTYPE) != IEEE80211_FTYPE_DATA)
return;
/* encrypted packet */
if (fc & IEEE80211_FCTL_PROTECTED)
return;
shost = wifi_hdr->addr2;
if (fc & IEEE80211_FCTL_FROMDS)
shost = wifi_hdr->addr3;
else if (fc & IEEE80211_FCTL_TODS)
shost = wifi_hdr->addr4;
dhost = wifi_hdr->addr1;
if (fc & IEEE80211_FCTL_TODS)
dhost = wifi_hdr->addr3;
hdr_len = 24;
if ((fc & IEEE80211_FCTL_FROMDS) && (fc & IEEE80211_FCTL_TODS))
hdr_len = 30;
if (fc & IEEE80211_STYPE_QOS_DATA)
hdr_len += 2;
/* LLC */
hdr_len += 8;
hdr_len -= sizeof(struct ether_header);
if (buff_len <= hdr_len)
return;
buff_len -= hdr_len;
packet_buff += hdr_len;
eth_hdr = (struct ether_header *)packet_buff;
memmove(eth_hdr->ether_shost, shost, ETH_ALEN);
memmove(eth_hdr->ether_dhost, dhost, ETH_ALEN);
/* printf("parse_wifi_hdr(): ether_type: 0x%04x\n", ntohs(eth_hdr->ether_type));
printf("parse_wifi_hdr(): shost: %s\n", ether_ntoa_long((struct ether_addr *)eth_hdr->ether_shost));
printf("parse_wifi_hdr(): dhost: %s\n", ether_ntoa_long((struct ether_addr *)eth_hdr->ether_dhost)); */
parse_eth_hdr(packet_buff, buff_len, read_opt, time_printed);
}
int tcpdump(int argc, char **argv)
{
struct ifreq req;
struct timeval tv;
struct dump_if *dump_if, *dump_if_tmp;
struct list_head_first dump_if_list;
fd_set wait_sockets, tmp_wait_sockets;
ssize_t read_len;
int ret = EXIT_FAILURE, res, optchar, found_args = 1, max_sock = 0, tmp;
int read_opt = USE_BAT_HOSTS;
unsigned char packet_buff[2000];
int monitor_header_len = -1;
dump_level = dump_level_all;
while ((optchar = getopt(argc, argv, "hnp:x:")) != -1) {
switch (optchar) {
case 'h':
tcpdump_usage();
return EXIT_SUCCESS;
case 'n':
read_opt &= ~USE_BAT_HOSTS;
found_args += 1;
break;
case 'p':
tmp = strtol(optarg, NULL , 10);
if ((tmp > 0) && (tmp <= dump_level_all))
dump_level = tmp;
found_args += ((*((char*)(optarg - 1)) == optchar ) ? 1 : 2);
break;
case 'x':
tmp = strtol(optarg, NULL , 10);
if ((tmp > 0) && (tmp <= dump_level_all))
dump_level &= ~tmp;
found_args += ((*((char*)(optarg - 1)) == optchar ) ? 1 : 2);
break;
default:
tcpdump_usage();
return EXIT_FAILURE;
}
}
if (argc <= found_args) {
printf("Error - target interface not specified\n");
tcpdump_usage();
return EXIT_FAILURE;
}
bat_hosts_init(read_opt);
/* init interfaces list */
INIT_LIST_HEAD_FIRST(dump_if_list);
FD_ZERO(&wait_sockets);
while (argc > found_args) {
dump_if = malloc(sizeof(struct dump_if));
memset(dump_if, 0, sizeof(struct dump_if));
INIT_LIST_HEAD(&dump_if->list);
dump_if->dev = argv[found_args];
if (strlen(dump_if->dev) > IFNAMSIZ - 1) {
printf("Error - interface name too long: %s\n", dump_if->dev);
goto out;
}
dump_if->raw_sock = socket(PF_PACKET, SOCK_RAW, htons(ETH_P_ALL));
if (dump_if->raw_sock < 0) {
printf("Error - can't create raw socket: %s\n", strerror(errno));
goto out;
}
memset(&req, 0, sizeof (struct ifreq));
strncpy(req.ifr_name, dump_if->dev, IFNAMSIZ);
res = ioctl(dump_if->raw_sock, SIOCGIFHWADDR, &req);
if (res < 0) {
printf("Error - can't create raw socket (SIOCGIFHWADDR): %s\n", strerror(errno));
close(dump_if->raw_sock);
goto out;
}
dump_if->hw_type = req.ifr_hwaddr.sa_family;
switch (dump_if->hw_type) {
case ARPHRD_ETHER:
case ARPHRD_IEEE80211_PRISM:
case ARPHRD_IEEE80211_RADIOTAP:
break;
default:
printf("Error - interface '%s' is of unknown type: %i\n", dump_if->dev, dump_if->hw_type);
goto out;
}
memset(&req, 0, sizeof (struct ifreq));
strncpy(req.ifr_name, dump_if->dev, IFNAMSIZ);
res = ioctl(dump_if->raw_sock, SIOCGIFINDEX, &req);
if (res < 0) {
printf("Error - can't create raw socket (SIOCGIFINDEX): %s\n", strerror(errno));
close(dump_if->raw_sock);
goto out;
}
dump_if->addr.sll_family = AF_PACKET;
dump_if->addr.sll_protocol = htons(ETH_P_ALL);
dump_if->addr.sll_ifindex = req.ifr_ifindex;
res = bind(dump_if->raw_sock, (struct sockaddr *)&dump_if->addr, sizeof(struct sockaddr_ll));
if (res < 0) {
printf("Error - can't bind raw socket: %s\n", strerror(errno));
close(dump_if->raw_sock);
goto out;
}
if (dump_if->raw_sock > max_sock)
max_sock = dump_if->raw_sock;
FD_SET(dump_if->raw_sock, &wait_sockets);
list_add_tail(&dump_if->list, &dump_if_list);
found_args++;
}
while (1) {
memcpy(&tmp_wait_sockets, &wait_sockets, sizeof(fd_set));
tv.tv_sec = 1;
tv.tv_usec = 0;
res = select(max_sock + 1, &tmp_wait_sockets, NULL, NULL, &tv);
if (res == 0)
continue;
if (res < 0) {
printf("Error - can't select on raw socket: %s\n", strerror(errno));
continue;
}
list_for_each_entry(dump_if, &dump_if_list, list) {
if (!FD_ISSET(dump_if->raw_sock, &tmp_wait_sockets))
continue;
read_len = read(dump_if->raw_sock, packet_buff, sizeof(packet_buff));
if (read_len < 0) {
printf("Error - can't read from interface '%s': %s\n", dump_if->dev, strerror(errno));
continue;
}
if ((size_t)read_len < sizeof(struct ether_header)) {
printf("Warning - dropping received packet as it is smaller than expected (%zu): %zd\n",
sizeof(struct ether_header), read_len);
continue;
}
switch (dump_if->hw_type) {
case ARPHRD_ETHER:
parse_eth_hdr(packet_buff, read_len, read_opt, 0);
break;
case ARPHRD_IEEE80211_PRISM:
case ARPHRD_IEEE80211_RADIOTAP:
monitor_header_len = monitor_header_length(packet_buff, read_len, dump_if->hw_type);
if (monitor_header_len >= 0)
parse_wifi_hdr(packet_buff + monitor_header_len, read_len - monitor_header_len, read_opt, 0);
break;
default:
/* should not happen */
break;
}
fflush(stdout);
}
}
out:
list_for_each_entry_safe(dump_if, dump_if_tmp, &dump_if_list, list) {
if (dump_if->raw_sock)
close(dump_if->raw_sock);
list_del((struct list_head *)&dump_if_list, &dump_if->list, &dump_if_list);
free(dump_if);
}
bat_hosts_free();
return ret;
}