blob: fb5c17361f6439c48e13beced9327bd1d621cb77 [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07002/*
3 * drivers/net/veth.c
4 *
5 * Copyright (C) 2007 OpenVZ http://openvz.org, SWsoft Inc
6 *
7 * Author: Pavel Emelianov <xemul@openvz.org>
8 * Ethtool interface from: Eric W. Biederman <ebiederm@xmission.com>
9 *
10 */
11
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070012#include <linux/netdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070014#include <linux/ethtool.h>
15#include <linux/etherdevice.h>
Eric Dumazetcf05c702011-06-19 22:48:34 -070016#include <linux/u64_stats_sync.h>
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070017
Jiri Pirkof7b12602014-02-18 20:53:18 +010018#include <net/rtnetlink.h>
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070019#include <net/dst.h>
20#include <net/xfrm.h>
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +090021#include <net/xdp.h>
Stephen Hemmingerecef9692007-12-25 17:23:59 -080022#include <linux/veth.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040023#include <linux/module.h>
Toshiaki Makita948d4f22018-08-03 16:58:10 +090024#include <linux/bpf.h>
25#include <linux/filter.h>
26#include <linux/ptr_ring.h>
Toshiaki Makita948d4f22018-08-03 16:58:10 +090027#include <linux/bpf_trace.h>
Michael Walleaa4e6892018-08-29 17:24:11 +020028#include <linux/net_tstamp.h>
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070029
30#define DRV_NAME "veth"
31#define DRV_VERSION "1.0"
32
Toshiaki Makita9fc8d512018-08-03 16:58:13 +090033#define VETH_XDP_FLAG BIT(0)
Toshiaki Makita948d4f22018-08-03 16:58:10 +090034#define VETH_RING_SIZE 256
35#define VETH_XDP_HEADROOM (XDP_PACKET_HEADROOM + NET_IP_ALIGN)
36
Toshiaki Makita9cda7802019-06-13 18:39:59 +090037#define VETH_XDP_TX_BULK_SIZE 16
38
Lorenzo Bianconi65780c52020-03-19 17:41:25 +010039struct veth_stats {
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +010040 u64 rx_drops;
41 /* xdp */
Lorenzo Bianconi65780c52020-03-19 17:41:25 +010042 u64 xdp_packets;
43 u64 xdp_bytes;
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +010044 u64 xdp_redirect;
Lorenzo Bianconi65780c52020-03-19 17:41:25 +010045 u64 xdp_drops;
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +010046 u64 xdp_tx;
Lorenzo Bianconi9152cff2020-03-19 17:41:28 +010047 u64 xdp_tx_err;
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +010048 u64 peer_tq_xdp_xmit;
49 u64 peer_tq_xdp_xmit_err;
Lorenzo Bianconi65780c52020-03-19 17:41:25 +010050};
51
Toshiaki Makita4195e542018-10-11 18:36:49 +090052struct veth_rq_stats {
Lorenzo Bianconi65780c52020-03-19 17:41:25 +010053 struct veth_stats vs;
Toshiaki Makita4195e542018-10-11 18:36:49 +090054 struct u64_stats_sync syncp;
55};
56
Toshiaki Makita638264d2018-08-03 16:58:18 +090057struct veth_rq {
Toshiaki Makita948d4f22018-08-03 16:58:10 +090058 struct napi_struct xdp_napi;
59 struct net_device *dev;
60 struct bpf_prog __rcu *xdp_prog;
Toshiaki Makitad1396002018-08-03 16:58:17 +090061 struct xdp_mem_info xdp_mem;
Toshiaki Makita4195e542018-10-11 18:36:49 +090062 struct veth_rq_stats stats;
Toshiaki Makita948d4f22018-08-03 16:58:10 +090063 bool rx_notify_masked;
64 struct ptr_ring xdp_ring;
65 struct xdp_rxq_info xdp_rxq;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070066};
67
Toshiaki Makita638264d2018-08-03 16:58:18 +090068struct veth_priv {
69 struct net_device __rcu *peer;
70 atomic64_t dropped;
71 struct bpf_prog *_xdp_prog;
72 struct veth_rq *rq;
73 unsigned int requested_headroom;
74};
75
Toshiaki Makita9cda7802019-06-13 18:39:59 +090076struct veth_xdp_tx_bq {
77 struct xdp_frame *q[VETH_XDP_TX_BULK_SIZE];
78 unsigned int count;
79};
80
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070081/*
82 * ethtool interface
83 */
84
Toshiaki Makitad397b962018-10-11 18:36:50 +090085struct veth_q_stat_desc {
86 char desc[ETH_GSTRING_LEN];
87 size_t offset;
88};
89
Lorenzo Bianconi65780c52020-03-19 17:41:25 +010090#define VETH_RQ_STAT(m) offsetof(struct veth_stats, m)
Toshiaki Makitad397b962018-10-11 18:36:50 +090091
92static const struct veth_q_stat_desc veth_rq_stats_desc[] = {
93 { "xdp_packets", VETH_RQ_STAT(xdp_packets) },
94 { "xdp_bytes", VETH_RQ_STAT(xdp_bytes) },
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +010095 { "drops", VETH_RQ_STAT(rx_drops) },
96 { "xdp_redirect", VETH_RQ_STAT(xdp_redirect) },
97 { "xdp_drops", VETH_RQ_STAT(xdp_drops) },
98 { "xdp_tx", VETH_RQ_STAT(xdp_tx) },
99 { "xdp_tx_errors", VETH_RQ_STAT(xdp_tx_err) },
Toshiaki Makitad397b962018-10-11 18:36:50 +0900100};
101
102#define VETH_RQ_STATS_LEN ARRAY_SIZE(veth_rq_stats_desc)
103
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100104static const struct veth_q_stat_desc veth_tq_stats_desc[] = {
105 { "xdp_xmit", VETH_RQ_STAT(peer_tq_xdp_xmit) },
106 { "xdp_xmit_errors", VETH_RQ_STAT(peer_tq_xdp_xmit_err) },
107};
108
109#define VETH_TQ_STATS_LEN ARRAY_SIZE(veth_tq_stats_desc)
110
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700111static struct {
112 const char string[ETH_GSTRING_LEN];
113} ethtool_stats_keys[] = {
114 { "peer_ifindex" },
115};
116
Philippe Reynes56607b92017-03-29 08:24:21 +0200117static int veth_get_link_ksettings(struct net_device *dev,
118 struct ethtool_link_ksettings *cmd)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700119{
Philippe Reynes56607b92017-03-29 08:24:21 +0200120 cmd->base.speed = SPEED_10000;
121 cmd->base.duplex = DUPLEX_FULL;
122 cmd->base.port = PORT_TP;
123 cmd->base.autoneg = AUTONEG_DISABLE;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700124 return 0;
125}
126
127static void veth_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
128{
Rick Jones33a5ba12011-11-15 14:59:53 +0000129 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
130 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700131}
132
133static void veth_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
134{
Toshiaki Makitad397b962018-10-11 18:36:50 +0900135 char *p = (char *)buf;
136 int i, j;
137
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700138 switch(stringset) {
139 case ETH_SS_STATS:
Toshiaki Makitad397b962018-10-11 18:36:50 +0900140 memcpy(p, &ethtool_stats_keys, sizeof(ethtool_stats_keys));
141 p += sizeof(ethtool_stats_keys);
142 for (i = 0; i < dev->real_num_rx_queues; i++) {
143 for (j = 0; j < VETH_RQ_STATS_LEN; j++) {
Florian Fainelliabdf47a2019-02-21 20:09:29 -0800144 snprintf(p, ETH_GSTRING_LEN,
Lorenzo Bianconi9152cff2020-03-19 17:41:28 +0100145 "rx_queue_%u_%.18s",
Toshiaki Makitad397b962018-10-11 18:36:50 +0900146 i, veth_rq_stats_desc[j].desc);
147 p += ETH_GSTRING_LEN;
148 }
149 }
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100150 for (i = 0; i < dev->real_num_tx_queues; i++) {
151 for (j = 0; j < VETH_TQ_STATS_LEN; j++) {
152 snprintf(p, ETH_GSTRING_LEN,
153 "tx_queue_%u_%.18s",
154 i, veth_tq_stats_desc[j].desc);
155 p += ETH_GSTRING_LEN;
156 }
157 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700158 break;
159 }
160}
161
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700162static int veth_get_sset_count(struct net_device *dev, int sset)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700163{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700164 switch (sset) {
165 case ETH_SS_STATS:
Toshiaki Makitad397b962018-10-11 18:36:50 +0900166 return ARRAY_SIZE(ethtool_stats_keys) +
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100167 VETH_RQ_STATS_LEN * dev->real_num_rx_queues +
168 VETH_TQ_STATS_LEN * dev->real_num_tx_queues;
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700169 default:
170 return -EOPNOTSUPP;
171 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700172}
173
174static void veth_get_ethtool_stats(struct net_device *dev,
175 struct ethtool_stats *stats, u64 *data)
176{
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100177 struct veth_priv *rcv_priv, *priv = netdev_priv(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000178 struct net_device *peer = rtnl_dereference(priv->peer);
Toshiaki Makitad397b962018-10-11 18:36:50 +0900179 int i, j, idx;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700180
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000181 data[0] = peer ? peer->ifindex : 0;
Toshiaki Makitad397b962018-10-11 18:36:50 +0900182 idx = 1;
183 for (i = 0; i < dev->real_num_rx_queues; i++) {
184 const struct veth_rq_stats *rq_stats = &priv->rq[i].stats;
Lorenzo Bianconi65780c52020-03-19 17:41:25 +0100185 const void *stats_base = (void *)&rq_stats->vs;
Toshiaki Makitad397b962018-10-11 18:36:50 +0900186 unsigned int start;
187 size_t offset;
188
189 do {
190 start = u64_stats_fetch_begin_irq(&rq_stats->syncp);
191 for (j = 0; j < VETH_RQ_STATS_LEN; j++) {
192 offset = veth_rq_stats_desc[j].offset;
193 data[idx + j] = *(u64 *)(stats_base + offset);
194 }
195 } while (u64_stats_fetch_retry_irq(&rq_stats->syncp, start));
196 idx += VETH_RQ_STATS_LEN;
197 }
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100198
199 if (!peer)
200 return;
201
202 rcv_priv = netdev_priv(peer);
203 for (i = 0; i < peer->real_num_rx_queues; i++) {
204 const struct veth_rq_stats *rq_stats = &rcv_priv->rq[i].stats;
205 const void *base = (void *)&rq_stats->vs;
206 unsigned int start, tx_idx = idx;
207 size_t offset;
208
209 tx_idx += (i % dev->real_num_tx_queues) * VETH_TQ_STATS_LEN;
210 do {
211 start = u64_stats_fetch_begin_irq(&rq_stats->syncp);
212 for (j = 0; j < VETH_TQ_STATS_LEN; j++) {
213 offset = veth_tq_stats_desc[j].offset;
214 data[tx_idx + j] += *(u64 *)(base + offset);
215 }
216 } while (u64_stats_fetch_retry_irq(&rq_stats->syncp, start));
217 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700218}
219
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700220static const struct ethtool_ops veth_ethtool_ops = {
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700221 .get_drvinfo = veth_get_drvinfo,
222 .get_link = ethtool_op_get_link,
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700223 .get_strings = veth_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700224 .get_sset_count = veth_get_sset_count,
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700225 .get_ethtool_stats = veth_get_ethtool_stats,
Philippe Reynes56607b92017-03-29 08:24:21 +0200226 .get_link_ksettings = veth_get_link_ksettings,
Julian Wiedmann056b21f2019-04-12 13:06:15 +0200227 .get_ts_info = ethtool_op_get_ts_info,
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700228};
229
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900230/* general routines */
231
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900232static bool veth_is_xdp_frame(void *ptr)
233{
234 return (unsigned long)ptr & VETH_XDP_FLAG;
235}
236
237static void *veth_ptr_to_xdp(void *ptr)
238{
239 return (void *)((unsigned long)ptr & ~VETH_XDP_FLAG);
240}
241
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900242static void *veth_xdp_to_ptr(void *ptr)
243{
244 return (void *)((unsigned long)ptr | VETH_XDP_FLAG);
245}
246
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900247static void veth_ptr_free(void *ptr)
248{
249 if (veth_is_xdp_frame(ptr))
250 xdp_return_frame(veth_ptr_to_xdp(ptr));
251 else
252 kfree_skb(ptr);
253}
254
Toshiaki Makita638264d2018-08-03 16:58:18 +0900255static void __veth_xdp_flush(struct veth_rq *rq)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900256{
257 /* Write ptr_ring before reading rx_notify_masked */
258 smp_mb();
Toshiaki Makita638264d2018-08-03 16:58:18 +0900259 if (!rq->rx_notify_masked) {
260 rq->rx_notify_masked = true;
261 napi_schedule(&rq->xdp_napi);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900262 }
263}
264
Toshiaki Makita638264d2018-08-03 16:58:18 +0900265static int veth_xdp_rx(struct veth_rq *rq, struct sk_buff *skb)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900266{
Toshiaki Makita638264d2018-08-03 16:58:18 +0900267 if (unlikely(ptr_ring_produce(&rq->xdp_ring, skb))) {
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900268 dev_kfree_skb_any(skb);
269 return NET_RX_DROP;
270 }
271
272 return NET_RX_SUCCESS;
273}
274
Toshiaki Makita638264d2018-08-03 16:58:18 +0900275static int veth_forward_skb(struct net_device *dev, struct sk_buff *skb,
276 struct veth_rq *rq, bool xdp)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700277{
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900278 return __dev_forward_skb(dev, skb) ?: xdp ?
Toshiaki Makita638264d2018-08-03 16:58:18 +0900279 veth_xdp_rx(rq, skb) :
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900280 netif_rx(skb);
281}
282
283static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev)
284{
285 struct veth_priv *rcv_priv, *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900286 struct veth_rq *rq = NULL;
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000287 struct net_device *rcv;
Eric Dumazet26811282012-12-29 16:02:43 +0000288 int length = skb->len;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900289 bool rcv_xdp = false;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900290 int rxq;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700291
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000292 rcu_read_lock();
293 rcv = rcu_dereference(priv->peer);
294 if (unlikely(!rcv)) {
295 kfree_skb(skb);
296 goto drop;
297 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700298
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900299 rcv_priv = netdev_priv(rcv);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900300 rxq = skb_get_queue_mapping(skb);
301 if (rxq < rcv->real_num_rx_queues) {
302 rq = &rcv_priv->rq[rxq];
303 rcv_xdp = rcu_access_pointer(rq->xdp_prog);
304 if (rcv_xdp)
305 skb_record_rx_queue(skb, rxq);
306 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900307
Michael Walleaa4e6892018-08-29 17:24:11 +0200308 skb_tx_timestamp(skb);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900309 if (likely(veth_forward_skb(rcv, skb, rq, rcv_xdp) == NET_RX_SUCCESS)) {
Eric Dumazetb4fba472019-11-07 16:27:17 -0800310 if (!rcv_xdp)
311 dev_lstats_add(dev, length);
Eric Dumazet26811282012-12-29 16:02:43 +0000312 } else {
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000313drop:
Eric Dumazet26811282012-12-29 16:02:43 +0000314 atomic64_inc(&priv->dropped);
315 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900316
317 if (rcv_xdp)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900318 __veth_xdp_flush(rq);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900319
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000320 rcu_read_unlock();
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900321
Patrick McHardy6ed10652009-06-23 06:03:08 +0000322 return NETDEV_TX_OK;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700323}
324
Eric Dumazetb4fba472019-11-07 16:27:17 -0800325static u64 veth_stats_tx(struct net_device *dev, u64 *packets, u64 *bytes)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700326{
Eric Dumazetcf05c702011-06-19 22:48:34 -0700327 struct veth_priv *priv = netdev_priv(dev);
David S. Miller11687a12009-06-25 02:45:42 -0700328
Eric Dumazetb4fba472019-11-07 16:27:17 -0800329 dev_lstats_read(dev, packets, bytes);
Eric Dumazet26811282012-12-29 16:02:43 +0000330 return atomic64_read(&priv->dropped);
331}
332
Lorenzo Bianconi65780c52020-03-19 17:41:25 +0100333static void veth_stats_rx(struct veth_stats *result, struct net_device *dev)
Toshiaki Makita4195e542018-10-11 18:36:49 +0900334{
335 struct veth_priv *priv = netdev_priv(dev);
336 int i;
337
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100338 result->peer_tq_xdp_xmit_err = 0;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900339 result->xdp_packets = 0;
Lorenzo Bianconid99a7c2f2020-03-19 17:41:29 +0100340 result->xdp_tx_err = 0;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900341 result->xdp_bytes = 0;
Lorenzo Bianconi66fe4a02020-03-19 17:41:27 +0100342 result->rx_drops = 0;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900343 for (i = 0; i < dev->num_rx_queues; i++) {
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100344 u64 packets, bytes, drops, xdp_tx_err, peer_tq_xdp_xmit_err;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900345 struct veth_rq_stats *stats = &priv->rq[i].stats;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900346 unsigned int start;
347
348 do {
349 start = u64_stats_fetch_begin_irq(&stats->syncp);
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100350 peer_tq_xdp_xmit_err = stats->vs.peer_tq_xdp_xmit_err;
Lorenzo Bianconid99a7c2f2020-03-19 17:41:29 +0100351 xdp_tx_err = stats->vs.xdp_tx_err;
Lorenzo Bianconi65780c52020-03-19 17:41:25 +0100352 packets = stats->vs.xdp_packets;
353 bytes = stats->vs.xdp_bytes;
Lorenzo Bianconi66fe4a02020-03-19 17:41:27 +0100354 drops = stats->vs.rx_drops;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900355 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100356 result->peer_tq_xdp_xmit_err += peer_tq_xdp_xmit_err;
Lorenzo Bianconid99a7c2f2020-03-19 17:41:29 +0100357 result->xdp_tx_err += xdp_tx_err;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900358 result->xdp_packets += packets;
359 result->xdp_bytes += bytes;
Lorenzo Bianconi66fe4a02020-03-19 17:41:27 +0100360 result->rx_drops += drops;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900361 }
362}
363
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800364static void veth_get_stats64(struct net_device *dev,
365 struct rtnl_link_stats64 *tot)
Eric Dumazet26811282012-12-29 16:02:43 +0000366{
367 struct veth_priv *priv = netdev_priv(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000368 struct net_device *peer;
Lorenzo Bianconi65780c52020-03-19 17:41:25 +0100369 struct veth_stats rx;
Eric Dumazetb4fba472019-11-07 16:27:17 -0800370 u64 packets, bytes;
Eric Dumazet26811282012-12-29 16:02:43 +0000371
Eric Dumazetb4fba472019-11-07 16:27:17 -0800372 tot->tx_dropped = veth_stats_tx(dev, &packets, &bytes);
373 tot->tx_bytes = bytes;
374 tot->tx_packets = packets;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900375
376 veth_stats_rx(&rx, dev);
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100377 tot->tx_dropped += rx.xdp_tx_err;
378 tot->rx_dropped = rx.rx_drops + rx.peer_tq_xdp_xmit_err;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900379 tot->rx_bytes = rx.xdp_bytes;
380 tot->rx_packets = rx.xdp_packets;
Eric Dumazet26811282012-12-29 16:02:43 +0000381
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000382 rcu_read_lock();
383 peer = rcu_dereference(priv->peer);
384 if (peer) {
Jiang Lidonge25d5db2020-03-04 09:49:29 +0800385 veth_stats_tx(peer, &packets, &bytes);
Eric Dumazetb4fba472019-11-07 16:27:17 -0800386 tot->rx_bytes += bytes;
387 tot->rx_packets += packets;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900388
389 veth_stats_rx(&rx, peer);
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100390 tot->tx_dropped += rx.peer_tq_xdp_xmit_err;
391 tot->rx_dropped += rx.xdp_tx_err;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900392 tot->tx_bytes += rx.xdp_bytes;
393 tot->tx_packets += rx.xdp_packets;
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000394 }
395 rcu_read_unlock();
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700396}
397
Gao feng5c70ef82013-10-04 16:52:24 +0800398/* fake multicast ability */
399static void veth_set_multicast_list(struct net_device *dev)
400{
401}
402
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900403static struct sk_buff *veth_build_skb(void *head, int headroom, int len,
404 int buflen)
405{
406 struct sk_buff *skb;
407
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900408 skb = build_skb(head, buflen);
409 if (!skb)
410 return NULL;
411
412 skb_reserve(skb, headroom);
413 skb_put(skb, len);
414
415 return skb;
416}
417
Toshiaki Makita638264d2018-08-03 16:58:18 +0900418static int veth_select_rxq(struct net_device *dev)
419{
420 return smp_processor_id() % dev->real_num_rx_queues;
421}
422
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900423static int veth_xdp_xmit(struct net_device *dev, int n,
Lorenzo Bianconi9152cff2020-03-19 17:41:28 +0100424 struct xdp_frame **frames,
425 u32 flags, bool ndo_xmit)
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900426{
427 struct veth_priv *rcv_priv, *priv = netdev_priv(dev);
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100428 int i, ret = -ENXIO, drops = 0;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900429 struct net_device *rcv;
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100430 unsigned int max_len;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900431 struct veth_rq *rq;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900432
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100433 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK))
Lorenzo Bianconid99a7c2f2020-03-19 17:41:29 +0100434 return -EINVAL;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900435
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100436 rcu_read_lock();
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900437 rcv = rcu_dereference(priv->peer);
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100438 if (unlikely(!rcv))
439 goto out;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900440
441 rcv_priv = netdev_priv(rcv);
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100442 rq = &rcv_priv->rq[veth_select_rxq(rcv)];
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900443 /* Non-NULL xdp_prog ensures that xdp_ring is initialized on receive
444 * side. This means an XDP program is loaded on the peer and the peer
445 * device is up.
446 */
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100447 if (!rcu_access_pointer(rq->xdp_prog))
448 goto out;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900449
450 max_len = rcv->mtu + rcv->hard_header_len + VLAN_HLEN;
451
Toshiaki Makita638264d2018-08-03 16:58:18 +0900452 spin_lock(&rq->xdp_ring.producer_lock);
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900453 for (i = 0; i < n; i++) {
454 struct xdp_frame *frame = frames[i];
455 void *ptr = veth_xdp_to_ptr(frame);
456
457 if (unlikely(frame->len > max_len ||
Toshiaki Makita638264d2018-08-03 16:58:18 +0900458 __ptr_ring_produce(&rq->xdp_ring, ptr))) {
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900459 xdp_return_frame_rx_napi(frame);
460 drops++;
461 }
462 }
Toshiaki Makita638264d2018-08-03 16:58:18 +0900463 spin_unlock(&rq->xdp_ring.producer_lock);
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900464
465 if (flags & XDP_XMIT_FLUSH)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900466 __veth_xdp_flush(rq);
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900467
Lorenzo Bianconid99a7c2f2020-03-19 17:41:29 +0100468 ret = n - drops;
Lorenzo Bianconi9152cff2020-03-19 17:41:28 +0100469 if (ndo_xmit) {
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100470 u64_stats_update_begin(&rq->stats.syncp);
471 rq->stats.vs.peer_tq_xdp_xmit += n - drops;
472 rq->stats.vs.peer_tq_xdp_xmit_err += drops;
473 u64_stats_update_end(&rq->stats.syncp);
Lorenzo Bianconi9152cff2020-03-19 17:41:28 +0100474 }
Lorenzo Bianconi9152cff2020-03-19 17:41:28 +0100475
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100476out:
John Fastabendb23bfa52020-01-26 16:14:02 -0800477 rcu_read_unlock();
Toshiaki Makita21314792018-10-11 18:36:48 +0900478
479 return ret;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900480}
481
Lorenzo Bianconi9152cff2020-03-19 17:41:28 +0100482static int veth_ndo_xdp_xmit(struct net_device *dev, int n,
483 struct xdp_frame **frames, u32 flags)
484{
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100485 int err;
486
487 err = veth_xdp_xmit(dev, n, frames, flags, true);
488 if (err < 0) {
489 struct veth_priv *priv = netdev_priv(dev);
490
491 atomic64_add(n, &priv->dropped);
492 }
493
494 return err;
Lorenzo Bianconi9152cff2020-03-19 17:41:28 +0100495}
496
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100497static void veth_xdp_flush_bq(struct veth_rq *rq, struct veth_xdp_tx_bq *bq)
Toshiaki Makita9cda7802019-06-13 18:39:59 +0900498{
499 int sent, i, err = 0;
500
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100501 sent = veth_xdp_xmit(rq->dev, bq->count, bq->q, 0, false);
Toshiaki Makita9cda7802019-06-13 18:39:59 +0900502 if (sent < 0) {
503 err = sent;
504 sent = 0;
505 for (i = 0; i < bq->count; i++)
506 xdp_return_frame(bq->q[i]);
507 }
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100508 trace_xdp_bulk_tx(rq->dev, sent, bq->count - sent, err);
Toshiaki Makita9cda7802019-06-13 18:39:59 +0900509
Lorenzo Bianconi5fe6e562020-03-26 23:10:20 +0100510 u64_stats_update_begin(&rq->stats.syncp);
511 rq->stats.vs.xdp_tx += sent;
512 rq->stats.vs.xdp_tx_err += bq->count - sent;
513 u64_stats_update_end(&rq->stats.syncp);
514
Toshiaki Makita9cda7802019-06-13 18:39:59 +0900515 bq->count = 0;
516}
517
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100518static void veth_xdp_flush(struct veth_rq *rq, struct veth_xdp_tx_bq *bq)
Toshiaki Makitad1396002018-08-03 16:58:17 +0900519{
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100520 struct veth_priv *rcv_priv, *priv = netdev_priv(rq->dev);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900521 struct net_device *rcv;
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100522 struct veth_rq *rcv_rq;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900523
524 rcu_read_lock();
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100525 veth_xdp_flush_bq(rq, bq);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900526 rcv = rcu_dereference(priv->peer);
527 if (unlikely(!rcv))
528 goto out;
529
530 rcv_priv = netdev_priv(rcv);
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100531 rcv_rq = &rcv_priv->rq[veth_select_rxq(rcv)];
Toshiaki Makitad1396002018-08-03 16:58:17 +0900532 /* xdp_ring is initialized on receive side? */
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100533 if (unlikely(!rcu_access_pointer(rcv_rq->xdp_prog)))
Toshiaki Makitad1396002018-08-03 16:58:17 +0900534 goto out;
535
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100536 __veth_xdp_flush(rcv_rq);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900537out:
538 rcu_read_unlock();
539}
540
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100541static int veth_xdp_tx(struct veth_rq *rq, struct xdp_buff *xdp,
Toshiaki Makita9cda7802019-06-13 18:39:59 +0900542 struct veth_xdp_tx_bq *bq)
Toshiaki Makitad1396002018-08-03 16:58:17 +0900543{
544 struct xdp_frame *frame = convert_to_xdp_frame(xdp);
545
546 if (unlikely(!frame))
547 return -EOVERFLOW;
548
Toshiaki Makita9cda7802019-06-13 18:39:59 +0900549 if (unlikely(bq->count == VETH_XDP_TX_BULK_SIZE))
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100550 veth_xdp_flush_bq(rq, bq);
Toshiaki Makita9cda7802019-06-13 18:39:59 +0900551
552 bq->q[bq->count++] = frame;
553
554 return 0;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900555}
556
Toshiaki Makita638264d2018-08-03 16:58:18 +0900557static struct sk_buff *veth_xdp_rcv_one(struct veth_rq *rq,
Toshiaki Makitad1396002018-08-03 16:58:17 +0900558 struct xdp_frame *frame,
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100559 struct veth_xdp_tx_bq *bq,
560 struct veth_stats *stats)
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900561{
562 void *hard_start = frame->data - frame->headroom;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900563 int len = frame->len, delta = 0;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900564 struct xdp_frame orig_frame;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900565 struct bpf_prog *xdp_prog;
566 unsigned int headroom;
567 struct sk_buff *skb;
568
Jesper Dangaard Brouer5c857222020-05-14 12:49:43 +0200569 /* bpf_xdp_adjust_head() assures BPF cannot access xdp_frame area */
570 hard_start -= sizeof(struct xdp_frame);
571
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900572 rcu_read_lock();
Toshiaki Makita638264d2018-08-03 16:58:18 +0900573 xdp_prog = rcu_dereference(rq->xdp_prog);
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900574 if (likely(xdp_prog)) {
575 struct xdp_buff xdp;
576 u32 act;
577
Lorenzo Bianconifc379872020-05-28 22:47:28 +0200578 xdp_convert_frame_to_buff(frame, &xdp);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900579 xdp.rxq = &rq->xdp_rxq;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900580
581 act = bpf_prog_run_xdp(xdp_prog, &xdp);
582
583 switch (act) {
584 case XDP_PASS:
585 delta = frame->data - xdp.data;
586 len = xdp.data_end - xdp.data;
587 break;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900588 case XDP_TX:
589 orig_frame = *frame;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900590 xdp.rxq->mem = frame->mem;
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100591 if (unlikely(veth_xdp_tx(rq, &xdp, bq) < 0)) {
Toshiaki Makita638264d2018-08-03 16:58:18 +0900592 trace_xdp_exception(rq->dev, xdp_prog, act);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900593 frame = &orig_frame;
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100594 stats->rx_drops++;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900595 goto err_xdp;
596 }
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100597 stats->xdp_tx++;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900598 rcu_read_unlock();
599 goto xdp_xmit;
600 case XDP_REDIRECT:
601 orig_frame = *frame;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900602 xdp.rxq->mem = frame->mem;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900603 if (xdp_do_redirect(rq->dev, &xdp, xdp_prog)) {
Toshiaki Makitad1396002018-08-03 16:58:17 +0900604 frame = &orig_frame;
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100605 stats->rx_drops++;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900606 goto err_xdp;
607 }
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100608 stats->xdp_redirect++;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900609 rcu_read_unlock();
610 goto xdp_xmit;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900611 default:
612 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvaa9b6d9e2019-02-08 12:37:33 -0600613 /* fall through */
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900614 case XDP_ABORTED:
Toshiaki Makita638264d2018-08-03 16:58:18 +0900615 trace_xdp_exception(rq->dev, xdp_prog, act);
Gustavo A. R. Silvaa9b6d9e2019-02-08 12:37:33 -0600616 /* fall through */
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900617 case XDP_DROP:
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100618 stats->xdp_drops++;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900619 goto err_xdp;
620 }
621 }
622 rcu_read_unlock();
623
624 headroom = sizeof(struct xdp_frame) + frame->headroom - delta;
Jesper Dangaard Brouer45a9e6d2020-05-14 12:49:48 +0200625 skb = veth_build_skb(hard_start, headroom, len, frame->frame_sz);
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900626 if (!skb) {
627 xdp_return_frame(frame);
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100628 stats->rx_drops++;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900629 goto err;
630 }
631
Jesper Dangaard Brouercbf33512019-06-18 15:05:32 +0200632 xdp_release_frame(frame);
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900633 xdp_scrub_frame(frame);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900634 skb->protocol = eth_type_trans(skb, rq->dev);
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900635err:
636 return skb;
637err_xdp:
638 rcu_read_unlock();
639 xdp_return_frame(frame);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900640xdp_xmit:
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900641 return NULL;
642}
643
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100644static struct sk_buff *veth_xdp_rcv_skb(struct veth_rq *rq,
645 struct sk_buff *skb,
646 struct veth_xdp_tx_bq *bq,
647 struct veth_stats *stats)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900648{
649 u32 pktlen, headroom, act, metalen;
650 void *orig_data, *orig_data_end;
651 struct bpf_prog *xdp_prog;
652 int mac_len, delta, off;
653 struct xdp_buff xdp;
654
Toshiaki Makita4bf9ffa2018-09-14 13:33:44 +0900655 skb_orphan(skb);
656
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900657 rcu_read_lock();
Toshiaki Makita638264d2018-08-03 16:58:18 +0900658 xdp_prog = rcu_dereference(rq->xdp_prog);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900659 if (unlikely(!xdp_prog)) {
660 rcu_read_unlock();
661 goto out;
662 }
663
664 mac_len = skb->data - skb_mac_header(skb);
665 pktlen = skb->len + mac_len;
666 headroom = skb_headroom(skb) - mac_len;
667
668 if (skb_shared(skb) || skb_head_is_locked(skb) ||
669 skb_is_nonlinear(skb) || headroom < XDP_PACKET_HEADROOM) {
670 struct sk_buff *nskb;
671 int size, head_off;
672 void *head, *start;
673 struct page *page;
674
675 size = SKB_DATA_ALIGN(VETH_XDP_HEADROOM + pktlen) +
676 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
677 if (size > PAGE_SIZE)
678 goto drop;
679
680 page = alloc_page(GFP_ATOMIC | __GFP_NOWARN);
681 if (!page)
682 goto drop;
683
684 head = page_address(page);
685 start = head + VETH_XDP_HEADROOM;
686 if (skb_copy_bits(skb, -mac_len, start, pktlen)) {
687 page_frag_free(head);
688 goto drop;
689 }
690
Jesper Dangaard Brouer45a9e6d2020-05-14 12:49:48 +0200691 nskb = veth_build_skb(head, VETH_XDP_HEADROOM + mac_len,
692 skb->len, PAGE_SIZE);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900693 if (!nskb) {
694 page_frag_free(head);
695 goto drop;
696 }
697
698 skb_copy_header(nskb, skb);
699 head_off = skb_headroom(nskb) - skb_headroom(skb);
700 skb_headers_offset_update(nskb, head_off);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900701 consume_skb(skb);
702 skb = nskb;
703 }
704
705 xdp.data_hard_start = skb->head;
706 xdp.data = skb_mac_header(skb);
707 xdp.data_end = xdp.data + pktlen;
708 xdp.data_meta = xdp.data;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900709 xdp.rxq = &rq->xdp_rxq;
Jesper Dangaard Brouer45a9e6d2020-05-14 12:49:48 +0200710
711 /* SKB "head" area always have tailroom for skb_shared_info */
712 xdp.frame_sz = (void *)skb_end_pointer(skb) - xdp.data_hard_start;
713 xdp.frame_sz += SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
714
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900715 orig_data = xdp.data;
716 orig_data_end = xdp.data_end;
717
718 act = bpf_prog_run_xdp(xdp_prog, &xdp);
719
720 switch (act) {
721 case XDP_PASS:
722 break;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900723 case XDP_TX:
724 get_page(virt_to_page(xdp.data));
725 consume_skb(skb);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900726 xdp.rxq->mem = rq->xdp_mem;
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100727 if (unlikely(veth_xdp_tx(rq, &xdp, bq) < 0)) {
Toshiaki Makita638264d2018-08-03 16:58:18 +0900728 trace_xdp_exception(rq->dev, xdp_prog, act);
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100729 stats->rx_drops++;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900730 goto err_xdp;
731 }
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100732 stats->xdp_tx++;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900733 rcu_read_unlock();
734 goto xdp_xmit;
735 case XDP_REDIRECT:
736 get_page(virt_to_page(xdp.data));
737 consume_skb(skb);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900738 xdp.rxq->mem = rq->xdp_mem;
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100739 if (xdp_do_redirect(rq->dev, &xdp, xdp_prog)) {
740 stats->rx_drops++;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900741 goto err_xdp;
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100742 }
743 stats->xdp_redirect++;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900744 rcu_read_unlock();
745 goto xdp_xmit;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900746 default:
747 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvaa9b6d9e2019-02-08 12:37:33 -0600748 /* fall through */
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900749 case XDP_ABORTED:
Toshiaki Makita638264d2018-08-03 16:58:18 +0900750 trace_xdp_exception(rq->dev, xdp_prog, act);
Gustavo A. R. Silvaa9b6d9e2019-02-08 12:37:33 -0600751 /* fall through */
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900752 case XDP_DROP:
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100753 stats->xdp_drops++;
754 goto xdp_drop;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900755 }
756 rcu_read_unlock();
757
Jesper Dangaard Brouer45a9e6d2020-05-14 12:49:48 +0200758 /* check if bpf_xdp_adjust_head was used */
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900759 delta = orig_data - xdp.data;
760 off = mac_len + delta;
761 if (off > 0)
762 __skb_push(skb, off);
763 else if (off < 0)
764 __skb_pull(skb, -off);
765 skb->mac_header -= delta;
Jesper Dangaard Brouer45a9e6d2020-05-14 12:49:48 +0200766
767 /* check if bpf_xdp_adjust_tail was used */
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900768 off = xdp.data_end - orig_data_end;
769 if (off != 0)
Jesper Dangaard Brouer45a9e6d2020-05-14 12:49:48 +0200770 __skb_put(skb, off); /* positive on grow, negative on shrink */
Toshiaki Makita638264d2018-08-03 16:58:18 +0900771 skb->protocol = eth_type_trans(skb, rq->dev);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900772
773 metalen = xdp.data - xdp.data_meta;
774 if (metalen)
775 skb_metadata_set(skb, metalen);
776out:
777 return skb;
778drop:
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100779 stats->rx_drops++;
780xdp_drop:
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900781 rcu_read_unlock();
782 kfree_skb(skb);
783 return NULL;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900784err_xdp:
785 rcu_read_unlock();
786 page_frag_free(xdp.data);
787xdp_xmit:
788 return NULL;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900789}
790
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100791static int veth_xdp_rcv(struct veth_rq *rq, int budget,
792 struct veth_xdp_tx_bq *bq,
793 struct veth_stats *stats)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900794{
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100795 int i, done = 0;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900796
797 for (i = 0; i < budget; i++) {
Toshiaki Makita638264d2018-08-03 16:58:18 +0900798 void *ptr = __ptr_ring_consume(&rq->xdp_ring);
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900799 struct sk_buff *skb;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900800
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900801 if (!ptr)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900802 break;
803
Toshiaki Makitad1396002018-08-03 16:58:17 +0900804 if (veth_is_xdp_frame(ptr)) {
Toshiaki Makita4195e542018-10-11 18:36:49 +0900805 struct xdp_frame *frame = veth_ptr_to_xdp(ptr);
806
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100807 stats->xdp_bytes += frame->len;
808 skb = veth_xdp_rcv_one(rq, frame, bq, stats);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900809 } else {
Toshiaki Makita4195e542018-10-11 18:36:49 +0900810 skb = ptr;
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100811 stats->xdp_bytes += skb->len;
812 skb = veth_xdp_rcv_skb(rq, skb, bq, stats);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900813 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900814
815 if (skb)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900816 napi_gro_receive(&rq->xdp_napi, skb);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900817
818 done++;
819 }
820
Toshiaki Makita4195e542018-10-11 18:36:49 +0900821 u64_stats_update_begin(&rq->stats.syncp);
Lorenzo Bianconi9152cff2020-03-19 17:41:28 +0100822 rq->stats.vs.xdp_redirect += stats->xdp_redirect;
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100823 rq->stats.vs.xdp_bytes += stats->xdp_bytes;
Lorenzo Bianconi66fe4a02020-03-19 17:41:27 +0100824 rq->stats.vs.xdp_drops += stats->xdp_drops;
825 rq->stats.vs.rx_drops += stats->rx_drops;
Lorenzo Bianconi65780c52020-03-19 17:41:25 +0100826 rq->stats.vs.xdp_packets += done;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900827 u64_stats_update_end(&rq->stats.syncp);
828
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900829 return done;
830}
831
832static int veth_poll(struct napi_struct *napi, int budget)
833{
Toshiaki Makita638264d2018-08-03 16:58:18 +0900834 struct veth_rq *rq =
835 container_of(napi, struct veth_rq, xdp_napi);
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100836 struct veth_stats stats = {};
Toshiaki Makita9cda7802019-06-13 18:39:59 +0900837 struct veth_xdp_tx_bq bq;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900838 int done;
839
Toshiaki Makita9cda7802019-06-13 18:39:59 +0900840 bq.count = 0;
841
Toshiaki Makitad1396002018-08-03 16:58:17 +0900842 xdp_set_return_frame_no_direct();
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100843 done = veth_xdp_rcv(rq, budget, &bq, &stats);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900844
845 if (done < budget && napi_complete_done(napi, done)) {
846 /* Write rx_notify_masked before reading ptr_ring */
Toshiaki Makita638264d2018-08-03 16:58:18 +0900847 smp_store_mb(rq->rx_notify_masked, false);
848 if (unlikely(!__ptr_ring_empty(&rq->xdp_ring))) {
849 rq->rx_notify_masked = true;
850 napi_schedule(&rq->xdp_napi);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900851 }
852 }
853
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100854 if (stats.xdp_tx > 0)
Lorenzo Bianconibd32aa12020-03-26 23:10:19 +0100855 veth_xdp_flush(rq, &bq);
Lorenzo Bianconi1c5b82e52020-03-19 17:41:26 +0100856 if (stats.xdp_redirect > 0)
Toke Høiland-Jørgensen1d233882020-01-16 16:14:45 +0100857 xdp_do_flush();
Toshiaki Makitad1396002018-08-03 16:58:17 +0900858 xdp_clear_return_frame_no_direct();
859
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900860 return done;
861}
862
863static int veth_napi_add(struct net_device *dev)
864{
865 struct veth_priv *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900866 int err, i;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900867
Toshiaki Makita638264d2018-08-03 16:58:18 +0900868 for (i = 0; i < dev->real_num_rx_queues; i++) {
869 struct veth_rq *rq = &priv->rq[i];
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900870
Toshiaki Makita638264d2018-08-03 16:58:18 +0900871 err = ptr_ring_init(&rq->xdp_ring, VETH_RING_SIZE, GFP_KERNEL);
872 if (err)
873 goto err_xdp_ring;
874 }
875
876 for (i = 0; i < dev->real_num_rx_queues; i++) {
877 struct veth_rq *rq = &priv->rq[i];
878
879 netif_napi_add(dev, &rq->xdp_napi, veth_poll, NAPI_POLL_WEIGHT);
880 napi_enable(&rq->xdp_napi);
881 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900882
883 return 0;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900884err_xdp_ring:
885 for (i--; i >= 0; i--)
886 ptr_ring_cleanup(&priv->rq[i].xdp_ring, veth_ptr_free);
887
888 return err;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900889}
890
891static void veth_napi_del(struct net_device *dev)
892{
893 struct veth_priv *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900894 int i;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900895
Toshiaki Makita638264d2018-08-03 16:58:18 +0900896 for (i = 0; i < dev->real_num_rx_queues; i++) {
897 struct veth_rq *rq = &priv->rq[i];
898
899 napi_disable(&rq->xdp_napi);
900 napi_hash_del(&rq->xdp_napi);
901 }
902 synchronize_net();
903
904 for (i = 0; i < dev->real_num_rx_queues; i++) {
905 struct veth_rq *rq = &priv->rq[i];
906
907 netif_napi_del(&rq->xdp_napi);
908 rq->rx_notify_masked = false;
909 ptr_ring_cleanup(&rq->xdp_ring, veth_ptr_free);
910 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900911}
912
913static int veth_enable_xdp(struct net_device *dev)
914{
915 struct veth_priv *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900916 int err, i;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900917
Toshiaki Makita638264d2018-08-03 16:58:18 +0900918 if (!xdp_rxq_info_is_reg(&priv->rq[0].xdp_rxq)) {
919 for (i = 0; i < dev->real_num_rx_queues; i++) {
920 struct veth_rq *rq = &priv->rq[i];
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900921
Toshiaki Makita638264d2018-08-03 16:58:18 +0900922 err = xdp_rxq_info_reg(&rq->xdp_rxq, dev, i);
923 if (err < 0)
924 goto err_rxq_reg;
925
926 err = xdp_rxq_info_reg_mem_model(&rq->xdp_rxq,
927 MEM_TYPE_PAGE_SHARED,
928 NULL);
929 if (err < 0)
930 goto err_reg_mem;
931
932 /* Save original mem info as it can be overwritten */
933 rq->xdp_mem = rq->xdp_rxq.mem;
934 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900935
936 err = veth_napi_add(dev);
937 if (err)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900938 goto err_rxq_reg;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900939 }
940
Toshiaki Makita638264d2018-08-03 16:58:18 +0900941 for (i = 0; i < dev->real_num_rx_queues; i++)
942 rcu_assign_pointer(priv->rq[i].xdp_prog, priv->_xdp_prog);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900943
944 return 0;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900945err_reg_mem:
946 xdp_rxq_info_unreg(&priv->rq[i].xdp_rxq);
947err_rxq_reg:
948 for (i--; i >= 0; i--)
949 xdp_rxq_info_unreg(&priv->rq[i].xdp_rxq);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900950
951 return err;
952}
953
954static void veth_disable_xdp(struct net_device *dev)
955{
956 struct veth_priv *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900957 int i;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900958
Toshiaki Makita638264d2018-08-03 16:58:18 +0900959 for (i = 0; i < dev->real_num_rx_queues; i++)
960 rcu_assign_pointer(priv->rq[i].xdp_prog, NULL);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900961 veth_napi_del(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900962 for (i = 0; i < dev->real_num_rx_queues; i++) {
963 struct veth_rq *rq = &priv->rq[i];
964
965 rq->xdp_rxq.mem = rq->xdp_mem;
966 xdp_rxq_info_unreg(&rq->xdp_rxq);
967 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900968}
969
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700970static int veth_open(struct net_device *dev)
971{
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000972 struct veth_priv *priv = netdev_priv(dev);
973 struct net_device *peer = rtnl_dereference(priv->peer);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900974 int err;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700975
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000976 if (!peer)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700977 return -ENOTCONN;
978
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900979 if (priv->_xdp_prog) {
980 err = veth_enable_xdp(dev);
981 if (err)
982 return err;
983 }
984
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000985 if (peer->flags & IFF_UP) {
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700986 netif_carrier_on(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000987 netif_carrier_on(peer);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700988 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900989
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700990 return 0;
991}
992
Eric W. Biederman2cf48a12009-02-25 19:47:29 +0000993static int veth_close(struct net_device *dev)
994{
995 struct veth_priv *priv = netdev_priv(dev);
Eric Dumazet2efd32e2013-01-10 08:32:45 +0000996 struct net_device *peer = rtnl_dereference(priv->peer);
Eric W. Biederman2cf48a12009-02-25 19:47:29 +0000997
998 netif_carrier_off(dev);
Eric Dumazet2efd32e2013-01-10 08:32:45 +0000999 if (peer)
1000 netif_carrier_off(peer);
Eric W. Biederman2cf48a12009-02-25 19:47:29 +00001001
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001002 if (priv->_xdp_prog)
1003 veth_disable_xdp(dev);
1004
Eric W. Biederman2cf48a12009-02-25 19:47:29 +00001005 return 0;
1006}
1007
Jarod Wilson91572082016-10-20 13:55:20 -04001008static int is_valid_veth_mtu(int mtu)
Eric Biederman38d40812009-03-03 23:36:04 -08001009{
Jarod Wilson91572082016-10-20 13:55:20 -04001010 return mtu >= ETH_MIN_MTU && mtu <= ETH_MAX_MTU;
Eric Biederman38d40812009-03-03 23:36:04 -08001011}
1012
Toshiaki Makita7797b932018-08-15 17:07:29 +09001013static int veth_alloc_queues(struct net_device *dev)
1014{
1015 struct veth_priv *priv = netdev_priv(dev);
1016 int i;
1017
1018 priv->rq = kcalloc(dev->num_rx_queues, sizeof(*priv->rq), GFP_KERNEL);
1019 if (!priv->rq)
1020 return -ENOMEM;
1021
Toshiaki Makita4195e542018-10-11 18:36:49 +09001022 for (i = 0; i < dev->num_rx_queues; i++) {
Toshiaki Makita7797b932018-08-15 17:07:29 +09001023 priv->rq[i].dev = dev;
Toshiaki Makita4195e542018-10-11 18:36:49 +09001024 u64_stats_init(&priv->rq[i].stats.syncp);
1025 }
Toshiaki Makita7797b932018-08-15 17:07:29 +09001026
1027 return 0;
1028}
1029
1030static void veth_free_queues(struct net_device *dev)
1031{
1032 struct veth_priv *priv = netdev_priv(dev);
1033
1034 kfree(priv->rq);
1035}
1036
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001037static int veth_dev_init(struct net_device *dev)
1038{
Toshiaki Makita7797b932018-08-15 17:07:29 +09001039 int err;
1040
Li RongQing14d73412018-09-17 18:46:55 +08001041 dev->lstats = netdev_alloc_pcpu_stats(struct pcpu_lstats);
1042 if (!dev->lstats)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001043 return -ENOMEM;
Toshiaki Makita7797b932018-08-15 17:07:29 +09001044
1045 err = veth_alloc_queues(dev);
1046 if (err) {
Li RongQing14d73412018-09-17 18:46:55 +08001047 free_percpu(dev->lstats);
Toshiaki Makita7797b932018-08-15 17:07:29 +09001048 return err;
1049 }
1050
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001051 return 0;
1052}
1053
David S. Miller11687a12009-06-25 02:45:42 -07001054static void veth_dev_free(struct net_device *dev)
1055{
Toshiaki Makita7797b932018-08-15 17:07:29 +09001056 veth_free_queues(dev);
Li RongQing14d73412018-09-17 18:46:55 +08001057 free_percpu(dev->lstats);
David S. Miller11687a12009-06-25 02:45:42 -07001058}
1059
WANG Congbb446c12014-06-23 15:36:02 -07001060#ifdef CONFIG_NET_POLL_CONTROLLER
1061static void veth_poll_controller(struct net_device *dev)
1062{
1063 /* veth only receives frames when its peer sends one
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001064 * Since it has nothing to do with disabling irqs, we are guaranteed
WANG Congbb446c12014-06-23 15:36:02 -07001065 * never to have pending data when we poll for it so
1066 * there is nothing to do here.
1067 *
1068 * We need this though so netpoll recognizes us as an interface that
1069 * supports polling, which enables bridge devices in virt setups to
1070 * still use netconsole
1071 */
1072}
1073#endif /* CONFIG_NET_POLL_CONTROLLER */
1074
Nicolas Dichtela45253b2015-04-02 17:07:11 +02001075static int veth_get_iflink(const struct net_device *dev)
1076{
1077 struct veth_priv *priv = netdev_priv(dev);
1078 struct net_device *peer;
1079 int iflink;
1080
1081 rcu_read_lock();
1082 peer = rcu_dereference(priv->peer);
1083 iflink = peer ? peer->ifindex : 0;
1084 rcu_read_unlock();
1085
1086 return iflink;
1087}
1088
Toshiaki Makitadc224822018-08-03 16:58:11 +09001089static netdev_features_t veth_fix_features(struct net_device *dev,
1090 netdev_features_t features)
1091{
1092 struct veth_priv *priv = netdev_priv(dev);
1093 struct net_device *peer;
1094
1095 peer = rtnl_dereference(priv->peer);
1096 if (peer) {
1097 struct veth_priv *peer_priv = netdev_priv(peer);
1098
1099 if (peer_priv->_xdp_prog)
1100 features &= ~NETIF_F_GSO_SOFTWARE;
1101 }
1102
1103 return features;
1104}
1105
Paolo Abeni163e5292016-02-26 10:45:41 +01001106static void veth_set_rx_headroom(struct net_device *dev, int new_hr)
1107{
1108 struct veth_priv *peer_priv, *priv = netdev_priv(dev);
1109 struct net_device *peer;
1110
1111 if (new_hr < 0)
1112 new_hr = 0;
1113
1114 rcu_read_lock();
1115 peer = rcu_dereference(priv->peer);
1116 if (unlikely(!peer))
1117 goto out;
1118
1119 peer_priv = netdev_priv(peer);
1120 priv->requested_headroom = new_hr;
1121 new_hr = max(priv->requested_headroom, peer_priv->requested_headroom);
1122 dev->needed_headroom = new_hr;
1123 peer->needed_headroom = new_hr;
1124
1125out:
1126 rcu_read_unlock();
1127}
1128
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001129static int veth_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1130 struct netlink_ext_ack *extack)
1131{
1132 struct veth_priv *priv = netdev_priv(dev);
1133 struct bpf_prog *old_prog;
1134 struct net_device *peer;
Toshiaki Makitadc224822018-08-03 16:58:11 +09001135 unsigned int max_mtu;
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001136 int err;
1137
1138 old_prog = priv->_xdp_prog;
1139 priv->_xdp_prog = prog;
1140 peer = rtnl_dereference(priv->peer);
1141
1142 if (prog) {
1143 if (!peer) {
1144 NL_SET_ERR_MSG_MOD(extack, "Cannot set XDP when peer is detached");
1145 err = -ENOTCONN;
1146 goto err;
1147 }
1148
Toshiaki Makitadc224822018-08-03 16:58:11 +09001149 max_mtu = PAGE_SIZE - VETH_XDP_HEADROOM -
1150 peer->hard_header_len -
1151 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1152 if (peer->mtu > max_mtu) {
1153 NL_SET_ERR_MSG_MOD(extack, "Peer MTU is too large to set XDP");
1154 err = -ERANGE;
1155 goto err;
1156 }
1157
Toshiaki Makita638264d2018-08-03 16:58:18 +09001158 if (dev->real_num_rx_queues < peer->real_num_tx_queues) {
1159 NL_SET_ERR_MSG_MOD(extack, "XDP expects number of rx queues not less than peer tx queues");
1160 err = -ENOSPC;
1161 goto err;
1162 }
1163
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001164 if (dev->flags & IFF_UP) {
1165 err = veth_enable_xdp(dev);
1166 if (err) {
1167 NL_SET_ERR_MSG_MOD(extack, "Setup for XDP failed");
1168 goto err;
1169 }
1170 }
Toshiaki Makitadc224822018-08-03 16:58:11 +09001171
1172 if (!old_prog) {
1173 peer->hw_features &= ~NETIF_F_GSO_SOFTWARE;
1174 peer->max_mtu = max_mtu;
1175 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001176 }
1177
1178 if (old_prog) {
Toshiaki Makitadc224822018-08-03 16:58:11 +09001179 if (!prog) {
1180 if (dev->flags & IFF_UP)
1181 veth_disable_xdp(dev);
1182
1183 if (peer) {
1184 peer->hw_features |= NETIF_F_GSO_SOFTWARE;
1185 peer->max_mtu = ETH_MAX_MTU;
1186 }
1187 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001188 bpf_prog_put(old_prog);
1189 }
1190
Toshiaki Makitadc224822018-08-03 16:58:11 +09001191 if ((!!old_prog ^ !!prog) && peer)
1192 netdev_update_features(peer);
1193
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001194 return 0;
1195err:
1196 priv->_xdp_prog = old_prog;
1197
1198 return err;
1199}
1200
1201static u32 veth_xdp_query(struct net_device *dev)
1202{
1203 struct veth_priv *priv = netdev_priv(dev);
1204 const struct bpf_prog *xdp_prog;
1205
1206 xdp_prog = priv->_xdp_prog;
1207 if (xdp_prog)
1208 return xdp_prog->aux->id;
1209
1210 return 0;
1211}
1212
1213static int veth_xdp(struct net_device *dev, struct netdev_bpf *xdp)
1214{
1215 switch (xdp->command) {
1216 case XDP_SETUP_PROG:
1217 return veth_xdp_set(dev, xdp->prog, xdp->extack);
1218 case XDP_QUERY_PROG:
1219 xdp->prog_id = veth_xdp_query(dev);
1220 return 0;
1221 default:
1222 return -EINVAL;
1223 }
1224}
1225
Stephen Hemminger4456e7b2008-11-19 21:50:10 -08001226static const struct net_device_ops veth_netdev_ops = {
Daniel Lezcanoee923622009-02-22 00:04:45 -08001227 .ndo_init = veth_dev_init,
1228 .ndo_open = veth_open,
Eric W. Biederman2cf48a12009-02-25 19:47:29 +00001229 .ndo_stop = veth_close,
Daniel Lezcanoee923622009-02-22 00:04:45 -08001230 .ndo_start_xmit = veth_xmit,
stephen hemminger6311cc42011-06-08 14:53:59 +00001231 .ndo_get_stats64 = veth_get_stats64,
Gao feng5c70ef82013-10-04 16:52:24 +08001232 .ndo_set_rx_mode = veth_set_multicast_list,
Daniel Lezcanoee923622009-02-22 00:04:45 -08001233 .ndo_set_mac_address = eth_mac_addr,
WANG Congbb446c12014-06-23 15:36:02 -07001234#ifdef CONFIG_NET_POLL_CONTROLLER
1235 .ndo_poll_controller = veth_poll_controller,
1236#endif
Nicolas Dichtela45253b2015-04-02 17:07:11 +02001237 .ndo_get_iflink = veth_get_iflink,
Toshiaki Makitadc224822018-08-03 16:58:11 +09001238 .ndo_fix_features = veth_fix_features,
Toshiaki Makita1a04a822015-07-31 15:03:25 +09001239 .ndo_features_check = passthru_features_check,
Paolo Abeni163e5292016-02-26 10:45:41 +01001240 .ndo_set_rx_headroom = veth_set_rx_headroom,
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001241 .ndo_bpf = veth_xdp,
Lorenzo Bianconi9152cff2020-03-19 17:41:28 +01001242 .ndo_xdp_xmit = veth_ndo_xdp_xmit,
Stephen Hemminger4456e7b2008-11-19 21:50:10 -08001243};
1244
Alexander Duyck732912d72016-04-19 14:02:26 -04001245#define VETH_FEATURES (NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HW_CSUM | \
Xin Longc80fafb2016-08-25 13:21:49 +08001246 NETIF_F_RXCSUM | NETIF_F_SCTP_CRC | NETIF_F_HIGHDMA | \
Alexander Duyck732912d72016-04-19 14:02:26 -04001247 NETIF_F_GSO_SOFTWARE | NETIF_F_GSO_ENCAP_ALL | \
Patrick McHardy28d2b132013-04-19 02:04:32 +00001248 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX | \
1249 NETIF_F_HW_VLAN_STAG_TX | NETIF_F_HW_VLAN_STAG_RX )
Eric Dumazet80933152012-12-29 16:26:10 +00001250
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001251static void veth_setup(struct net_device *dev)
1252{
1253 ether_setup(dev);
1254
Neil Horman550fd082011-07-26 06:05:38 +00001255 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Hannes Frederic Sowa23ea5a92012-10-30 16:22:01 +00001256 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Phil Sutter02f01ec2015-08-18 10:30:29 +02001257 dev->priv_flags |= IFF_NO_QUEUE;
Paolo Abeni163e5292016-02-26 10:45:41 +01001258 dev->priv_flags |= IFF_PHONY_HEADROOM;
Neil Horman550fd082011-07-26 06:05:38 +00001259
Stephen Hemminger4456e7b2008-11-19 21:50:10 -08001260 dev->netdev_ops = &veth_netdev_ops;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001261 dev->ethtool_ops = &veth_ethtool_ops;
1262 dev->features |= NETIF_F_LLTX;
Eric Dumazet80933152012-12-29 16:26:10 +00001263 dev->features |= VETH_FEATURES;
Toshiaki Makita8d0d21f2014-02-18 21:20:08 +09001264 dev->vlan_features = dev->features &
Vlad Yasevich3f8c7072014-03-27 22:14:48 -04001265 ~(NETIF_F_HW_VLAN_CTAG_TX |
1266 NETIF_F_HW_VLAN_STAG_TX |
1267 NETIF_F_HW_VLAN_CTAG_RX |
1268 NETIF_F_HW_VLAN_STAG_RX);
David S. Millercf124db2017-05-08 12:52:56 -04001269 dev->needs_free_netdev = true;
1270 dev->priv_destructor = veth_dev_free;
Jarod Wilson91572082016-10-20 13:55:20 -04001271 dev->max_mtu = ETH_MAX_MTU;
Michał Mirosława2c725f2011-03-31 01:01:35 +00001272
Eric Dumazet80933152012-12-29 16:26:10 +00001273 dev->hw_features = VETH_FEATURES;
Eric Dumazet82d81892013-10-25 18:25:03 -07001274 dev->hw_enc_features = VETH_FEATURES;
David Ahern607fca92016-08-24 20:10:45 -07001275 dev->mpls_features = NETIF_F_HW_CSUM | NETIF_F_GSO_SOFTWARE;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001276}
1277
1278/*
1279 * netlink interface
1280 */
1281
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001282static int veth_validate(struct nlattr *tb[], struct nlattr *data[],
1283 struct netlink_ext_ack *extack)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001284{
1285 if (tb[IFLA_ADDRESS]) {
1286 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1287 return -EINVAL;
1288 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1289 return -EADDRNOTAVAIL;
1290 }
Eric Biederman38d40812009-03-03 23:36:04 -08001291 if (tb[IFLA_MTU]) {
1292 if (!is_valid_veth_mtu(nla_get_u32(tb[IFLA_MTU])))
1293 return -EINVAL;
1294 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001295 return 0;
1296}
1297
1298static struct rtnl_link_ops veth_link_ops;
1299
Eric W. Biederman81adee42009-11-08 00:53:51 -08001300static int veth_newlink(struct net *src_net, struct net_device *dev,
Matthias Schiffer7a3f4a12017-06-25 23:55:59 +02001301 struct nlattr *tb[], struct nlattr *data[],
1302 struct netlink_ext_ack *extack)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001303{
Toshiaki Makita7797b932018-08-15 17:07:29 +09001304 int err;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001305 struct net_device *peer;
1306 struct veth_priv *priv;
1307 char ifname[IFNAMSIZ];
1308 struct nlattr *peer_tb[IFLA_MAX + 1], **tbp;
Tom Gundersen55177502014-07-14 16:37:25 +02001309 unsigned char name_assign_type;
Patrick McHardy3729d502010-02-26 06:34:54 +00001310 struct ifinfomsg *ifmp;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001311 struct net *net;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001312
1313 /*
1314 * create and register peer first
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001315 */
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001316 if (data != NULL && data[VETH_INFO_PEER] != NULL) {
1317 struct nlattr *nla_peer;
1318
1319 nla_peer = data[VETH_INFO_PEER];
Patrick McHardy3729d502010-02-26 06:34:54 +00001320 ifmp = nla_data(nla_peer);
Jiri Pirkof7b12602014-02-18 20:53:18 +01001321 err = rtnl_nla_parse_ifla(peer_tb,
1322 nla_data(nla_peer) + sizeof(struct ifinfomsg),
Johannes Bergfceb6432017-04-12 14:34:07 +02001323 nla_len(nla_peer) - sizeof(struct ifinfomsg),
1324 NULL);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001325 if (err < 0)
1326 return err;
1327
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001328 err = veth_validate(peer_tb, NULL, extack);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001329 if (err < 0)
1330 return err;
1331
1332 tbp = peer_tb;
Patrick McHardy3729d502010-02-26 06:34:54 +00001333 } else {
1334 ifmp = NULL;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001335 tbp = tb;
Patrick McHardy3729d502010-02-26 06:34:54 +00001336 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001337
Serhey Popovych191cdb32017-06-21 12:12:24 +03001338 if (ifmp && tbp[IFLA_IFNAME]) {
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001339 nla_strlcpy(ifname, tbp[IFLA_IFNAME], IFNAMSIZ);
Tom Gundersen55177502014-07-14 16:37:25 +02001340 name_assign_type = NET_NAME_USER;
1341 } else {
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001342 snprintf(ifname, IFNAMSIZ, DRV_NAME "%%d");
Tom Gundersen55177502014-07-14 16:37:25 +02001343 name_assign_type = NET_NAME_ENUM;
1344 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001345
Eric W. Biederman81adee42009-11-08 00:53:51 -08001346 net = rtnl_link_get_net(src_net, tbp);
1347 if (IS_ERR(net))
1348 return PTR_ERR(net);
1349
Tom Gundersen55177502014-07-14 16:37:25 +02001350 peer = rtnl_create_link(net, ifname, name_assign_type,
David Ahernd0522f12018-11-06 12:51:14 -08001351 &veth_link_ops, tbp, extack);
Eric W. Biederman81adee42009-11-08 00:53:51 -08001352 if (IS_ERR(peer)) {
1353 put_net(net);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001354 return PTR_ERR(peer);
Eric W. Biederman81adee42009-11-08 00:53:51 -08001355 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001356
Serhey Popovych191cdb32017-06-21 12:12:24 +03001357 if (!ifmp || !tbp[IFLA_ADDRESS])
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001358 eth_hw_addr_random(peer);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001359
Pavel Emelyanove6f8f1a2012-08-08 21:53:03 +00001360 if (ifmp && (dev->ifindex != 0))
1361 peer->ifindex = ifmp->ifi_index;
1362
Stephen Hemminger72d249552017-12-07 15:40:20 -08001363 peer->gso_max_size = dev->gso_max_size;
1364 peer->gso_max_segs = dev->gso_max_segs;
1365
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001366 err = register_netdevice(peer);
Eric W. Biederman81adee42009-11-08 00:53:51 -08001367 put_net(net);
1368 net = NULL;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001369 if (err < 0)
1370 goto err_register_peer;
1371
1372 netif_carrier_off(peer);
1373
Patrick McHardy3729d502010-02-26 06:34:54 +00001374 err = rtnl_configure_link(peer, ifmp);
1375 if (err < 0)
1376 goto err_configure_peer;
1377
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001378 /*
1379 * register dev last
1380 *
1381 * note, that since we've registered new device the dev's name
1382 * should be re-allocated
1383 */
1384
1385 if (tb[IFLA_ADDRESS] == NULL)
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001386 eth_hw_addr_random(dev);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001387
Jiri Pirko6c8c4442011-04-30 01:28:17 +00001388 if (tb[IFLA_IFNAME])
1389 nla_strlcpy(dev->name, tb[IFLA_IFNAME], IFNAMSIZ);
1390 else
1391 snprintf(dev->name, IFNAMSIZ, DRV_NAME "%%d");
1392
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001393 err = register_netdevice(dev);
1394 if (err < 0)
1395 goto err_register_dev;
1396
1397 netif_carrier_off(dev);
1398
1399 /*
1400 * tie the deviced together
1401 */
1402
1403 priv = netdev_priv(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +00001404 rcu_assign_pointer(priv->peer, peer);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001405
1406 priv = netdev_priv(peer);
Eric Dumazetd0e2c552013-01-04 15:42:40 +00001407 rcu_assign_pointer(priv->peer, dev);
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001408
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001409 return 0;
1410
1411err_register_dev:
1412 /* nothing to do */
Patrick McHardy3729d502010-02-26 06:34:54 +00001413err_configure_peer:
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001414 unregister_netdevice(peer);
1415 return err;
1416
1417err_register_peer:
1418 free_netdev(peer);
1419 return err;
1420}
1421
Eric Dumazet23289a32009-10-27 07:06:36 +00001422static void veth_dellink(struct net_device *dev, struct list_head *head)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001423{
1424 struct veth_priv *priv;
1425 struct net_device *peer;
1426
1427 priv = netdev_priv(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +00001428 peer = rtnl_dereference(priv->peer);
1429
1430 /* Note : dellink() is called from default_device_exit_batch(),
1431 * before a rcu_synchronize() point. The devices are guaranteed
1432 * not being freed before one RCU grace period.
1433 */
1434 RCU_INIT_POINTER(priv->peer, NULL);
Eric Dumazet24540532009-10-30 01:00:27 -07001435 unregister_netdevice_queue(dev, head);
Eric Dumazetf45a5c22013-02-08 20:10:49 +00001436
1437 if (peer) {
1438 priv = netdev_priv(peer);
1439 RCU_INIT_POINTER(priv->peer, NULL);
1440 unregister_netdevice_queue(peer, head);
1441 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001442}
1443
Thomas Graf23711432012-02-15 04:09:46 +00001444static const struct nla_policy veth_policy[VETH_INFO_MAX + 1] = {
1445 [VETH_INFO_PEER] = { .len = sizeof(struct ifinfomsg) },
1446};
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001447
Nicolas Dichtele5f4e7b2015-01-20 15:15:46 +01001448static struct net *veth_get_link_net(const struct net_device *dev)
1449{
1450 struct veth_priv *priv = netdev_priv(dev);
1451 struct net_device *peer = rtnl_dereference(priv->peer);
1452
1453 return peer ? dev_net(peer) : dev_net(dev);
1454}
1455
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001456static struct rtnl_link_ops veth_link_ops = {
1457 .kind = DRV_NAME,
1458 .priv_size = sizeof(struct veth_priv),
1459 .setup = veth_setup,
1460 .validate = veth_validate,
1461 .newlink = veth_newlink,
1462 .dellink = veth_dellink,
1463 .policy = veth_policy,
1464 .maxtype = VETH_INFO_MAX,
Nicolas Dichtele5f4e7b2015-01-20 15:15:46 +01001465 .get_link_net = veth_get_link_net,
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001466};
1467
1468/*
1469 * init/fini
1470 */
1471
1472static __init int veth_init(void)
1473{
1474 return rtnl_link_register(&veth_link_ops);
1475}
1476
1477static __exit void veth_exit(void)
1478{
Patrick McHardy68365452008-01-20 17:25:14 -08001479 rtnl_link_unregister(&veth_link_ops);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001480}
1481
1482module_init(veth_init);
1483module_exit(veth_exit);
1484
1485MODULE_DESCRIPTION("Virtual Ethernet Tunnel");
1486MODULE_LICENSE("GPL v2");
1487MODULE_ALIAS_RTNL_LINK(DRV_NAME);