【VS开发】【Linux开发】【DSP开发】如何截获以太网帧并解析
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
821
822
823
824
825
826
827
828
829
|
/* /* #include #include #include #include #include #include /* #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include /* struct global_info unsigned int bytes; /* unsigned int packet_num; /* unsigned int packet_arp; /* unsigned int packet_rarp; /* unsigned int packet_ip; /* unsigned int packet_icmp; /* unsigned int packet_igmp; /* unsigned int packet_tcp; /* unsigned int packet_udp; /* int print_flag_frame; /* int print_flag_arp; /* int print_flag_ip; /* int print_flag_rarp; /* int print_flag_tcp; /* int print_flag_udp; /* int print_flag_icmp; /* int print_flag_igmp; /* }; /* struct global_info struct ip_pair unsigned int source_ip; unsigned int dest_ip; unsigned int count; }; /* struct ip_pair /* void init_global( struct global_info /* void print_global( struct global_info /* void error_and_exit( char * int exit_code /* int set_card_promisc( char * int sock /* void mac_to_str( char * char * /* void help( void ); /* void do_frame( int sockfd /* void do_ip( char * /* void print_ip( struct iphdr /* void do_arp( char * /* void print_arp( struct arphdr /* void do_rarp( char * /* void do_tcp( char * /* void print_tcp( struct tcphdr /* void do_udp( char * /* void print_udp( struct udphdr /* void do_icmp( char * /* void print_icmp( struct icmphdr /* void do_igmp( char * /* void print_igmp( struct igmphdr /* void init_global( struct global_info { var->bytes var->packet_num var->packet_arp var->packet_rarp var->packet_ip var->packet_icmp var->packet_igmp var->packet_tcp var->packet_udp var->print_flag_frame var->print_flag_arp var->print_flag_ip var->print_flag_rarp var->print_flag_tcp var->print_flag_udp var->print_flag_icmp var->print_flag_igmp } /* void print_global( struct global_info { printf ( "\n\n********** ); printf ( "总共接收字节数: , printf ( "总共接受包数量: , if ( printf ( "接收 , if ( printf ( "接收 , if ( printf ( "接收 , if ( printf ( "接收 , if ( printf ( "接收 , if ( printf ( "接收 , if ( printf ( "接收 , printf ( "\n" ); } /* void sig_int( int sig { print_global( int i; /* for( printf("%15s printf("%15s } */ exit ( } /* void error_and_exit( char * int exit_code { herror( exit ( } /* int set_card_promisc( char * int sock { /* struct ifreq /* strncpy (ifr.ifr_name, strlen ( /* if ((ioctl(sock, error_and_exit( "ioctl" , } /* ifr.ifr_flags /* if (ioctl(sock, error_and_exit( "ioctl" , } /* void mac_to_str( char * char * { sprintf ( "%02x:%02x:%02x:%02x:%02x:%02x" ,(unsigned char ) char )(*(buf+1)), (unsigned char )(*(buf+2)), char )(*(buf+3)), (unsigned char )(*(buf+4)), char )(*(buf+5))); mac_buf[17] } void help( void ) { printf ( "Usage: ); printf ( "默认情况: ); } void print_udp( struct udphdr { printf ( "==================== ); printf ( "16位源端口号 , printf ( "16位目的端口号: , printf ( "16位udp长度: , printf ( "16位udp校验和: , if ( sizeof ( struct udphdr char * char * sizeof ( struct udphdr printf ( "UDP数据: , } } void do_udp( char * { global.packet_udp struct udphdr struct udphdr if ( print_udp( } void print_tcp( struct tcphdr { printf ( "==================== ); printf ( "源端口号 , printf ( "目的端口号: , printf ( "32位序列号 , printf ( "32位确认序号: , printf ( "首部长度: , printf ( "6个标志位: ); printf ( " , printf ( " , printf ( " , printf ( " , printf ( " , printf ( " , printf ( "16位窗口大小: , printf ( "16位校验和: , printf ( "16位紧急指针: , if ( printf ( "选项数据: ); } else { printf ( "选项数据: , } char * char * data printf ( "数据长度: , strlen (data) if ( strlen (data) printf ( "数据: , } void do_tcp( char * { global.packet_tcp struct tcphdr ptcp struct tcphdr if ( print_tcp( } void print_igmp( struct igmphdr { printf ( "==================== ); printf ( "igmp , printf ( "igmp , printf ( "igmp , printf ( "igmp , printf ( "igmp , } void do_igmp( char * { global.packet_igmp struct igmphdr struct igmphdr if ( print_igmp( } void print_icmp( struct icmphdr { printf ( "==================== ); printf ( "消息类型: , switch ( case ICMP_ECHOREPLY: printf ( "Ping的回显应答\n" ); break ; case ICMP_DEST_UNREACH: printf ( "目的不可达\n" ); break ; case ICMP_SOURCE_QUENCH: printf ( "源端被关闭\n" ); break ; case ICMP_REDIRECT: printf ( "重定相\n" ); break ; case ICMP_ECHO: printf ( "ping的回显请求\n" ); break ; case ICMP_TIME_EXCEEDED: printf ( "超时\n" ); break ; case ICMP_PARAMETERPROB: printf ( "参数问题\n" ); break ; case ICMP_TIMESTAMP: printf ( "时间戳请求\n" ); break ; case ICMP_TIMESTAMPREPLY: printf ( "时间戳应答\n" ); break ; case ICMP_INFO_REQUEST: printf ( "信息请求\n" ); break ; case ICMP_INFO_REPLY: printf ( "信息应答\n" ); break ; case ICMP_ADDRESS: printf ( "地址掩码请求\n" ); break ; case ICMP_ADDRESSREPLY: printf ( "地址掩码应答\n" ); break ; default : printf ( "未知消息类型\n" ); break ; } printf ( "消息类型的子选项: , switch ( case ICMP_ECHOREPLY: printf ( "Ping的回显应答\n" ); break ; case ICMP_DEST_UNREACH: switch ( case ICMP_NET_UNREACH: printf ( "网络不可到达\n" ); break ; case ICMP_HOST_UNREACH: printf ( "主机不可到达\n" ); break ; case ICMP_PROT_UNREACH: printf ( "协议不可到达\n" ); break ; case ICMP_PORT_UNREACH: printf ( "端口不可到达\n" ); break ; case ICMP_FRAG_NEEDED: printf ( "需要进行分片,但是又设置不分片位\n" ); break ; case ICMP_SR_FAILED: printf ( "源站选路失败\n" ); break ; case ICMP_NET_UNKNOWN: printf ( "目的网络不认识\n" ); break ; case ICMP_HOST_UNKNOWN: printf ( "目的主机不认识\n" ); break ; case ICMP_HOST_ISOLATED: printf ( "源主机北隔离\n" ); break ; case ICMP_NET_ANO: printf ( "目的网络被强制禁止\n" ); break ; case ICMP_HOST_ANO: printf ( "目的主机被强制禁止\n" ); break ; case ICMP_NET_UNR_TOS: printf ( "由于服务类型TOS,网络不可到达\n" ); break ; case ICMP_HOST_UNR_TOS: printf ( "由于服务类型TOS,主机不可到达\n" ); break ; case ICMP_PKT_FILTERED: printf ( "由于过滤,通信被强制禁止\n" ); break ; case ICMP_PREC_VIOLATION: printf ( "主机越权\n" ); break ; case ICMP_PREC_CUTOFF: printf ( "优先权中止生效\n" ); break ; default : printf ( "未知代码\n" ); break ; } break ; case ICMP_SOURCE_QUENCH: printf ( "源端被关闭\n" ); break ; case ICMP_REDIRECT: switch ( case ICMP_REDIR_NET: printf ( "对网络重定向\n" ); break ; case ICMP_REDIR_HOST: printf ( "对主机重定向\n" ); break ; case ICMP_REDIR_NETTOS: printf ( "对服务类型和网络重定向\n" ); break ; case ICMP_REDIR_HOSTTOS: printf ( "对服务类型和主机重定向\n" ); break ; defalut: printf ( "未知代码\n" ); break ; } break ; case ICMP_ECHO: printf ( "ping的回显请求\n" ); break ; case ICMP_TIME_EXCEEDED: switch ( case ICMP_EXC_TTL: printf ( "在传输期间生存时间为0\n" ); break ; case ICMP_EXC_FRAGTIME: printf ( "在数据组装期间生存时间为0\n" ); break ; default : printf ( "未知代码\n" ); break ; } break ; case ICMP_PARAMETERPROB: switch ( case 0: printf ( "IP首部错误(包括各种差错)\n" ); break ; case 1: printf ( "缺少必须的选项\n" ); break ; default : printf ( "原因未知\n" ); break ; } break ; case ICMP_TIMESTAMP: printf ( "时间戳请求\n" ); break ; case ICMP_TIMESTAMPREPLY: printf ( "时间戳应答\n" ); break ; case ICMP_INFO_REQUEST: printf ( "信息请求\n" ); break ; case ICMP_INFO_REPLY: printf ( "信息应答\n" ); break ; case ICMP_ADDRESS: printf ( "地址掩码请求\n" ); break ; case ICMP_ADDRESSREPLY: printf ( "地址掩码应答\n" ); break ; default : printf ( "未知消息类型\n" ); break ; } printf ( "校验和: , } void do_icmp( char * { global.packet_icmp struct icmphdr struct icmphdr if ( print_icmp( } void print_ip( struct iphdr { printf ( "=============== ); printf ( "IP , printf ( "IP , printf ( "服务类型(tos): , printf ( "总长度字节: , printf ( "16位标识: , printf ( "frag , printf ( "8位生存事件: , printf ( "8位协议: , printf ( "16位首部校验和: , printf ( "32位源IP地址 , struct in_addr printf ( "32位目的IP地址: , struct in_addr } void ip_count( struct iphdr { ip_pair[ ip_pair[ } void do_ip( char * { global.packet_ip struct iphdr pip struct iphdr /* if ( print_ip( ip_count( char * switch ( case IPPROTO_ICMP: do_icmp( break ; case IPPROTO_IGMP: do_igmp( break ; case IPPROTO_TCP: do_tcp( break ; case IPPROTO_UDP: do_udp( break ; default : printf ( "IP: ); break ; } } void print_arp( struct arphdr { printf ( "硬件类型: , switch ( case ARPHRD_ETHER: printf ( "Ethernet ); break ; case ARPHRD_EETHER: printf ( "Experimental ); break ; case ARPHRD_AX25: printf ( "AX.25 ); break ; case ARPHRD_PRONET: printf ( "PROnet ); break ; case ARPHRD_IEEE802: printf ( "IEEE ); break ; case ARPHRD_APPLETLK: printf ( "APPLEtalk.\n" ); break ; case ARPHRD_ATM: printf ( "ATM.\n" ); break ; case ARPHRD_IEEE1394: printf ( "IEEE ); break ; default : printf ( "Unknow.\n" ); break ; } printf ( "映射的协议地址类型: , switch ( case ETHERTYPE_IP: printf ( "IP.\n" ); break ; default : printf ( "error.\n" ); break ; } printf ( "硬件地址长度: , printf ( "协议地址长度: , printf ( "操作码: , switch ( case ARPOP_REQUEST: printf ( "ARP ); break ; case ARPOP_REPLY: printf ( "ARP ); break ; case ARPOP_RREQUEST: printf ( "RARP ); break ; case ARPOP_RREPLY: printf ( "RARP ); break ; case ARPOP_InREQUEST: printf ( "InARP ); break ; case ARPOP_InREPLY: printf ( "InARP ); break ; case ARPOP_NAK: printf ( "(ATM)ARP ); break ; default : printf ( "arp ); break ; } char * char *)(parp char buf[18]; mac_to_str( printf ( "发送端以太网地址: , printf ( "发送端IP地址: , struct in_addr mac_to_str( printf ( "目的以太网地址: , printf ( "目的IP地址: , struct in_addr } void do_arp( char * { global.packet_arp struct arphdr parp struct arphdr if ( printf ( "============= ); print_arp( } } void do_rarp( char * { global.packet_rarp struct arphdr parp struct arphdr if ( printf ( "============= ); print_arp( } } /* void print_frame( struct ether_header { /* char buf[ printf ( "\n================================== , printf ( "==== ); char * mac_to_str( printf ( "源以太网地址: , char * mac_to_str( printf ( "目的以太网地址:%s\n" , } /* void do_frame( int sock { /* char frame_buf[ /* bzero( sizeof (frame_buf) int len sizeof ( /* int recv_num; /* struct sockaddr_in /* recv_num char *)frame_buf, sizeof ( struct sockaddr /* global.packet_num /* global.bytes /* //printf("此帧数据长度: /* struct ether_header /* peth struct ether_header /* if ( print_frame( /* char * /* pdata sizeof ( struct ether_header /* switch ( case ETHERTYPE_PUP: break ; case ETHERTYPE_IP: do_ip( break ; case ETHERTYPE_ARP: do_arp( break ; case ETHERTYPE_REVARP: do_rarp( break ; default : printf ( "Unkonw , break ; } } /* int main( int argc, char ** { /* int sockfd; /* init_global( if ( /* global.print_flag_frame global.print_flag_arp global.print_flag_ip global.print_flag_rarp global.print_flag_tcp global.print_flag_udp global.print_flag_icmp global.print_flag_igmp } else { /* if ( "-h" ) help(); exit ( } else { int i; for ( if ( "frame" ) global.print_flag_frame else if ( "arp" ) global.print_flag_arp else if ( "rarp" ) global.print_flag_rarp else if ( "ip" ) global.print_flag_ip else if ( "tcp" ) global.print_flag_tcp else if ( "udp" ) global.print_flag_udp else if ( "icmp" ) global.print_flag_icmp else if ( "igmp" ) global.print_flag_igmp } } } /* if ( error_and_exit( "socket" , /* /* set_card_promisc( "eth0" , /* signal ( /* while ( do_frame( } return 0; } |
参考资料:
http://www.cnblogs.com/rollenholt/articles/2585432.html
http://www.binarytides.com/blog/c-packet-sniffer-code-with-libpcap-and-linux-sockets-bsd/
http://www.binarytides.com/blog/packet-sniffer-code-in-c-using-linux-sockets-bsd-part-2/
http://www.binarytides.com/blog/packet-sniffer-code-in-c-using-linux-sockets-bsd/
【VS开发】【Linux开发】【DSP开发】如何截获以太网帧并解析的更多相关文章
- 【Linux开发】【DSP开发】利用CCS6.1生成out文件的同时生成bin文件
[Linux开发][DSP开发]利用CCS6.1生成out文件的同时生成bin文件 标签:[DSP开发] [Linux开发] 尝试在windows上安装的CCS6.1开发AM4378-Linux下的应 ...
- 【VS开发】【DSP开发】浅谈Linux PCI设备驱动(二)
我们在 浅谈Linux PCI设备驱动(一)中(以下简称 浅谈(一) )介绍了PCI的配置寄存器组,而Linux PCI初始化就是使用了这些寄存器来进行的.后面我们会举个例子来说明Linux PCI设 ...
- 【VS开发】【DSP开发】浅谈Linux PCI设备驱动(一)
要弄清楚Linux PCI设备驱动,首先要明白,所谓的Linux PCI设备驱动实际包括Linux PCI设备驱动和设备本身驱动两部分.不知道读者理不理解这句话,本人觉得这句话很重要,对于PCI.US ...
- Davinci DM6446开发攻略——DSP开发工程建立
前段时间一直忙一个项目,同时在生活上时时提防和抵抗中国地沟油.国外核心转基因调和油.大豆油.色拉油.大米玉米.可怕的喂药鱼.药水泡农药喷无虫咬的青菜,所以没时间打理自己的博客,让开发攻略停顿了一段时间 ...
- 【Linux开发】【DSP开发】Linux设备驱动之——PCI 总线
PCI总线概述 随着通用处理器和嵌入式技术的迅猛发展,越来越多的电子设备需要由处理器控制.目前大多数CPU和外部设备都会提供PCI总线的接口,PCI总线已成为计算机系统中一种应用广泛.通用的总线标准 ...
- 【VS开发】【DSP开发】WinDriver简介(或介绍)
WinDriver for Windows简化并自动化了用户模式Windows设备驱动程序的开发,支持设备包括PCI / CardBus / ISA/ PCI-104 / PCMCIA * / PMC ...
- 【ARM-Linux开发】【DSP开发】AM5728介绍
AM5728 Sitara Processors 1. 介绍 1.1 AM572x概述 AM572x是高性能,Sitara器件.以28nm技术集成: 结构设计主要考虑嵌入式应用,包括工业通讯,人 ...
- 【VS开发】【DSP开发】如何使用WinDriver为PCIe采集卡装驱动
如何使用WinDriver为PCIe采集卡装驱动 第一步:使用WinDriver生成驱动 1.运行Drier Wizard 2.点击New host driverproject 3.在列表中,选择待安 ...
- 【VS开发】【DSP开发】TCP和UDP数据包结构
TCP (Transport Control Protocol)传输控制协议: 1.TCP数据包的分组格式: A,源端口:标识源端应用进程. B, 目的端口:标识目的端应用进程. C, 序号:在SYN ...
随机推荐
- js 获取两个数组的交集,并集,补集,差集
https://blog.csdn.net/piaojiancong/article/details/98199541 ES5 const arr1 = [1,2,3,4,5], arr2 = [5, ...
- Prism框架的Module(模块化)编程
Prism框架用的是新版本的,Prism7.1.关于其中的变动,感兴趣的参考https://www.cnblogs.com/hicolin/p/8694892.html 如何告诉Shell(我们的宿主 ...
- Codeforces 1167 E Range Deleting 双指针+思维
题意 给一个数列\(a\),定义\(f(l,r)\)为删除\(a\)中所有满足\(l<=a_i<=r\)的数后的数列,问有多少对\((l,r)\),使\(f(l,r)\)是一个 ...
- docker的数据管理
容器中管理数据主要有两种方式: 1.数据卷:容器内数据直接映射到本地宿主机. 2.数据卷容器:使用特定容器维护数据卷 数据卷: 数据卷是一个可供容器使用的特殊目录,他将主机操作系统目录直接映射进容器. ...
- CodeForces 707D Persistent Bookcase ——(巧妙的dfs)
一个n*m的矩阵,有四种操作: 1.(i,j)处变1: 2.(i,j)处变0: 3.第i行的所有位置1,0反转: 4.回到第k次操作以后的状态: 问每次操作以后整个矩阵里面有多少个1. 其实不好处理的 ...
- Spring Cloud Feign声明式服务调用(转载)+遇到的问题
转载:原文 总结: 1.pom添加依赖 2.application中填写正确的eureka配置 3.启动项中增加注解 @EnableFeignClients 4.填写正确的调用接口 通过原文使用Fei ...
- 在SpringBoot程序中记录日志
所有的项目都会有日志,日志文件是用于记录系统操作事件的记录文件或文件集合,可分为事件日志和消息日志.具有处理历史数据.诊断问题的追踪以及理解系统的活动等重要作用.这节描述如何用springboot记录 ...
- Leetcode题目20.有效的括号(简单)
题目描述: 给定一个只包括 '(',')','{','}','[',']' 的字符串,判断字符串是否有效. 有效字符串需满足: 左括号必须用相同类型的右括号闭合.左括号必须以正确的顺序闭合.注意空字符 ...
- LeetCode 238. 除自身以外数组的乘积( Product of Array Except Self)
题目描述 给定长度为 n 的整数数组 nums,其中 n > 1,返回输出数组 output ,其中 output[i] 等于 nums 中除 nums[i] 之外其余各元素的乘积. 示例: 输 ...
- Linux上Python的安装升级
1.下载 cd /usr/local/src/ wget https://www.python.org/ftp/python/3.5.1/Python-3.5.1.tgz 2.安装,在/usr/loc ...