forked from six-ddc/httpflow
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhttp_flow.cpp
More file actions
Latest commit
454 lines (391 loc) · 14.9 KB
/
Copy pathhttp_flow.cpp
File metadata and controls
454 lines (391 loc) · 14.9 KB
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
#include<cstdio>
#include<pcap.h>
#include<pcre.h>
#include<arpa/inet.h>
#include<getopt.h>
#include<cerrno>
#include<string>
#include<sstream>
#include<list>
#include<map>
#include<sys/types.h>
#include<sys/stat.h>
#include<unistd.h>
#include"util.h"
#include"stream_parser.h"
#include"data_link.h"
#defineHTTPFLOW_VERSION"0.0.9"
#defineMAXIMUM_SNAPLEN262144
structcapture_config {
#defineIFNAMSIZ16
int snaplen;
std::string output_path;
char device[IFNAMSIZ];
std::string file_name;
std::string filter;
pcre *url_filter_re;
pcre_extra *url_filter_extra;
int datalink_size;
};
std::map<std::string, stream_parser *> http_requests;
structtcphdr {
uint16_t th_sport; /* source port */
uint16_t th_dport; /* destination port */
uint32_t th_seq; /* sequence number */
uint32_t th_ack; /* acknowledgement number */
#defineTH_OFF(th) (((th)->th_offx2 & 0xf0) >> 4)
uint8_t th_offx2; /* data offset, rsvd */
/* TCP flags */
#defineTH_FIN0x01
#defineTH_SYN0x02
#defineTH_RST0x04
#defineTH_PUSH0x08
#defineTH_ACK0x10
#defineTH_URG0x20
#defineTH_ECNECHO0x40/* ECN Echo */
#defineTH_CWR0x80/* ECN Cwnd Reduced */
uint8_t th_flags;
uint16_t th_win; /* window */
uint16_t th_sum; /* checksum */
uint16_t th_urp; /* urgent pointer */
};
staticboolprocess_tcp(structpacket_info *packet, const u_char *content, size_t len) {
if (len < sizeof(structtcphdr)) {
std::cerr << "received truncated TCP datagram." << std::endl;
returnfalse;
}
conststructtcphdr *tcp_header = reinterpret_cast<conststructtcphdr *>(content);
size_t tcp_header_len = TH_OFF(tcp_header) << 2;
if (len < tcp_header_len) {
std::cerr << "received truncated TCP datagram." << std::endl;
returnfalse;
}
uint16_t src_port = ntohs(tcp_header->th_sport);
uint16_t dst_port = ntohs(tcp_header->th_dport);
char buff[128];
std::snprintf(buff, 128, "%s:%d", packet->src_addr.c_str(), src_port);
packet->src_addr.assign(buff);
std::snprintf(buff, 128, "%s:%d", packet->dst_addr.c_str(), dst_port);
packet->dst_addr.assign(buff);
packet->is_syn = tcp_header->th_flags & TH_SYN;
packet->is_fin = tcp_header->th_flags & TH_FIN;
packet->is_rst = tcp_header->th_flags & TH_RST;
content += tcp_header_len;
packet->body = std::string(reinterpret_cast<constchar *>(content), len - tcp_header_len);
packet->seq = htonl(tcp_header->th_seq);
packet->ack = htonl(tcp_header->th_ack);
if (tcp_header->th_flags & (TH_FIN | TH_SYN)) {
packet->nxtseq = packet->seq + 1;
} else {
packet->nxtseq = packet->seq + packet->body.size();
}
returntrue;
}
structip {
uint8_t ip_vhl; /* header length, version */
#defineIP_V(ip) (((ip)->ip_vhl & 0xf0) >> 4)
#defineIP_HL(ip) ((ip)->ip_vhl & 0x0f)
uint8_t ip_tos; /* type of service */
uint16_t ip_len; /* total length */
uint16_t ip_id; /* identification */
uint16_t ip_off; /* fragment offset field */
#defineIP_DF0x4000/* dont fragment flag */
#defineIP_MF0x2000/* more fragments flag */
#defineIP_OFFMASK0x1fff/* mask for fragmenting bits */
uint8_t ip_ttl; /* time to live */
uint8_t ip_p; /* protocol */
uint16_t ip_sum; /* checksum */
uint32_t ip_src, ip_dst; /* source and dest address */
};
structip6_hdr {
union {
structip6_hdrctl {
uint32_t ip6_un1_flow; /* 20 bits of flow-ID */
uint16_t ip6_un1_plen; /* payload length */
uint8_t ip6_un1_nxt; /* next header */
uint8_t ip6_un1_hlim; /* hop limit */
} ip6_un1;
uint8_t ip6_un2_vfc; /* 4 bits version, top 4 bits class */
} ip6_ctlun;
structin6_addr ip6_src; /* source address */
structin6_addr ip6_dst; /* destination address */
} UNALIGNED;
#defineip6_plen ip6_ctlun.ip6_un1.ip6_un1_plen
#defineip6_nxt ip6_ctlun.ip6_un1.ip6_un1_nxt
staticboolprocess_ipv4(structpacket_info *packet, const u_char *content, size_t len) {
if (len < sizeof(structip)) {
std::cerr << "received truncated IP datagram." << std::endl;
returnfalse;
}
conststructip *ip_header = reinterpret_cast<conststructip *>(content);
conststructip6_hdr *ip6_header = NULL;
if (6 == IP_V(ip_header)) {
ip6_header = reinterpret_cast<conststructip6_hdr *>(content);
}
size_t ip_payload_len;
if (ip6_header) {
if (ip6_header->ip6_nxt != IPPROTO_TCP) {
returnfalse;
}
ip_payload_len = ntohs(ip6_header->ip6_plen);
size_t ip_header_len = sizeof(structip6_hdr);
if (len < ip_header_len + ip_payload_len) {
std::cerr << "received truncated IP6 datagram." << std::endl;
returnfalse;
}
content += ip_header_len;
char addr[INET6_ADDRSTRLEN];
inet_ntop(AF_INET6, &ip6_header->ip6_src, addr, INET6_ADDRSTRLEN);
packet->src_addr.assign(addr);
inet_ntop(AF_INET6, &ip6_header->ip6_dst, addr, INET6_ADDRSTRLEN);
packet->dst_addr.assign(addr);
} else {
if (ip_header->ip_p != IPPROTO_TCP) {
returnfalse;
}
size_t ip_header_len = IP_HL(ip_header) << 2;
size_t ip_len = ntohs(ip_header->ip_len);
if (ip_len > len || ip_len < ip_header_len) {
std::cerr << "received truncated IP4 datagram." << std::endl;
returnfalse;
}
ip_payload_len = ip_len - ip_header_len;
content += ip_header_len;
char addr[INET_ADDRSTRLEN];
inet_ntop(AF_INET, &ip_header->ip_src, addr, INET_ADDRSTRLEN);
packet->src_addr.assign(addr);
inet_ntop(AF_INET, &ip_header->ip_dst, addr, INET_ADDRSTRLEN);
packet->dst_addr.assign(addr);
}
returnprocess_tcp(packet, content, ip_payload_len);
}
#defineETHER_ADDR_LEN6
#defineETHERTYPE_IP0x0800/* IP protocol */
structether_header {
u_char ether_dhost[ETHER_ADDR_LEN];
u_char ether_shost[ETHER_ADDR_LEN];
u_short ether_type;
};
voidprocess_packet(const pcre *url_filter_re, const pcre_extra *url_filter_extra, const std::string &output_path,
const u_char *data, size_t len, long ts_usc) {
structpacket_info packet;
packet.ts_usc = ts_usc;
bool ret = process_ipv4(&packet, data, len);
if (!ret) return;
std::string join_addr;
get_join_addr(packet.src_addr, packet.dst_addr, join_addr);
std::map<std::string, stream_parser *>::iterator iter = http_requests.find(join_addr);
if (iter == http_requests.end()) {
if (!packet.body.empty() || (packet.is_syn && packet.ack == 0)) {
stream_parser *parser = newstream_parser(url_filter_re, url_filter_extra, output_path);
if (parser->parse(packet, HTTP_REQUEST)) {
parser->set_addr(packet.src_addr, packet.dst_addr);
http_requests.insert(std::make_pair(join_addr, parser));
} else {
delete parser;
}
}
} else {
stream_parser *parser = iter->second;
enum http_parser_type type = parser->is_request_address(packet.src_addr) ? HTTP_REQUEST : HTTP_RESPONSE;
if (!parser->parse(packet, type)) {
delete parser;
http_requests.erase(iter);
}
}
}
voidpcap_callback(u_char *arg, conststructpcap_pkthdr *header, const u_char *content) {
// Data: | Mac | Ip | TCP |
// Len : | ETHER_HDR_LEN | ip_header->ip_hl << 2 | tcp_header->th_off << 2 + sizeof body |
capture_config *conf = reinterpret_cast<capture_config *>(arg);
// skip datalink
content += conf->datalink_size;
size_t len = header->caplen - conf->datalink_size;
long ts = header->ts.tv_sec * 1000000 + header->ts.tv_usec;
returnprocess_packet(conf->url_filter_re, conf->url_filter_extra, conf->output_path, content, len, ts);
}
staticconststructoption longopts[] = {
{"help", no_argument, NULL, 'h'},
{"interface", required_argument, NULL, 'i'},
{"url-filter", required_argument, NULL, 'u'},
{"pcap-file", required_argument, NULL, 'r'},
{"output-path", required_argument, NULL, 'w'},
{NULL, 0, NULL, 0}
};
#defineSHORTOPTS"hi:u:r:w:"
intprint_usage() {
std::cerr << "libpcap version " << pcap_lib_version() << "\n"
<< "httpflow version "HTTPFLOW_VERSION"\n"
<< "\n"
<< "Usage: httpflow [-i interface | -r pcap-file] [-u url-filter] [-w output-path] [expression]"
<< "\n"
<< "\n"
<< " -i interface Listen on interface, This is same as tcpdump 'interface'\n"
<< " -r pcap-file Read packets from file (which was created by tcpdump with the -w option)\n"
<< " Standard input is used if file is '-'\n"
<< " -u url-filter Matches which urls will be dumped\n"
<< " -w output-path Write the http request and response to a specific directory\n"
<< "\n"
<< " expression Selects which packets will be dumped, The format is the same as tcpdump's 'expression' argument\n"
<< " If filter expression is given, only packets for which expression is 'true' will be dumped\n"
<< " For the expression syntax, see pcap-filter(7)" << "\n\n"
<< " For more information, see https://github.com/six-ddc/httpflow" << "\n\n";
exit(0);
}
externchar *optarg; /* getopt(3) external variables */
externint optind, opterr, optopt;
capture_config *default_config() {
capture_config *conf = new capture_config;
conf->snaplen = MAXIMUM_SNAPLEN;
conf->device[0] = 0;
conf->filter = "tcp";
conf->url_filter_re = NULL;
conf->url_filter_extra = NULL;
return conf;
}
static std::string copy_argv(char **argv) {
char **p;
size_t len = 0;
char *src;
std::string buf;
std::string::iterator dst;
p = argv;
if (*p == NULL)
return buf;
while (*p)
len += strlen(*p++) + 1;
buf.assign(len - 1, 0);
if (buf.empty()) {
return buf;
}
p = argv;
dst = buf.begin();
while ((src = *p++) != NULL) {
if (src != *argv) {
*(dst - 1) = '';
}
while ((*dst++ = *src++) != '\0');
}
return buf;
}
intinit_capture_config(int argc, char **argv, capture_config *conf, char *errbuf) {
// pcap_if_t *devices = NULL, *iter = NULL;
constchar *default_device = NULL;
int cnt, op, i;
std::string url_regex;
while ((op = getopt_long(argc, argv, SHORTOPTS, longopts, NULL)) != -1) {
switch (op) {
case'i':
std::strncpy(conf->device, optarg, sizeof(conf->device));
break;
case'u':
url_regex.assign(optarg);
constchar *err;
int erroffset;
conf->url_filter_re = pcre_compile(url_regex.c_str(), 0, &err, &erroffset, NULL);
if (!conf->url_filter_re) {
std::cerr << "invalid regular expression at offset " << erroffset << ": " << err << std::endl;
exit(1);
}
conf->url_filter_extra = pcre_study(conf->url_filter_re, 0, &err);
break;
case'r':
conf->file_name = optarg;
break;
case'h':
print_usage();
break;
case'w':
conf->output_path = optarg;
break;
default:
exit(1);
break;
}
}
if (optind < argc) {
conf->filter = copy_argv(&argv[optind]);
}
if (conf->device[0] == 0) {
default_device = pcap_lookupdev(errbuf);
if (default_device) {
std::strncpy(conf->device, default_device, sizeof(conf->device));
}
}
if (!conf->output_path.empty()) {
int mk_ret = mkdir(conf->output_path.c_str(), S_IRWXU);
if (mk_ret != 0 && errno != EEXIST) {
std::cerr << "mkdir [" << conf->output_path << "] failed. ret=" << mk_ret << std::endl;
exit(1);
}
}
if (conf->file_name.empty()) {
std::cerr << "interface: " << conf->device << std::endl;
} else {
if (conf->file_name == "-") {
std::cerr << "pcap-file: [stdin]" << std::endl;
} else {
std::cerr << "pcap-file: " << conf->file_name << std::endl;
}
}
if (!conf->output_path.empty()) {
std::cerr << "output_path: " << conf->output_path << std::endl;
}
std::cerr << "filter: " << conf->filter << std::endl;
if (!url_regex.empty()) {
std::cerr << "url_filter: " << url_regex << std::endl;
}
return0;
}
intmain(int argc, char **argv) {
is_atty = isatty(fileno(stdout));
char errbuf[PCAP_ERRBUF_SIZE];
pcap_t *handle = NULL;
bpf_u_int32 net = 0, mask = 0;
structbpf_program fcode;
int datalink_id;
std::string datalink_str;
capture_config *cap_conf = default_config();
if (-1 == init_capture_config(argc, argv, cap_conf, errbuf)) {
return1;
}
if (!cap_conf->file_name.empty()) {
handle = pcap_open_offline(cap_conf->file_name.c_str(), errbuf);
if (!handle) {
std::cerr << "pcap_open_offline(): " << errbuf << std::endl;
return1;
}
} else {
pcap_lookupnet(cap_conf->device, &net, &mask, errbuf);
handle = pcap_open_live(cap_conf->device, cap_conf->snaplen, 0, 1000, errbuf);
if (!handle) {
std::cerr << "pcap_open_live(): " << errbuf << std::endl;
return1;
}
pcap_datalink(handle);
}
if (-1 == pcap_compile(handle, &fcode, cap_conf->filter.c_str(), 0, mask)) {
std::cerr << "pcap_compile(): " << pcap_geterr(handle) << std::endl;
pcap_close(handle);
return1;
}
if (-1 == pcap_setfilter(handle, &fcode)) {
std::cerr << "pcap_setfilter(): " << pcap_geterr(handle) << std::endl;
pcap_close(handle);
return1;
}
pcap_freecode(&fcode);
datalink_id = pcap_datalink(handle);
datalink_str = datalink2str(datalink_id);
cap_conf->datalink_size = datalink2off(datalink_id);
std::cerr << "datalink: " << datalink_id << "(" << datalink_str << ") header size: " << cap_conf->datalink_size
<< std::endl;
if (-1 == pcap_loop(handle, -1, pcap_callback, reinterpret_cast<u_char *>(cap_conf))) {
std::cerr << "pcap_loop(): " << pcap_geterr(handle) << std::endl;
pcap_close(handle);
return1;
}
delete cap_conf;
pcap_close(handle);
return0;
}