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