-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcore.c
663 lines (578 loc) · 19.6 KB
/
core.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
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
/* vim: ts=4 sw=4 et */
#include <fcntl.h>
#include <unistd.h>
#include <signal.h>
#include <string.h>
#include <stdbool.h>
#include <rte_common.h>
#include <rte_cycles.h>
#include <rte_eal.h>
#include <rte_errno.h>
#include <rte_ethdev.h>
#include <rte_log.h>
#include <rte_mempool.h>
#include <rte_memzone.h>
#include <rte_prefetch.h>
#include <rte_version.h>
#ifdef RTE_LIBRTE_PDUMP
#include <rte_pdump.h>
#endif
#include "natasha.h"
/* check DPDK version */
#if RTE_VER_YEAR != 18 || RTE_VER_MONTH != 02
#error The DPDK version you are using is not supported, please use DPDK v18.02
#endif
static int
dispatch_packet(struct rte_mbuf *pkt, uint8_t port, struct core *core)
{
struct ether_hdr *eth_hdr;
uint16_t eth_type;
int status;
/* Drop only bad l3 checksumed packet earlier in the stack */
if (unlikely((pkt->ol_flags & PKT_RX_IP_CKSUM_MASK) ==
PKT_RX_IP_CKSUM_BAD)) {
core->stats->drop_bad_l3_cksum++;
rte_pktmbuf_free(pkt);
return -1;
}
if (unlikely((pkt->ol_flags & PKT_RX_L4_CKSUM_MASK) == PKT_RX_L4_CKSUM_BAD))
core->stats->rx_bad_l4_cksum++;
eth_hdr = rte_pktmbuf_mtod(pkt, struct ether_hdr *);
eth_type = eth_hdr->ether_type;
status = -1;
// We could convert eth_type to host byte order with
//
// eth_type = rte_be_to_cpu_16(eth_type)
//
// and compare against little endian numbers, but the swap instruction is a
// bottleneck: comparing eth_type against big endian numbers improves
// performances a lot (+100 000 pps).
//
// We can't call rte_cpu_to_be_16() in a switch/case (compiler raises "case
// label does not reduce to an integer constant"), hence the define.
#if RTE_BYTE_ORDER == RTE_LITTLE_ENDIAN
#define _htons(x) ((((x) & 0x00ffU) << 8) | (((x) & 0xff00U) >> 8))
#else
#define _htons(x) (x)
#endif
switch (eth_type) {
case _htons(ETHER_TYPE_IPv4):
status = ipv4_handle(pkt, port, core);
break ;
case _htons(ETHER_TYPE_ARP):
status = arp_handle(pkt, port, core);
break ;
case _htons(ETHER_TYPE_IPv6):
default:
RTE_LOG(DEBUG, APP, "Unhandled proto %x on port %d\n", eth_type, port);
break ;
}
if (status < 0) {
core->stats->drop_unhandled_ethertype++;
rte_pktmbuf_free(pkt);
}
return 0;
}
/*
* Read packets on port and call dispatch_packet for each of them.
*/
static int
handle_port(uint8_t port, struct core *core)
{
struct rte_mbuf *pkts[32];
uint16_t i;
uint16_t nb_pkts;
nb_pkts = rte_eth_rx_burst(port, core->rx_queues[port].id,
pkts, sizeof(pkts) / sizeof(*pkts));
if (unlikely(nb_pkts == 0)) {
return 0;
}
for (i = 0; i < nb_pkts - 1; ++i) {
rte_prefetch0(rte_pktmbuf_mtod(pkts[i + 1], void *));
dispatch_packet(pkts[i], port, core);
}
dispatch_packet(pkts[i], port, core);
return i;
}
/*
* Main loop, executed by every core except the master.
*/
static int
main_loop(void *pcore)
{
uint8_t port;
uint8_t eth_dev_count;
struct core *core = pcore;
eth_dev_count = rte_eth_dev_count();
while (!force_quit) {
// At any time, config.c/app_config_reload_all() can update
// core->app_config to load a new configuration. The reload function
// needs to free the old configuration, and for that it waits us to
// mark the new configuration as used, which implies we no longer
// reference the old config.
core->app_config->flags |= NAT_FLAG_USED;
for (port = 0; port < eth_dev_count; ++port) {
// Read and process incoming packets.
handle_port(port, core);
}
for (port = 0; port < eth_dev_count; ++port) {
// Write out packets.
tx_flush(port, &core->tx_queues[port], core->stats);
}
}
return 0;
}
/* Check the link status of all ports in up to 9s, and print them finally */
static void
check_ports_link_status(uint16_t port_max)
{
#define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
#define CHECK_INTERVAL 100 /* 100ms */
uint8_t count, all_ports_up;
struct rte_eth_link link;
uint16_t portid;
RTE_LOG(INFO, APP, "Checking link status\n");
for (count = 0; count <= MAX_CHECK_TIME; count++) {
all_ports_up = 1;
for (portid = 0; portid < port_max; portid++) {
memset(&link, 0, sizeof(link));
rte_eth_link_get_nowait(portid, &link);
if (link.link_status)
RTE_LOG(INFO, APP,
"Port%d Link Up. Speed %u Mbps - %s\n",
portid, link.link_speed,
(link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
("full-duplex") : ("half-duplex\n"));
else
RTE_LOG(INFO, APP, "Port %d not ready yet.\n", portid);
/* clear all_ports_up flag if any link down */
if (link.link_status == ETH_LINK_DOWN) {
all_ports_up = 0;
break;
}
}
if (all_ports_up == 0) {
RTE_LOG(INFO, APP, ".");
rte_delay_ms(CHECK_INTERVAL);
}
/* set the print_flag if all ports up or timeout */
if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
RTE_LOG(INFO, APP, "Checking link status done\n");
break;
}
}
}
int
set_vlan_offload(uint8_t port_id, struct rte_eth_dev_info *dev_info,
struct rte_eth_txconf *txq_conf,
struct rte_eth_rxconf *rxq_conf)
{
int vlan_offloads;
*txq_conf = dev_info->default_txconf;
*rxq_conf = dev_info->default_rxconf;
vlan_offloads = rte_eth_dev_get_vlan_offload(port_id);
if (vlan_offloads & ETH_VLAN_EXTEND_OFFLOAD) {
RTE_LOG(ERR, APP,
"Cannot set tx vlan offload: QinQ has been enabled.\n");
return -1;
}
if (!(dev_info->tx_offload_capa & DEV_TX_OFFLOAD_VLAN_INSERT)) {
RTE_LOG(ERR, APP, "Cannot set tx vlan offload: not supported.\n");
return -1;
}
/* enable tx vlan offloads */
txq_conf->txq_flags &= ~ETH_TXQ_FLAGS_NOOFFLOADS;
txq_conf->offloads |= DEV_TX_OFFLOAD_VLAN_INSERT;
/* enable rx vlan offloads */
rxq_conf->offloads |= (DEV_RX_OFFLOAD_VLAN_FILTER |
DEV_RX_OFFLOAD_VLAN_STRIP);
return 0;
}
int
set_rx_chksum_offload(uint8_t port_id, struct rte_eth_dev_info *dev_info,
struct rte_eth_rxconf *rxq_conf)
{
/* checking rx ip/udp/tcp offloads */
if (!(dev_info->rx_offload_capa & DEV_RX_OFFLOAD_CHECKSUM)) {
RTE_LOG(INFO, APP,
"Rx checksum offloads not supported by port %" PRIu8 ",\n",
port_id);
return -1;
}
rxq_conf->offloads |= DEV_RX_OFFLOAD_CHECKSUM;
return 0;
}
static int
setup_queues(uint8_t port, struct core *cores, unsigned int ncores,
int enable_vlan_offload)
{
char mempool_name[RTE_MEMZONE_NAMESIZE];
static const int rx_ring_size = 256;
static const int tx_ring_size = 512;
struct rte_eth_dev_info dev_info;
struct rte_eth_txconf txq_conf;
struct rte_eth_rxconf rxq_conf;
struct rte_mempool *mempool;
int per_queue_stats_enabled;
uint16_t queue_id = 0;
int rx_stats_idx;
int tx_stats_idx;
uint32_t core;
int socket;
int ret;
rte_eth_dev_info_get(port, &dev_info);
per_queue_stats_enabled = support_per_queue_statistics(port);
if (enable_vlan_offload && set_vlan_offload(port, &dev_info, &txq_conf,
&rxq_conf))
return -1;
if (set_rx_chksum_offload(port, &dev_info, &rxq_conf))
RTE_LOG(INFO, APP,
"Rx checksum offloads not enabled on port %" PRIu8 ",\n", port);
RTE_LCORE_FOREACH_SLAVE(core) {
rx_stats_idx = queue_id;
tx_stats_idx = queue_id + ncores - 1;
// NUMA socket of this processor
socket = rte_lcore_to_socket_id(core);
snprintf(mempool_name, sizeof(mempool_name), "%u:%u", port, queue_id);
mempool = rte_pktmbuf_pool_create(
mempool_name,
8192, // nb elements
512, // cache size
0, // priv size
9216 + RTE_PKTMBUF_HEADROOM, // data room size
socket // socket id
);
if (!mempool) {
RTE_LOG(ERR, APP, "Port %i: unable to create mempool: %s\n",
port, rte_strerror(rte_errno));
return -1;
}
// RX queue
ret = rte_eth_rx_queue_setup(port, queue_id, rx_ring_size, socket,
&rxq_conf, mempool);
if (ret < 0) {
RTE_LOG(ERR, APP,
"Port %i: failed to setup RX queue %i on core %i: %s\n",
port, queue_id, core, rte_strerror(rte_errno));
return ret;
}
if (per_queue_stats_enabled) {
ret = rte_eth_dev_set_rx_queue_stats_mapping(port, queue_id,
rx_stats_idx);
if (ret < 0) {
RTE_LOG(ERR, APP,
"Port %i: failed to setup statistics of RX queue %i on "
"core %i: %s\n",
port, queue_id, core, rte_strerror(rte_errno));
return ret;
}
}
// TX queue
ret = rte_eth_tx_queue_setup(port, queue_id, tx_ring_size, socket,
&txq_conf);
if (ret < 0) {
RTE_LOG(ERR, APP,
"Port %i: failed to setup TX queue %i on core %i: %s\n",
port, queue_id, core, rte_strerror(rte_errno));
return ret;
}
if (per_queue_stats_enabled) {
ret = rte_eth_dev_set_tx_queue_stats_mapping(port, queue_id,
tx_stats_idx);
if (ret < 0) {
RTE_LOG(ERR, APP,
"Port %i: failed to setup statistics of TX queue %i on "
"core %i: %s\n",
port, queue_id, core, rte_strerror(rte_errno));
return ret;
}
}
RTE_LOG(DEBUG, APP,
"Port %i: RX/TX queues %i setup on core %i (socket: %i)\n",
port, queue_id, core, socket);
cores[core].rx_queues[port].id = queue_id;
cores[core].tx_queues[port].id = queue_id;
++queue_id;
}
return 0;
}
/*
* Initialize a network port and its network queues.
*
* For each logical non-master core activated, we setup a RX and a TX queue. We
* also collect queues statistics at indexes <lcore idx> for the RX queue, and
* <lcore idx + number of cores> for the TX queue.
*
* Example with the slave cores 3, 4 and 5 activated:
*
* Core 3: RX Queue 0 (stats idx=0), TX Queue 0 (stats idx=3)
* Core 4: RX Queue 1 (stats idx=1), TX Queue 1 (stats idx=4)
* Core 5: RX Queue 2 (stats idx=2), TX Queue 2 (stats idx=5)
*
* DPDK initialization parameters documentation is available in
* docs/DPDK_INITIALIZATION.md.
*/
static int
setup_port(uint8_t port, struct app_config *app_config, struct core *cores)
{
int ret;
struct rte_eth_dev_info dev_info;
int enable_vlan_offload = 0;
unsigned int ncores;
uint16_t nqueues;
struct rte_eth_conf eth_conf = {
.link_speeds = ETH_LINK_SPEED_AUTONEG,
.rxmode = {
.mq_mode = ETH_MQ_RX_RSS,
.jumbo_frame = (app_config->ports[port].mtu > ETHER_MAX_LEN),
.max_rx_pkt_len = app_config->ports[port].mtu,
.header_split = 0,
.split_hdr_size = 0,
.hw_ip_checksum = 0,
.hw_vlan_filter = 1,
.hw_vlan_strip = 1,
.hw_vlan_extend = 0,
.hw_strip_crc = 1,
.enable_scatter = 0,
.enable_lro = 0,
},
.txmode = {
.mq_mode = ETH_MQ_TX_NONE,
.pvid = 0,
.hw_vlan_reject_tagged = 0,
.hw_vlan_reject_untagged = 0,
.hw_vlan_insert_pvid = 0,
},
.lpbk_mode=0,
.rx_adv_conf = {
.rss_conf = {
.rss_key = NULL,
.rss_key_len = 0,
.rss_hf = ETH_RSS_IP | ETH_RSS_TCP | ETH_RSS_UDP,
},
},
};
struct port_ip_addr *port_ip_addr;
rte_eth_dev_info_get(port, &dev_info);
if ((dev_info.tx_offload_capa & DEV_TX_OFFLOAD_IPV4_CKSUM) == 0 ||
(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_TCP_CKSUM) == 0 ||
(dev_info.tx_offload_capa & DEV_TX_OFFLOAD_UDP_CKSUM) == 0
) {
RTE_LOG(ERR, APP, "Port %i doesn't support IP, TCP or UDP checksum\n",
port);
return -1;
}
if (app_config->ports[port].ip_addresses == NULL) {
RTE_LOG(ERR, APP, "Missing configuration for port %i\n", port);
return -1;
}
ncores = rte_lcore_count();
// One RX and one TX queue per core, except for the master core
nqueues = ncores - 1;
ret = rte_eth_dev_configure(port, nqueues, nqueues, ð_conf);
if (ret < 0) {
RTE_LOG(ERR, APP, "Failed to configure ethernet device port %i\n",
port);
return ret;
}
// Accept traffic for VLANs
port_ip_addr = app_config->ports[port].ip_addresses;
while (port_ip_addr) {
if (port_ip_addr->addr.vlan) {
if(rte_eth_dev_vlan_filter(port, port_ip_addr->addr.vlan, 1) < 0) {
RTE_LOG(ERR, APP,
"Failed to filter traffic on vlan %i for port %i\n",
port_ip_addr->addr.vlan, port);
return -1;
}
enable_vlan_offload = 1;
}
port_ip_addr = port_ip_addr->next;
}
// Configure network queues
ret = setup_queues(port, cores, ncores, enable_vlan_offload);
if (ret < 0) {
RTE_LOG(ERR, APP, "Port %i: unable to setup network queues\n", port);
return ret;
}
// Start device
ret = rte_eth_dev_start(port);
if (ret < 0) {
RTE_LOG(ERR, APP, "Port %i: unable to start device\n", port);
return ret;
}
RTE_LOG(DEBUG, APP, "Port %i: started!\n", port);
return 0;
}
/*
* Call main_loop for each worker.
*/
static int
run_workers(struct core *cores)
{
int ret;
int core;
RTE_LCORE_FOREACH_SLAVE(core) {
ret = rte_eal_remote_launch(main_loop, &cores[core], core);
if (ret < 0) {
RTE_LOG(ERR, APP, "Cannot launch worker for core %i\n", core);
return -1;
}
}
return 0;
}
inline
struct natasha_app_stats *init_natasha_app_stats(void) {
struct natasha_app_stats *stats;
/* alloc memory initialized with zeros */
stats = rte_zmalloc("nat stats", sizeof(*stats), 0);
if (stats == NULL) {
RTE_LOG(EMERG, APP, "nat stats zmalloc failed\n");
return NULL;
}
return stats;
}
/*
* Initialize Ethernet ports and workers.
*/
static int
setup_app(struct core *cores, int argc, char **argv)
{
int ret;
struct app_config *app_config;
uint8_t port;
uint8_t eth_dev_count;
unsigned ncores;
unsigned int core;
// Parse configuration
app_config = app_config_load(argc, argv, SOCKET_ID_ANY);
if (app_config == NULL) {
RTE_LOG(ERR, APP, "Unable to load configuration\n");
return -1;
}
eth_dev_count = rte_eth_dev_count();
if (eth_dev_count == 0) {
RTE_LOG(ERR, APP, "No network device using DPDK-compatible driver\n");
return -1;
}
ncores = rte_lcore_count();
if (ncores < 2) {
RTE_LOG(ERR, APP,
"Invalid coremask. The master core being used for the "
"administration server, at least one other core needs "
"to be activated for networking\n");
return -1;
}
RTE_LOG(INFO, APP, "Using %i ethernet devices\n", eth_dev_count);
RTE_LOG(INFO, APP, "Using %i logical cores\n", ncores);
// Configure ports
for (port = 0; port < eth_dev_count; ++port) {
RTE_LOG(INFO, APP, "Configuring port %i...\n", port);
ret = setup_port(port, app_config, cores);
if (ret < 0) {
RTE_LOG(ERR, APP, "Cannot initialize network ports\n");
return -1;
}
}
check_ports_link_status(eth_dev_count);
// Configuration for the master core is only used to setup ports.
app_config_free(app_config);
// Initialize workers
RTE_LCORE_FOREACH_SLAVE(core) {
cores[core].id = core;
memset(&cores[core].app_config, 0, sizeof(cores[core].app_config));
/* init natasha stats per core */
cores[core].stats = init_natasha_app_stats();
if (!cores[core].stats) {
RTE_LOG(ERR, APP, "Cannot init per core stats\n");
return -1;
}
}
// Load the configuration for each worker
if (app_config_reload_all(cores, argc, argv) < 0) {
return -1;
}
return 0;
}
void
natasha_exit()
{
uint32_t lcore_id;
uint16_t portid;
/* stop and wait for slaves */
force_quit = true;
RTE_LCORE_FOREACH_SLAVE(lcore_id) {
if (rte_eal_wait_lcore(lcore_id) < 0)
RTE_LOG(WARNING, APP, "Core %d exited with failure !\n", lcore_id);
else
RTE_LOG(INFO, APP, "Core %d successfuly stoped.\n", lcore_id);
}
#ifdef RTE_LIBRTE_PDUMP
rte_pdump_uninit();
#endif
RTE_ETH_FOREACH_DEV(portid) {
RTE_LOG(INFO, APP, "Stopping port %i...", portid);
rte_eth_dev_stop(portid);
rte_eth_dev_close(portid);
RTE_LOG(INFO, APP, "Done\n");
}
/*
* TODO:
* free app configuration, TBD when reworking app conf structures
*/
}
static void
sigterm_handler(int signum)
{
if (signum != SIGTERM) {
RTE_LOG(WARNING, APP, "Received signal %s cannot be handled\n",
strsignal(signum));
return;
}
RTE_LOG(WARNING, APP, "Received signal %s, preparing to exit...\n",
strsignal(signum));
natasha_exit();
signal(signum, SIG_DFL);
kill(getpid(), signum);
}
int
#ifndef UNITTEST
main(int argc, char **argv)
#else
natasha(int argc, char **argv)
#endif
{
int ret;
struct core cores[RTE_MAX_LCORE] = {};
int flags;
// RTE_LOG logs on stderr. If stderr is a pipe (for instance in the case
// natasha is managed by supervisord) and the pipe is full because no one
// is reading on the other end (which happens if supervisor's reader
// crashes — which happens —), the logging will become blocking and the app
// will be stuck.
// In this case, we prefer to lose logging rather than having a non-working
// application.
if ((flags = fcntl(STDERR_FILENO, F_GETFL, 0)) < 0 ||
fcntl(STDERR_FILENO, F_SETFL, flags | O_NONBLOCK) < 0) {
rte_exit(EXIT_FAILURE, "Unable to set stderr as non-blocking\n");
}
force_quit = false;
signal(SIGTERM, sigterm_handler);
ret = rte_eal_init(argc, argv);
if (ret < 0) {
rte_exit(EXIT_FAILURE, "Error with EAL initialization\n");
}
argc -= ret;
argv += ret;
#ifdef RTE_LIBRTE_PDUMP
RTE_LOG(INFO, APP, "Initialize packet capture framework\n");
rte_pdump_init(NULL);
#endif
if (setup_app(cores, argc, argv) < 0) {
rte_exit(EXIT_FAILURE, "Unable to setup app\n");
}
if (run_workers(cores) < 0) {
rte_exit(EXIT_FAILURE, "Unable to run workers\n");
}
return adm_server(cores, argc, argv);
}