forked from appneta/tcpreplay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbridge.c
416 lines (340 loc) · 12.5 KB
/
bridge.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
/* $Id$ */
/*
* Copyright (c) 2001-2010 Aaron Turner <aturner at synfin dot net>
* Copyright (c) 2013-2016 Fred Klassen <tcpreplay at appneta dot com> - AppNeta
*
* The Tcpreplay Suite of tools is free software: you can redistribute it
* and/or modify it under the terms of the GNU General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or with the authors permission any later version.
*
* The Tcpreplay Suite 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 the Tcpreplay Suite. If not, see <http://www.gnu.org/licenses/>.
*/
#include "config.h"
#include "defines.h"
#include "common.h"
#include <sys/time.h>
#include <signal.h>
#include <string.h>
#include <netinet/in.h>
#include <time.h>
#include <errno.h>
#include <stdlib.h>
#include "tcpbridge.h"
#include "bridge.h"
#include "tcpedit/tcpedit.h"
extern tcpbridge_opt_t options;
extern tcpreplay_stats_t stats;
#ifdef DEBUG
extern int debug;
#endif
volatile bool didsig;
static int live_callback(struct live_data_t *,
struct pcap_pkthdr *, const u_char *);
static void signal_catcher(int signo);
/**
* First, prep our RB Tree which tracks where each (source)
* MAC really lives so we don't create really nasty network
* storms.
*/
static struct macsrc_t *new_node(void);
RB_HEAD(macsrc_tree, macsrc_t) macsrc_root;
static int
rbmacsrc_comp(struct macsrc_t *a, struct macsrc_t *b)
{
return (memcmp(a->key, b->key, ETHER_ADDR_LEN));
}
RB_PROTOTYPE(macsrc_tree, macsrc_t, node, rbmacsrc_comp)
RB_GENERATE(macsrc_tree, macsrc_t, node, rbmacsrc_comp)
/**
* redblack init
*/
void
rbinit(void)
{
RB_INIT(&macsrc_root);
}
/**
* create a new node... Malloc's memory
*/
struct macsrc_t *
new_node(void)
{
struct macsrc_t *node;
node = (struct macsrc_t *)safe_malloc(sizeof(struct macsrc_t));
memset(node, '\0', sizeof(struct macsrc_t));
return (node);
}
/**
* main loop for bridging in only one direction
* optimized to not use poll(), but rather libpcap's builtin pcap_loop()
*/
static void
do_bridge_unidirectional(tcpbridge_opt_t *options, tcpedit_t *tcpedit)
{
struct live_data_t livedata;
int retcode;
assert(options);
assert(tcpedit);
livedata.tcpedit = tcpedit;
livedata.source = PCAP_INT1;
livedata.pcap = options->pcap1;
livedata.options = options;
if ((retcode = pcap_loop(options->pcap1, options->limit_send,
(pcap_handler)live_callback, (u_char *) &livedata)) < 0) {
warnx("Error in pcap_loop(): %s", pcap_geterr(options->pcap1));
}
}
/**
* main loop for bridging in both directions. Since we dealing with two handles
* we need to poll() on them which isn't the most efficent
*/
static void
do_bridge_bidirectional(tcpbridge_opt_t *options, tcpedit_t *tcpedit)
{
struct pollfd polls[2]; /* one for left & right pcap */
int pollresult, pollcount, timeout;
struct live_data_t livedata;
assert(options);
assert(tcpedit);
livedata.tcpedit = tcpedit;
livedata.options = options;
/*
* loop until ctrl-C or we've sent enough packets
* note that if -L wasn't specified, limit_send is
* set to 0 so this will loop infinately
*/
while ((options->limit_send == 0) || (options->limit_send > stats.pkts_sent)) {
if (didsig)
break;
dbgx(3, "limit_send: " COUNTER_SPEC " \t pkts_sent: " COUNTER_SPEC,
options->limit_send, stats.pkts_sent);
/* reset the result codes */
polls[PCAP_INT1].revents = 0;
polls[PCAP_INT1].events = POLLIN;
polls[PCAP_INT1].fd = pcap_fileno(options->pcap1);
polls[PCAP_INT2].revents = 0;
polls[PCAP_INT2].events = POLLIN;
polls[PCAP_INT2].fd = pcap_fileno(options->pcap2);
timeout = options->poll_timeout;
pollcount = 2;
/* poll for a packet on the two interfaces */
pollresult = poll(polls, pollcount, timeout);
/* poll has returned, process the result */
if (pollresult > 0) {
dbgx(3, "pollresult: %d", pollresult);
/* success, got one or more packets */
if (polls[PCAP_INT1].revents > 0) {
dbg(5, "Processing first interface");
livedata.source = PCAP_INT1;
livedata.pcap = options->pcap1;
pcap_dispatch(options->pcap1, -1, (pcap_handler) live_callback,
(u_char *) &livedata);
}
/* check the other interface?? */
if (polls[PCAP_INT2].revents > 0) {
dbg(5, "Processing second interface");
livedata.source = PCAP_INT2;
livedata.pcap = options->pcap2;
pcap_dispatch(options->pcap2, -1, (pcap_handler) live_callback,
(u_char *) &livedata);
}
}
else if (pollresult == 0) {
dbg(3, "poll timeout exceeded...");
/* do something here? */
}
else {
/* poll error, probably a Ctrl-C */
warnx("poll() error: %s", strerror(errno));
}
/* go back to the top of the loop */
}
} /* do_bridge_bidirectional() */
/**
* Main entry point to bridging. Does some initial setup and then calls the
* correct loop (unidirectional or bidirectional)
*/
void
do_bridge(tcpbridge_opt_t *options, tcpedit_t *tcpedit)
{
/* do we apply a bpf filter? */
if (options->bpf.filter != NULL) {
/* compile filter */
dbgx(2, "Try to compile pcap bpf filter: %s", options->bpf.filter);
if (pcap_compile(options->pcap1, &options->bpf.program, options->bpf.filter, options->bpf.optimize, 0) != 0) {
errx(-1, "Error compiling BPF filter: %s", pcap_geterr(options->pcap1));
}
/* apply filter */
pcap_setfilter(options->pcap1, &options->bpf.program);
/* same for other interface if applicable */
if (options->unidir == 0) {
/* compile filter */
dbgx(2, "Try to compile pcap bpf filter: %s", options->bpf.filter);
if (pcap_compile(options->pcap2, &options->bpf.program, options->bpf.filter, options->bpf.optimize, 0) != 0) {
errx(-1, "Error compiling BPF filter: %s", pcap_geterr(options->pcap2));
}
/* apply filter */
pcap_setfilter(options->pcap2, &options->bpf.program);
}
}
/* register signals */
didsig = 0;
(void)signal(SIGINT, signal_catcher);
if (options->unidir == 1) {
do_bridge_unidirectional(options, tcpedit);
} else {
do_bridge_bidirectional(options, tcpedit);
}
if (gettimeofday(&stats.end_time, NULL) < 0)
errx(-1, "gettimeofday() failed: %s", strerror(errno));
packet_stats(&stats);
}
/**
* This is the callback we use with pcap_dispatch to process
* each packet recieved by libpcap on the two interfaces.
* Need to return > 0 to denote success
*/
static int
live_callback(struct live_data_t *livedata, struct pcap_pkthdr *pkthdr,
const u_char * nextpkt)
{
ipv4_hdr_t *ip_hdr = NULL;
ipv6_hdr_t *ip6_hdr = NULL;
pcap_t *send = NULL;
static u_char *pktdata = NULL; /* full packet buffer */
int cache_mode, retcode;
static unsigned long packetnum = 0;
struct macsrc_t *node, finder; /* rb tree nodes */
#ifdef DEBUG
u_char dstmac[ETHER_ADDR_LEN];
#endif
u_int16_t l2proto;
packetnum++;
dbgx(2, "packet %lu caplen %d", packetnum, pkthdr->caplen);
/* only malloc the first time */
if (pktdata == NULL) {
/* create packet buffers */
pktdata = (u_char *)safe_malloc(MAXPACKET);
} else {
/* zero out the old packet info */
memset(pktdata, '\0', MAXPACKET);
}
/* copy the packet to our buffer */
memcpy(pktdata, nextpkt, pkthdr->caplen);
#ifdef ENABLE_VERBOSE
/* decode packet? */
if (livedata->options->verbose)
tcpdump_print(livedata->options->tcpdump, pkthdr, nextpkt);
#endif
/* lookup our source MAC in the tree */
memcpy(&finder.key, &pktdata[ETHER_ADDR_LEN], ETHER_ADDR_LEN);
#ifdef DEBUG
memcpy(&dstmac, pktdata, ETHER_ADDR_LEN);
dbgx(1, "SRC MAC: " MAC_FORMAT "\tDST MAC: " MAC_FORMAT,
MAC_STR(finder.key), MAC_STR(dstmac));
#endif
/* first, is this a packet sent locally? If so, ignore it */
if ((memcmp(livedata->options->intf1_mac, &finder.key, ETHER_ADDR_LEN)) == 0) {
dbgx(1, "Packet matches the MAC of %s, skipping.", livedata->options->intf1);
return (1);
}
else if ((memcmp(livedata->options->intf2_mac, &finder.key, ETHER_ADDR_LEN)) == 0) {
dbgx(1, "Packet matches the MAC of %s, skipping.", livedata->options->intf2);
return (1);
}
node = RB_FIND(macsrc_tree, &macsrc_root, &finder);
/* if we can't find the node, build a new one */
if (node == NULL) {
dbg(1, "Unable to find MAC in the tree");
node = new_node();
node->source = livedata->source;
memcpy(&node->key, &finder.key, ETHER_ADDR_LEN);
RB_INSERT(macsrc_tree, &macsrc_root, node);
}
/* otherwise compare sources */
else if (node->source != livedata->source) {
dbg(1, "Found the dest MAC in the tree and it doesn't match this source NIC... skipping packet");
/*
* IMPORTANT!!!
* Never send a packet out the same interface we sourced it on!
*/
return (1);
}
/* what is our cache mode? */
cache_mode = livedata->source == PCAP_INT1 ? TCPR_DIR_C2S : TCPR_DIR_S2C;
l2proto = tcpedit_l3proto(livedata->tcpedit, BEFORE_PROCESS, pktdata, pkthdr->len);
dbgx(2, "Packet protocol: %04hx", l2proto);
/* should we skip this packet based on CIDR match? */
if (l2proto == ETHERTYPE_IP) {
dbg(3, "Packet is IPv4");
ip_hdr = (ipv4_hdr_t *)tcpedit_l3data(livedata->tcpedit, BEFORE_PROCESS, pktdata, pkthdr->len);
/* look for include or exclude CIDR match */
if (livedata->options->xX.cidr != NULL) {
if (!process_xX_by_cidr_ipv4(livedata->options->xX.mode, livedata->options->xX.cidr, ip_hdr)) {
dbg(2, "Skipping IPv4 packet due to CIDR match");
return (1);
}
}
}
else if (l2proto == ETHERTYPE_IP6) {
dbg(3, "Packet is IPv6");
ip6_hdr = (ipv6_hdr_t *)tcpedit_l3data(livedata->tcpedit, BEFORE_PROCESS, pktdata, pkthdr->len);
/* look for include or exclude CIDR match */
if (livedata->options->xX.cidr != NULL) {
if (!process_xX_by_cidr_ipv6(livedata->options->xX.mode, livedata->options->xX.cidr, ip6_hdr)) {
dbg(2, "Skipping IPv6 packet due to CIDR match");
return (1);
}
}
}
if ((retcode = tcpedit_packet(livedata->tcpedit, &pkthdr, &pktdata, cache_mode)) < 0) {
if (retcode == TCPEDIT_SOFT_ERROR) {
return 1;
} else { /* TCPEDIT_ERROR */
return -1;
}
}
/*
* send packets out the OTHER interface
* and update the dst mac if necessary
*/
switch(node->source) {
case PCAP_INT1:
dbgx(2, "Packet source was %s... sending out on %s", livedata->options->intf1,
livedata->options->intf2);
send = livedata->options->pcap2;
break;
case PCAP_INT2:
dbgx(2, "Packet source was %s... sending out on %s", livedata->options->intf2,
livedata->options->intf1);
send = livedata->options->pcap1;
break;
default:
errx(-1, "wtf? our node->source != PCAP_INT1 and != PCAP_INT2: %c",
node->source);
}
/*
* write packet out on the network
*/
if (pcap_sendpacket(send, pktdata, pkthdr->caplen) < 0)
errx(-1, "Unable to send packet out %s: %s",
send == livedata->options->pcap1 ? livedata->options->intf1 : livedata->options->intf2, pcap_geterr(send));
stats.bytes_sent += pkthdr->caplen;
stats.pkts_sent++;
dbgx(1, "Sent packet " COUNTER_SPEC, stats.pkts_sent);
return (1);
} /* live_callback() */
static void
signal_catcher(int signo)
{
/* stdio in signal handlers causes a race condition, instead set a flag */
if (signo == SIGINT)
didsig = true;
}