-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpcap-test.c
183 lines (149 loc) · 5.43 KB
/
pcap-test.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
#include <pcap.h>
#include <stdbool.h>
#include <stdio.h>
int byte2int(u_char* p){
int total_size_arr[1] = {};
total_size_arr[0] = *p++;
total_size_arr[1] = *p++;
int total_size = 0;
total_size += total_size_arr[0]/10*16*16*16; //Total Size 계산
total_size += total_size_arr[0]%10*16*16;
total_size += total_size_arr[1]/10*16;
total_size += total_size_arr[1]%10;
return total_size;
}
void usage() {
printf("syntax: pcap-test <interface>\n");
printf("sample: pcap-test wlan0\n");
}
typedef struct {
char* dev_;
} Param;
Param param = {
.dev_ = NULL
};
bool parse(Param* param, int argc, char* argv[]) {
if (argc != 2) { //인자가 2개보다 작아서 오류 발생
usage();
return false;
}
param->dev_ = argv[1]; //구조체 param의 dev_에 인자에 1번째가 들어감
return true;
}
int main(int argc, char* argv[]) {
char name[] = "안두혁";
char mobile[] = "8262";
printf("[bob11]pcap-test[%s%s]\n\n", name, mobile);
if (!parse(¶m, argc, argv)) //인자 정보가 제대로 되었는지 확인하는 조건문
return -1;
// printf("%s",param.dev_); // 출력 : dum0
char errbuf[PCAP_ERRBUF_SIZE]; //뭔지 모르겠지만 의미상 err내용을 담는 변수
// 첫번째 인자는 PCD, 두번째 인자는 받아들이는 최대 크기를 의미한다, 세 번째 모드(1은 모든패킷 0은 나를 향하는 패킷만), 네 번째 읽기 시간 초과, 다섯 번째 함수에 오류발생시 오류 내용을 저장하기 위한 공간으로 활용.
pcap_t* pcap = pcap_open_live(param.dev_, BUFSIZ, 1, 1000, errbuf);
// printf("출력 : %d\n",pcap_fileno(pcap));
if (pcap == NULL) { //pcap_open_live에 오류가 발생했을때 오류를 출력하는 조건문
fprintf(stderr, "pcap_open_live(%s) return null - %s\n", param.dev_, errbuf);
return -1;
}
while (true) {
struct pcap_pkthdr* header;
// printf("pcap_pkthdr의 크기 : %ld",sizeof(header));
const u_char* packet;
int res = pcap_next_ex(pcap, &header, &packet);
// printf("header : %d\n",header);
u_char* p=(u_char*)packet;
u_char* sub_p=(u_char*)packet;
printf("=========================================\n");
printf("Ethernet Destination : \t");
for (int i = 0; i<6;i++) printf("%x ",*sub_p++); //mac des 출력
printf("\n");
printf("Ethernet Source : \t");
for (int i = 0; i<6;i++) printf("%x ",*sub_p++); //mac src 출력
printf("\n");
// printf("Ethernet Type : \t");
int ip_type = 0;
ip_type += (int)(*sub_p++)*10+(int)(*sub_p++); //ip_type를 계산
if (!(ip_type == 80)) continue;
// printf("%d\n",ip_type);
int ip_1byte = 0;
ip_1byte += (int)(*sub_p++);
// printf("Ip Version : \t\t%d\n",ip_1byte/16);
int ip_head_size = ip_1byte%16*4;
// printf("Ip Header Size : \t%d\n",ip_head_size);
*sub_p++; //바이트 날리기
int total_size_arr[1] = {};
total_size_arr[0] = *sub_p++;
total_size_arr[1] = *sub_p++;
int total_size = 0;
total_size += total_size_arr[0]/10*16*16*16; //Total Size 계산
total_size += total_size_arr[0]%10*16*16;
total_size += total_size_arr[1]/10*16;
total_size += total_size_arr[1]%10;
// total_size = byte2int(sub_p);
// printf("Total Size : \t\t%d\n",total_size);
sub_p = (sub_p+5); //바이트 날리기
int protocol = *sub_p++;
if(protocol != 6) continue;
// printf("Protocol : \t\t%x\n",protocol);
sub_p = (sub_p+2); //바이트 날리기
printf("Source Ip : \t\t");
for(int i=0; i<3;i++) printf("%d.",*sub_p++);
printf("%d\n",*sub_p++);
printf("Destination Ip : \t");
for(int i=0; i<3;i++) printf("%d.",*sub_p++);
printf("%d\n",*sub_p++);
if(ip_head_size>20) sub_p = sub_p+(ip_head_size-20)/4;
printf("Source Port : \t\t");
int source_port_arr[1] = {};
source_port_arr[0] = *sub_p++;
source_port_arr[1] = *sub_p++;
int source_port = 0;
source_port += source_port_arr[0]/16*16*16*16; //source_port 계산
source_port += source_port_arr[0]%16*16*16;
source_port += source_port_arr[1]/16*16;
source_port += source_port_arr[1]%16;
printf("%d\n",source_port);
printf("Destination Port : \t");
int des_port_arr[1] = {};
des_port_arr[0] = *sub_p++;
des_port_arr[1] = *sub_p++;
int des_port = 0;
des_port += des_port_arr[0]/16*16*16*16; //des_port 계산
des_port += des_port_arr[0]%16*16*16;
des_port += des_port_arr[1]/16*16;
des_port += des_port_arr[1]%16;
printf("%d\n",des_port);
sub_p = (sub_p+8); //바이트 날리기
int tcp_1byte = 0;
tcp_1byte += (int)(*sub_p++);
int data_offset = tcp_1byte/16*4;
// printf("Data Offset : \t\t%d\n",data_offset);
sub_p = (sub_p+7); //바이트 날리기
if(data_offset>20) sub_p = (sub_p+(data_offset-20));
int offset = 14+ip_head_size+data_offset;
int data_cnt = header->caplen-offset;
printf("Payload : \t\t");
if(data_cnt >= 10)
for(int i=0;i<10;i++)
printf("%x ",*sub_p++);
else if(data_cnt == 0)
printf("No data");
else
for(int i=0;i<header->caplen-offset;i++)
printf("%x ",*sub_p++);
printf("\n");
printf("gap : %d\n",14+ip_head_size+data_offset);
printf("\n\n");
for(int i=0;i<header->caplen;i++) printf("%x ",*p++);
printf("\n\n");
if (res == 0) continue;
if (res == PCAP_ERROR || res == PCAP_ERROR_BREAK) {//pcap_next_ex를 읽지 못했을때 오류
printf("pcap_next_ex return %d(%s)\n", res, pcap_geterr(pcap));
break;
}
printf("%u bytes captured\n", header->caplen);
// int res = pcap_next_ex(pcap,&header,header->caplen);
// printf("%u bytes captured\n", header->caplen);
}
pcap_close(pcap);
}