]> git.proxmox.com Git - mirror_ovs.git/blob - lib/netdev-dpdk.c
netdev-dpdk: Add missed lock in set_config for vhost client mode.
[mirror_ovs.git] / lib / netdev-dpdk.c
1 /*
2 * Copyright (c) 2014, 2015, 2016 Nicira, Inc.
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17 #include <config.h>
18
19 #include <string.h>
20 #include <signal.h>
21 #include <stdlib.h>
22 #include <pthread.h>
23 #include <config.h>
24 #include <errno.h>
25 #include <sched.h>
26 #include <stdlib.h>
27 #include <unistd.h>
28 #include <sys/stat.h>
29 #include <stdio.h>
30 #include <sys/types.h>
31 #include <sys/stat.h>
32 #include <getopt.h>
33
34 #include "dirs.h"
35 #include "dp-packet.h"
36 #include "dpif-netdev.h"
37 #include "fatal-signal.h"
38 #include "netdev-dpdk.h"
39 #include "netdev-provider.h"
40 #include "netdev-vport.h"
41 #include "odp-util.h"
42 #include "openvswitch/dynamic-string.h"
43 #include "openvswitch/list.h"
44 #include "openvswitch/ofp-print.h"
45 #include "openvswitch/vlog.h"
46 #include "ovs-numa.h"
47 #include "ovs-thread.h"
48 #include "ovs-rcu.h"
49 #include "packets.h"
50 #include "openvswitch/shash.h"
51 #include "smap.h"
52 #include "sset.h"
53 #include "unaligned.h"
54 #include "timeval.h"
55 #include "unixctl.h"
56
57 #include "rte_config.h"
58 #include "rte_mbuf.h"
59 #include "rte_meter.h"
60 #ifdef DPDK_PDUMP
61 #include "rte_pdump.h"
62 #endif
63 #include "rte_virtio_net.h"
64
65 VLOG_DEFINE_THIS_MODULE(dpdk);
66 static struct vlog_rate_limit rl = VLOG_RATE_LIMIT_INIT(5, 20);
67
68 #define DPDK_PORT_WATCHDOG_INTERVAL 5
69
70 #define OVS_CACHE_LINE_SIZE CACHE_LINE_SIZE
71 #define OVS_VPORT_DPDK "ovs_dpdk"
72
73 /*
74 * need to reserve tons of extra space in the mbufs so we can align the
75 * DMA addresses to 4KB.
76 * The minimum mbuf size is limited to avoid scatter behaviour and drop in
77 * performance for standard Ethernet MTU.
78 */
79 #define ETHER_HDR_MAX_LEN (ETHER_HDR_LEN + ETHER_CRC_LEN + (2 * VLAN_HEADER_LEN))
80 #define MTU_TO_FRAME_LEN(mtu) ((mtu) + ETHER_HDR_LEN + ETHER_CRC_LEN)
81 #define MTU_TO_MAX_FRAME_LEN(mtu) ((mtu) + ETHER_HDR_MAX_LEN)
82 #define FRAME_LEN_TO_MTU(frame_len) ((frame_len)- ETHER_HDR_LEN - ETHER_CRC_LEN)
83 #define MBUF_SIZE(mtu) ( MTU_TO_MAX_FRAME_LEN(mtu) \
84 + sizeof(struct dp_packet) \
85 + RTE_PKTMBUF_HEADROOM)
86 #define NETDEV_DPDK_MBUF_ALIGN 1024
87 #define NETDEV_DPDK_MAX_PKT_LEN 9728
88
89 /* Max and min number of packets in the mempool. OVS tries to allocate a
90 * mempool with MAX_NB_MBUF: if this fails (because the system doesn't have
91 * enough hugepages) we keep halving the number until the allocation succeeds
92 * or we reach MIN_NB_MBUF */
93
94 #define MAX_NB_MBUF (4096 * 64)
95 #define MIN_NB_MBUF (4096 * 4)
96 #define MP_CACHE_SZ RTE_MEMPOOL_CACHE_MAX_SIZE
97
98 /* MAX_NB_MBUF can be divided by 2 many times, until MIN_NB_MBUF */
99 BUILD_ASSERT_DECL(MAX_NB_MBUF % ROUND_DOWN_POW2(MAX_NB_MBUF/MIN_NB_MBUF) == 0);
100
101 /* The smallest possible NB_MBUF that we're going to try should be a multiple
102 * of MP_CACHE_SZ. This is advised by DPDK documentation. */
103 BUILD_ASSERT_DECL((MAX_NB_MBUF / ROUND_DOWN_POW2(MAX_NB_MBUF/MIN_NB_MBUF))
104 % MP_CACHE_SZ == 0);
105
106 /*
107 * DPDK XSTATS Counter names definition
108 */
109 #define XSTAT_RX_64_PACKETS "rx_size_64_packets"
110 #define XSTAT_RX_65_TO_127_PACKETS "rx_size_65_to_127_packets"
111 #define XSTAT_RX_128_TO_255_PACKETS "rx_size_128_to_255_packets"
112 #define XSTAT_RX_256_TO_511_PACKETS "rx_size_256_to_511_packets"
113 #define XSTAT_RX_512_TO_1023_PACKETS "rx_size_512_to_1023_packets"
114 #define XSTAT_RX_1024_TO_1522_PACKETS "rx_size_1024_to_1522_packets"
115 #define XSTAT_RX_1523_TO_MAX_PACKETS "rx_size_1523_to_max_packets"
116
117 #define XSTAT_TX_64_PACKETS "tx_size_64_packets"
118 #define XSTAT_TX_65_TO_127_PACKETS "tx_size_65_to_127_packets"
119 #define XSTAT_TX_128_TO_255_PACKETS "tx_size_128_to_255_packets"
120 #define XSTAT_TX_256_TO_511_PACKETS "tx_size_256_to_511_packets"
121 #define XSTAT_TX_512_TO_1023_PACKETS "tx_size_512_to_1023_packets"
122 #define XSTAT_TX_1024_TO_1522_PACKETS "tx_size_1024_to_1522_packets"
123 #define XSTAT_TX_1523_TO_MAX_PACKETS "tx_size_1523_to_max_packets"
124
125 #define XSTAT_TX_MULTICAST_PACKETS "tx_multicast_packets"
126 #define XSTAT_RX_BROADCAST_PACKETS "rx_broadcast_packets"
127 #define XSTAT_TX_BROADCAST_PACKETS "tx_broadcast_packets"
128 #define XSTAT_RX_UNDERSIZED_ERRORS "rx_undersized_errors"
129 #define XSTAT_RX_OVERSIZE_ERRORS "rx_oversize_errors"
130 #define XSTAT_RX_FRAGMENTED_ERRORS "rx_fragmented_errors"
131 #define XSTAT_RX_JABBER_ERRORS "rx_jabber_errors"
132
133 #define SOCKET0 0
134
135 #define NIC_PORT_RX_Q_SIZE 2048 /* Size of Physical NIC RX Queue, Max (n+32<=4096)*/
136 #define NIC_PORT_TX_Q_SIZE 2048 /* Size of Physical NIC TX Queue, Max (n+32<=4096)*/
137
138 #define OVS_VHOST_MAX_QUEUE_NUM 1024 /* Maximum number of vHost TX queues. */
139 #define OVS_VHOST_QUEUE_MAP_UNKNOWN (-1) /* Mapping not initialized. */
140 #define OVS_VHOST_QUEUE_DISABLED (-2) /* Queue was disabled by guest and not
141 * yet mapped to another queue. */
142
143 static char *vhost_sock_dir = NULL; /* Location of vhost-user sockets */
144
145 #define VHOST_ENQ_RETRY_NUM 8
146 #define IF_NAME_SZ (PATH_MAX > IFNAMSIZ ? PATH_MAX : IFNAMSIZ)
147
148 static const struct rte_eth_conf port_conf = {
149 .rxmode = {
150 .mq_mode = ETH_MQ_RX_RSS,
151 .split_hdr_size = 0,
152 .header_split = 0, /* Header Split disabled */
153 .hw_ip_checksum = 0, /* IP checksum offload disabled */
154 .hw_vlan_filter = 0, /* VLAN filtering disabled */
155 .jumbo_frame = 0, /* Jumbo Frame Support disabled */
156 .hw_strip_crc = 0,
157 },
158 .rx_adv_conf = {
159 .rss_conf = {
160 .rss_key = NULL,
161 .rss_hf = ETH_RSS_IP | ETH_RSS_UDP | ETH_RSS_TCP,
162 },
163 },
164 .txmode = {
165 .mq_mode = ETH_MQ_TX_NONE,
166 },
167 };
168
169 enum { DPDK_RING_SIZE = 256 };
170 BUILD_ASSERT_DECL(IS_POW2(DPDK_RING_SIZE));
171 enum { DRAIN_TSC = 200000ULL };
172
173 enum dpdk_dev_type {
174 DPDK_DEV_ETH = 0,
175 DPDK_DEV_VHOST = 1,
176 };
177
178 static int rte_eal_init_ret = ENODEV;
179
180 static struct ovs_mutex dpdk_mutex = OVS_MUTEX_INITIALIZER;
181
182 /* Quality of Service */
183
184 /* An instance of a QoS configuration. Always associated with a particular
185 * network device.
186 *
187 * Each QoS implementation subclasses this with whatever additional data it
188 * needs.
189 */
190 struct qos_conf {
191 const struct dpdk_qos_ops *ops;
192 };
193
194 /* A particular implementation of dpdk QoS operations.
195 *
196 * The functions below return 0 if successful or a positive errno value on
197 * failure, except where otherwise noted. All of them must be provided, except
198 * where otherwise noted.
199 */
200 struct dpdk_qos_ops {
201
202 /* Name of the QoS type */
203 const char *qos_name;
204
205 /* Called to construct the QoS implementation on 'netdev'. The
206 * implementation should make the appropriate calls to configure QoS
207 * according to 'details'. The implementation may assume that any current
208 * QoS configuration already installed should be destroyed before
209 * constructing the new configuration.
210 *
211 * The contents of 'details' should be documented as valid for 'ovs_name'
212 * in the "other_config" column in the "QoS" table in vswitchd/vswitch.xml
213 * (which is built as ovs-vswitchd.conf.db(8)).
214 *
215 * This function must return 0 if and only if it sets 'netdev->qos_conf'
216 * to an initialized 'struct qos_conf'.
217 *
218 * For all QoS implementations it should always be non-null.
219 */
220 int (*qos_construct)(struct netdev *netdev, const struct smap *details);
221
222 /* Destroys the data structures allocated by the implementation as part of
223 * 'qos_conf.
224 *
225 * For all QoS implementations it should always be non-null.
226 */
227 void (*qos_destruct)(struct netdev *netdev, struct qos_conf *conf);
228
229 /* Retrieves details of 'netdev->qos_conf' configuration into 'details'.
230 *
231 * The contents of 'details' should be documented as valid for 'ovs_name'
232 * in the "other_config" column in the "QoS" table in vswitchd/vswitch.xml
233 * (which is built as ovs-vswitchd.conf.db(8)).
234 */
235 int (*qos_get)(const struct netdev *netdev, struct smap *details);
236
237 /* Reconfigures 'netdev->qos_conf' according to 'details', performing any
238 * required calls to complete the reconfiguration.
239 *
240 * The contents of 'details' should be documented as valid for 'ovs_name'
241 * in the "other_config" column in the "QoS" table in vswitchd/vswitch.xml
242 * (which is built as ovs-vswitchd.conf.db(8)).
243 *
244 * This function may be null if 'qos_conf' is not configurable.
245 */
246 int (*qos_set)(struct netdev *netdev, const struct smap *details);
247
248 /* Modify an array of rte_mbufs. The modification is specific to
249 * each qos implementation.
250 *
251 * The function should take and array of mbufs and an int representing
252 * the current number of mbufs present in the array.
253 *
254 * After the function has performed a qos modification to the array of
255 * mbufs it returns an int representing the number of mbufs now present in
256 * the array. This value is can then be passed to the port send function
257 * along with the modified array for transmission.
258 *
259 * For all QoS implementations it should always be non-null.
260 */
261 int (*qos_run)(struct netdev *netdev, struct rte_mbuf **pkts,
262 int pkt_cnt);
263 };
264
265 /* dpdk_qos_ops for each type of user space QoS implementation */
266 static const struct dpdk_qos_ops egress_policer_ops;
267
268 /*
269 * Array of dpdk_qos_ops, contains pointer to all supported QoS
270 * operations.
271 */
272 static const struct dpdk_qos_ops *const qos_confs[] = {
273 &egress_policer_ops,
274 NULL
275 };
276
277 /* Contains all 'struct dpdk_dev's. */
278 static struct ovs_list dpdk_list OVS_GUARDED_BY(dpdk_mutex)
279 = OVS_LIST_INITIALIZER(&dpdk_list);
280
281 static struct ovs_list dpdk_mp_list OVS_GUARDED_BY(dpdk_mutex)
282 = OVS_LIST_INITIALIZER(&dpdk_mp_list);
283
284 /* This mutex must be used by non pmd threads when allocating or freeing
285 * mbufs through mempools. */
286 static struct ovs_mutex nonpmd_mempool_mutex = OVS_MUTEX_INITIALIZER;
287
288 struct dpdk_mp {
289 struct rte_mempool *mp;
290 int mtu;
291 int socket_id;
292 int refcount;
293 struct ovs_list list_node OVS_GUARDED_BY(dpdk_mutex);
294 };
295
296 /* There should be one 'struct dpdk_tx_queue' created for
297 * each cpu core. */
298 struct dpdk_tx_queue {
299 rte_spinlock_t tx_lock; /* Protects the members and the NIC queue
300 * from concurrent access. It is used only
301 * if the queue is shared among different
302 * pmd threads (see 'concurrent_txq'). */
303 int map; /* Mapping of configured vhost-user queues
304 * to enabled by guest. */
305 };
306
307 /* dpdk has no way to remove dpdk ring ethernet devices
308 so we have to keep them around once they've been created
309 */
310
311 static struct ovs_list dpdk_ring_list OVS_GUARDED_BY(dpdk_mutex)
312 = OVS_LIST_INITIALIZER(&dpdk_ring_list);
313
314 struct dpdk_ring {
315 /* For the client rings */
316 struct rte_ring *cring_tx;
317 struct rte_ring *cring_rx;
318 unsigned int user_port_id; /* User given port no, parsed from port name */
319 int eth_port_id; /* ethernet device port id */
320 struct ovs_list list_node OVS_GUARDED_BY(dpdk_mutex);
321 };
322
323 struct ingress_policer {
324 struct rte_meter_srtcm_params app_srtcm_params;
325 struct rte_meter_srtcm in_policer;
326 rte_spinlock_t policer_lock;
327 };
328
329 struct netdev_dpdk {
330 struct netdev up;
331 int port_id;
332 int max_packet_len;
333 enum dpdk_dev_type type;
334
335 struct dpdk_tx_queue *tx_q;
336
337 struct ovs_mutex mutex OVS_ACQ_AFTER(dpdk_mutex);
338
339 struct dpdk_mp *dpdk_mp;
340 int mtu;
341 int socket_id;
342 int buf_size;
343 struct netdev_stats stats;
344 /* Protects stats */
345 rte_spinlock_t stats_lock;
346
347 struct eth_addr hwaddr;
348 enum netdev_flags flags;
349
350 struct rte_eth_link link;
351 int link_reset_cnt;
352
353 /* virtio identifier for vhost devices */
354 ovsrcu_index vid;
355
356 /* True if vHost device is 'up' and has been reconfigured at least once */
357 bool vhost_reconfigured;
358
359 /* Identifier used to distinguish vhost devices from each other. */
360 char vhost_id[PATH_MAX];
361
362 /* In dpdk_list. */
363 struct ovs_list list_node OVS_GUARDED_BY(dpdk_mutex);
364
365 /* QoS configuration and lock for the device */
366 struct qos_conf *qos_conf;
367 rte_spinlock_t qos_lock;
368
369 /* The following properties cannot be changed when a device is running,
370 * so we remember the request and update them next time
371 * netdev_dpdk*_reconfigure() is called */
372 int requested_mtu;
373 int requested_n_txq;
374 int requested_n_rxq;
375
376 /* Socket ID detected when vHost device is brought up */
377 int requested_socket_id;
378
379 /* Denotes whether vHost port is client/server mode */
380 uint64_t vhost_driver_flags;
381
382 /* Ingress Policer */
383 OVSRCU_TYPE(struct ingress_policer *) ingress_policer;
384 uint32_t policer_rate;
385 uint32_t policer_burst;
386
387 /* DPDK-ETH Flow control */
388 struct rte_eth_fc_conf fc_conf;
389 };
390
391 struct netdev_rxq_dpdk {
392 struct netdev_rxq up;
393 int port_id;
394 };
395
396 static bool dpdk_thread_is_pmd(void);
397
398 static int netdev_dpdk_construct(struct netdev *);
399
400 int netdev_dpdk_get_vid(const struct netdev_dpdk *dev);
401
402 struct ingress_policer *
403 netdev_dpdk_get_ingress_policer(const struct netdev_dpdk *dev);
404
405 static bool
406 is_dpdk_class(const struct netdev_class *class)
407 {
408 return class->construct == netdev_dpdk_construct;
409 }
410
411 /* DPDK NIC drivers allocate RX buffers at a particular granularity, typically
412 * aligned at 1k or less. If a declared mbuf size is not a multiple of this
413 * value, insufficient buffers are allocated to accomodate the packet in its
414 * entirety. Furthermore, certain drivers need to ensure that there is also
415 * sufficient space in the Rx buffer to accommodate two VLAN tags (for QinQ
416 * frames). If the RX buffer is too small, then the driver enables scatter RX
417 * behaviour, which reduces performance. To prevent this, use a buffer size that
418 * is closest to 'mtu', but which satisfies the aforementioned criteria.
419 */
420 static uint32_t
421 dpdk_buf_size(int mtu)
422 {
423 return ROUND_UP((MTU_TO_MAX_FRAME_LEN(mtu) + RTE_PKTMBUF_HEADROOM),
424 NETDEV_DPDK_MBUF_ALIGN);
425 }
426
427 /* XXX: use dpdk malloc for entire OVS. in fact huge page should be used
428 * for all other segments data, bss and text. */
429
430 static void *
431 dpdk_rte_mzalloc(size_t sz)
432 {
433 void *ptr;
434
435 ptr = rte_zmalloc(OVS_VPORT_DPDK, sz, OVS_CACHE_LINE_SIZE);
436 if (ptr == NULL) {
437 out_of_memory();
438 }
439 return ptr;
440 }
441
442 /* XXX this function should be called only by pmd threads (or by non pmd
443 * threads holding the nonpmd_mempool_mutex) */
444 void
445 free_dpdk_buf(struct dp_packet *p)
446 {
447 struct rte_mbuf *pkt = (struct rte_mbuf *) p;
448
449 rte_pktmbuf_free(pkt);
450 }
451
452 static void
453 ovs_rte_pktmbuf_init(struct rte_mempool *mp,
454 void *opaque_arg OVS_UNUSED,
455 void *_m,
456 unsigned i OVS_UNUSED)
457 {
458 struct rte_mbuf *m = _m;
459
460 rte_pktmbuf_init(mp, opaque_arg, _m, i);
461
462 dp_packet_init_dpdk((struct dp_packet *) m, m->buf_len);
463 }
464
465 static struct dpdk_mp *
466 dpdk_mp_get(int socket_id, int mtu) OVS_REQUIRES(dpdk_mutex)
467 {
468 struct dpdk_mp *dmp = NULL;
469 char mp_name[RTE_MEMPOOL_NAMESIZE];
470 unsigned mp_size;
471 struct rte_pktmbuf_pool_private mbp_priv;
472
473 LIST_FOR_EACH (dmp, list_node, &dpdk_mp_list) {
474 if (dmp->socket_id == socket_id && dmp->mtu == mtu) {
475 dmp->refcount++;
476 return dmp;
477 }
478 }
479
480 dmp = dpdk_rte_mzalloc(sizeof *dmp);
481 dmp->socket_id = socket_id;
482 dmp->mtu = mtu;
483 dmp->refcount = 1;
484 mbp_priv.mbuf_data_room_size = MBUF_SIZE(mtu) - sizeof(struct dp_packet);
485 mbp_priv.mbuf_priv_size = sizeof (struct dp_packet)
486 - sizeof (struct rte_mbuf);
487 /* XXX: this is a really rough method of provisioning memory.
488 * It's impossible to determine what the exact memory requirements are when
489 * the number of ports and rxqs that utilize a particular mempool can change
490 * dynamically at runtime. For the moment, use this rough heurisitic.
491 */
492 if (mtu >= ETHER_MTU) {
493 mp_size = MAX_NB_MBUF;
494 } else {
495 mp_size = MIN_NB_MBUF;
496 }
497
498 do {
499 if (snprintf(mp_name, RTE_MEMPOOL_NAMESIZE, "ovs_mp_%d_%d_%u",
500 dmp->mtu, dmp->socket_id, mp_size) < 0) {
501 goto fail;
502 }
503
504 dmp->mp = rte_mempool_create(mp_name, mp_size, MBUF_SIZE(mtu),
505 MP_CACHE_SZ,
506 sizeof(struct rte_pktmbuf_pool_private),
507 rte_pktmbuf_pool_init, &mbp_priv,
508 ovs_rte_pktmbuf_init, NULL,
509 socket_id, 0);
510 } while (!dmp->mp && rte_errno == ENOMEM && (mp_size /= 2) >= MIN_NB_MBUF);
511
512 if (dmp->mp == NULL) {
513 goto fail;
514 } else {
515 VLOG_DBG("Allocated \"%s\" mempool with %u mbufs", mp_name, mp_size );
516 }
517
518 ovs_list_push_back(&dpdk_mp_list, &dmp->list_node);
519 return dmp;
520
521 fail:
522 rte_free(dmp);
523 return NULL;
524 }
525
526 static void
527 dpdk_mp_put(struct dpdk_mp *dmp) OVS_REQUIRES(dpdk_mutex)
528 {
529 if (!dmp) {
530 return;
531 }
532
533 ovs_assert(dmp->refcount);
534
535 if (!--dmp->refcount) {
536 ovs_list_remove(&dmp->list_node);
537 rte_mempool_free(dmp->mp);
538 rte_free(dmp);
539 }
540 }
541
542 /* Tries to allocate new mempool on requested_socket_id with
543 * mbuf size corresponding to requested_mtu.
544 * On success new configuration will be applied.
545 * On error, device will be left unchanged. */
546 static int
547 netdev_dpdk_mempool_configure(struct netdev_dpdk *dev)
548 OVS_REQUIRES(dpdk_mutex)
549 OVS_REQUIRES(dev->mutex)
550 {
551 uint32_t buf_size = dpdk_buf_size(dev->requested_mtu);
552 struct dpdk_mp *mp;
553
554 mp = dpdk_mp_get(dev->requested_socket_id, FRAME_LEN_TO_MTU(buf_size));
555 if (!mp) {
556 VLOG_ERR("Insufficient memory to create memory pool for netdev "
557 "%s, with MTU %d on socket %d\n",
558 dev->up.name, dev->requested_mtu, dev->requested_socket_id);
559 return ENOMEM;
560 } else {
561 dpdk_mp_put(dev->dpdk_mp);
562 dev->dpdk_mp = mp;
563 dev->mtu = dev->requested_mtu;
564 dev->socket_id = dev->requested_socket_id;
565 dev->max_packet_len = MTU_TO_FRAME_LEN(dev->mtu);
566 }
567
568 return 0;
569 }
570
571 static void
572 check_link_status(struct netdev_dpdk *dev)
573 {
574 struct rte_eth_link link;
575
576 rte_eth_link_get_nowait(dev->port_id, &link);
577
578 if (dev->link.link_status != link.link_status) {
579 netdev_change_seq_changed(&dev->up);
580
581 dev->link_reset_cnt++;
582 dev->link = link;
583 if (dev->link.link_status) {
584 VLOG_DBG_RL(&rl, "Port %d Link Up - speed %u Mbps - %s",
585 dev->port_id, (unsigned)dev->link.link_speed,
586 (dev->link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
587 ("full-duplex") : ("half-duplex"));
588 } else {
589 VLOG_DBG_RL(&rl, "Port %d Link Down", dev->port_id);
590 }
591 }
592 }
593
594 static void *
595 dpdk_watchdog(void *dummy OVS_UNUSED)
596 {
597 struct netdev_dpdk *dev;
598
599 pthread_detach(pthread_self());
600
601 for (;;) {
602 ovs_mutex_lock(&dpdk_mutex);
603 LIST_FOR_EACH (dev, list_node, &dpdk_list) {
604 ovs_mutex_lock(&dev->mutex);
605 if (dev->type == DPDK_DEV_ETH) {
606 check_link_status(dev);
607 }
608 ovs_mutex_unlock(&dev->mutex);
609 }
610 ovs_mutex_unlock(&dpdk_mutex);
611 xsleep(DPDK_PORT_WATCHDOG_INTERVAL);
612 }
613
614 return NULL;
615 }
616
617 static int
618 dpdk_eth_dev_queue_setup(struct netdev_dpdk *dev, int n_rxq, int n_txq)
619 {
620 int diag = 0;
621 int i;
622 struct rte_eth_conf conf = port_conf;
623
624 if (dev->mtu > ETHER_MTU) {
625 conf.rxmode.jumbo_frame = 1;
626 conf.rxmode.max_rx_pkt_len = dev->max_packet_len;
627 } else {
628 conf.rxmode.jumbo_frame = 0;
629 conf.rxmode.max_rx_pkt_len = 0;
630 }
631 /* A device may report more queues than it makes available (this has
632 * been observed for Intel xl710, which reserves some of them for
633 * SRIOV): rte_eth_*_queue_setup will fail if a queue is not
634 * available. When this happens we can retry the configuration
635 * and request less queues */
636 while (n_rxq && n_txq) {
637 if (diag) {
638 VLOG_INFO("Retrying setup with (rxq:%d txq:%d)", n_rxq, n_txq);
639 }
640
641 diag = rte_eth_dev_configure(dev->port_id, n_rxq, n_txq, &conf);
642 if (diag) {
643 VLOG_WARN("Interface %s eth_dev setup error %s\n",
644 dev->up.name, rte_strerror(-diag));
645 break;
646 }
647
648 for (i = 0; i < n_txq; i++) {
649 diag = rte_eth_tx_queue_setup(dev->port_id, i, NIC_PORT_TX_Q_SIZE,
650 dev->socket_id, NULL);
651 if (diag) {
652 VLOG_INFO("Interface %s txq(%d) setup error: %s",
653 dev->up.name, i, rte_strerror(-diag));
654 break;
655 }
656 }
657
658 if (i != n_txq) {
659 /* Retry with less tx queues */
660 n_txq = i;
661 continue;
662 }
663
664 for (i = 0; i < n_rxq; i++) {
665 diag = rte_eth_rx_queue_setup(dev->port_id, i, NIC_PORT_RX_Q_SIZE,
666 dev->socket_id, NULL,
667 dev->dpdk_mp->mp);
668 if (diag) {
669 VLOG_INFO("Interface %s rxq(%d) setup error: %s",
670 dev->up.name, i, rte_strerror(-diag));
671 break;
672 }
673 }
674
675 if (i != n_rxq) {
676 /* Retry with less rx queues */
677 n_rxq = i;
678 continue;
679 }
680
681 dev->up.n_rxq = n_rxq;
682 dev->up.n_txq = n_txq;
683
684 return 0;
685 }
686
687 return diag;
688 }
689
690 static void
691 dpdk_eth_flow_ctrl_setup(struct netdev_dpdk *dev) OVS_REQUIRES(dev->mutex)
692 {
693 if (rte_eth_dev_flow_ctrl_set(dev->port_id, &dev->fc_conf)) {
694 VLOG_WARN("Failed to enable flow control on device %d", dev->port_id);
695 }
696 }
697
698 static int
699 dpdk_eth_dev_init(struct netdev_dpdk *dev) OVS_REQUIRES(dpdk_mutex)
700 {
701 struct rte_pktmbuf_pool_private *mbp_priv;
702 struct rte_eth_dev_info info;
703 struct ether_addr eth_addr;
704 int diag;
705 int n_rxq, n_txq;
706
707 if (!rte_eth_dev_is_valid_port(dev->port_id)) {
708 return ENODEV;
709 }
710
711 rte_eth_dev_info_get(dev->port_id, &info);
712
713 n_rxq = MIN(info.max_rx_queues, dev->up.n_rxq);
714 n_txq = MIN(info.max_tx_queues, dev->up.n_txq);
715
716 diag = dpdk_eth_dev_queue_setup(dev, n_rxq, n_txq);
717 if (diag) {
718 VLOG_ERR("Interface %s(rxq:%d txq:%d) configure error: %s",
719 dev->up.name, n_rxq, n_txq, rte_strerror(-diag));
720 return -diag;
721 }
722
723 diag = rte_eth_dev_start(dev->port_id);
724 if (diag) {
725 VLOG_ERR("Interface %s start error: %s", dev->up.name,
726 rte_strerror(-diag));
727 return -diag;
728 }
729
730 rte_eth_promiscuous_enable(dev->port_id);
731 rte_eth_allmulticast_enable(dev->port_id);
732
733 memset(&eth_addr, 0x0, sizeof(eth_addr));
734 rte_eth_macaddr_get(dev->port_id, &eth_addr);
735 VLOG_INFO_RL(&rl, "Port %d: "ETH_ADDR_FMT"",
736 dev->port_id, ETH_ADDR_BYTES_ARGS(eth_addr.addr_bytes));
737
738 memcpy(dev->hwaddr.ea, eth_addr.addr_bytes, ETH_ADDR_LEN);
739 rte_eth_link_get_nowait(dev->port_id, &dev->link);
740
741 mbp_priv = rte_mempool_get_priv(dev->dpdk_mp->mp);
742 dev->buf_size = mbp_priv->mbuf_data_room_size - RTE_PKTMBUF_HEADROOM;
743
744 dev->flags = NETDEV_UP | NETDEV_PROMISC;
745
746 /* Get the Flow control configuration for DPDK-ETH */
747 diag = rte_eth_dev_flow_ctrl_get(dev->port_id, &dev->fc_conf);
748 if (diag) {
749 VLOG_DBG("cannot get flow control parameters on port=%d, err=%d",
750 dev->port_id, diag);
751 }
752
753 return 0;
754 }
755
756 static struct netdev_dpdk *
757 netdev_dpdk_cast(const struct netdev *netdev)
758 {
759 return CONTAINER_OF(netdev, struct netdev_dpdk, up);
760 }
761
762 static struct netdev *
763 netdev_dpdk_alloc(void)
764 {
765 struct netdev_dpdk *dev;
766
767 if (!rte_eal_init_ret) { /* Only after successful initialization */
768 dev = dpdk_rte_mzalloc(sizeof *dev);
769 if (dev) {
770 return &dev->up;
771 }
772 }
773 return NULL;
774 }
775
776 static void
777 netdev_dpdk_alloc_txq(struct netdev_dpdk *dev, unsigned int n_txqs)
778 {
779 unsigned i;
780
781 dev->tx_q = dpdk_rte_mzalloc(n_txqs * sizeof *dev->tx_q);
782 for (i = 0; i < n_txqs; i++) {
783 /* Initialize map for vhost devices. */
784 dev->tx_q[i].map = OVS_VHOST_QUEUE_MAP_UNKNOWN;
785 rte_spinlock_init(&dev->tx_q[i].tx_lock);
786 }
787 }
788
789 static int
790 netdev_dpdk_init(struct netdev *netdev, unsigned int port_no,
791 enum dpdk_dev_type type)
792 OVS_REQUIRES(dpdk_mutex)
793 {
794 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
795 int sid;
796 int err = 0;
797
798 ovs_mutex_init(&dev->mutex);
799 ovs_mutex_lock(&dev->mutex);
800
801 rte_spinlock_init(&dev->stats_lock);
802
803 /* If the 'sid' is negative, it means that the kernel fails
804 * to obtain the pci numa info. In that situation, always
805 * use 'SOCKET0'. */
806 if (type == DPDK_DEV_ETH) {
807 sid = rte_eth_dev_socket_id(port_no);
808 } else {
809 sid = rte_lcore_to_socket_id(rte_get_master_lcore());
810 }
811
812 dev->socket_id = sid < 0 ? SOCKET0 : sid;
813 dev->requested_socket_id = dev->socket_id;
814 dev->port_id = port_no;
815 dev->type = type;
816 dev->flags = 0;
817 dev->requested_mtu = dev->mtu = ETHER_MTU;
818 dev->max_packet_len = MTU_TO_FRAME_LEN(dev->mtu);
819 ovsrcu_index_init(&dev->vid, -1);
820 dev->vhost_reconfigured = false;
821
822 err = netdev_dpdk_mempool_configure(dev);
823 if (err) {
824 goto unlock;
825 }
826
827 /* Initialise QoS configuration to NULL and qos lock to unlocked */
828 dev->qos_conf = NULL;
829 rte_spinlock_init(&dev->qos_lock);
830
831 /* Initialise rcu pointer for ingress policer to NULL */
832 ovsrcu_init(&dev->ingress_policer, NULL);
833 dev->policer_rate = 0;
834 dev->policer_burst = 0;
835
836 netdev->n_rxq = NR_QUEUE;
837 netdev->n_txq = NR_QUEUE;
838 dev->requested_n_rxq = netdev->n_rxq;
839 dev->requested_n_txq = netdev->n_txq;
840
841 /* Initialize the flow control to NULL */
842 memset(&dev->fc_conf, 0, sizeof dev->fc_conf);
843 if (type == DPDK_DEV_ETH) {
844 err = dpdk_eth_dev_init(dev);
845 if (err) {
846 goto unlock;
847 }
848 netdev_dpdk_alloc_txq(dev, netdev->n_txq);
849 } else {
850 netdev_dpdk_alloc_txq(dev, OVS_VHOST_MAX_QUEUE_NUM);
851 /* Enable DPDK_DEV_VHOST device and set promiscuous mode flag. */
852 dev->flags = NETDEV_UP | NETDEV_PROMISC;
853 }
854
855 ovs_list_push_back(&dpdk_list, &dev->list_node);
856
857 unlock:
858 ovs_mutex_unlock(&dev->mutex);
859 return err;
860 }
861
862 /* dev_name must be the prefix followed by a positive decimal number.
863 * (no leading + or - signs are allowed) */
864 static int
865 dpdk_dev_parse_name(const char dev_name[], const char prefix[],
866 unsigned int *port_no)
867 {
868 const char *cport;
869
870 if (strncmp(dev_name, prefix, strlen(prefix))) {
871 return ENODEV;
872 }
873
874 cport = dev_name + strlen(prefix);
875
876 if (str_to_uint(cport, 10, port_no)) {
877 return 0;
878 } else {
879 return ENODEV;
880 }
881 }
882
883 static int
884 netdev_dpdk_vhost_construct(struct netdev *netdev)
885 {
886 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
887 const char *name = netdev->name;
888 int err;
889
890 /* 'name' is appended to 'vhost_sock_dir' and used to create a socket in
891 * the file system. '/' or '\' would traverse directories, so they're not
892 * acceptable in 'name'. */
893 if (strchr(name, '/') || strchr(name, '\\')) {
894 VLOG_ERR("\"%s\" is not a valid name for a vhost-user port. "
895 "A valid name must not include '/' or '\\'",
896 name);
897 return EINVAL;
898 }
899
900 if (rte_eal_init_ret) {
901 return rte_eal_init_ret;
902 }
903
904 ovs_mutex_lock(&dpdk_mutex);
905 /* Take the name of the vhost-user port and append it to the location where
906 * the socket is to be created, then register the socket.
907 */
908 snprintf(dev->vhost_id, sizeof dev->vhost_id, "%s/%s",
909 vhost_sock_dir, name);
910
911 dev->vhost_driver_flags &= ~RTE_VHOST_USER_CLIENT;
912 err = rte_vhost_driver_register(dev->vhost_id, dev->vhost_driver_flags);
913 if (err) {
914 VLOG_ERR("vhost-user socket device setup failure for socket %s\n",
915 dev->vhost_id);
916 } else {
917 fatal_signal_add_file_to_unlink(dev->vhost_id);
918 VLOG_INFO("Socket %s created for vhost-user port %s\n",
919 dev->vhost_id, name);
920 }
921 err = netdev_dpdk_init(netdev, -1, DPDK_DEV_VHOST);
922
923 ovs_mutex_unlock(&dpdk_mutex);
924 return err;
925 }
926
927 static int
928 netdev_dpdk_vhost_client_construct(struct netdev *netdev)
929 {
930 int err;
931
932 if (rte_eal_init_ret) {
933 return rte_eal_init_ret;
934 }
935
936 ovs_mutex_lock(&dpdk_mutex);
937 err = netdev_dpdk_init(netdev, -1, DPDK_DEV_VHOST);
938 ovs_mutex_unlock(&dpdk_mutex);
939 return err;
940 }
941
942 static int
943 netdev_dpdk_construct(struct netdev *netdev)
944 {
945 unsigned int port_no;
946 int err;
947
948 if (rte_eal_init_ret) {
949 return rte_eal_init_ret;
950 }
951
952 /* Names always start with "dpdk" */
953 err = dpdk_dev_parse_name(netdev->name, "dpdk", &port_no);
954 if (err) {
955 return err;
956 }
957
958 ovs_mutex_lock(&dpdk_mutex);
959 err = netdev_dpdk_init(netdev, port_no, DPDK_DEV_ETH);
960 ovs_mutex_unlock(&dpdk_mutex);
961 return err;
962 }
963
964 static void
965 netdev_dpdk_destruct(struct netdev *netdev)
966 {
967 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
968
969 ovs_mutex_lock(&dpdk_mutex);
970 ovs_mutex_lock(&dev->mutex);
971
972 rte_eth_dev_stop(dev->port_id);
973 free(ovsrcu_get_protected(struct ingress_policer *,
974 &dev->ingress_policer));
975
976 rte_free(dev->tx_q);
977 ovs_list_remove(&dev->list_node);
978 dpdk_mp_put(dev->dpdk_mp);
979
980 ovs_mutex_unlock(&dev->mutex);
981 ovs_mutex_unlock(&dpdk_mutex);
982 }
983
984 /* rte_vhost_driver_unregister() can call back destroy_device(), which will
985 * try to acquire 'dpdk_mutex' and possibly 'dev->mutex'. To avoid a
986 * deadlock, none of the mutexes must be held while calling this function. */
987 static int
988 dpdk_vhost_driver_unregister(struct netdev_dpdk *dev OVS_UNUSED,
989 char *vhost_id)
990 OVS_EXCLUDED(dpdk_mutex)
991 OVS_EXCLUDED(dev->mutex)
992 {
993 return rte_vhost_driver_unregister(vhost_id);
994 }
995
996 static void
997 netdev_dpdk_vhost_destruct(struct netdev *netdev)
998 {
999 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1000 char *vhost_id;
1001
1002 ovs_mutex_lock(&dpdk_mutex);
1003 ovs_mutex_lock(&dev->mutex);
1004
1005 /* Guest becomes an orphan if still attached. */
1006 if (netdev_dpdk_get_vid(dev) >= 0
1007 && !(dev->vhost_driver_flags & RTE_VHOST_USER_CLIENT)) {
1008 VLOG_ERR("Removing port '%s' while vhost device still attached.",
1009 netdev->name);
1010 VLOG_ERR("To restore connectivity after re-adding of port, VM on socket"
1011 " '%s' must be restarted.", dev->vhost_id);
1012 }
1013
1014 free(ovsrcu_get_protected(struct ingress_policer *,
1015 &dev->ingress_policer));
1016
1017 rte_free(dev->tx_q);
1018 ovs_list_remove(&dev->list_node);
1019 dpdk_mp_put(dev->dpdk_mp);
1020
1021 vhost_id = xstrdup(dev->vhost_id);
1022
1023 ovs_mutex_unlock(&dev->mutex);
1024 ovs_mutex_unlock(&dpdk_mutex);
1025
1026 if (dpdk_vhost_driver_unregister(dev, vhost_id)) {
1027 VLOG_ERR("Unable to remove vhost-user socket %s", vhost_id);
1028 } else if (!(dev->vhost_driver_flags & RTE_VHOST_USER_CLIENT)) {
1029 /* OVS server mode - remove this socket from list for deletion */
1030 fatal_signal_remove_file_to_unlink(vhost_id);
1031 }
1032 free(vhost_id);
1033 }
1034
1035 static void
1036 netdev_dpdk_dealloc(struct netdev *netdev)
1037 {
1038 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1039
1040 rte_free(dev);
1041 }
1042
1043 static int
1044 netdev_dpdk_get_config(const struct netdev *netdev, struct smap *args)
1045 {
1046 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1047
1048 ovs_mutex_lock(&dev->mutex);
1049
1050 smap_add_format(args, "requested_rx_queues", "%d", dev->requested_n_rxq);
1051 smap_add_format(args, "configured_rx_queues", "%d", netdev->n_rxq);
1052 smap_add_format(args, "requested_tx_queues", "%d", dev->requested_n_txq);
1053 smap_add_format(args, "configured_tx_queues", "%d", netdev->n_txq);
1054 smap_add_format(args, "mtu", "%d", dev->mtu);
1055 ovs_mutex_unlock(&dev->mutex);
1056
1057 return 0;
1058 }
1059
1060 static void
1061 dpdk_set_rxq_config(struct netdev_dpdk *dev, const struct smap *args)
1062 {
1063 int new_n_rxq;
1064
1065 new_n_rxq = MAX(smap_get_int(args, "n_rxq", dev->requested_n_rxq), 1);
1066 if (new_n_rxq != dev->requested_n_rxq) {
1067 dev->requested_n_rxq = new_n_rxq;
1068 netdev_request_reconfigure(&dev->up);
1069 }
1070 }
1071
1072 static int
1073 netdev_dpdk_set_config(struct netdev *netdev, const struct smap *args)
1074 {
1075 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1076
1077 ovs_mutex_lock(&dev->mutex);
1078
1079 dpdk_set_rxq_config(dev, args);
1080
1081 /* Flow control support is only available for DPDK Ethernet ports. */
1082 bool rx_fc_en = false;
1083 bool tx_fc_en = false;
1084 enum rte_eth_fc_mode fc_mode_set[2][2] =
1085 {{RTE_FC_NONE, RTE_FC_TX_PAUSE},
1086 {RTE_FC_RX_PAUSE, RTE_FC_FULL}
1087 };
1088 rx_fc_en = smap_get_bool(args, "rx-flow-ctrl", false);
1089 tx_fc_en = smap_get_bool(args, "tx-flow-ctrl", false);
1090 dev->fc_conf.autoneg = smap_get_bool(args, "flow-ctrl-autoneg", false);
1091 dev->fc_conf.mode = fc_mode_set[tx_fc_en][rx_fc_en];
1092
1093 dpdk_eth_flow_ctrl_setup(dev);
1094
1095 ovs_mutex_unlock(&dev->mutex);
1096
1097 return 0;
1098 }
1099
1100 static int
1101 netdev_dpdk_ring_set_config(struct netdev *netdev, const struct smap *args)
1102 {
1103 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1104
1105 ovs_mutex_lock(&dev->mutex);
1106 dpdk_set_rxq_config(dev, args);
1107 ovs_mutex_unlock(&dev->mutex);
1108
1109 return 0;
1110 }
1111
1112 static int
1113 netdev_dpdk_vhost_client_set_config(struct netdev *netdev,
1114 const struct smap *args)
1115 {
1116 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1117 const char *path;
1118
1119 ovs_mutex_lock(&dev->mutex);
1120 if (!(dev->vhost_driver_flags & RTE_VHOST_USER_CLIENT)) {
1121 path = smap_get(args, "vhost-server-path");
1122 if (path && strcmp(path, dev->vhost_id)) {
1123 strcpy(dev->vhost_id, path);
1124 netdev_request_reconfigure(netdev);
1125 }
1126 }
1127 ovs_mutex_unlock(&dev->mutex);
1128
1129 return 0;
1130 }
1131
1132 static int
1133 netdev_dpdk_get_numa_id(const struct netdev *netdev)
1134 {
1135 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1136
1137 return dev->socket_id;
1138 }
1139
1140 /* Sets the number of tx queues for the dpdk interface. */
1141 static int
1142 netdev_dpdk_set_tx_multiq(struct netdev *netdev, unsigned int n_txq)
1143 {
1144 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1145
1146 ovs_mutex_lock(&dev->mutex);
1147
1148 if (dev->requested_n_txq == n_txq) {
1149 goto out;
1150 }
1151
1152 dev->requested_n_txq = n_txq;
1153 netdev_request_reconfigure(netdev);
1154
1155 out:
1156 ovs_mutex_unlock(&dev->mutex);
1157 return 0;
1158 }
1159
1160 static struct netdev_rxq *
1161 netdev_dpdk_rxq_alloc(void)
1162 {
1163 struct netdev_rxq_dpdk *rx = dpdk_rte_mzalloc(sizeof *rx);
1164
1165 return &rx->up;
1166 }
1167
1168 static struct netdev_rxq_dpdk *
1169 netdev_rxq_dpdk_cast(const struct netdev_rxq *rxq)
1170 {
1171 return CONTAINER_OF(rxq, struct netdev_rxq_dpdk, up);
1172 }
1173
1174 static int
1175 netdev_dpdk_rxq_construct(struct netdev_rxq *rxq)
1176 {
1177 struct netdev_rxq_dpdk *rx = netdev_rxq_dpdk_cast(rxq);
1178 struct netdev_dpdk *dev = netdev_dpdk_cast(rxq->netdev);
1179
1180 ovs_mutex_lock(&dev->mutex);
1181 rx->port_id = dev->port_id;
1182 ovs_mutex_unlock(&dev->mutex);
1183
1184 return 0;
1185 }
1186
1187 static void
1188 netdev_dpdk_rxq_destruct(struct netdev_rxq *rxq OVS_UNUSED)
1189 {
1190 }
1191
1192 static void
1193 netdev_dpdk_rxq_dealloc(struct netdev_rxq *rxq)
1194 {
1195 struct netdev_rxq_dpdk *rx = netdev_rxq_dpdk_cast(rxq);
1196
1197 rte_free(rx);
1198 }
1199
1200 static inline void
1201 netdev_dpdk_eth_tx_burst(struct netdev_dpdk *dev, int qid,
1202 struct rte_mbuf **pkts, int cnt)
1203 {
1204 uint32_t nb_tx = 0;
1205
1206 while (nb_tx != cnt) {
1207 uint32_t ret;
1208
1209 ret = rte_eth_tx_burst(dev->port_id, qid, pkts + nb_tx, cnt - nb_tx);
1210 if (!ret) {
1211 break;
1212 }
1213
1214 nb_tx += ret;
1215 }
1216
1217 if (OVS_UNLIKELY(nb_tx != cnt)) {
1218 /* free buffers, which we couldn't transmit, one at a time (each
1219 * packet could come from a different mempool) */
1220 int i;
1221
1222 for (i = nb_tx; i < cnt; i++) {
1223 rte_pktmbuf_free(pkts[i]);
1224 }
1225 rte_spinlock_lock(&dev->stats_lock);
1226 dev->stats.tx_dropped += cnt - nb_tx;
1227 rte_spinlock_unlock(&dev->stats_lock);
1228 }
1229 }
1230
1231 static inline bool
1232 netdev_dpdk_policer_pkt_handle(struct rte_meter_srtcm *meter,
1233 struct rte_mbuf *pkt, uint64_t time)
1234 {
1235 uint32_t pkt_len = rte_pktmbuf_pkt_len(pkt) - sizeof(struct ether_hdr);
1236
1237 return rte_meter_srtcm_color_blind_check(meter, time, pkt_len) ==
1238 e_RTE_METER_GREEN;
1239 }
1240
1241 static int
1242 netdev_dpdk_policer_run(struct rte_meter_srtcm *meter,
1243 struct rte_mbuf **pkts, int pkt_cnt)
1244 {
1245 int i = 0;
1246 int cnt = 0;
1247 struct rte_mbuf *pkt = NULL;
1248 uint64_t current_time = rte_rdtsc();
1249
1250 for (i = 0; i < pkt_cnt; i++) {
1251 pkt = pkts[i];
1252 /* Handle current packet */
1253 if (netdev_dpdk_policer_pkt_handle(meter, pkt, current_time)) {
1254 if (cnt != i) {
1255 pkts[cnt] = pkt;
1256 }
1257 cnt++;
1258 } else {
1259 rte_pktmbuf_free(pkt);
1260 }
1261 }
1262
1263 return cnt;
1264 }
1265
1266 static int
1267 ingress_policer_run(struct ingress_policer *policer, struct rte_mbuf **pkts,
1268 int pkt_cnt)
1269 {
1270 int cnt = 0;
1271
1272 rte_spinlock_lock(&policer->policer_lock);
1273 cnt = netdev_dpdk_policer_run(&policer->in_policer, pkts, pkt_cnt);
1274 rte_spinlock_unlock(&policer->policer_lock);
1275
1276 return cnt;
1277 }
1278
1279 static bool
1280 is_vhost_running(struct netdev_dpdk *dev)
1281 {
1282 return (netdev_dpdk_get_vid(dev) >= 0 && dev->vhost_reconfigured);
1283 }
1284
1285 static inline void
1286 netdev_dpdk_vhost_update_rx_size_counters(struct netdev_stats *stats,
1287 unsigned int packet_size)
1288 {
1289 /* Hard-coded search for the size bucket. */
1290 if (packet_size < 256) {
1291 if (packet_size >= 128) {
1292 stats->rx_128_to_255_packets++;
1293 } else if (packet_size <= 64) {
1294 stats->rx_1_to_64_packets++;
1295 } else {
1296 stats->rx_65_to_127_packets++;
1297 }
1298 } else {
1299 if (packet_size >= 1523) {
1300 stats->rx_1523_to_max_packets++;
1301 } else if (packet_size >= 1024) {
1302 stats->rx_1024_to_1522_packets++;
1303 } else if (packet_size < 512) {
1304 stats->rx_256_to_511_packets++;
1305 } else {
1306 stats->rx_512_to_1023_packets++;
1307 }
1308 }
1309 }
1310
1311 static inline void
1312 netdev_dpdk_vhost_update_rx_counters(struct netdev_stats *stats,
1313 struct dp_packet **packets, int count,
1314 int dropped)
1315 {
1316 int i;
1317 unsigned int packet_size;
1318 struct dp_packet *packet;
1319
1320 stats->rx_packets += count;
1321 stats->rx_dropped += dropped;
1322 for (i = 0; i < count; i++) {
1323 packet = packets[i];
1324 packet_size = dp_packet_size(packet);
1325
1326 if (OVS_UNLIKELY(packet_size < ETH_HEADER_LEN)) {
1327 /* This only protects the following multicast counting from
1328 * too short packets, but it does not stop the packet from
1329 * further processing. */
1330 stats->rx_errors++;
1331 stats->rx_length_errors++;
1332 continue;
1333 }
1334
1335 netdev_dpdk_vhost_update_rx_size_counters(stats, packet_size);
1336
1337 struct eth_header *eh = (struct eth_header *) dp_packet_data(packet);
1338 if (OVS_UNLIKELY(eth_addr_is_multicast(eh->eth_dst))) {
1339 stats->multicast++;
1340 }
1341
1342 stats->rx_bytes += packet_size;
1343 }
1344 }
1345
1346 /*
1347 * The receive path for the vhost port is the TX path out from guest.
1348 */
1349 static int
1350 netdev_dpdk_vhost_rxq_recv(struct netdev_rxq *rxq,
1351 struct dp_packet_batch *batch)
1352 {
1353 struct netdev_dpdk *dev = netdev_dpdk_cast(rxq->netdev);
1354 int qid = rxq->queue_id;
1355 struct ingress_policer *policer = netdev_dpdk_get_ingress_policer(dev);
1356 uint16_t nb_rx = 0;
1357 uint16_t dropped = 0;
1358
1359 if (OVS_UNLIKELY(!is_vhost_running(dev)
1360 || !(dev->flags & NETDEV_UP))) {
1361 return EAGAIN;
1362 }
1363
1364 nb_rx = rte_vhost_dequeue_burst(netdev_dpdk_get_vid(dev),
1365 qid * VIRTIO_QNUM + VIRTIO_TXQ,
1366 dev->dpdk_mp->mp,
1367 (struct rte_mbuf **) batch->packets,
1368 NETDEV_MAX_BURST);
1369 if (!nb_rx) {
1370 return EAGAIN;
1371 }
1372
1373 if (policer) {
1374 dropped = nb_rx;
1375 nb_rx = ingress_policer_run(policer,
1376 (struct rte_mbuf **) batch->packets,
1377 nb_rx);
1378 dropped -= nb_rx;
1379 }
1380
1381 rte_spinlock_lock(&dev->stats_lock);
1382 netdev_dpdk_vhost_update_rx_counters(&dev->stats, batch->packets,
1383 nb_rx, dropped);
1384 rte_spinlock_unlock(&dev->stats_lock);
1385
1386 batch->count = (int) nb_rx;
1387 return 0;
1388 }
1389
1390 static int
1391 netdev_dpdk_rxq_recv(struct netdev_rxq *rxq, struct dp_packet_batch *batch)
1392 {
1393 struct netdev_rxq_dpdk *rx = netdev_rxq_dpdk_cast(rxq);
1394 struct netdev_dpdk *dev = netdev_dpdk_cast(rxq->netdev);
1395 struct ingress_policer *policer = netdev_dpdk_get_ingress_policer(dev);
1396 int nb_rx;
1397 int dropped = 0;
1398
1399 nb_rx = rte_eth_rx_burst(rx->port_id, rxq->queue_id,
1400 (struct rte_mbuf **) batch->packets,
1401 NETDEV_MAX_BURST);
1402 if (!nb_rx) {
1403 return EAGAIN;
1404 }
1405
1406 if (policer) {
1407 dropped = nb_rx;
1408 nb_rx = ingress_policer_run(policer,
1409 (struct rte_mbuf **)batch->packets,
1410 nb_rx);
1411 dropped -= nb_rx;
1412 }
1413
1414 /* Update stats to reflect dropped packets */
1415 if (OVS_UNLIKELY(dropped)) {
1416 rte_spinlock_lock(&dev->stats_lock);
1417 dev->stats.rx_dropped += dropped;
1418 rte_spinlock_unlock(&dev->stats_lock);
1419 }
1420
1421 batch->count = nb_rx;
1422
1423 return 0;
1424 }
1425
1426 static inline int
1427 netdev_dpdk_qos_run__(struct netdev_dpdk *dev, struct rte_mbuf **pkts,
1428 int cnt)
1429 {
1430 struct netdev *netdev = &dev->up;
1431
1432 if (dev->qos_conf != NULL) {
1433 rte_spinlock_lock(&dev->qos_lock);
1434 if (dev->qos_conf != NULL) {
1435 cnt = dev->qos_conf->ops->qos_run(netdev, pkts, cnt);
1436 }
1437 rte_spinlock_unlock(&dev->qos_lock);
1438 }
1439
1440 return cnt;
1441 }
1442
1443 static int
1444 netdev_dpdk_filter_packet_len(struct netdev_dpdk *dev, struct rte_mbuf **pkts,
1445 int pkt_cnt)
1446 {
1447 int i = 0;
1448 int cnt = 0;
1449 struct rte_mbuf *pkt;
1450
1451 for (i = 0; i < pkt_cnt; i++) {
1452 pkt = pkts[i];
1453 if (OVS_UNLIKELY(pkt->pkt_len > dev->max_packet_len)) {
1454 VLOG_WARN_RL(&rl, "%s: Too big size %" PRIu32 " max_packet_len %d",
1455 dev->up.name, pkt->pkt_len, dev->max_packet_len);
1456 rte_pktmbuf_free(pkt);
1457 continue;
1458 }
1459
1460 if (OVS_UNLIKELY(i != cnt)) {
1461 pkts[cnt] = pkt;
1462 }
1463 cnt++;
1464 }
1465
1466 return cnt;
1467 }
1468
1469 static inline void
1470 netdev_dpdk_vhost_update_tx_counters(struct netdev_stats *stats,
1471 struct dp_packet **packets,
1472 int attempted,
1473 int dropped)
1474 {
1475 int i;
1476 int sent = attempted - dropped;
1477
1478 stats->tx_packets += sent;
1479 stats->tx_dropped += dropped;
1480
1481 for (i = 0; i < sent; i++) {
1482 stats->tx_bytes += dp_packet_size(packets[i]);
1483 }
1484 }
1485
1486 static void
1487 __netdev_dpdk_vhost_send(struct netdev *netdev, int qid,
1488 struct dp_packet **pkts, int cnt)
1489 {
1490 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1491 struct rte_mbuf **cur_pkts = (struct rte_mbuf **) pkts;
1492 unsigned int total_pkts = cnt;
1493 unsigned int dropped = 0;
1494 int i, retries = 0;
1495
1496 qid = dev->tx_q[qid % netdev->n_txq].map;
1497
1498 if (OVS_UNLIKELY(!is_vhost_running(dev) || qid < 0
1499 || !(dev->flags & NETDEV_UP))) {
1500 rte_spinlock_lock(&dev->stats_lock);
1501 dev->stats.tx_dropped+= cnt;
1502 rte_spinlock_unlock(&dev->stats_lock);
1503 goto out;
1504 }
1505
1506 rte_spinlock_lock(&dev->tx_q[qid].tx_lock);
1507
1508 cnt = netdev_dpdk_filter_packet_len(dev, cur_pkts, cnt);
1509 /* Check has QoS has been configured for the netdev */
1510 cnt = netdev_dpdk_qos_run__(dev, cur_pkts, cnt);
1511 dropped = total_pkts - cnt;
1512
1513 do {
1514 int vhost_qid = qid * VIRTIO_QNUM + VIRTIO_RXQ;
1515 unsigned int tx_pkts;
1516
1517 tx_pkts = rte_vhost_enqueue_burst(netdev_dpdk_get_vid(dev),
1518 vhost_qid, cur_pkts, cnt);
1519 if (OVS_LIKELY(tx_pkts)) {
1520 /* Packets have been sent.*/
1521 cnt -= tx_pkts;
1522 /* Prepare for possible retry.*/
1523 cur_pkts = &cur_pkts[tx_pkts];
1524 } else {
1525 /* No packets sent - do not retry.*/
1526 break;
1527 }
1528 } while (cnt && (retries++ <= VHOST_ENQ_RETRY_NUM));
1529
1530 rte_spinlock_unlock(&dev->tx_q[qid].tx_lock);
1531
1532 rte_spinlock_lock(&dev->stats_lock);
1533 netdev_dpdk_vhost_update_tx_counters(&dev->stats, pkts, total_pkts,
1534 cnt + dropped);
1535 rte_spinlock_unlock(&dev->stats_lock);
1536
1537 out:
1538 for (i = 0; i < total_pkts - dropped; i++) {
1539 dp_packet_delete(pkts[i]);
1540 }
1541 }
1542
1543 /* Tx function. Transmit packets indefinitely */
1544 static void
1545 dpdk_do_tx_copy(struct netdev *netdev, int qid, struct dp_packet_batch *batch)
1546 OVS_NO_THREAD_SAFETY_ANALYSIS
1547 {
1548 #if !defined(__CHECKER__) && !defined(_WIN32)
1549 const size_t PKT_ARRAY_SIZE = batch->count;
1550 #else
1551 /* Sparse or MSVC doesn't like variable length array. */
1552 enum { PKT_ARRAY_SIZE = NETDEV_MAX_BURST };
1553 #endif
1554 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1555 struct rte_mbuf *mbufs[PKT_ARRAY_SIZE];
1556 int dropped = 0;
1557 int newcnt = 0;
1558 int i;
1559
1560 /* If we are on a non pmd thread we have to use the mempool mutex, because
1561 * every non pmd thread shares the same mempool cache */
1562
1563 if (!dpdk_thread_is_pmd()) {
1564 ovs_mutex_lock(&nonpmd_mempool_mutex);
1565 }
1566
1567 dp_packet_batch_apply_cutlen(batch);
1568
1569 for (i = 0; i < batch->count; i++) {
1570 int size = dp_packet_size(batch->packets[i]);
1571
1572 if (OVS_UNLIKELY(size > dev->max_packet_len)) {
1573 VLOG_WARN_RL(&rl, "Too big size %d max_packet_len %d",
1574 (int)size , dev->max_packet_len);
1575
1576 dropped++;
1577 continue;
1578 }
1579
1580 mbufs[newcnt] = rte_pktmbuf_alloc(dev->dpdk_mp->mp);
1581
1582 if (!mbufs[newcnt]) {
1583 dropped += batch->count - i;
1584 break;
1585 }
1586
1587 /* We have to do a copy for now */
1588 memcpy(rte_pktmbuf_mtod(mbufs[newcnt], void *),
1589 dp_packet_data(batch->packets[i]), size);
1590
1591 rte_pktmbuf_data_len(mbufs[newcnt]) = size;
1592 rte_pktmbuf_pkt_len(mbufs[newcnt]) = size;
1593
1594 newcnt++;
1595 }
1596
1597 if (dev->type == DPDK_DEV_VHOST) {
1598 __netdev_dpdk_vhost_send(netdev, qid, (struct dp_packet **) mbufs,
1599 newcnt);
1600 } else {
1601 unsigned int qos_pkts = newcnt;
1602
1603 /* Check if QoS has been configured for this netdev. */
1604 newcnt = netdev_dpdk_qos_run__(dev, mbufs, newcnt);
1605
1606 dropped += qos_pkts - newcnt;
1607 netdev_dpdk_eth_tx_burst(dev, qid, mbufs, newcnt);
1608 }
1609
1610 if (OVS_UNLIKELY(dropped)) {
1611 rte_spinlock_lock(&dev->stats_lock);
1612 dev->stats.tx_dropped += dropped;
1613 rte_spinlock_unlock(&dev->stats_lock);
1614 }
1615
1616 if (!dpdk_thread_is_pmd()) {
1617 ovs_mutex_unlock(&nonpmd_mempool_mutex);
1618 }
1619 }
1620
1621 static int
1622 netdev_dpdk_vhost_send(struct netdev *netdev, int qid,
1623 struct dp_packet_batch *batch,
1624 bool may_steal, bool concurrent_txq OVS_UNUSED)
1625 {
1626
1627 if (OVS_UNLIKELY(!may_steal || batch->packets[0]->source != DPBUF_DPDK)) {
1628 dpdk_do_tx_copy(netdev, qid, batch);
1629 dp_packet_delete_batch(batch, may_steal);
1630 } else {
1631 dp_packet_batch_apply_cutlen(batch);
1632 __netdev_dpdk_vhost_send(netdev, qid, batch->packets, batch->count);
1633 }
1634 return 0;
1635 }
1636
1637 static inline void
1638 netdev_dpdk_send__(struct netdev_dpdk *dev, int qid,
1639 struct dp_packet_batch *batch, bool may_steal,
1640 bool concurrent_txq)
1641 {
1642 if (OVS_UNLIKELY(concurrent_txq)) {
1643 qid = qid % dev->up.n_txq;
1644 rte_spinlock_lock(&dev->tx_q[qid].tx_lock);
1645 }
1646
1647 if (OVS_UNLIKELY(!may_steal ||
1648 batch->packets[0]->source != DPBUF_DPDK)) {
1649 struct netdev *netdev = &dev->up;
1650
1651 dpdk_do_tx_copy(netdev, qid, batch);
1652 dp_packet_delete_batch(batch, may_steal);
1653 } else {
1654 int dropped;
1655 int cnt = batch->count;
1656 struct rte_mbuf **cur_pkts = (struct rte_mbuf **) batch->packets;
1657
1658 dp_packet_batch_apply_cutlen(batch);
1659
1660 cnt = netdev_dpdk_filter_packet_len(dev, cur_pkts, cnt);
1661 cnt = netdev_dpdk_qos_run__(dev, cur_pkts, cnt);
1662 dropped = batch->count - cnt;
1663
1664 netdev_dpdk_eth_tx_burst(dev, qid, cur_pkts, cnt);
1665
1666 if (OVS_UNLIKELY(dropped)) {
1667 rte_spinlock_lock(&dev->stats_lock);
1668 dev->stats.tx_dropped += dropped;
1669 rte_spinlock_unlock(&dev->stats_lock);
1670 }
1671 }
1672
1673 if (OVS_UNLIKELY(concurrent_txq)) {
1674 rte_spinlock_unlock(&dev->tx_q[qid].tx_lock);
1675 }
1676 }
1677
1678 static int
1679 netdev_dpdk_eth_send(struct netdev *netdev, int qid,
1680 struct dp_packet_batch *batch, bool may_steal,
1681 bool concurrent_txq)
1682 {
1683 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1684
1685 netdev_dpdk_send__(dev, qid, batch, may_steal, concurrent_txq);
1686 return 0;
1687 }
1688
1689 static int
1690 netdev_dpdk_set_etheraddr(struct netdev *netdev, const struct eth_addr mac)
1691 {
1692 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1693
1694 ovs_mutex_lock(&dev->mutex);
1695 if (!eth_addr_equals(dev->hwaddr, mac)) {
1696 dev->hwaddr = mac;
1697 netdev_change_seq_changed(netdev);
1698 }
1699 ovs_mutex_unlock(&dev->mutex);
1700
1701 return 0;
1702 }
1703
1704 static int
1705 netdev_dpdk_get_etheraddr(const struct netdev *netdev, struct eth_addr *mac)
1706 {
1707 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1708
1709 ovs_mutex_lock(&dev->mutex);
1710 *mac = dev->hwaddr;
1711 ovs_mutex_unlock(&dev->mutex);
1712
1713 return 0;
1714 }
1715
1716 static int
1717 netdev_dpdk_get_mtu(const struct netdev *netdev, int *mtup)
1718 {
1719 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1720
1721 ovs_mutex_lock(&dev->mutex);
1722 *mtup = dev->mtu;
1723 ovs_mutex_unlock(&dev->mutex);
1724
1725 return 0;
1726 }
1727
1728 static int
1729 netdev_dpdk_set_mtu(struct netdev *netdev, int mtu)
1730 {
1731 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1732
1733 if (MTU_TO_FRAME_LEN(mtu) > NETDEV_DPDK_MAX_PKT_LEN
1734 || mtu < ETHER_MIN_MTU) {
1735 VLOG_WARN("%s: unsupported MTU %d\n", dev->up.name, mtu);
1736 return EINVAL;
1737 }
1738
1739 ovs_mutex_lock(&dev->mutex);
1740 if (dev->requested_mtu != mtu) {
1741 dev->requested_mtu = mtu;
1742 netdev_request_reconfigure(netdev);
1743 }
1744 ovs_mutex_unlock(&dev->mutex);
1745
1746 return 0;
1747 }
1748
1749 static int
1750 netdev_dpdk_get_carrier(const struct netdev *netdev, bool *carrier);
1751
1752 static int
1753 netdev_dpdk_vhost_get_stats(const struct netdev *netdev,
1754 struct netdev_stats *stats)
1755 {
1756 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1757
1758 ovs_mutex_lock(&dev->mutex);
1759
1760 rte_spinlock_lock(&dev->stats_lock);
1761 /* Supported Stats */
1762 stats->rx_packets += dev->stats.rx_packets;
1763 stats->tx_packets += dev->stats.tx_packets;
1764 stats->rx_dropped = dev->stats.rx_dropped;
1765 stats->tx_dropped += dev->stats.tx_dropped;
1766 stats->multicast = dev->stats.multicast;
1767 stats->rx_bytes = dev->stats.rx_bytes;
1768 stats->tx_bytes = dev->stats.tx_bytes;
1769 stats->rx_errors = dev->stats.rx_errors;
1770 stats->rx_length_errors = dev->stats.rx_length_errors;
1771
1772 stats->rx_1_to_64_packets = dev->stats.rx_1_to_64_packets;
1773 stats->rx_65_to_127_packets = dev->stats.rx_65_to_127_packets;
1774 stats->rx_128_to_255_packets = dev->stats.rx_128_to_255_packets;
1775 stats->rx_256_to_511_packets = dev->stats.rx_256_to_511_packets;
1776 stats->rx_512_to_1023_packets = dev->stats.rx_512_to_1023_packets;
1777 stats->rx_1024_to_1522_packets = dev->stats.rx_1024_to_1522_packets;
1778 stats->rx_1523_to_max_packets = dev->stats.rx_1523_to_max_packets;
1779
1780 rte_spinlock_unlock(&dev->stats_lock);
1781
1782 ovs_mutex_unlock(&dev->mutex);
1783
1784 return 0;
1785 }
1786
1787 static void
1788 netdev_dpdk_convert_xstats(struct netdev_stats *stats,
1789 const struct rte_eth_xstat *xstats,
1790 const struct rte_eth_xstat_name *names,
1791 const unsigned int size)
1792 {
1793 for (unsigned int i = 0; i < size; i++) {
1794 if (strcmp(XSTAT_RX_64_PACKETS, names[i].name) == 0) {
1795 stats->rx_1_to_64_packets = xstats[i].value;
1796 } else if (strcmp(XSTAT_RX_65_TO_127_PACKETS, names[i].name) == 0) {
1797 stats->rx_65_to_127_packets = xstats[i].value;
1798 } else if (strcmp(XSTAT_RX_128_TO_255_PACKETS, names[i].name) == 0) {
1799 stats->rx_128_to_255_packets = xstats[i].value;
1800 } else if (strcmp(XSTAT_RX_256_TO_511_PACKETS, names[i].name) == 0) {
1801 stats->rx_256_to_511_packets = xstats[i].value;
1802 } else if (strcmp(XSTAT_RX_512_TO_1023_PACKETS, names[i].name) == 0) {
1803 stats->rx_512_to_1023_packets = xstats[i].value;
1804 } else if (strcmp(XSTAT_RX_1024_TO_1522_PACKETS, names[i].name) == 0) {
1805 stats->rx_1024_to_1522_packets = xstats[i].value;
1806 } else if (strcmp(XSTAT_RX_1523_TO_MAX_PACKETS, names[i].name) == 0) {
1807 stats->rx_1523_to_max_packets = xstats[i].value;
1808 } else if (strcmp(XSTAT_TX_64_PACKETS, names[i].name) == 0) {
1809 stats->tx_1_to_64_packets = xstats[i].value;
1810 } else if (strcmp(XSTAT_TX_65_TO_127_PACKETS, names[i].name) == 0) {
1811 stats->tx_65_to_127_packets = xstats[i].value;
1812 } else if (strcmp(XSTAT_TX_128_TO_255_PACKETS, names[i].name) == 0) {
1813 stats->tx_128_to_255_packets = xstats[i].value;
1814 } else if (strcmp(XSTAT_TX_256_TO_511_PACKETS, names[i].name) == 0) {
1815 stats->tx_256_to_511_packets = xstats[i].value;
1816 } else if (strcmp(XSTAT_TX_512_TO_1023_PACKETS, names[i].name) == 0) {
1817 stats->tx_512_to_1023_packets = xstats[i].value;
1818 } else if (strcmp(XSTAT_TX_1024_TO_1522_PACKETS, names[i].name) == 0) {
1819 stats->tx_1024_to_1522_packets = xstats[i].value;
1820 } else if (strcmp(XSTAT_TX_1523_TO_MAX_PACKETS, names[i].name) == 0) {
1821 stats->tx_1523_to_max_packets = xstats[i].value;
1822 } else if (strcmp(XSTAT_TX_MULTICAST_PACKETS, names[i].name) == 0) {
1823 stats->tx_multicast_packets = xstats[i].value;
1824 } else if (strcmp(XSTAT_RX_BROADCAST_PACKETS, names[i].name) == 0) {
1825 stats->rx_broadcast_packets = xstats[i].value;
1826 } else if (strcmp(XSTAT_TX_BROADCAST_PACKETS, names[i].name) == 0) {
1827 stats->tx_broadcast_packets = xstats[i].value;
1828 } else if (strcmp(XSTAT_RX_UNDERSIZED_ERRORS, names[i].name) == 0) {
1829 stats->rx_undersized_errors = xstats[i].value;
1830 } else if (strcmp(XSTAT_RX_FRAGMENTED_ERRORS, names[i].name) == 0) {
1831 stats->rx_fragmented_errors = xstats[i].value;
1832 } else if (strcmp(XSTAT_RX_JABBER_ERRORS, names[i].name) == 0) {
1833 stats->rx_jabber_errors = xstats[i].value;
1834 }
1835 }
1836 }
1837
1838 static int
1839 netdev_dpdk_get_stats(const struct netdev *netdev, struct netdev_stats *stats)
1840 {
1841 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1842 struct rte_eth_stats rte_stats;
1843 bool gg;
1844
1845 netdev_dpdk_get_carrier(netdev, &gg);
1846 ovs_mutex_lock(&dev->mutex);
1847
1848 struct rte_eth_xstat *rte_xstats = NULL;
1849 struct rte_eth_xstat_name *rte_xstats_names = NULL;
1850 int rte_xstats_len, rte_xstats_new_len, rte_xstats_ret;
1851
1852 if (rte_eth_stats_get(dev->port_id, &rte_stats)) {
1853 VLOG_ERR("Can't get ETH statistics for port: %i.", dev->port_id);
1854 ovs_mutex_unlock(&dev->mutex);
1855 return EPROTO;
1856 }
1857
1858 /* Get length of statistics */
1859 rte_xstats_len = rte_eth_xstats_get_names(dev->port_id, NULL, 0);
1860 if (rte_xstats_len < 0) {
1861 VLOG_WARN("Cannot get XSTATS values for port: %i", dev->port_id);
1862 goto out;
1863 }
1864 /* Reserve memory for xstats names and values */
1865 rte_xstats_names = xcalloc(rte_xstats_len, sizeof *rte_xstats_names);
1866 rte_xstats = xcalloc(rte_xstats_len, sizeof *rte_xstats);
1867
1868 /* Retreive xstats names */
1869 rte_xstats_new_len = rte_eth_xstats_get_names(dev->port_id,
1870 rte_xstats_names,
1871 rte_xstats_len);
1872 if (rte_xstats_new_len != rte_xstats_len) {
1873 VLOG_WARN("Cannot get XSTATS names for port: %i.", dev->port_id);
1874 goto out;
1875 }
1876 /* Retreive xstats values */
1877 memset(rte_xstats, 0xff, sizeof *rte_xstats * rte_xstats_len);
1878 rte_xstats_ret = rte_eth_xstats_get(dev->port_id, rte_xstats,
1879 rte_xstats_len);
1880 if (rte_xstats_ret > 0 && rte_xstats_ret <= rte_xstats_len) {
1881 netdev_dpdk_convert_xstats(stats, rte_xstats, rte_xstats_names,
1882 rte_xstats_len);
1883 } else {
1884 VLOG_WARN("Cannot get XSTATS values for port: %i.", dev->port_id);
1885 }
1886
1887 out:
1888 free(rte_xstats);
1889 free(rte_xstats_names);
1890
1891 stats->rx_packets = rte_stats.ipackets;
1892 stats->tx_packets = rte_stats.opackets;
1893 stats->rx_bytes = rte_stats.ibytes;
1894 stats->tx_bytes = rte_stats.obytes;
1895 /* DPDK counts imissed as errors, but count them here as dropped instead */
1896 stats->rx_errors = rte_stats.ierrors - rte_stats.imissed;
1897 stats->tx_errors = rte_stats.oerrors;
1898
1899 rte_spinlock_lock(&dev->stats_lock);
1900 stats->tx_dropped = dev->stats.tx_dropped;
1901 stats->rx_dropped = dev->stats.rx_dropped;
1902 rte_spinlock_unlock(&dev->stats_lock);
1903
1904 /* These are the available DPDK counters for packets not received due to
1905 * local resource constraints in DPDK and NIC respectively. */
1906 stats->rx_dropped += rte_stats.rx_nombuf + rte_stats.imissed;
1907 stats->rx_missed_errors = rte_stats.imissed;
1908
1909 ovs_mutex_unlock(&dev->mutex);
1910
1911 return 0;
1912 }
1913
1914 static int
1915 netdev_dpdk_get_features(const struct netdev *netdev,
1916 enum netdev_features *current,
1917 enum netdev_features *advertised OVS_UNUSED,
1918 enum netdev_features *supported OVS_UNUSED,
1919 enum netdev_features *peer OVS_UNUSED)
1920 {
1921 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1922 struct rte_eth_link link;
1923
1924 ovs_mutex_lock(&dev->mutex);
1925 link = dev->link;
1926 ovs_mutex_unlock(&dev->mutex);
1927
1928 if (link.link_duplex == ETH_LINK_HALF_DUPLEX) {
1929 if (link.link_speed == ETH_SPEED_NUM_10M) {
1930 *current = NETDEV_F_10MB_HD;
1931 }
1932 if (link.link_speed == ETH_SPEED_NUM_100M) {
1933 *current = NETDEV_F_100MB_HD;
1934 }
1935 if (link.link_speed == ETH_SPEED_NUM_1G) {
1936 *current = NETDEV_F_1GB_HD;
1937 }
1938 } else if (link.link_duplex == ETH_LINK_FULL_DUPLEX) {
1939 if (link.link_speed == ETH_SPEED_NUM_10M) {
1940 *current = NETDEV_F_10MB_FD;
1941 }
1942 if (link.link_speed == ETH_SPEED_NUM_100M) {
1943 *current = NETDEV_F_100MB_FD;
1944 }
1945 if (link.link_speed == ETH_SPEED_NUM_1G) {
1946 *current = NETDEV_F_1GB_FD;
1947 }
1948 if (link.link_speed == ETH_SPEED_NUM_10G) {
1949 *current = NETDEV_F_10GB_FD;
1950 }
1951 }
1952
1953 if (link.link_autoneg) {
1954 *current |= NETDEV_F_AUTONEG;
1955 }
1956
1957 return 0;
1958 }
1959
1960 static struct ingress_policer *
1961 netdev_dpdk_policer_construct(uint32_t rate, uint32_t burst)
1962 {
1963 struct ingress_policer *policer = NULL;
1964 uint64_t rate_bytes;
1965 uint64_t burst_bytes;
1966 int err = 0;
1967
1968 policer = xmalloc(sizeof *policer);
1969 rte_spinlock_init(&policer->policer_lock);
1970
1971 /* rte_meter requires bytes so convert kbits rate and burst to bytes. */
1972 rate_bytes = rate * 1000/8;
1973 burst_bytes = burst * 1000/8;
1974
1975 policer->app_srtcm_params.cir = rate_bytes;
1976 policer->app_srtcm_params.cbs = burst_bytes;
1977 policer->app_srtcm_params.ebs = 0;
1978 err = rte_meter_srtcm_config(&policer->in_policer,
1979 &policer->app_srtcm_params);
1980 if(err) {
1981 VLOG_ERR("Could not create rte meter for ingress policer");
1982 return NULL;
1983 }
1984
1985 return policer;
1986 }
1987
1988 static int
1989 netdev_dpdk_set_policing(struct netdev* netdev, uint32_t policer_rate,
1990 uint32_t policer_burst)
1991 {
1992 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
1993 struct ingress_policer *policer;
1994
1995 /* Force to 0 if no rate specified,
1996 * default to 8000 kbits if burst is 0,
1997 * else stick with user-specified value.
1998 */
1999 policer_burst = (!policer_rate ? 0
2000 : !policer_burst ? 8000
2001 : policer_burst);
2002
2003 ovs_mutex_lock(&dev->mutex);
2004
2005 policer = ovsrcu_get_protected(struct ingress_policer *,
2006 &dev->ingress_policer);
2007
2008 if (dev->policer_rate == policer_rate &&
2009 dev->policer_burst == policer_burst) {
2010 /* Assume that settings haven't changed since we last set them. */
2011 ovs_mutex_unlock(&dev->mutex);
2012 return 0;
2013 }
2014
2015 /* Destroy any existing ingress policer for the device if one exists */
2016 if (policer) {
2017 ovsrcu_postpone(free, policer);
2018 }
2019
2020 if (policer_rate != 0) {
2021 policer = netdev_dpdk_policer_construct(policer_rate, policer_burst);
2022 } else {
2023 policer = NULL;
2024 }
2025 ovsrcu_set(&dev->ingress_policer, policer);
2026 dev->policer_rate = policer_rate;
2027 dev->policer_burst = policer_burst;
2028 ovs_mutex_unlock(&dev->mutex);
2029
2030 return 0;
2031 }
2032
2033 static int
2034 netdev_dpdk_get_ifindex(const struct netdev *netdev)
2035 {
2036 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2037 int ifindex;
2038
2039 ovs_mutex_lock(&dev->mutex);
2040 ifindex = dev->port_id;
2041 ovs_mutex_unlock(&dev->mutex);
2042
2043 return ifindex;
2044 }
2045
2046 static int
2047 netdev_dpdk_get_carrier(const struct netdev *netdev, bool *carrier)
2048 {
2049 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2050
2051 ovs_mutex_lock(&dev->mutex);
2052 check_link_status(dev);
2053 *carrier = dev->link.link_status;
2054
2055 ovs_mutex_unlock(&dev->mutex);
2056
2057 return 0;
2058 }
2059
2060 static int
2061 netdev_dpdk_vhost_get_carrier(const struct netdev *netdev, bool *carrier)
2062 {
2063 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2064
2065 ovs_mutex_lock(&dev->mutex);
2066
2067 if (is_vhost_running(dev)) {
2068 *carrier = 1;
2069 } else {
2070 *carrier = 0;
2071 }
2072
2073 ovs_mutex_unlock(&dev->mutex);
2074
2075 return 0;
2076 }
2077
2078 static long long int
2079 netdev_dpdk_get_carrier_resets(const struct netdev *netdev)
2080 {
2081 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2082 long long int carrier_resets;
2083
2084 ovs_mutex_lock(&dev->mutex);
2085 carrier_resets = dev->link_reset_cnt;
2086 ovs_mutex_unlock(&dev->mutex);
2087
2088 return carrier_resets;
2089 }
2090
2091 static int
2092 netdev_dpdk_set_miimon(struct netdev *netdev OVS_UNUSED,
2093 long long int interval OVS_UNUSED)
2094 {
2095 return EOPNOTSUPP;
2096 }
2097
2098 static int
2099 netdev_dpdk_update_flags__(struct netdev_dpdk *dev,
2100 enum netdev_flags off, enum netdev_flags on,
2101 enum netdev_flags *old_flagsp)
2102 OVS_REQUIRES(dev->mutex)
2103 {
2104 int err;
2105
2106 if ((off | on) & ~(NETDEV_UP | NETDEV_PROMISC)) {
2107 return EINVAL;
2108 }
2109
2110 *old_flagsp = dev->flags;
2111 dev->flags |= on;
2112 dev->flags &= ~off;
2113
2114 if (dev->flags == *old_flagsp) {
2115 return 0;
2116 }
2117
2118 if (dev->type == DPDK_DEV_ETH) {
2119 if (dev->flags & NETDEV_UP) {
2120 err = rte_eth_dev_start(dev->port_id);
2121 if (err)
2122 return -err;
2123 }
2124
2125 if (dev->flags & NETDEV_PROMISC) {
2126 rte_eth_promiscuous_enable(dev->port_id);
2127 }
2128
2129 if (!(dev->flags & NETDEV_UP)) {
2130 rte_eth_dev_stop(dev->port_id);
2131 }
2132 } else {
2133 /* If DPDK_DEV_VHOST device's NETDEV_UP flag was changed and vhost is
2134 * running then change netdev's change_seq to trigger link state
2135 * update. */
2136
2137 if ((NETDEV_UP & ((*old_flagsp ^ on) | (*old_flagsp ^ off)))
2138 && is_vhost_running(dev)) {
2139 netdev_change_seq_changed(&dev->up);
2140
2141 /* Clear statistics if device is getting up. */
2142 if (NETDEV_UP & on) {
2143 rte_spinlock_lock(&dev->stats_lock);
2144 memset(&dev->stats, 0, sizeof(dev->stats));
2145 rte_spinlock_unlock(&dev->stats_lock);
2146 }
2147 }
2148 }
2149
2150 return 0;
2151 }
2152
2153 static int
2154 netdev_dpdk_update_flags(struct netdev *netdev,
2155 enum netdev_flags off, enum netdev_flags on,
2156 enum netdev_flags *old_flagsp)
2157 {
2158 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2159 int error;
2160
2161 ovs_mutex_lock(&dev->mutex);
2162 error = netdev_dpdk_update_flags__(dev, off, on, old_flagsp);
2163 ovs_mutex_unlock(&dev->mutex);
2164
2165 return error;
2166 }
2167
2168 static int
2169 netdev_dpdk_get_status(const struct netdev *netdev, struct smap *args)
2170 {
2171 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2172 struct rte_eth_dev_info dev_info;
2173
2174 if (!rte_eth_dev_is_valid_port(dev->port_id)) {
2175 return ENODEV;
2176 }
2177
2178 ovs_mutex_lock(&dev->mutex);
2179 rte_eth_dev_info_get(dev->port_id, &dev_info);
2180 ovs_mutex_unlock(&dev->mutex);
2181
2182 smap_add_format(args, "port_no", "%d", dev->port_id);
2183 smap_add_format(args, "numa_id", "%d", rte_eth_dev_socket_id(dev->port_id));
2184 smap_add_format(args, "driver_name", "%s", dev_info.driver_name);
2185 smap_add_format(args, "min_rx_bufsize", "%u", dev_info.min_rx_bufsize);
2186 smap_add_format(args, "max_rx_pktlen", "%u", dev->max_packet_len);
2187 smap_add_format(args, "max_rx_queues", "%u", dev_info.max_rx_queues);
2188 smap_add_format(args, "max_tx_queues", "%u", dev_info.max_tx_queues);
2189 smap_add_format(args, "max_mac_addrs", "%u", dev_info.max_mac_addrs);
2190 smap_add_format(args, "max_hash_mac_addrs", "%u", dev_info.max_hash_mac_addrs);
2191 smap_add_format(args, "max_vfs", "%u", dev_info.max_vfs);
2192 smap_add_format(args, "max_vmdq_pools", "%u", dev_info.max_vmdq_pools);
2193
2194 if (dev_info.pci_dev) {
2195 smap_add_format(args, "pci-vendor_id", "0x%u",
2196 dev_info.pci_dev->id.vendor_id);
2197 smap_add_format(args, "pci-device_id", "0x%x",
2198 dev_info.pci_dev->id.device_id);
2199 }
2200
2201 return 0;
2202 }
2203
2204 static void
2205 netdev_dpdk_set_admin_state__(struct netdev_dpdk *dev, bool admin_state)
2206 OVS_REQUIRES(dev->mutex)
2207 {
2208 enum netdev_flags old_flags;
2209
2210 if (admin_state) {
2211 netdev_dpdk_update_flags__(dev, 0, NETDEV_UP, &old_flags);
2212 } else {
2213 netdev_dpdk_update_flags__(dev, NETDEV_UP, 0, &old_flags);
2214 }
2215 }
2216
2217 static void
2218 netdev_dpdk_set_admin_state(struct unixctl_conn *conn, int argc,
2219 const char *argv[], void *aux OVS_UNUSED)
2220 {
2221 bool up;
2222
2223 if (!strcasecmp(argv[argc - 1], "up")) {
2224 up = true;
2225 } else if ( !strcasecmp(argv[argc - 1], "down")) {
2226 up = false;
2227 } else {
2228 unixctl_command_reply_error(conn, "Invalid Admin State");
2229 return;
2230 }
2231
2232 if (argc > 2) {
2233 struct netdev *netdev = netdev_from_name(argv[1]);
2234 if (netdev && is_dpdk_class(netdev->netdev_class)) {
2235 struct netdev_dpdk *dpdk_dev = netdev_dpdk_cast(netdev);
2236
2237 ovs_mutex_lock(&dpdk_dev->mutex);
2238 netdev_dpdk_set_admin_state__(dpdk_dev, up);
2239 ovs_mutex_unlock(&dpdk_dev->mutex);
2240
2241 netdev_close(netdev);
2242 } else {
2243 unixctl_command_reply_error(conn, "Not a DPDK Interface");
2244 netdev_close(netdev);
2245 return;
2246 }
2247 } else {
2248 struct netdev_dpdk *netdev;
2249
2250 ovs_mutex_lock(&dpdk_mutex);
2251 LIST_FOR_EACH (netdev, list_node, &dpdk_list) {
2252 ovs_mutex_lock(&netdev->mutex);
2253 netdev_dpdk_set_admin_state__(netdev, up);
2254 ovs_mutex_unlock(&netdev->mutex);
2255 }
2256 ovs_mutex_unlock(&dpdk_mutex);
2257 }
2258 unixctl_command_reply(conn, "OK");
2259 }
2260
2261 /*
2262 * Set virtqueue flags so that we do not receive interrupts.
2263 */
2264 static void
2265 set_irq_status(int vid)
2266 {
2267 uint32_t i;
2268 uint64_t idx;
2269
2270 for (i = 0; i < rte_vhost_get_queue_num(vid); i++) {
2271 idx = i * VIRTIO_QNUM;
2272 rte_vhost_enable_guest_notification(vid, idx + VIRTIO_RXQ, 0);
2273 rte_vhost_enable_guest_notification(vid, idx + VIRTIO_TXQ, 0);
2274 }
2275 }
2276
2277 /*
2278 * Fixes mapping for vhost-user tx queues. Must be called after each
2279 * enabling/disabling of queues and n_txq modifications.
2280 */
2281 static void
2282 netdev_dpdk_remap_txqs(struct netdev_dpdk *dev)
2283 OVS_REQUIRES(dev->mutex)
2284 {
2285 int *enabled_queues, n_enabled = 0;
2286 int i, k, total_txqs = dev->up.n_txq;
2287
2288 enabled_queues = dpdk_rte_mzalloc(total_txqs * sizeof *enabled_queues);
2289
2290 for (i = 0; i < total_txqs; i++) {
2291 /* Enabled queues always mapped to themselves. */
2292 if (dev->tx_q[i].map == i) {
2293 enabled_queues[n_enabled++] = i;
2294 }
2295 }
2296
2297 if (n_enabled == 0 && total_txqs != 0) {
2298 enabled_queues[0] = OVS_VHOST_QUEUE_DISABLED;
2299 n_enabled = 1;
2300 }
2301
2302 k = 0;
2303 for (i = 0; i < total_txqs; i++) {
2304 if (dev->tx_q[i].map != i) {
2305 dev->tx_q[i].map = enabled_queues[k];
2306 k = (k + 1) % n_enabled;
2307 }
2308 }
2309
2310 VLOG_DBG("TX queue mapping for %s\n", dev->vhost_id);
2311 for (i = 0; i < total_txqs; i++) {
2312 VLOG_DBG("%2d --> %2d", i, dev->tx_q[i].map);
2313 }
2314
2315 rte_free(enabled_queues);
2316 }
2317
2318 /*
2319 * A new virtio-net device is added to a vhost port.
2320 */
2321 static int
2322 new_device(int vid)
2323 {
2324 struct netdev_dpdk *dev;
2325 bool exists = false;
2326 int newnode = 0;
2327 char ifname[IF_NAME_SZ];
2328
2329 rte_vhost_get_ifname(vid, ifname, sizeof(ifname));
2330
2331 ovs_mutex_lock(&dpdk_mutex);
2332 /* Add device to the vhost port with the same name as that passed down. */
2333 LIST_FOR_EACH(dev, list_node, &dpdk_list) {
2334 ovs_mutex_lock(&dev->mutex);
2335 if (strncmp(ifname, dev->vhost_id, IF_NAME_SZ) == 0) {
2336 uint32_t qp_num = rte_vhost_get_queue_num(vid);
2337
2338 /* Get NUMA information */
2339 newnode = rte_vhost_get_numa_node(vid);
2340 if (newnode == -1) {
2341 #ifdef VHOST_NUMA
2342 VLOG_INFO("Error getting NUMA info for vHost Device '%s'",
2343 ifname);
2344 #endif
2345 newnode = dev->socket_id;
2346 }
2347
2348 if (dev->requested_n_txq != qp_num
2349 || dev->requested_n_rxq != qp_num
2350 || dev->requested_socket_id != newnode) {
2351 dev->requested_socket_id = newnode;
2352 dev->requested_n_rxq = qp_num;
2353 dev->requested_n_txq = qp_num;
2354 netdev_request_reconfigure(&dev->up);
2355 } else {
2356 /* Reconfiguration not required. */
2357 dev->vhost_reconfigured = true;
2358 }
2359
2360 ovsrcu_index_set(&dev->vid, vid);
2361 exists = true;
2362
2363 /* Disable notifications. */
2364 set_irq_status(vid);
2365 netdev_change_seq_changed(&dev->up);
2366 ovs_mutex_unlock(&dev->mutex);
2367 break;
2368 }
2369 ovs_mutex_unlock(&dev->mutex);
2370 }
2371 ovs_mutex_unlock(&dpdk_mutex);
2372
2373 if (!exists) {
2374 VLOG_INFO("vHost Device '%s' can't be added - name not found", ifname);
2375
2376 return -1;
2377 }
2378
2379 VLOG_INFO("vHost Device '%s' has been added on numa node %i",
2380 ifname, newnode);
2381
2382 return 0;
2383 }
2384
2385 /* Clears mapping for all available queues of vhost interface. */
2386 static void
2387 netdev_dpdk_txq_map_clear(struct netdev_dpdk *dev)
2388 OVS_REQUIRES(dev->mutex)
2389 {
2390 int i;
2391
2392 for (i = 0; i < dev->up.n_txq; i++) {
2393 dev->tx_q[i].map = OVS_VHOST_QUEUE_MAP_UNKNOWN;
2394 }
2395 }
2396
2397 /*
2398 * Remove a virtio-net device from the specific vhost port. Use dev->remove
2399 * flag to stop any more packets from being sent or received to/from a VM and
2400 * ensure all currently queued packets have been sent/received before removing
2401 * the device.
2402 */
2403 static void
2404 destroy_device(int vid)
2405 {
2406 struct netdev_dpdk *dev;
2407 bool exists = false;
2408 char ifname[IF_NAME_SZ];
2409
2410 rte_vhost_get_ifname(vid, ifname, sizeof(ifname));
2411
2412 ovs_mutex_lock(&dpdk_mutex);
2413 LIST_FOR_EACH (dev, list_node, &dpdk_list) {
2414 if (netdev_dpdk_get_vid(dev) == vid) {
2415
2416 ovs_mutex_lock(&dev->mutex);
2417 dev->vhost_reconfigured = false;
2418 ovsrcu_index_set(&dev->vid, -1);
2419 netdev_dpdk_txq_map_clear(dev);
2420
2421 netdev_change_seq_changed(&dev->up);
2422 ovs_mutex_unlock(&dev->mutex);
2423 exists = true;
2424 break;
2425 }
2426 }
2427
2428 ovs_mutex_unlock(&dpdk_mutex);
2429
2430 if (exists) {
2431 /*
2432 * Wait for other threads to quiesce after setting the 'virtio_dev'
2433 * to NULL, before returning.
2434 */
2435 ovsrcu_synchronize();
2436 /*
2437 * As call to ovsrcu_synchronize() will end the quiescent state,
2438 * put thread back into quiescent state before returning.
2439 */
2440 ovsrcu_quiesce_start();
2441 VLOG_INFO("vHost Device '%s' has been removed", ifname);
2442 } else {
2443 VLOG_INFO("vHost Device '%s' not found", ifname);
2444 }
2445 }
2446
2447 static int
2448 vring_state_changed(int vid, uint16_t queue_id, int enable)
2449 {
2450 struct netdev_dpdk *dev;
2451 bool exists = false;
2452 int qid = queue_id / VIRTIO_QNUM;
2453 char ifname[IF_NAME_SZ];
2454
2455 rte_vhost_get_ifname(vid, ifname, sizeof(ifname));
2456
2457 if (queue_id % VIRTIO_QNUM == VIRTIO_TXQ) {
2458 return 0;
2459 }
2460
2461 ovs_mutex_lock(&dpdk_mutex);
2462 LIST_FOR_EACH (dev, list_node, &dpdk_list) {
2463 ovs_mutex_lock(&dev->mutex);
2464 if (strncmp(ifname, dev->vhost_id, IF_NAME_SZ) == 0) {
2465 if (enable) {
2466 dev->tx_q[qid].map = qid;
2467 } else {
2468 dev->tx_q[qid].map = OVS_VHOST_QUEUE_DISABLED;
2469 }
2470 netdev_dpdk_remap_txqs(dev);
2471 exists = true;
2472 ovs_mutex_unlock(&dev->mutex);
2473 break;
2474 }
2475 ovs_mutex_unlock(&dev->mutex);
2476 }
2477 ovs_mutex_unlock(&dpdk_mutex);
2478
2479 if (exists) {
2480 VLOG_INFO("State of queue %d ( tx_qid %d ) of vhost device '%s'"
2481 "changed to \'%s\'", queue_id, qid, ifname,
2482 (enable == 1) ? "enabled" : "disabled");
2483 } else {
2484 VLOG_INFO("vHost Device '%s' not found", ifname);
2485 return -1;
2486 }
2487
2488 return 0;
2489 }
2490
2491 int
2492 netdev_dpdk_get_vid(const struct netdev_dpdk *dev)
2493 {
2494 return ovsrcu_index_get(&dev->vid);
2495 }
2496
2497 struct ingress_policer *
2498 netdev_dpdk_get_ingress_policer(const struct netdev_dpdk *dev)
2499 {
2500 return ovsrcu_get(struct ingress_policer *, &dev->ingress_policer);
2501 }
2502
2503 /*
2504 * These callbacks allow virtio-net devices to be added to vhost ports when
2505 * configuration has been fully complete.
2506 */
2507 static const struct virtio_net_device_ops virtio_net_device_ops =
2508 {
2509 .new_device = new_device,
2510 .destroy_device = destroy_device,
2511 .vring_state_changed = vring_state_changed
2512 };
2513
2514 static void *
2515 start_vhost_loop(void *dummy OVS_UNUSED)
2516 {
2517 pthread_detach(pthread_self());
2518 /* Put the vhost thread into quiescent state. */
2519 ovsrcu_quiesce_start();
2520 rte_vhost_driver_session_start();
2521 return NULL;
2522 }
2523
2524 static int
2525 dpdk_vhost_class_init(void)
2526 {
2527 rte_vhost_driver_callback_register(&virtio_net_device_ops);
2528 rte_vhost_feature_disable(1ULL << VIRTIO_NET_F_HOST_TSO4
2529 | 1ULL << VIRTIO_NET_F_HOST_TSO6
2530 | 1ULL << VIRTIO_NET_F_CSUM);
2531
2532 ovs_thread_create("vhost_thread", start_vhost_loop, NULL);
2533 return 0;
2534 }
2535
2536 static void
2537 dpdk_common_init(void)
2538 {
2539 unixctl_command_register("netdev-dpdk/set-admin-state",
2540 "[netdev] up|down", 1, 2,
2541 netdev_dpdk_set_admin_state, NULL);
2542
2543 }
2544
2545 /* Client Rings */
2546
2547 static int
2548 dpdk_ring_create(const char dev_name[], unsigned int port_no,
2549 unsigned int *eth_port_id)
2550 {
2551 struct dpdk_ring *ivshmem;
2552 char ring_name[RTE_RING_NAMESIZE];
2553 int err;
2554
2555 ivshmem = dpdk_rte_mzalloc(sizeof *ivshmem);
2556 if (ivshmem == NULL) {
2557 return ENOMEM;
2558 }
2559
2560 /* XXX: Add support for multiquque ring. */
2561 err = snprintf(ring_name, sizeof(ring_name), "%s_tx", dev_name);
2562 if (err < 0) {
2563 return -err;
2564 }
2565
2566 /* Create single producer tx ring, netdev does explicit locking. */
2567 ivshmem->cring_tx = rte_ring_create(ring_name, DPDK_RING_SIZE, SOCKET0,
2568 RING_F_SP_ENQ);
2569 if (ivshmem->cring_tx == NULL) {
2570 rte_free(ivshmem);
2571 return ENOMEM;
2572 }
2573
2574 err = snprintf(ring_name, sizeof(ring_name), "%s_rx", dev_name);
2575 if (err < 0) {
2576 return -err;
2577 }
2578
2579 /* Create single consumer rx ring, netdev does explicit locking. */
2580 ivshmem->cring_rx = rte_ring_create(ring_name, DPDK_RING_SIZE, SOCKET0,
2581 RING_F_SC_DEQ);
2582 if (ivshmem->cring_rx == NULL) {
2583 rte_free(ivshmem);
2584 return ENOMEM;
2585 }
2586
2587 err = rte_eth_from_rings(dev_name, &ivshmem->cring_rx, 1,
2588 &ivshmem->cring_tx, 1, SOCKET0);
2589
2590 if (err < 0) {
2591 rte_free(ivshmem);
2592 return ENODEV;
2593 }
2594
2595 ivshmem->user_port_id = port_no;
2596 ivshmem->eth_port_id = rte_eth_dev_count() - 1;
2597 ovs_list_push_back(&dpdk_ring_list, &ivshmem->list_node);
2598
2599 *eth_port_id = ivshmem->eth_port_id;
2600 return 0;
2601 }
2602
2603 static int
2604 dpdk_ring_open(const char dev_name[], unsigned int *eth_port_id)
2605 OVS_REQUIRES(dpdk_mutex)
2606 {
2607 struct dpdk_ring *ivshmem;
2608 unsigned int port_no;
2609 int err = 0;
2610
2611 /* Names always start with "dpdkr" */
2612 err = dpdk_dev_parse_name(dev_name, "dpdkr", &port_no);
2613 if (err) {
2614 return err;
2615 }
2616
2617 /* look through our list to find the device */
2618 LIST_FOR_EACH (ivshmem, list_node, &dpdk_ring_list) {
2619 if (ivshmem->user_port_id == port_no) {
2620 VLOG_INFO("Found dpdk ring device %s:", dev_name);
2621 *eth_port_id = ivshmem->eth_port_id; /* really all that is needed */
2622 return 0;
2623 }
2624 }
2625 /* Need to create the device rings */
2626 return dpdk_ring_create(dev_name, port_no, eth_port_id);
2627 }
2628
2629 static int
2630 netdev_dpdk_ring_send(struct netdev *netdev, int qid,
2631 struct dp_packet_batch *batch, bool may_steal,
2632 bool concurrent_txq)
2633 {
2634 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2635 unsigned i;
2636
2637 /* When using 'dpdkr' and sending to a DPDK ring, we want to ensure that the
2638 * rss hash field is clear. This is because the same mbuf may be modified by
2639 * the consumer of the ring and return into the datapath without recalculating
2640 * the RSS hash. */
2641 for (i = 0; i < batch->count; i++) {
2642 dp_packet_rss_invalidate(batch->packets[i]);
2643 }
2644
2645 netdev_dpdk_send__(dev, qid, batch, may_steal, concurrent_txq);
2646 return 0;
2647 }
2648
2649 static int
2650 netdev_dpdk_ring_construct(struct netdev *netdev)
2651 {
2652 unsigned int port_no = 0;
2653 int err = 0;
2654
2655 if (rte_eal_init_ret) {
2656 return rte_eal_init_ret;
2657 }
2658
2659 ovs_mutex_lock(&dpdk_mutex);
2660
2661 err = dpdk_ring_open(netdev->name, &port_no);
2662 if (err) {
2663 goto unlock_dpdk;
2664 }
2665
2666 err = netdev_dpdk_init(netdev, port_no, DPDK_DEV_ETH);
2667
2668 unlock_dpdk:
2669 ovs_mutex_unlock(&dpdk_mutex);
2670 return err;
2671 }
2672
2673 /* QoS Functions */
2674
2675 /*
2676 * Initialize QoS configuration operations.
2677 */
2678 static void
2679 qos_conf_init(struct qos_conf *conf, const struct dpdk_qos_ops *ops)
2680 {
2681 conf->ops = ops;
2682 }
2683
2684 /*
2685 * Search existing QoS operations in qos_ops and compare each set of
2686 * operations qos_name to name. Return a dpdk_qos_ops pointer to a match,
2687 * else return NULL
2688 */
2689 static const struct dpdk_qos_ops *
2690 qos_lookup_name(const char *name)
2691 {
2692 const struct dpdk_qos_ops *const *opsp;
2693
2694 for (opsp = qos_confs; *opsp != NULL; opsp++) {
2695 const struct dpdk_qos_ops *ops = *opsp;
2696 if (!strcmp(name, ops->qos_name)) {
2697 return ops;
2698 }
2699 }
2700 return NULL;
2701 }
2702
2703 /*
2704 * Call qos_destruct to clean up items associated with the netdevs
2705 * qos_conf. Set netdevs qos_conf to NULL.
2706 */
2707 static void
2708 qos_delete_conf(struct netdev *netdev)
2709 {
2710 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2711
2712 rte_spinlock_lock(&dev->qos_lock);
2713 if (dev->qos_conf) {
2714 if (dev->qos_conf->ops->qos_destruct) {
2715 dev->qos_conf->ops->qos_destruct(netdev, dev->qos_conf);
2716 }
2717 dev->qos_conf = NULL;
2718 }
2719 rte_spinlock_unlock(&dev->qos_lock);
2720 }
2721
2722 static int
2723 netdev_dpdk_get_qos_types(const struct netdev *netdev OVS_UNUSED,
2724 struct sset *types)
2725 {
2726 const struct dpdk_qos_ops *const *opsp;
2727
2728 for (opsp = qos_confs; *opsp != NULL; opsp++) {
2729 const struct dpdk_qos_ops *ops = *opsp;
2730 if (ops->qos_construct && ops->qos_name[0] != '\0') {
2731 sset_add(types, ops->qos_name);
2732 }
2733 }
2734 return 0;
2735 }
2736
2737 static int
2738 netdev_dpdk_get_qos(const struct netdev *netdev,
2739 const char **typep, struct smap *details)
2740 {
2741 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2742 int error = 0;
2743
2744 ovs_mutex_lock(&dev->mutex);
2745 if(dev->qos_conf) {
2746 *typep = dev->qos_conf->ops->qos_name;
2747 error = (dev->qos_conf->ops->qos_get
2748 ? dev->qos_conf->ops->qos_get(netdev, details): 0);
2749 } else {
2750 /* No QoS configuration set, return an empty string */
2751 *typep = "";
2752 }
2753 ovs_mutex_unlock(&dev->mutex);
2754
2755 return error;
2756 }
2757
2758 static int
2759 netdev_dpdk_set_qos(struct netdev *netdev,
2760 const char *type, const struct smap *details)
2761 {
2762 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2763 const struct dpdk_qos_ops *new_ops = NULL;
2764 int error = 0;
2765
2766 /* If type is empty or unsupported then the current QoS configuration
2767 * for the dpdk-netdev can be destroyed */
2768 new_ops = qos_lookup_name(type);
2769
2770 if (type[0] == '\0' || !new_ops || !new_ops->qos_construct) {
2771 qos_delete_conf(netdev);
2772 return EOPNOTSUPP;
2773 }
2774
2775 ovs_mutex_lock(&dev->mutex);
2776
2777 if (dev->qos_conf) {
2778 if (new_ops == dev->qos_conf->ops) {
2779 error = new_ops->qos_set ? new_ops->qos_set(netdev, details) : 0;
2780 } else {
2781 /* Delete existing QoS configuration. */
2782 qos_delete_conf(netdev);
2783 ovs_assert(dev->qos_conf == NULL);
2784
2785 /* Install new QoS configuration. */
2786 error = new_ops->qos_construct(netdev, details);
2787 }
2788 } else {
2789 error = new_ops->qos_construct(netdev, details);
2790 }
2791
2792 ovs_assert((error == 0) == (dev->qos_conf != NULL));
2793 if (error) {
2794 VLOG_ERR("Failed to set QoS type %s on port %s, returned error: %s",
2795 type, netdev->name, rte_strerror(-error));
2796 }
2797
2798 ovs_mutex_unlock(&dev->mutex);
2799 return error;
2800 }
2801
2802 /* egress-policer details */
2803
2804 struct egress_policer {
2805 struct qos_conf qos_conf;
2806 struct rte_meter_srtcm_params app_srtcm_params;
2807 struct rte_meter_srtcm egress_meter;
2808 };
2809
2810 static struct egress_policer *
2811 egress_policer_get__(const struct netdev *netdev)
2812 {
2813 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2814 return CONTAINER_OF(dev->qos_conf, struct egress_policer, qos_conf);
2815 }
2816
2817 static int
2818 egress_policer_qos_construct(struct netdev *netdev,
2819 const struct smap *details)
2820 {
2821 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2822 struct egress_policer *policer;
2823 int err = 0;
2824
2825 rte_spinlock_lock(&dev->qos_lock);
2826 policer = xmalloc(sizeof *policer);
2827 qos_conf_init(&policer->qos_conf, &egress_policer_ops);
2828 dev->qos_conf = &policer->qos_conf;
2829 policer->app_srtcm_params.cir = smap_get_ullong(details, "cir", 0);
2830 policer->app_srtcm_params.cbs = smap_get_ullong(details, "cbs", 0);
2831 policer->app_srtcm_params.ebs = 0;
2832 err = rte_meter_srtcm_config(&policer->egress_meter,
2833 &policer->app_srtcm_params);
2834
2835 if (err < 0) {
2836 /* Error occurred during rte_meter creation, destroy the policer
2837 * and set the qos configuration for the netdev dpdk to NULL
2838 */
2839 free(policer);
2840 dev->qos_conf = NULL;
2841 err = -err;
2842 }
2843 rte_spinlock_unlock(&dev->qos_lock);
2844
2845 return err;
2846 }
2847
2848 static void
2849 egress_policer_qos_destruct(struct netdev *netdev OVS_UNUSED,
2850 struct qos_conf *conf)
2851 {
2852 struct egress_policer *policer = CONTAINER_OF(conf, struct egress_policer,
2853 qos_conf);
2854 free(policer);
2855 }
2856
2857 static int
2858 egress_policer_qos_get(const struct netdev *netdev, struct smap *details)
2859 {
2860 struct egress_policer *policer = egress_policer_get__(netdev);
2861 smap_add_format(details, "cir", "%llu",
2862 1ULL * policer->app_srtcm_params.cir);
2863 smap_add_format(details, "cbs", "%llu",
2864 1ULL * policer->app_srtcm_params.cbs);
2865
2866 return 0;
2867 }
2868
2869 static int
2870 egress_policer_qos_set(struct netdev *netdev, const struct smap *details)
2871 {
2872 struct egress_policer *policer;
2873 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2874 int err = 0;
2875
2876 policer = egress_policer_get__(netdev);
2877 rte_spinlock_lock(&dev->qos_lock);
2878 policer->app_srtcm_params.cir = smap_get_ullong(details, "cir", 0);
2879 policer->app_srtcm_params.cbs = smap_get_ullong(details, "cbs", 0);
2880 policer->app_srtcm_params.ebs = 0;
2881 err = rte_meter_srtcm_config(&policer->egress_meter,
2882 &policer->app_srtcm_params);
2883
2884 if (err < 0) {
2885 /* Error occurred during rte_meter creation, destroy the policer
2886 * and set the qos configuration for the netdev dpdk to NULL
2887 */
2888 free(policer);
2889 dev->qos_conf = NULL;
2890 err = -err;
2891 }
2892 rte_spinlock_unlock(&dev->qos_lock);
2893
2894 return err;
2895 }
2896
2897 static int
2898 egress_policer_run(struct netdev *netdev, struct rte_mbuf **pkts, int pkt_cnt)
2899 {
2900 int cnt = 0;
2901 struct egress_policer *policer = egress_policer_get__(netdev);
2902
2903 cnt = netdev_dpdk_policer_run(&policer->egress_meter, pkts, pkt_cnt);
2904
2905 return cnt;
2906 }
2907
2908 static const struct dpdk_qos_ops egress_policer_ops = {
2909 "egress-policer", /* qos_name */
2910 egress_policer_qos_construct,
2911 egress_policer_qos_destruct,
2912 egress_policer_qos_get,
2913 egress_policer_qos_set,
2914 egress_policer_run
2915 };
2916
2917 static int
2918 netdev_dpdk_reconfigure(struct netdev *netdev)
2919 {
2920 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2921 int err = 0;
2922
2923 ovs_mutex_lock(&dpdk_mutex);
2924 ovs_mutex_lock(&dev->mutex);
2925
2926 if (netdev->n_txq == dev->requested_n_txq
2927 && netdev->n_rxq == dev->requested_n_rxq
2928 && dev->mtu == dev->requested_mtu) {
2929 /* Reconfiguration is unnecessary */
2930
2931 goto out;
2932 }
2933
2934 rte_eth_dev_stop(dev->port_id);
2935
2936 if (dev->mtu != dev->requested_mtu) {
2937 netdev_dpdk_mempool_configure(dev);
2938 }
2939
2940 netdev->n_txq = dev->requested_n_txq;
2941 netdev->n_rxq = dev->requested_n_rxq;
2942
2943 rte_free(dev->tx_q);
2944 err = dpdk_eth_dev_init(dev);
2945 netdev_dpdk_alloc_txq(dev, netdev->n_txq);
2946
2947 netdev_change_seq_changed(netdev);
2948
2949 out:
2950
2951 ovs_mutex_unlock(&dev->mutex);
2952 ovs_mutex_unlock(&dpdk_mutex);
2953
2954 return err;
2955 }
2956
2957 static void
2958 dpdk_vhost_reconfigure_helper(struct netdev_dpdk *dev)
2959 OVS_REQUIRES(dpdk_mutex)
2960 OVS_REQUIRES(dev->mutex)
2961 {
2962 dev->up.n_txq = dev->requested_n_txq;
2963 dev->up.n_rxq = dev->requested_n_rxq;
2964
2965 /* Enable TX queue 0 by default if it wasn't disabled. */
2966 if (dev->tx_q[0].map == OVS_VHOST_QUEUE_MAP_UNKNOWN) {
2967 dev->tx_q[0].map = 0;
2968 }
2969
2970 netdev_dpdk_remap_txqs(dev);
2971
2972 if (dev->requested_socket_id != dev->socket_id
2973 || dev->requested_mtu != dev->mtu) {
2974 if (!netdev_dpdk_mempool_configure(dev)) {
2975 netdev_change_seq_changed(&dev->up);
2976 }
2977 }
2978
2979 if (netdev_dpdk_get_vid(dev) >= 0) {
2980 dev->vhost_reconfigured = true;
2981 }
2982 }
2983
2984 static int
2985 netdev_dpdk_vhost_reconfigure(struct netdev *netdev)
2986 {
2987 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
2988
2989 ovs_mutex_lock(&dpdk_mutex);
2990 ovs_mutex_lock(&dev->mutex);
2991
2992 dpdk_vhost_reconfigure_helper(dev);
2993
2994 ovs_mutex_unlock(&dev->mutex);
2995 ovs_mutex_unlock(&dpdk_mutex);
2996
2997 return 0;
2998 }
2999
3000 static int
3001 netdev_dpdk_vhost_client_reconfigure(struct netdev *netdev)
3002 {
3003 struct netdev_dpdk *dev = netdev_dpdk_cast(netdev);
3004 int err = 0;
3005
3006 ovs_mutex_lock(&dpdk_mutex);
3007 ovs_mutex_lock(&dev->mutex);
3008
3009 dpdk_vhost_reconfigure_helper(dev);
3010
3011 /* Configure vHost client mode if requested and if the following criteria
3012 * are met:
3013 * 1. Device hasn't been registered yet.
3014 * 2. A path has been specified.
3015 */
3016 if (!(dev->vhost_driver_flags & RTE_VHOST_USER_CLIENT)
3017 && strlen(dev->vhost_id)) {
3018 /* Register client-mode device */
3019 err = rte_vhost_driver_register(dev->vhost_id,
3020 RTE_VHOST_USER_CLIENT);
3021 if (err) {
3022 VLOG_ERR("vhost-user device setup failure for device %s\n",
3023 dev->vhost_id);
3024 } else {
3025 /* Configuration successful */
3026 dev->vhost_driver_flags |= RTE_VHOST_USER_CLIENT;
3027 VLOG_INFO("vHost User device '%s' created in 'client' mode, "
3028 "using client socket '%s'",
3029 dev->up.name, dev->vhost_id);
3030 }
3031 }
3032
3033 ovs_mutex_unlock(&dev->mutex);
3034 ovs_mutex_unlock(&dpdk_mutex);
3035
3036 return 0;
3037 }
3038
3039 #define NETDEV_DPDK_CLASS(NAME, CONSTRUCT, DESTRUCT, \
3040 SET_CONFIG, SET_TX_MULTIQ, SEND, \
3041 GET_CARRIER, GET_STATS, \
3042 GET_FEATURES, GET_STATUS, \
3043 RECONFIGURE, RXQ_RECV) \
3044 { \
3045 NAME, \
3046 true, /* is_pmd */ \
3047 NULL, /* init */ \
3048 NULL, /* netdev_dpdk_run */ \
3049 NULL, /* netdev_dpdk_wait */ \
3050 \
3051 netdev_dpdk_alloc, \
3052 CONSTRUCT, \
3053 DESTRUCT, \
3054 netdev_dpdk_dealloc, \
3055 netdev_dpdk_get_config, \
3056 SET_CONFIG, \
3057 NULL, /* get_tunnel_config */ \
3058 NULL, /* build header */ \
3059 NULL, /* push header */ \
3060 NULL, /* pop header */ \
3061 netdev_dpdk_get_numa_id, /* get_numa_id */ \
3062 SET_TX_MULTIQ, \
3063 \
3064 SEND, /* send */ \
3065 NULL, /* send_wait */ \
3066 \
3067 netdev_dpdk_set_etheraddr, \
3068 netdev_dpdk_get_etheraddr, \
3069 netdev_dpdk_get_mtu, \
3070 netdev_dpdk_set_mtu, \
3071 netdev_dpdk_get_ifindex, \
3072 GET_CARRIER, \
3073 netdev_dpdk_get_carrier_resets, \
3074 netdev_dpdk_set_miimon, \
3075 GET_STATS, \
3076 GET_FEATURES, \
3077 NULL, /* set_advertisements */ \
3078 \
3079 netdev_dpdk_set_policing, \
3080 netdev_dpdk_get_qos_types, \
3081 NULL, /* get_qos_capabilities */ \
3082 netdev_dpdk_get_qos, \
3083 netdev_dpdk_set_qos, \
3084 NULL, /* get_queue */ \
3085 NULL, /* set_queue */ \
3086 NULL, /* delete_queue */ \
3087 NULL, /* get_queue_stats */ \
3088 NULL, /* queue_dump_start */ \
3089 NULL, /* queue_dump_next */ \
3090 NULL, /* queue_dump_done */ \
3091 NULL, /* dump_queue_stats */ \
3092 \
3093 NULL, /* set_in4 */ \
3094 NULL, /* get_addr_list */ \
3095 NULL, /* add_router */ \
3096 NULL, /* get_next_hop */ \
3097 GET_STATUS, \
3098 NULL, /* arp_lookup */ \
3099 \
3100 netdev_dpdk_update_flags, \
3101 RECONFIGURE, \
3102 \
3103 netdev_dpdk_rxq_alloc, \
3104 netdev_dpdk_rxq_construct, \
3105 netdev_dpdk_rxq_destruct, \
3106 netdev_dpdk_rxq_dealloc, \
3107 RXQ_RECV, \
3108 NULL, /* rx_wait */ \
3109 NULL, /* rxq_drain */ \
3110 }
3111
3112 static int
3113 process_vhost_flags(char *flag, char *default_val, int size,
3114 const struct smap *ovs_other_config,
3115 char **new_val)
3116 {
3117 const char *val;
3118 int changed = 0;
3119
3120 val = smap_get(ovs_other_config, flag);
3121
3122 /* Process the vhost-sock-dir flag if it is provided, otherwise resort to
3123 * default value.
3124 */
3125 if (val && (strlen(val) <= size)) {
3126 changed = 1;
3127 *new_val = xstrdup(val);
3128 VLOG_INFO("User-provided %s in use: %s", flag, *new_val);
3129 } else {
3130 VLOG_INFO("No %s provided - defaulting to %s", flag, default_val);
3131 *new_val = default_val;
3132 }
3133
3134 return changed;
3135 }
3136
3137 static char **
3138 grow_argv(char ***argv, size_t cur_siz, size_t grow_by)
3139 {
3140 return xrealloc(*argv, sizeof(char *) * (cur_siz + grow_by));
3141 }
3142
3143 static void
3144 dpdk_option_extend(char ***argv, int argc, const char *option,
3145 const char *value)
3146 {
3147 char **newargv = grow_argv(argv, argc, 2);
3148 *argv = newargv;
3149 newargv[argc] = xstrdup(option);
3150 newargv[argc+1] = xstrdup(value);
3151 }
3152
3153 static char **
3154 move_argv(char ***argv, size_t cur_size, char **src_argv, size_t src_argc)
3155 {
3156 char **newargv = grow_argv(argv, cur_size, src_argc);
3157 while (src_argc--) {
3158 newargv[cur_size+src_argc] = src_argv[src_argc];
3159 src_argv[src_argc] = NULL;
3160 }
3161 return newargv;
3162 }
3163
3164 static int
3165 extra_dpdk_args(const char *ovs_extra_config, char ***argv, int argc)
3166 {
3167 int ret = argc;
3168 char *release_tok = xstrdup(ovs_extra_config);
3169 char *tok, *endptr = NULL;
3170
3171 for (tok = strtok_r(release_tok, " ", &endptr); tok != NULL;
3172 tok = strtok_r(NULL, " ", &endptr)) {
3173 char **newarg = grow_argv(argv, ret, 1);
3174 *argv = newarg;
3175 newarg[ret++] = xstrdup(tok);
3176 }
3177 free(release_tok);
3178 return ret;
3179 }
3180
3181 static bool
3182 argv_contains(char **argv_haystack, const size_t argc_haystack,
3183 const char *needle)
3184 {
3185 for (size_t i = 0; i < argc_haystack; ++i) {
3186 if (!strcmp(argv_haystack[i], needle))
3187 return true;
3188 }
3189 return false;
3190 }
3191
3192 static int
3193 construct_dpdk_options(const struct smap *ovs_other_config,
3194 char ***argv, const int initial_size,
3195 char **extra_args, const size_t extra_argc)
3196 {
3197 struct dpdk_options_map {
3198 const char *ovs_configuration;
3199 const char *dpdk_option;
3200 bool default_enabled;
3201 const char *default_value;
3202 } opts[] = {
3203 {"dpdk-lcore-mask", "-c", false, NULL},
3204 {"dpdk-hugepage-dir", "--huge-dir", false, NULL},
3205 };
3206
3207 int i, ret = initial_size;
3208
3209 /*First, construct from the flat-options (non-mutex)*/
3210 for (i = 0; i < ARRAY_SIZE(opts); ++i) {
3211 const char *lookup = smap_get(ovs_other_config,
3212 opts[i].ovs_configuration);
3213 if (!lookup && opts[i].default_enabled) {
3214 lookup = opts[i].default_value;
3215 }
3216
3217 if (lookup) {
3218 if (!argv_contains(extra_args, extra_argc, opts[i].dpdk_option)) {
3219 dpdk_option_extend(argv, ret, opts[i].dpdk_option, lookup);
3220 ret += 2;
3221 } else {
3222 VLOG_WARN("Ignoring database defined option '%s' due to "
3223 "dpdk_extras config", opts[i].dpdk_option);
3224 }
3225 }
3226 }
3227
3228 return ret;
3229 }
3230
3231 #define MAX_DPDK_EXCL_OPTS 10
3232
3233 static int
3234 construct_dpdk_mutex_options(const struct smap *ovs_other_config,
3235 char ***argv, const int initial_size,
3236 char **extra_args, const size_t extra_argc)
3237 {
3238 struct dpdk_exclusive_options_map {
3239 const char *category;
3240 const char *ovs_dpdk_options[MAX_DPDK_EXCL_OPTS];
3241 const char *eal_dpdk_options[MAX_DPDK_EXCL_OPTS];
3242 const char *default_value;
3243 int default_option;
3244 } excl_opts[] = {
3245 {"memory type",
3246 {"dpdk-alloc-mem", "dpdk-socket-mem", NULL,},
3247 {"-m", "--socket-mem", NULL,},
3248 "1024,0", 1
3249 },
3250 };
3251
3252 int i, ret = initial_size;
3253 for (i = 0; i < ARRAY_SIZE(excl_opts); ++i) {
3254 int found_opts = 0, scan, found_pos = -1;
3255 const char *found_value;
3256 struct dpdk_exclusive_options_map *popt = &excl_opts[i];
3257
3258 for (scan = 0; scan < MAX_DPDK_EXCL_OPTS
3259 && popt->ovs_dpdk_options[scan]; ++scan) {
3260 const char *lookup = smap_get(ovs_other_config,
3261 popt->ovs_dpdk_options[scan]);
3262 if (lookup && strlen(lookup)) {
3263 found_opts++;
3264 found_pos = scan;
3265 found_value = lookup;
3266 }
3267 }
3268
3269 if (!found_opts) {
3270 if (popt->default_option) {
3271 found_pos = popt->default_option;
3272 found_value = popt->default_value;
3273 } else {
3274 continue;
3275 }
3276 }
3277
3278 if (found_opts > 1) {
3279 VLOG_ERR("Multiple defined options for %s. Please check your"
3280 " database settings and reconfigure if necessary.",
3281 popt->category);
3282 }
3283
3284 if (!argv_contains(extra_args, extra_argc,
3285 popt->eal_dpdk_options[found_pos])) {
3286 dpdk_option_extend(argv, ret, popt->eal_dpdk_options[found_pos],
3287 found_value);
3288 ret += 2;
3289 } else {
3290 VLOG_WARN("Ignoring database defined option '%s' due to "
3291 "dpdk_extras config", popt->eal_dpdk_options[found_pos]);
3292 }
3293 }
3294
3295 return ret;
3296 }
3297
3298 static int
3299 get_dpdk_args(const struct smap *ovs_other_config, char ***argv,
3300 int argc)
3301 {
3302 const char *extra_configuration;
3303 char **extra_args = NULL;
3304 int i;
3305 size_t extra_argc = 0;
3306
3307 extra_configuration = smap_get(ovs_other_config, "dpdk-extra");
3308 if (extra_configuration) {
3309 extra_argc = extra_dpdk_args(extra_configuration, &extra_args, 0);
3310 }
3311
3312 i = construct_dpdk_options(ovs_other_config, argv, argc, extra_args,
3313 extra_argc);
3314 i = construct_dpdk_mutex_options(ovs_other_config, argv, i, extra_args,
3315 extra_argc);
3316
3317 if (extra_configuration) {
3318 *argv = move_argv(argv, i, extra_args, extra_argc);
3319 }
3320
3321 return i + extra_argc;
3322 }
3323
3324 static char **dpdk_argv;
3325 static int dpdk_argc;
3326
3327 static void
3328 deferred_argv_release(void)
3329 {
3330 int result;
3331 for (result = 0; result < dpdk_argc; ++result) {
3332 free(dpdk_argv[result]);
3333 }
3334
3335 free(dpdk_argv);
3336 }
3337
3338 static void
3339 dpdk_init__(const struct smap *ovs_other_config)
3340 {
3341 char **argv = NULL;
3342 int result;
3343 int argc, argc_tmp;
3344 bool auto_determine = true;
3345 int err = 0;
3346 cpu_set_t cpuset;
3347 char *sock_dir_subcomponent;
3348
3349 if (!smap_get_bool(ovs_other_config, "dpdk-init", false)) {
3350 VLOG_INFO("DPDK Disabled - to change this requires a restart.\n");
3351 return;
3352 }
3353
3354 VLOG_INFO("DPDK Enabled, initializing");
3355 if (process_vhost_flags("vhost-sock-dir", xstrdup(ovs_rundir()),
3356 NAME_MAX, ovs_other_config,
3357 &sock_dir_subcomponent)) {
3358 struct stat s;
3359 if (!strstr(sock_dir_subcomponent, "..")) {
3360 vhost_sock_dir = xasprintf("%s/%s", ovs_rundir(),
3361 sock_dir_subcomponent);
3362
3363 err = stat(vhost_sock_dir, &s);
3364 if (err) {
3365 VLOG_ERR("vhost-user sock directory '%s' does not exist.",
3366 vhost_sock_dir);
3367 }
3368 } else {
3369 vhost_sock_dir = xstrdup(ovs_rundir());
3370 VLOG_ERR("vhost-user sock directory request '%s/%s' has invalid"
3371 "characters '..' - using %s instead.",
3372 ovs_rundir(), sock_dir_subcomponent, ovs_rundir());
3373 }
3374 free(sock_dir_subcomponent);
3375 } else {
3376 vhost_sock_dir = sock_dir_subcomponent;
3377 }
3378
3379 argv = grow_argv(&argv, 0, 1);
3380 argc = 1;
3381 argv[0] = xstrdup(ovs_get_program_name());
3382 argc_tmp = get_dpdk_args(ovs_other_config, &argv, argc);
3383
3384 while (argc_tmp != argc) {
3385 if (!strcmp("-c", argv[argc]) || !strcmp("-l", argv[argc])) {
3386 auto_determine = false;
3387 break;
3388 }
3389 argc++;
3390 }
3391 argc = argc_tmp;
3392
3393 /**
3394 * NOTE: This is an unsophisticated mechanism for determining the DPDK
3395 * lcore for the DPDK Master.
3396 */
3397 if (auto_determine) {
3398 int i;
3399 /* Get the main thread affinity */
3400 CPU_ZERO(&cpuset);
3401 err = pthread_getaffinity_np(pthread_self(), sizeof(cpu_set_t),
3402 &cpuset);
3403 if (!err) {
3404 for (i = 0; i < CPU_SETSIZE; i++) {
3405 if (CPU_ISSET(i, &cpuset)) {
3406 argv = grow_argv(&argv, argc, 2);
3407 argv[argc++] = xstrdup("-c");
3408 argv[argc++] = xasprintf("0x%08llX", (1ULL<<i));
3409 i = CPU_SETSIZE;
3410 }
3411 }
3412 } else {
3413 VLOG_ERR("Thread getaffinity error %d. Using core 0x1", err);
3414 /* User did not set dpdk-lcore-mask and unable to get current
3415 * thread affintity - default to core 0x1 */
3416 argv = grow_argv(&argv, argc, 2);
3417 argv[argc++] = xstrdup("-c");
3418 argv[argc++] = xasprintf("0x%X", 1);
3419 }
3420 }
3421
3422 argv = grow_argv(&argv, argc, 1);
3423 argv[argc] = NULL;
3424
3425 optind = 1;
3426
3427 if (VLOG_IS_INFO_ENABLED()) {
3428 struct ds eal_args;
3429 int opt;
3430 ds_init(&eal_args);
3431 ds_put_cstr(&eal_args, "EAL ARGS:");
3432 for (opt = 0; opt < argc; ++opt) {
3433 ds_put_cstr(&eal_args, " ");
3434 ds_put_cstr(&eal_args, argv[opt]);
3435 }
3436 VLOG_INFO("%s", ds_cstr_ro(&eal_args));
3437 ds_destroy(&eal_args);
3438 }
3439
3440 /* Make sure things are initialized ... */
3441 result = rte_eal_init(argc, argv);
3442 if (result < 0) {
3443 ovs_abort(result, "Cannot init EAL");
3444 }
3445
3446 /* Set the main thread affinity back to pre rte_eal_init() value */
3447 if (auto_determine && !err) {
3448 err = pthread_setaffinity_np(pthread_self(), sizeof(cpu_set_t),
3449 &cpuset);
3450 if (err) {
3451 VLOG_ERR("Thread setaffinity error %d", err);
3452 }
3453 }
3454
3455 dpdk_argv = argv;
3456 dpdk_argc = argc;
3457
3458 atexit(deferred_argv_release);
3459
3460 rte_memzone_dump(stdout);
3461 rte_eal_init_ret = 0;
3462
3463 /* We are called from the main thread here */
3464 RTE_PER_LCORE(_lcore_id) = NON_PMD_CORE_ID;
3465
3466 ovs_thread_create("dpdk_watchdog", dpdk_watchdog, NULL);
3467
3468 dpdk_vhost_class_init();
3469
3470 #ifdef DPDK_PDUMP
3471 VLOG_INFO("DPDK pdump packet capture enabled");
3472 err = rte_pdump_init(ovs_rundir());
3473 if (err) {
3474 VLOG_INFO("Error initialising DPDK pdump");
3475 rte_pdump_uninit();
3476 } else {
3477 char *server_socket_path;
3478
3479 server_socket_path = xasprintf("%s/%s", ovs_rundir(),
3480 "pdump_server_socket");
3481 fatal_signal_add_file_to_unlink(server_socket_path);
3482 free(server_socket_path);
3483 }
3484 #endif
3485
3486 /* Finally, register the dpdk classes */
3487 netdev_dpdk_register();
3488 }
3489
3490 void
3491 dpdk_init(const struct smap *ovs_other_config)
3492 {
3493 static struct ovsthread_once once = OVSTHREAD_ONCE_INITIALIZER;
3494
3495 if (ovs_other_config && ovsthread_once_start(&once)) {
3496 dpdk_init__(ovs_other_config);
3497 ovsthread_once_done(&once);
3498 }
3499 }
3500
3501 static const struct netdev_class dpdk_class =
3502 NETDEV_DPDK_CLASS(
3503 "dpdk",
3504 netdev_dpdk_construct,
3505 netdev_dpdk_destruct,
3506 netdev_dpdk_set_config,
3507 netdev_dpdk_set_tx_multiq,
3508 netdev_dpdk_eth_send,
3509 netdev_dpdk_get_carrier,
3510 netdev_dpdk_get_stats,
3511 netdev_dpdk_get_features,
3512 netdev_dpdk_get_status,
3513 netdev_dpdk_reconfigure,
3514 netdev_dpdk_rxq_recv);
3515
3516 static const struct netdev_class dpdk_ring_class =
3517 NETDEV_DPDK_CLASS(
3518 "dpdkr",
3519 netdev_dpdk_ring_construct,
3520 netdev_dpdk_destruct,
3521 netdev_dpdk_ring_set_config,
3522 netdev_dpdk_set_tx_multiq,
3523 netdev_dpdk_ring_send,
3524 netdev_dpdk_get_carrier,
3525 netdev_dpdk_get_stats,
3526 netdev_dpdk_get_features,
3527 netdev_dpdk_get_status,
3528 netdev_dpdk_reconfigure,
3529 netdev_dpdk_rxq_recv);
3530
3531 static const struct netdev_class dpdk_vhost_class =
3532 NETDEV_DPDK_CLASS(
3533 "dpdkvhostuser",
3534 netdev_dpdk_vhost_construct,
3535 netdev_dpdk_vhost_destruct,
3536 NULL,
3537 NULL,
3538 netdev_dpdk_vhost_send,
3539 netdev_dpdk_vhost_get_carrier,
3540 netdev_dpdk_vhost_get_stats,
3541 NULL,
3542 NULL,
3543 netdev_dpdk_vhost_reconfigure,
3544 netdev_dpdk_vhost_rxq_recv);
3545 static const struct netdev_class dpdk_vhost_client_class =
3546 NETDEV_DPDK_CLASS(
3547 "dpdkvhostuserclient",
3548 netdev_dpdk_vhost_client_construct,
3549 netdev_dpdk_vhost_destruct,
3550 netdev_dpdk_vhost_client_set_config,
3551 NULL,
3552 netdev_dpdk_vhost_send,
3553 netdev_dpdk_vhost_get_carrier,
3554 netdev_dpdk_vhost_get_stats,
3555 NULL,
3556 NULL,
3557 netdev_dpdk_vhost_client_reconfigure,
3558 netdev_dpdk_vhost_rxq_recv);
3559
3560 void
3561 netdev_dpdk_register(void)
3562 {
3563 dpdk_common_init();
3564 netdev_register_provider(&dpdk_class);
3565 netdev_register_provider(&dpdk_ring_class);
3566 netdev_register_provider(&dpdk_vhost_class);
3567 netdev_register_provider(&dpdk_vhost_client_class);
3568 }
3569
3570 void
3571 dpdk_set_lcore_id(unsigned cpu)
3572 {
3573 /* NON_PMD_CORE_ID is reserved for use by non pmd threads. */
3574 ovs_assert(cpu != NON_PMD_CORE_ID);
3575 RTE_PER_LCORE(_lcore_id) = cpu;
3576 }
3577
3578 static bool
3579 dpdk_thread_is_pmd(void)
3580 {
3581 return rte_lcore_id() != NON_PMD_CORE_ID;
3582 }