-
Notifications
You must be signed in to change notification settings - Fork 2
/
traffic_generator.c
423 lines (359 loc) · 12.9 KB
/
traffic_generator.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
#include "traffic_generator.h"
#include <sys/queue.h>
#include "utils.h"
/*
* Used to iniitialize any code required by the
* traffic generation system.
* \param ctx the oflops context.
*/
struct pkt_details {
int traffic_gen;
uint32_t seq_num;
struct timeval timestamp;
struct ether_header *eth;
struct ether_vlan_header *eth_vlan;
struct iphdr *ip;
struct udphdr *udp;
void *data;
int data_len;
struct pktgen_hdr *pktgen;
};
/*
* Since traffic gen will have to keep only a few traffic probes, it makes sense to
* use a linear time search approach and reduce complexity.
*/
struct pkt_details **generator_state = NULL;
int start_user_traffic_generator(oflops_context *ctx);
int start_pktgen_traffic_generator(oflops_context *ctx);
int init_traf_gen(struct oflops_context *ctx) {
setuid(0);
if(system("modprobe pktgen") != 0)
perror_and_exit("modprobe pktgen failed", 1);
return 1;
}
int
add_traffic_generator(struct oflops_context *ctx, int channel, struct traf_gen_det *det) {
if(ctx->n_channels < channel) {
perror_and_exit("the channel chose to generate traffic is incorrect", 1);
}
ctx->channels[channel].det = (struct traf_gen_det *)malloc(sizeof(struct traf_gen_det));
memcpy(ctx->channels[channel].det , det, sizeof(struct traf_gen_det));
return 1;
};
int
printf_and_check(char *filename, char *msg) {
FILE *ctrl = fopen(filename, "w");
if(ctrl == NULL)
perror_and_exit("failed to open file", 1);
if (fprintf(ctrl, "%s\n", msg) < 0)
perror_and_exit("failed to write command", 1);
//printf("echo %s > %s\n", msg, filename);
fclose(ctrl);
return 1;
}
int
start_traffic_generator(oflops_context *ctx) {
if(ctx->trafficGen == PKTGEN) {
return start_pktgen_traffic_generator(ctx);
} else if(ctx->trafficGen == USER_SPACE) {
return start_user_traffic_generator(ctx);
} else {
return 0;
}
}
char *
report_pktgen_traffic_generator(oflops_context *ctx) {
int ix, len = 2048, i, size=0;
char line[2048];
char intf_file[1024];
char *ret = NULL;
for(ix = 0; ix < ctx->n_channels; ix++) {
if(ctx->channels[ix].det != NULL) {
//assume pktgen file have fixed format
//skip first 18 lines
snprintf(intf_file, 1024, "/proc/net/pktgen/%s", ctx->channels[ix].dev);
FILE *status_file = fopen(intf_file, "r");
for (i = 0 ; i < 18; i++) {
fgets(line, len, status_file);
}
ret = realloc(ret, size + sizeof("dev XXXXXXXXXXX "));
size += snprintf(&ret[size], sizeof("dev XXXXXXXXXXX "), "dev %s ", ctx->channels[ix].dev);
// snprintf("dev %s:\n", ctx->channels[ix].dev);
fgets(line, len, status_file);
//this is a new line
line[strlen(line)-1] = '\0';
ret = realloc(ret, size + strlen(line) + 1);
memcpy(ret + size, line, strlen(line) + 1);
size += strlen(line) + 1;
fgets(line, len, status_file);
line[strlen(line)-1] = ',';
ret = realloc(ret, size + strlen(line) + 1);
memcpy(ret + size - 1, line, strlen(line) + 1);
size += strlen(line) - 1;
//printf("4: %s\n", ret);
}
}
return ret;
}
char *
report_traffic_generator(oflops_context *ctx) {
if(ctx->trafficGen == PKTGEN) {
return report_pktgen_traffic_generator(ctx);
} else {
return "";
}
}
/*
* returns the time until the next packet send.
* @param generator the generator mumber for which we
* have to send next packet
* @return number of milliseconds until next packet.
*/
int
get_next_pkt(int num_generator) {
int i, tm, min_tm = 1000, min_generator = -1;
struct timeval now;
gettimeofday(&now, NULL);
for (i = 0; i < num_generator; i++) {
if(( (tm = time_diff(&now, &generator_state[i]->timestamp)) <=0) && (tm < min_tm)) {
min_tm = tm;
min_generator = i;
}
}
return min_generator;
}
int
send_pkt(struct oflops_context *ctx, int ix) {
struct timeval now;
struct pkt_details *state = generator_state[ix];
gettimeofday(&now, NULL);
state->pktgen->seq_num = htonl(state->seq_num++);
state->pktgen->time.tv_sec = htonl(now.tv_sec);
state->pktgen->time.tv_sec = htonl(now.tv_usec);
oflops_send_raw_mesg(ctx, state->traffic_gen, state->data, state->data_len);
//printf("%d: %ld.%06ld\n", state->traffic_gen, now.tv_sec, now.tv_usec);
add_time(&state->timestamp, 0, ctx->channels[state->traffic_gen].det->delay);
return 1;
}
int
read_mac_addr(uint8_t *addr, char *str) {
char *p = str, *tmp;
int i = 0;
do {
tmp = index(p, ':');
if(tmp != NULL) {
*tmp = '\0';
tmp++;
}
addr[i] = (uint8_t)strtol(p, NULL, 16);
i++;
p = tmp;
} while (p!= NULL);
//fprintf(stderr, "mac %x:%x:%x:%x:%x:%x\n", addr[0], addr[1], addr[2], addr[3], addr[4], addr[5]);
return 0;
}
int
innitialize_generator_packet(struct pkt_details *state, struct traf_gen_det *det) {
state->data = (void *)xmalloc(det->pkt_size);
state->data_len = det->pkt_size;
bzero((void *)state->data, state->data_len);
if(state->data_len < sizeof(struct ether_vlan_header) + sizeof(struct iphdr) + sizeof(struct tcphdr)) {
printf("packet size is too small\n");
return 0;
}
//ethernet header with default values
state->eth_vlan = (struct ether_vlan_header *) state->data;
state->eth = (struct ether_header *) state->data;
read_mac_addr(state->eth_vlan->ether_dhost, det->mac_dst);
read_mac_addr(state->eth_vlan->ether_shost, det->mac_src);
if(det->vlan != 0 && det->vlan != 0xffff) {
state->eth_vlan->tpid = htons(0x8100);
state->eth_vlan->vid = htons(det->vlan) >>4;
state->eth_vlan->ether_type = htons(ETHERTYPE_IP);
state->ip = (struct iphdr *)(state->data + sizeof(struct ether_vlan_header));
state->ip->tot_len=htons(state->data_len - sizeof(struct ether_vlan_header));
state->udp = (struct udphdr *)
(state->data + sizeof(struct ether_vlan_header) + sizeof(struct iphdr));
state->udp->len = htons(state->data_len - sizeof(struct ether_vlan_header) - sizeof(struct iphdr));
state->pktgen = (struct pktgen_hdr *)
(state->data + sizeof(struct ether_vlan_header) + sizeof(struct iphdr) + sizeof(struct udphdr));
} else {
state->eth->ether_type = htons(ETHERTYPE_IP);
state->ip = (struct iphdr *)(state->data + sizeof(struct ether_header));
state->ip->tot_len=htons(state->data_len - sizeof(struct ether_header));
state->udp = (struct udphdr *)
(state->data + sizeof(struct ether_header) + sizeof(struct iphdr));
state->udp->len = htons(state->data_len - sizeof(struct ether_header) - sizeof(struct iphdr));
state->pktgen = (struct pktgen_hdr *)
(state->data + sizeof(struct ether_header) + sizeof(struct iphdr) + sizeof(struct udphdr));
}
//ip header with default values
state->ip->protocol=1;
state->ip->ihl=5;
state->ip->version=4;
//state->ip->check = htons(0x9a97);
//total packet size without ethernet header
state->ip->ttl = 100;
state->ip->protocol = IPPROTO_UDP; //udp protocol
state->ip->saddr = inet_addr(det->src_ip);
state->ip->daddr = inet_addr(det->dst_ip_min); //test.nw_dst;
state->ip->check=ip_sum_calc(20, state->ip);
state->udp->source = htons(det->udp_src_port);
state->udp->dest = htons(det->udp_dst_port);
state->pktgen->magic = 0xbe9be955;
return 1;
}
int
init_traffic_gen(oflops_context *ctx) {
int num_generator = 0;
int ix;
srand(getpid());
for(ix = 0; ix < ctx->n_channels; ix++) {
if(ctx->channels[ix].det != NULL) {
num_generator++;
generator_state = (struct pkt_details **)realloc(generator_state, num_generator);
generator_state[num_generator - 1] = (struct pkt_details *)xmalloc(sizeof(struct pkt_details));
generator_state[num_generator - 1]->traffic_gen = ix;
gettimeofday(&(generator_state[num_generator - 1]->timestamp), NULL);
add_time(&(generator_state[num_generator - 1]->timestamp), 0, (rand()%1000000));
innitialize_generator_packet(generator_state[num_generator - 1], ctx->channels[ix].det);
}
}
return num_generator;
}
int
start_user_traffic_generator(oflops_context *ctx) {
int num_generator = init_traffic_gen(ctx), generator;
while(ctx->should_end == 0) {
generator = get_next_pkt(num_generator);
if(generator >= 0 ) {
send_pkt(ctx, generator);
}
};
return 1;
}
int
start_pktgen_traffic_generator(oflops_context *ctx) {
int ix;
char buf[5000];
char intf_file[1024];
char file[1024];
int i = 0;
for(ix = 0; ix < ctx->n_channels; ix++) {
sprintf(file, "/proc/net/pktgen/kpktgend_%d", i);
i++;
printf_and_check(file, "rem_device_all");
printf_and_check(file, buf);
}
i=0;
//setup generic traffic generator details
for(ix = 0; ix < ctx->n_channels; ix++) {
if(ctx->channels[ix].det != NULL) {
sprintf(file, "/proc/net/pktgen/kpktgend_%d", i);
i++;
//printf_and_check(file, "rem_device_all");
snprintf(buf, 5000, "add_device %s", ctx->channels[ix].dev);
printf_and_check(file, buf);
//printf_and_check(file, "max_before_softirq 1000");
}
}
//setup specific interface details
for(ix = 0; ix < ctx->n_channels; ix++) {
if(ctx->channels[ix].det != NULL) {
snprintf(intf_file, 1024, "/proc/net/pktgen/%s", ctx->channels[ix].dev);
printf_and_check(intf_file, "clone_skb 0");
printf_and_check(intf_file, "count 0");
snprintf(buf, 5000, "delay %d", ctx->channels[ix].det->delay);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "pkt_size %d", ctx->channels[ix].det->pkt_size);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "dst_min %s", ctx->channels[ix].det->dst_ip_min);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "dst_max %s", ctx->channels[ix].det->dst_ip_max);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "flag IPDST_RND");
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "vlan_id %d", ctx->channels[ix].det->vlan);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "vlan_p %d", ctx->channels[ix].det->vlan_p);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "vlan_cfi %d", ctx->channels[ix].det->vlan_cfi);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "dst_mac %s", ctx->channels[ix].det->mac_dst);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "src_mac %s", ctx->channels[ix].det->mac_src);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "src_min %s", ctx->channels[ix].det->src_ip);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "src_max %s", ctx->channels[ix].det->src_ip);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "tos 4");
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "udp_src_max %d", ctx->channels[ix].det->udp_src_port);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "udp_src_min %d", ctx->channels[ix].det->udp_src_port);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "udp_dst_max %d", ctx->channels[ix].det->udp_dst_port);
printf_and_check(intf_file, buf);
snprintf(buf, 5000, "udp_dst_min %d", ctx->channels[ix].det->udp_dst_port);
printf_and_check(intf_file, buf);
}
}
//start process
printf_and_check("/proc/net/pktgen/pgctrl", "start");
return 1;
};
int
stop_traffic_generator() {
//terminate process of packet generation
FILE *ctrl = fopen("/proc/net/pktgen/pgctrl", "w");
if(ctrl == NULL)
perror_and_exit("failed to open file to terminate pktgen process", 1);
if (fprintf(ctrl, "stop") < 0)
perror_and_exit("failed to stop packet generation process", 1);
fclose(ctrl);
return 1;
};
struct pktgen_hdr *
extract_pktgen_pkt(unsigned char *b, int len, struct flow *fl) {
struct ether_header *ether = (struct ether_header *)b;
struct ether_vlan_header *ether_vlan = (struct ether_vlan_header *)b;
if( (ntohs(ether->ether_type) == 0x8100) && (ntohs(ether_vlan->ether_type) == 0x0800)) {
b = b + sizeof(struct ether_vlan_header);
len -= sizeof(struct ether_vlan_header);
} else if(ntohs(ether->ether_type) == 0x0800) {
b = b + sizeof(struct ether_header);
len -= sizeof(struct ether_header);
} else {
printf("Invalid ether type found: %x\n", ntohs(ether->ether_type));
return NULL;
}
struct iphdr *ip_p = (struct iphdr *) b;
if (len < 4*ip_p->ihl) {
printf("capture too small for ip: %d\n", len);
return 0;
}
b = b + 4*ip_p->ihl;
len -= 4*ip_p->ihl;
if(fl!= NULL) {
//ethenet fields
memcpy(fl->dl_src, ether->ether_shost, 6);
memcpy(fl->dl_dst, ether->ether_dhost, 6);
if(ntohs(ether->ether_type) == 0x8100) {
fl->dl_type = ntohs(ether_vlan->ether_type);
fl->dl_vlan = (0x0FFF&ntohs(ether_vlan->vid<<4));
} else {
fl->dl_type = ntohs(ether->ether_type);
fl->dl_vlan = 0;
}
//ip fields
fl->nw_src = ip_p->saddr;
fl->nw_dst = ip_p->daddr;
//tcp/udp fields
struct udphdr *udp_p = (struct udphdr *)b;
fl->tp_src = ntohs(udp_p->source);
fl->tp_dst = ntohs(udp_p->dest);
}
b += sizeof(struct udphdr);
return (struct pktgen_hdr *)b;
}