dmaengine: imx-sdma: Let the core do the device node validation
[linux/fpc-iii.git] / drivers / net / veth.c
blob09a1433b08332996163a5344d91f5de430890d2d
1 /*
2 * drivers/net/veth.c
4 * Copyright (C) 2007 OpenVZ http://openvz.org, SWsoft Inc
6 * Author: Pavel Emelianov <xemul@openvz.org>
7 * Ethtool interface from: Eric W. Biederman <ebiederm@xmission.com>
9 */
11 #include <linux/netdevice.h>
12 #include <linux/slab.h>
13 #include <linux/ethtool.h>
14 #include <linux/etherdevice.h>
15 #include <linux/u64_stats_sync.h>
17 #include <net/rtnetlink.h>
18 #include <net/dst.h>
19 #include <net/xfrm.h>
20 #include <net/xdp.h>
21 #include <linux/veth.h>
22 #include <linux/module.h>
23 #include <linux/bpf.h>
24 #include <linux/filter.h>
25 #include <linux/ptr_ring.h>
26 #include <linux/bpf_trace.h>
27 #include <linux/net_tstamp.h>
29 #define DRV_NAME "veth"
30 #define DRV_VERSION "1.0"
32 #define VETH_XDP_FLAG BIT(0)
33 #define VETH_RING_SIZE 256
34 #define VETH_XDP_HEADROOM (XDP_PACKET_HEADROOM + NET_IP_ALIGN)
36 /* Separating two types of XDP xmit */
37 #define VETH_XDP_TX BIT(0)
38 #define VETH_XDP_REDIR BIT(1)
40 struct veth_rq_stats {
41 u64 xdp_packets;
42 u64 xdp_bytes;
43 u64 xdp_drops;
44 struct u64_stats_sync syncp;
47 struct veth_rq {
48 struct napi_struct xdp_napi;
49 struct net_device *dev;
50 struct bpf_prog __rcu *xdp_prog;
51 struct xdp_mem_info xdp_mem;
52 struct veth_rq_stats stats;
53 bool rx_notify_masked;
54 struct ptr_ring xdp_ring;
55 struct xdp_rxq_info xdp_rxq;
58 struct veth_priv {
59 struct net_device __rcu *peer;
60 atomic64_t dropped;
61 struct bpf_prog *_xdp_prog;
62 struct veth_rq *rq;
63 unsigned int requested_headroom;
67 * ethtool interface
70 struct veth_q_stat_desc {
71 char desc[ETH_GSTRING_LEN];
72 size_t offset;
75 #define VETH_RQ_STAT(m) offsetof(struct veth_rq_stats, m)
77 static const struct veth_q_stat_desc veth_rq_stats_desc[] = {
78 { "xdp_packets", VETH_RQ_STAT(xdp_packets) },
79 { "xdp_bytes", VETH_RQ_STAT(xdp_bytes) },
80 { "xdp_drops", VETH_RQ_STAT(xdp_drops) },
83 #define VETH_RQ_STATS_LEN ARRAY_SIZE(veth_rq_stats_desc)
85 static struct {
86 const char string[ETH_GSTRING_LEN];
87 } ethtool_stats_keys[] = {
88 { "peer_ifindex" },
91 static int veth_get_link_ksettings(struct net_device *dev,
92 struct ethtool_link_ksettings *cmd)
94 cmd->base.speed = SPEED_10000;
95 cmd->base.duplex = DUPLEX_FULL;
96 cmd->base.port = PORT_TP;
97 cmd->base.autoneg = AUTONEG_DISABLE;
98 return 0;
101 static void veth_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
103 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
104 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
107 static void veth_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
109 char *p = (char *)buf;
110 int i, j;
112 switch(stringset) {
113 case ETH_SS_STATS:
114 memcpy(p, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
115 p += sizeof(ethtool_stats_keys);
116 for (i = 0; i < dev->real_num_rx_queues; i++) {
117 for (j = 0; j < VETH_RQ_STATS_LEN; j++) {
118 snprintf(p, ETH_GSTRING_LEN,
119 "rx_queue_%u_%.11s",
120 i, veth_rq_stats_desc[j].desc);
121 p += ETH_GSTRING_LEN;
124 break;
128 static int veth_get_sset_count(struct net_device *dev, int sset)
130 switch (sset) {
131 case ETH_SS_STATS:
132 return ARRAY_SIZE(ethtool_stats_keys) +
133 VETH_RQ_STATS_LEN * dev->real_num_rx_queues;
134 default:
135 return -EOPNOTSUPP;
139 static void veth_get_ethtool_stats(struct net_device *dev,
140 struct ethtool_stats *stats, u64 *data)
142 struct veth_priv *priv = netdev_priv(dev);
143 struct net_device *peer = rtnl_dereference(priv->peer);
144 int i, j, idx;
146 data[0] = peer ? peer->ifindex : 0;
147 idx = 1;
148 for (i = 0; i < dev->real_num_rx_queues; i++) {
149 const struct veth_rq_stats *rq_stats = &priv->rq[i].stats;
150 const void *stats_base = (void *)rq_stats;
151 unsigned int start;
152 size_t offset;
154 do {
155 start = u64_stats_fetch_begin_irq(&rq_stats->syncp);
156 for (j = 0; j < VETH_RQ_STATS_LEN; j++) {
157 offset = veth_rq_stats_desc[j].offset;
158 data[idx + j] = *(u64 *)(stats_base + offset);
160 } while (u64_stats_fetch_retry_irq(&rq_stats->syncp, start));
161 idx += VETH_RQ_STATS_LEN;
165 static const struct ethtool_ops veth_ethtool_ops = {
166 .get_drvinfo = veth_get_drvinfo,
167 .get_link = ethtool_op_get_link,
168 .get_strings = veth_get_strings,
169 .get_sset_count = veth_get_sset_count,
170 .get_ethtool_stats = veth_get_ethtool_stats,
171 .get_link_ksettings = veth_get_link_ksettings,
172 .get_ts_info = ethtool_op_get_ts_info,
175 /* general routines */
177 static bool veth_is_xdp_frame(void *ptr)
179 return (unsigned long)ptr & VETH_XDP_FLAG;
182 static void *veth_ptr_to_xdp(void *ptr)
184 return (void *)((unsigned long)ptr & ~VETH_XDP_FLAG);
187 static void *veth_xdp_to_ptr(void *ptr)
189 return (void *)((unsigned long)ptr | VETH_XDP_FLAG);
192 static void veth_ptr_free(void *ptr)
194 if (veth_is_xdp_frame(ptr))
195 xdp_return_frame(veth_ptr_to_xdp(ptr));
196 else
197 kfree_skb(ptr);
200 static void __veth_xdp_flush(struct veth_rq *rq)
202 /* Write ptr_ring before reading rx_notify_masked */
203 smp_mb();
204 if (!rq->rx_notify_masked) {
205 rq->rx_notify_masked = true;
206 napi_schedule(&rq->xdp_napi);
210 static int veth_xdp_rx(struct veth_rq *rq, struct sk_buff *skb)
212 if (unlikely(ptr_ring_produce(&rq->xdp_ring, skb))) {
213 dev_kfree_skb_any(skb);
214 return NET_RX_DROP;
217 return NET_RX_SUCCESS;
220 static int veth_forward_skb(struct net_device *dev, struct sk_buff *skb,
221 struct veth_rq *rq, bool xdp)
223 return __dev_forward_skb(dev, skb) ?: xdp ?
224 veth_xdp_rx(rq, skb) :
225 netif_rx(skb);
228 static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev)
230 struct veth_priv *rcv_priv, *priv = netdev_priv(dev);
231 struct veth_rq *rq = NULL;
232 struct net_device *rcv;
233 int length = skb->len;
234 bool rcv_xdp = false;
235 int rxq;
237 rcu_read_lock();
238 rcv = rcu_dereference(priv->peer);
239 if (unlikely(!rcv)) {
240 kfree_skb(skb);
241 goto drop;
244 rcv_priv = netdev_priv(rcv);
245 rxq = skb_get_queue_mapping(skb);
246 if (rxq < rcv->real_num_rx_queues) {
247 rq = &rcv_priv->rq[rxq];
248 rcv_xdp = rcu_access_pointer(rq->xdp_prog);
249 if (rcv_xdp)
250 skb_record_rx_queue(skb, rxq);
253 skb_tx_timestamp(skb);
254 if (likely(veth_forward_skb(rcv, skb, rq, rcv_xdp) == NET_RX_SUCCESS)) {
255 if (!rcv_xdp) {
256 struct pcpu_lstats *stats = this_cpu_ptr(dev->lstats);
258 u64_stats_update_begin(&stats->syncp);
259 stats->bytes += length;
260 stats->packets++;
261 u64_stats_update_end(&stats->syncp);
263 } else {
264 drop:
265 atomic64_inc(&priv->dropped);
268 if (rcv_xdp)
269 __veth_xdp_flush(rq);
271 rcu_read_unlock();
273 return NETDEV_TX_OK;
276 static u64 veth_stats_tx(struct pcpu_lstats *result, struct net_device *dev)
278 struct veth_priv *priv = netdev_priv(dev);
279 int cpu;
281 result->packets = 0;
282 result->bytes = 0;
283 for_each_possible_cpu(cpu) {
284 struct pcpu_lstats *stats = per_cpu_ptr(dev->lstats, cpu);
285 u64 packets, bytes;
286 unsigned int start;
288 do {
289 start = u64_stats_fetch_begin_irq(&stats->syncp);
290 packets = stats->packets;
291 bytes = stats->bytes;
292 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
293 result->packets += packets;
294 result->bytes += bytes;
296 return atomic64_read(&priv->dropped);
299 static void veth_stats_rx(struct veth_rq_stats *result, struct net_device *dev)
301 struct veth_priv *priv = netdev_priv(dev);
302 int i;
304 result->xdp_packets = 0;
305 result->xdp_bytes = 0;
306 result->xdp_drops = 0;
307 for (i = 0; i < dev->num_rx_queues; i++) {
308 struct veth_rq_stats *stats = &priv->rq[i].stats;
309 u64 packets, bytes, drops;
310 unsigned int start;
312 do {
313 start = u64_stats_fetch_begin_irq(&stats->syncp);
314 packets = stats->xdp_packets;
315 bytes = stats->xdp_bytes;
316 drops = stats->xdp_drops;
317 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
318 result->xdp_packets += packets;
319 result->xdp_bytes += bytes;
320 result->xdp_drops += drops;
324 static void veth_get_stats64(struct net_device *dev,
325 struct rtnl_link_stats64 *tot)
327 struct veth_priv *priv = netdev_priv(dev);
328 struct net_device *peer;
329 struct veth_rq_stats rx;
330 struct pcpu_lstats tx;
332 tot->tx_dropped = veth_stats_tx(&tx, dev);
333 tot->tx_bytes = tx.bytes;
334 tot->tx_packets = tx.packets;
336 veth_stats_rx(&rx, dev);
337 tot->rx_dropped = rx.xdp_drops;
338 tot->rx_bytes = rx.xdp_bytes;
339 tot->rx_packets = rx.xdp_packets;
341 rcu_read_lock();
342 peer = rcu_dereference(priv->peer);
343 if (peer) {
344 tot->rx_dropped += veth_stats_tx(&tx, peer);
345 tot->rx_bytes += tx.bytes;
346 tot->rx_packets += tx.packets;
348 veth_stats_rx(&rx, peer);
349 tot->tx_bytes += rx.xdp_bytes;
350 tot->tx_packets += rx.xdp_packets;
352 rcu_read_unlock();
355 /* fake multicast ability */
356 static void veth_set_multicast_list(struct net_device *dev)
360 static struct sk_buff *veth_build_skb(void *head, int headroom, int len,
361 int buflen)
363 struct sk_buff *skb;
365 if (!buflen) {
366 buflen = SKB_DATA_ALIGN(headroom + len) +
367 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
369 skb = build_skb(head, buflen);
370 if (!skb)
371 return NULL;
373 skb_reserve(skb, headroom);
374 skb_put(skb, len);
376 return skb;
379 static int veth_select_rxq(struct net_device *dev)
381 return smp_processor_id() % dev->real_num_rx_queues;
384 static int veth_xdp_xmit(struct net_device *dev, int n,
385 struct xdp_frame **frames, u32 flags)
387 struct veth_priv *rcv_priv, *priv = netdev_priv(dev);
388 struct net_device *rcv;
389 int i, ret, drops = n;
390 unsigned int max_len;
391 struct veth_rq *rq;
393 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) {
394 ret = -EINVAL;
395 goto drop;
398 rcv = rcu_dereference(priv->peer);
399 if (unlikely(!rcv)) {
400 ret = -ENXIO;
401 goto drop;
404 rcv_priv = netdev_priv(rcv);
405 rq = &rcv_priv->rq[veth_select_rxq(rcv)];
406 /* Non-NULL xdp_prog ensures that xdp_ring is initialized on receive
407 * side. This means an XDP program is loaded on the peer and the peer
408 * device is up.
410 if (!rcu_access_pointer(rq->xdp_prog)) {
411 ret = -ENXIO;
412 goto drop;
415 drops = 0;
416 max_len = rcv->mtu + rcv->hard_header_len + VLAN_HLEN;
418 spin_lock(&rq->xdp_ring.producer_lock);
419 for (i = 0; i < n; i++) {
420 struct xdp_frame *frame = frames[i];
421 void *ptr = veth_xdp_to_ptr(frame);
423 if (unlikely(frame->len > max_len ||
424 __ptr_ring_produce(&rq->xdp_ring, ptr))) {
425 xdp_return_frame_rx_napi(frame);
426 drops++;
429 spin_unlock(&rq->xdp_ring.producer_lock);
431 if (flags & XDP_XMIT_FLUSH)
432 __veth_xdp_flush(rq);
434 if (likely(!drops))
435 return n;
437 ret = n - drops;
438 drop:
439 atomic64_add(drops, &priv->dropped);
441 return ret;
444 static void veth_xdp_flush(struct net_device *dev)
446 struct veth_priv *rcv_priv, *priv = netdev_priv(dev);
447 struct net_device *rcv;
448 struct veth_rq *rq;
450 rcu_read_lock();
451 rcv = rcu_dereference(priv->peer);
452 if (unlikely(!rcv))
453 goto out;
455 rcv_priv = netdev_priv(rcv);
456 rq = &rcv_priv->rq[veth_select_rxq(rcv)];
457 /* xdp_ring is initialized on receive side? */
458 if (unlikely(!rcu_access_pointer(rq->xdp_prog)))
459 goto out;
461 __veth_xdp_flush(rq);
462 out:
463 rcu_read_unlock();
466 static int veth_xdp_tx(struct net_device *dev, struct xdp_buff *xdp)
468 struct xdp_frame *frame = convert_to_xdp_frame(xdp);
470 if (unlikely(!frame))
471 return -EOVERFLOW;
473 return veth_xdp_xmit(dev, 1, &frame, 0);
476 static struct sk_buff *veth_xdp_rcv_one(struct veth_rq *rq,
477 struct xdp_frame *frame,
478 unsigned int *xdp_xmit)
480 void *hard_start = frame->data - frame->headroom;
481 void *head = hard_start - sizeof(struct xdp_frame);
482 int len = frame->len, delta = 0;
483 struct xdp_frame orig_frame;
484 struct bpf_prog *xdp_prog;
485 unsigned int headroom;
486 struct sk_buff *skb;
488 rcu_read_lock();
489 xdp_prog = rcu_dereference(rq->xdp_prog);
490 if (likely(xdp_prog)) {
491 struct xdp_buff xdp;
492 u32 act;
494 xdp.data_hard_start = hard_start;
495 xdp.data = frame->data;
496 xdp.data_end = frame->data + frame->len;
497 xdp.data_meta = frame->data - frame->metasize;
498 xdp.rxq = &rq->xdp_rxq;
500 act = bpf_prog_run_xdp(xdp_prog, &xdp);
502 switch (act) {
503 case XDP_PASS:
504 delta = frame->data - xdp.data;
505 len = xdp.data_end - xdp.data;
506 break;
507 case XDP_TX:
508 orig_frame = *frame;
509 xdp.data_hard_start = head;
510 xdp.rxq->mem = frame->mem;
511 if (unlikely(veth_xdp_tx(rq->dev, &xdp) < 0)) {
512 trace_xdp_exception(rq->dev, xdp_prog, act);
513 frame = &orig_frame;
514 goto err_xdp;
516 *xdp_xmit |= VETH_XDP_TX;
517 rcu_read_unlock();
518 goto xdp_xmit;
519 case XDP_REDIRECT:
520 orig_frame = *frame;
521 xdp.data_hard_start = head;
522 xdp.rxq->mem = frame->mem;
523 if (xdp_do_redirect(rq->dev, &xdp, xdp_prog)) {
524 frame = &orig_frame;
525 goto err_xdp;
527 *xdp_xmit |= VETH_XDP_REDIR;
528 rcu_read_unlock();
529 goto xdp_xmit;
530 default:
531 bpf_warn_invalid_xdp_action(act);
532 /* fall through */
533 case XDP_ABORTED:
534 trace_xdp_exception(rq->dev, xdp_prog, act);
535 /* fall through */
536 case XDP_DROP:
537 goto err_xdp;
540 rcu_read_unlock();
542 headroom = sizeof(struct xdp_frame) + frame->headroom - delta;
543 skb = veth_build_skb(head, headroom, len, 0);
544 if (!skb) {
545 xdp_return_frame(frame);
546 goto err;
549 xdp_scrub_frame(frame);
550 skb->protocol = eth_type_trans(skb, rq->dev);
551 err:
552 return skb;
553 err_xdp:
554 rcu_read_unlock();
555 xdp_return_frame(frame);
556 xdp_xmit:
557 return NULL;
560 static struct sk_buff *veth_xdp_rcv_skb(struct veth_rq *rq, struct sk_buff *skb,
561 unsigned int *xdp_xmit)
563 u32 pktlen, headroom, act, metalen;
564 void *orig_data, *orig_data_end;
565 struct bpf_prog *xdp_prog;
566 int mac_len, delta, off;
567 struct xdp_buff xdp;
569 skb_orphan(skb);
571 rcu_read_lock();
572 xdp_prog = rcu_dereference(rq->xdp_prog);
573 if (unlikely(!xdp_prog)) {
574 rcu_read_unlock();
575 goto out;
578 mac_len = skb->data - skb_mac_header(skb);
579 pktlen = skb->len + mac_len;
580 headroom = skb_headroom(skb) - mac_len;
582 if (skb_shared(skb) || skb_head_is_locked(skb) ||
583 skb_is_nonlinear(skb) || headroom < XDP_PACKET_HEADROOM) {
584 struct sk_buff *nskb;
585 int size, head_off;
586 void *head, *start;
587 struct page *page;
589 size = SKB_DATA_ALIGN(VETH_XDP_HEADROOM + pktlen) +
590 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
591 if (size > PAGE_SIZE)
592 goto drop;
594 page = alloc_page(GFP_ATOMIC | __GFP_NOWARN);
595 if (!page)
596 goto drop;
598 head = page_address(page);
599 start = head + VETH_XDP_HEADROOM;
600 if (skb_copy_bits(skb, -mac_len, start, pktlen)) {
601 page_frag_free(head);
602 goto drop;
605 nskb = veth_build_skb(head,
606 VETH_XDP_HEADROOM + mac_len, skb->len,
607 PAGE_SIZE);
608 if (!nskb) {
609 page_frag_free(head);
610 goto drop;
613 skb_copy_header(nskb, skb);
614 head_off = skb_headroom(nskb) - skb_headroom(skb);
615 skb_headers_offset_update(nskb, head_off);
616 consume_skb(skb);
617 skb = nskb;
620 xdp.data_hard_start = skb->head;
621 xdp.data = skb_mac_header(skb);
622 xdp.data_end = xdp.data + pktlen;
623 xdp.data_meta = xdp.data;
624 xdp.rxq = &rq->xdp_rxq;
625 orig_data = xdp.data;
626 orig_data_end = xdp.data_end;
628 act = bpf_prog_run_xdp(xdp_prog, &xdp);
630 switch (act) {
631 case XDP_PASS:
632 break;
633 case XDP_TX:
634 get_page(virt_to_page(xdp.data));
635 consume_skb(skb);
636 xdp.rxq->mem = rq->xdp_mem;
637 if (unlikely(veth_xdp_tx(rq->dev, &xdp) < 0)) {
638 trace_xdp_exception(rq->dev, xdp_prog, act);
639 goto err_xdp;
641 *xdp_xmit |= VETH_XDP_TX;
642 rcu_read_unlock();
643 goto xdp_xmit;
644 case XDP_REDIRECT:
645 get_page(virt_to_page(xdp.data));
646 consume_skb(skb);
647 xdp.rxq->mem = rq->xdp_mem;
648 if (xdp_do_redirect(rq->dev, &xdp, xdp_prog))
649 goto err_xdp;
650 *xdp_xmit |= VETH_XDP_REDIR;
651 rcu_read_unlock();
652 goto xdp_xmit;
653 default:
654 bpf_warn_invalid_xdp_action(act);
655 /* fall through */
656 case XDP_ABORTED:
657 trace_xdp_exception(rq->dev, xdp_prog, act);
658 /* fall through */
659 case XDP_DROP:
660 goto drop;
662 rcu_read_unlock();
664 delta = orig_data - xdp.data;
665 off = mac_len + delta;
666 if (off > 0)
667 __skb_push(skb, off);
668 else if (off < 0)
669 __skb_pull(skb, -off);
670 skb->mac_header -= delta;
671 off = xdp.data_end - orig_data_end;
672 if (off != 0)
673 __skb_put(skb, off);
674 skb->protocol = eth_type_trans(skb, rq->dev);
676 metalen = xdp.data - xdp.data_meta;
677 if (metalen)
678 skb_metadata_set(skb, metalen);
679 out:
680 return skb;
681 drop:
682 rcu_read_unlock();
683 kfree_skb(skb);
684 return NULL;
685 err_xdp:
686 rcu_read_unlock();
687 page_frag_free(xdp.data);
688 xdp_xmit:
689 return NULL;
692 static int veth_xdp_rcv(struct veth_rq *rq, int budget, unsigned int *xdp_xmit)
694 int i, done = 0, drops = 0, bytes = 0;
696 for (i = 0; i < budget; i++) {
697 void *ptr = __ptr_ring_consume(&rq->xdp_ring);
698 unsigned int xdp_xmit_one = 0;
699 struct sk_buff *skb;
701 if (!ptr)
702 break;
704 if (veth_is_xdp_frame(ptr)) {
705 struct xdp_frame *frame = veth_ptr_to_xdp(ptr);
707 bytes += frame->len;
708 skb = veth_xdp_rcv_one(rq, frame, &xdp_xmit_one);
709 } else {
710 skb = ptr;
711 bytes += skb->len;
712 skb = veth_xdp_rcv_skb(rq, skb, &xdp_xmit_one);
714 *xdp_xmit |= xdp_xmit_one;
716 if (skb)
717 napi_gro_receive(&rq->xdp_napi, skb);
718 else if (!xdp_xmit_one)
719 drops++;
721 done++;
724 u64_stats_update_begin(&rq->stats.syncp);
725 rq->stats.xdp_packets += done;
726 rq->stats.xdp_bytes += bytes;
727 rq->stats.xdp_drops += drops;
728 u64_stats_update_end(&rq->stats.syncp);
730 return done;
733 static int veth_poll(struct napi_struct *napi, int budget)
735 struct veth_rq *rq =
736 container_of(napi, struct veth_rq, xdp_napi);
737 unsigned int xdp_xmit = 0;
738 int done;
740 xdp_set_return_frame_no_direct();
741 done = veth_xdp_rcv(rq, budget, &xdp_xmit);
743 if (done < budget && napi_complete_done(napi, done)) {
744 /* Write rx_notify_masked before reading ptr_ring */
745 smp_store_mb(rq->rx_notify_masked, false);
746 if (unlikely(!__ptr_ring_empty(&rq->xdp_ring))) {
747 rq->rx_notify_masked = true;
748 napi_schedule(&rq->xdp_napi);
752 if (xdp_xmit & VETH_XDP_TX)
753 veth_xdp_flush(rq->dev);
754 if (xdp_xmit & VETH_XDP_REDIR)
755 xdp_do_flush_map();
756 xdp_clear_return_frame_no_direct();
758 return done;
761 static int veth_napi_add(struct net_device *dev)
763 struct veth_priv *priv = netdev_priv(dev);
764 int err, i;
766 for (i = 0; i < dev->real_num_rx_queues; i++) {
767 struct veth_rq *rq = &priv->rq[i];
769 err = ptr_ring_init(&rq->xdp_ring, VETH_RING_SIZE, GFP_KERNEL);
770 if (err)
771 goto err_xdp_ring;
774 for (i = 0; i < dev->real_num_rx_queues; i++) {
775 struct veth_rq *rq = &priv->rq[i];
777 netif_napi_add(dev, &rq->xdp_napi, veth_poll, NAPI_POLL_WEIGHT);
778 napi_enable(&rq->xdp_napi);
781 return 0;
782 err_xdp_ring:
783 for (i--; i >= 0; i--)
784 ptr_ring_cleanup(&priv->rq[i].xdp_ring, veth_ptr_free);
786 return err;
789 static void veth_napi_del(struct net_device *dev)
791 struct veth_priv *priv = netdev_priv(dev);
792 int i;
794 for (i = 0; i < dev->real_num_rx_queues; i++) {
795 struct veth_rq *rq = &priv->rq[i];
797 napi_disable(&rq->xdp_napi);
798 napi_hash_del(&rq->xdp_napi);
800 synchronize_net();
802 for (i = 0; i < dev->real_num_rx_queues; i++) {
803 struct veth_rq *rq = &priv->rq[i];
805 netif_napi_del(&rq->xdp_napi);
806 rq->rx_notify_masked = false;
807 ptr_ring_cleanup(&rq->xdp_ring, veth_ptr_free);
811 static int veth_enable_xdp(struct net_device *dev)
813 struct veth_priv *priv = netdev_priv(dev);
814 int err, i;
816 if (!xdp_rxq_info_is_reg(&priv->rq[0].xdp_rxq)) {
817 for (i = 0; i < dev->real_num_rx_queues; i++) {
818 struct veth_rq *rq = &priv->rq[i];
820 err = xdp_rxq_info_reg(&rq->xdp_rxq, dev, i);
821 if (err < 0)
822 goto err_rxq_reg;
824 err = xdp_rxq_info_reg_mem_model(&rq->xdp_rxq,
825 MEM_TYPE_PAGE_SHARED,
826 NULL);
827 if (err < 0)
828 goto err_reg_mem;
830 /* Save original mem info as it can be overwritten */
831 rq->xdp_mem = rq->xdp_rxq.mem;
834 err = veth_napi_add(dev);
835 if (err)
836 goto err_rxq_reg;
839 for (i = 0; i < dev->real_num_rx_queues; i++)
840 rcu_assign_pointer(priv->rq[i].xdp_prog, priv->_xdp_prog);
842 return 0;
843 err_reg_mem:
844 xdp_rxq_info_unreg(&priv->rq[i].xdp_rxq);
845 err_rxq_reg:
846 for (i--; i >= 0; i--)
847 xdp_rxq_info_unreg(&priv->rq[i].xdp_rxq);
849 return err;
852 static void veth_disable_xdp(struct net_device *dev)
854 struct veth_priv *priv = netdev_priv(dev);
855 int i;
857 for (i = 0; i < dev->real_num_rx_queues; i++)
858 rcu_assign_pointer(priv->rq[i].xdp_prog, NULL);
859 veth_napi_del(dev);
860 for (i = 0; i < dev->real_num_rx_queues; i++) {
861 struct veth_rq *rq = &priv->rq[i];
863 rq->xdp_rxq.mem = rq->xdp_mem;
864 xdp_rxq_info_unreg(&rq->xdp_rxq);
868 static int veth_open(struct net_device *dev)
870 struct veth_priv *priv = netdev_priv(dev);
871 struct net_device *peer = rtnl_dereference(priv->peer);
872 int err;
874 if (!peer)
875 return -ENOTCONN;
877 if (priv->_xdp_prog) {
878 err = veth_enable_xdp(dev);
879 if (err)
880 return err;
883 if (peer->flags & IFF_UP) {
884 netif_carrier_on(dev);
885 netif_carrier_on(peer);
888 return 0;
891 static int veth_close(struct net_device *dev)
893 struct veth_priv *priv = netdev_priv(dev);
894 struct net_device *peer = rtnl_dereference(priv->peer);
896 netif_carrier_off(dev);
897 if (peer)
898 netif_carrier_off(peer);
900 if (priv->_xdp_prog)
901 veth_disable_xdp(dev);
903 return 0;
906 static int is_valid_veth_mtu(int mtu)
908 return mtu >= ETH_MIN_MTU && mtu <= ETH_MAX_MTU;
911 static int veth_alloc_queues(struct net_device *dev)
913 struct veth_priv *priv = netdev_priv(dev);
914 int i;
916 priv->rq = kcalloc(dev->num_rx_queues, sizeof(*priv->rq), GFP_KERNEL);
917 if (!priv->rq)
918 return -ENOMEM;
920 for (i = 0; i < dev->num_rx_queues; i++) {
921 priv->rq[i].dev = dev;
922 u64_stats_init(&priv->rq[i].stats.syncp);
925 return 0;
928 static void veth_free_queues(struct net_device *dev)
930 struct veth_priv *priv = netdev_priv(dev);
932 kfree(priv->rq);
935 static int veth_dev_init(struct net_device *dev)
937 int err;
939 dev->lstats = netdev_alloc_pcpu_stats(struct pcpu_lstats);
940 if (!dev->lstats)
941 return -ENOMEM;
943 err = veth_alloc_queues(dev);
944 if (err) {
945 free_percpu(dev->lstats);
946 return err;
949 return 0;
952 static void veth_dev_free(struct net_device *dev)
954 veth_free_queues(dev);
955 free_percpu(dev->lstats);
958 #ifdef CONFIG_NET_POLL_CONTROLLER
959 static void veth_poll_controller(struct net_device *dev)
961 /* veth only receives frames when its peer sends one
962 * Since it has nothing to do with disabling irqs, we are guaranteed
963 * never to have pending data when we poll for it so
964 * there is nothing to do here.
966 * We need this though so netpoll recognizes us as an interface that
967 * supports polling, which enables bridge devices in virt setups to
968 * still use netconsole
971 #endif /* CONFIG_NET_POLL_CONTROLLER */
973 static int veth_get_iflink(const struct net_device *dev)
975 struct veth_priv *priv = netdev_priv(dev);
976 struct net_device *peer;
977 int iflink;
979 rcu_read_lock();
980 peer = rcu_dereference(priv->peer);
981 iflink = peer ? peer->ifindex : 0;
982 rcu_read_unlock();
984 return iflink;
987 static netdev_features_t veth_fix_features(struct net_device *dev,
988 netdev_features_t features)
990 struct veth_priv *priv = netdev_priv(dev);
991 struct net_device *peer;
993 peer = rtnl_dereference(priv->peer);
994 if (peer) {
995 struct veth_priv *peer_priv = netdev_priv(peer);
997 if (peer_priv->_xdp_prog)
998 features &= ~NETIF_F_GSO_SOFTWARE;
1001 return features;
1004 static void veth_set_rx_headroom(struct net_device *dev, int new_hr)
1006 struct veth_priv *peer_priv, *priv = netdev_priv(dev);
1007 struct net_device *peer;
1009 if (new_hr < 0)
1010 new_hr = 0;
1012 rcu_read_lock();
1013 peer = rcu_dereference(priv->peer);
1014 if (unlikely(!peer))
1015 goto out;
1017 peer_priv = netdev_priv(peer);
1018 priv->requested_headroom = new_hr;
1019 new_hr = max(priv->requested_headroom, peer_priv->requested_headroom);
1020 dev->needed_headroom = new_hr;
1021 peer->needed_headroom = new_hr;
1023 out:
1024 rcu_read_unlock();
1027 static int veth_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1028 struct netlink_ext_ack *extack)
1030 struct veth_priv *priv = netdev_priv(dev);
1031 struct bpf_prog *old_prog;
1032 struct net_device *peer;
1033 unsigned int max_mtu;
1034 int err;
1036 old_prog = priv->_xdp_prog;
1037 priv->_xdp_prog = prog;
1038 peer = rtnl_dereference(priv->peer);
1040 if (prog) {
1041 if (!peer) {
1042 NL_SET_ERR_MSG_MOD(extack, "Cannot set XDP when peer is detached");
1043 err = -ENOTCONN;
1044 goto err;
1047 max_mtu = PAGE_SIZE - VETH_XDP_HEADROOM -
1048 peer->hard_header_len -
1049 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1050 if (peer->mtu > max_mtu) {
1051 NL_SET_ERR_MSG_MOD(extack, "Peer MTU is too large to set XDP");
1052 err = -ERANGE;
1053 goto err;
1056 if (dev->real_num_rx_queues < peer->real_num_tx_queues) {
1057 NL_SET_ERR_MSG_MOD(extack, "XDP expects number of rx queues not less than peer tx queues");
1058 err = -ENOSPC;
1059 goto err;
1062 if (dev->flags & IFF_UP) {
1063 err = veth_enable_xdp(dev);
1064 if (err) {
1065 NL_SET_ERR_MSG_MOD(extack, "Setup for XDP failed");
1066 goto err;
1070 if (!old_prog) {
1071 peer->hw_features &= ~NETIF_F_GSO_SOFTWARE;
1072 peer->max_mtu = max_mtu;
1076 if (old_prog) {
1077 if (!prog) {
1078 if (dev->flags & IFF_UP)
1079 veth_disable_xdp(dev);
1081 if (peer) {
1082 peer->hw_features |= NETIF_F_GSO_SOFTWARE;
1083 peer->max_mtu = ETH_MAX_MTU;
1086 bpf_prog_put(old_prog);
1089 if ((!!old_prog ^ !!prog) && peer)
1090 netdev_update_features(peer);
1092 return 0;
1093 err:
1094 priv->_xdp_prog = old_prog;
1096 return err;
1099 static u32 veth_xdp_query(struct net_device *dev)
1101 struct veth_priv *priv = netdev_priv(dev);
1102 const struct bpf_prog *xdp_prog;
1104 xdp_prog = priv->_xdp_prog;
1105 if (xdp_prog)
1106 return xdp_prog->aux->id;
1108 return 0;
1111 static int veth_xdp(struct net_device *dev, struct netdev_bpf *xdp)
1113 switch (xdp->command) {
1114 case XDP_SETUP_PROG:
1115 return veth_xdp_set(dev, xdp->prog, xdp->extack);
1116 case XDP_QUERY_PROG:
1117 xdp->prog_id = veth_xdp_query(dev);
1118 return 0;
1119 default:
1120 return -EINVAL;
1124 static const struct net_device_ops veth_netdev_ops = {
1125 .ndo_init = veth_dev_init,
1126 .ndo_open = veth_open,
1127 .ndo_stop = veth_close,
1128 .ndo_start_xmit = veth_xmit,
1129 .ndo_get_stats64 = veth_get_stats64,
1130 .ndo_set_rx_mode = veth_set_multicast_list,
1131 .ndo_set_mac_address = eth_mac_addr,
1132 #ifdef CONFIG_NET_POLL_CONTROLLER
1133 .ndo_poll_controller = veth_poll_controller,
1134 #endif
1135 .ndo_get_iflink = veth_get_iflink,
1136 .ndo_fix_features = veth_fix_features,
1137 .ndo_features_check = passthru_features_check,
1138 .ndo_set_rx_headroom = veth_set_rx_headroom,
1139 .ndo_bpf = veth_xdp,
1140 .ndo_xdp_xmit = veth_xdp_xmit,
1143 #define VETH_FEATURES (NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HW_CSUM | \
1144 NETIF_F_RXCSUM | NETIF_F_SCTP_CRC | NETIF_F_HIGHDMA | \
1145 NETIF_F_GSO_SOFTWARE | NETIF_F_GSO_ENCAP_ALL | \
1146 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX | \
1147 NETIF_F_HW_VLAN_STAG_TX | NETIF_F_HW_VLAN_STAG_RX )
1149 static void veth_setup(struct net_device *dev)
1151 ether_setup(dev);
1153 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
1154 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
1155 dev->priv_flags |= IFF_NO_QUEUE;
1156 dev->priv_flags |= IFF_PHONY_HEADROOM;
1158 dev->netdev_ops = &veth_netdev_ops;
1159 dev->ethtool_ops = &veth_ethtool_ops;
1160 dev->features |= NETIF_F_LLTX;
1161 dev->features |= VETH_FEATURES;
1162 dev->vlan_features = dev->features &
1163 ~(NETIF_F_HW_VLAN_CTAG_TX |
1164 NETIF_F_HW_VLAN_STAG_TX |
1165 NETIF_F_HW_VLAN_CTAG_RX |
1166 NETIF_F_HW_VLAN_STAG_RX);
1167 dev->needs_free_netdev = true;
1168 dev->priv_destructor = veth_dev_free;
1169 dev->max_mtu = ETH_MAX_MTU;
1171 dev->hw_features = VETH_FEATURES;
1172 dev->hw_enc_features = VETH_FEATURES;
1173 dev->mpls_features = NETIF_F_HW_CSUM | NETIF_F_GSO_SOFTWARE;
1177 * netlink interface
1180 static int veth_validate(struct nlattr *tb[], struct nlattr *data[],
1181 struct netlink_ext_ack *extack)
1183 if (tb[IFLA_ADDRESS]) {
1184 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1185 return -EINVAL;
1186 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1187 return -EADDRNOTAVAIL;
1189 if (tb[IFLA_MTU]) {
1190 if (!is_valid_veth_mtu(nla_get_u32(tb[IFLA_MTU])))
1191 return -EINVAL;
1193 return 0;
1196 static struct rtnl_link_ops veth_link_ops;
1198 static int veth_newlink(struct net *src_net, struct net_device *dev,
1199 struct nlattr *tb[], struct nlattr *data[],
1200 struct netlink_ext_ack *extack)
1202 int err;
1203 struct net_device *peer;
1204 struct veth_priv *priv;
1205 char ifname[IFNAMSIZ];
1206 struct nlattr *peer_tb[IFLA_MAX + 1], **tbp;
1207 unsigned char name_assign_type;
1208 struct ifinfomsg *ifmp;
1209 struct net *net;
1212 * create and register peer first
1214 if (data != NULL && data[VETH_INFO_PEER] != NULL) {
1215 struct nlattr *nla_peer;
1217 nla_peer = data[VETH_INFO_PEER];
1218 ifmp = nla_data(nla_peer);
1219 err = rtnl_nla_parse_ifla(peer_tb,
1220 nla_data(nla_peer) + sizeof(struct ifinfomsg),
1221 nla_len(nla_peer) - sizeof(struct ifinfomsg),
1222 NULL);
1223 if (err < 0)
1224 return err;
1226 err = veth_validate(peer_tb, NULL, extack);
1227 if (err < 0)
1228 return err;
1230 tbp = peer_tb;
1231 } else {
1232 ifmp = NULL;
1233 tbp = tb;
1236 if (ifmp && tbp[IFLA_IFNAME]) {
1237 nla_strlcpy(ifname, tbp[IFLA_IFNAME], IFNAMSIZ);
1238 name_assign_type = NET_NAME_USER;
1239 } else {
1240 snprintf(ifname, IFNAMSIZ, DRV_NAME "%%d");
1241 name_assign_type = NET_NAME_ENUM;
1244 net = rtnl_link_get_net(src_net, tbp);
1245 if (IS_ERR(net))
1246 return PTR_ERR(net);
1248 peer = rtnl_create_link(net, ifname, name_assign_type,
1249 &veth_link_ops, tbp, extack);
1250 if (IS_ERR(peer)) {
1251 put_net(net);
1252 return PTR_ERR(peer);
1255 if (!ifmp || !tbp[IFLA_ADDRESS])
1256 eth_hw_addr_random(peer);
1258 if (ifmp && (dev->ifindex != 0))
1259 peer->ifindex = ifmp->ifi_index;
1261 peer->gso_max_size = dev->gso_max_size;
1262 peer->gso_max_segs = dev->gso_max_segs;
1264 err = register_netdevice(peer);
1265 put_net(net);
1266 net = NULL;
1267 if (err < 0)
1268 goto err_register_peer;
1270 netif_carrier_off(peer);
1272 err = rtnl_configure_link(peer, ifmp);
1273 if (err < 0)
1274 goto err_configure_peer;
1277 * register dev last
1279 * note, that since we've registered new device the dev's name
1280 * should be re-allocated
1283 if (tb[IFLA_ADDRESS] == NULL)
1284 eth_hw_addr_random(dev);
1286 if (tb[IFLA_IFNAME])
1287 nla_strlcpy(dev->name, tb[IFLA_IFNAME], IFNAMSIZ);
1288 else
1289 snprintf(dev->name, IFNAMSIZ, DRV_NAME "%%d");
1291 err = register_netdevice(dev);
1292 if (err < 0)
1293 goto err_register_dev;
1295 netif_carrier_off(dev);
1298 * tie the deviced together
1301 priv = netdev_priv(dev);
1302 rcu_assign_pointer(priv->peer, peer);
1304 priv = netdev_priv(peer);
1305 rcu_assign_pointer(priv->peer, dev);
1307 return 0;
1309 err_register_dev:
1310 /* nothing to do */
1311 err_configure_peer:
1312 unregister_netdevice(peer);
1313 return err;
1315 err_register_peer:
1316 free_netdev(peer);
1317 return err;
1320 static void veth_dellink(struct net_device *dev, struct list_head *head)
1322 struct veth_priv *priv;
1323 struct net_device *peer;
1325 priv = netdev_priv(dev);
1326 peer = rtnl_dereference(priv->peer);
1328 /* Note : dellink() is called from default_device_exit_batch(),
1329 * before a rcu_synchronize() point. The devices are guaranteed
1330 * not being freed before one RCU grace period.
1332 RCU_INIT_POINTER(priv->peer, NULL);
1333 unregister_netdevice_queue(dev, head);
1335 if (peer) {
1336 priv = netdev_priv(peer);
1337 RCU_INIT_POINTER(priv->peer, NULL);
1338 unregister_netdevice_queue(peer, head);
1342 static const struct nla_policy veth_policy[VETH_INFO_MAX + 1] = {
1343 [VETH_INFO_PEER] = { .len = sizeof(struct ifinfomsg) },
1346 static struct net *veth_get_link_net(const struct net_device *dev)
1348 struct veth_priv *priv = netdev_priv(dev);
1349 struct net_device *peer = rtnl_dereference(priv->peer);
1351 return peer ? dev_net(peer) : dev_net(dev);
1354 static struct rtnl_link_ops veth_link_ops = {
1355 .kind = DRV_NAME,
1356 .priv_size = sizeof(struct veth_priv),
1357 .setup = veth_setup,
1358 .validate = veth_validate,
1359 .newlink = veth_newlink,
1360 .dellink = veth_dellink,
1361 .policy = veth_policy,
1362 .maxtype = VETH_INFO_MAX,
1363 .get_link_net = veth_get_link_net,
1367 * init/fini
1370 static __init int veth_init(void)
1372 return rtnl_link_register(&veth_link_ops);
1375 static __exit void veth_exit(void)
1377 rtnl_link_unregister(&veth_link_ops);
1380 module_init(veth_init);
1381 module_exit(veth_exit);
1383 MODULE_DESCRIPTION("Virtual Ethernet Tunnel");
1384 MODULE_LICENSE("GPL v2");
1385 MODULE_ALIAS_RTNL_LINK(DRV_NAME);