blob: 09a1433b08332996163a5344d91f5de430890d2d [file] [log] [blame]
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001/*
2 * drivers/net/veth.c
3 *
4 * Copyright (C) 2007 OpenVZ http://openvz.org, SWsoft Inc
5 *
6 * Author: Pavel Emelianov <xemul@openvz.org>
7 * Ethtool interface from: Eric W. Biederman <ebiederm@xmission.com>
8 *
9 */
10
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070011#include <linux/netdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090012#include <linux/slab.h>
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070013#include <linux/ethtool.h>
14#include <linux/etherdevice.h>
Eric Dumazetcf05c702011-06-19 22:48:34 -070015#include <linux/u64_stats_sync.h>
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070016
Jiri Pirkof7b12602014-02-18 20:53:18 +010017#include <net/rtnetlink.h>
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070018#include <net/dst.h>
19#include <net/xfrm.h>
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +090020#include <net/xdp.h>
Stephen Hemmingerecef9692007-12-25 17:23:59 -080021#include <linux/veth.h>
Paul Gortmaker9d9779e2011-07-03 15:21:01 -040022#include <linux/module.h>
Toshiaki Makita948d4f22018-08-03 16:58:10 +090023#include <linux/bpf.h>
24#include <linux/filter.h>
25#include <linux/ptr_ring.h>
Toshiaki Makita948d4f22018-08-03 16:58:10 +090026#include <linux/bpf_trace.h>
Michael Walleaa4e6892018-08-29 17:24:11 +020027#include <linux/net_tstamp.h>
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070028
29#define DRV_NAME "veth"
30#define DRV_VERSION "1.0"
31
Toshiaki Makita9fc8d512018-08-03 16:58:13 +090032#define VETH_XDP_FLAG BIT(0)
Toshiaki Makita948d4f22018-08-03 16:58:10 +090033#define VETH_RING_SIZE 256
34#define VETH_XDP_HEADROOM (XDP_PACKET_HEADROOM + NET_IP_ALIGN)
35
Toshiaki Makitad1396002018-08-03 16:58:17 +090036/* Separating two types of XDP xmit */
37#define VETH_XDP_TX BIT(0)
38#define VETH_XDP_REDIR BIT(1)
39
Toshiaki Makita4195e542018-10-11 18:36:49 +090040struct veth_rq_stats {
41 u64 xdp_packets;
42 u64 xdp_bytes;
43 u64 xdp_drops;
44 struct u64_stats_sync syncp;
45};
46
Toshiaki Makita638264d2018-08-03 16:58:18 +090047struct veth_rq {
Toshiaki Makita948d4f22018-08-03 16:58:10 +090048 struct napi_struct xdp_napi;
49 struct net_device *dev;
50 struct bpf_prog __rcu *xdp_prog;
Toshiaki Makitad1396002018-08-03 16:58:17 +090051 struct xdp_mem_info xdp_mem;
Toshiaki Makita4195e542018-10-11 18:36:49 +090052 struct veth_rq_stats stats;
Toshiaki Makita948d4f22018-08-03 16:58:10 +090053 bool rx_notify_masked;
54 struct ptr_ring xdp_ring;
55 struct xdp_rxq_info xdp_rxq;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070056};
57
Toshiaki Makita638264d2018-08-03 16:58:18 +090058struct 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;
64};
65
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070066/*
67 * ethtool interface
68 */
69
Toshiaki Makitad397b962018-10-11 18:36:50 +090070struct veth_q_stat_desc {
71 char desc[ETH_GSTRING_LEN];
72 size_t offset;
73};
74
75#define VETH_RQ_STAT(m) offsetof(struct veth_rq_stats, m)
76
77static 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) },
81};
82
83#define VETH_RQ_STATS_LEN ARRAY_SIZE(veth_rq_stats_desc)
84
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070085static struct {
86 const char string[ETH_GSTRING_LEN];
87} ethtool_stats_keys[] = {
88 { "peer_ifindex" },
89};
90
Philippe Reynes56607b92017-03-29 08:24:21 +020091static int veth_get_link_ksettings(struct net_device *dev,
92 struct ethtool_link_ksettings *cmd)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070093{
Philippe Reynes56607b92017-03-29 08:24:21 +020094 cmd->base.speed = SPEED_10000;
95 cmd->base.duplex = DUPLEX_FULL;
96 cmd->base.port = PORT_TP;
97 cmd->base.autoneg = AUTONEG_DISABLE;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -070098 return 0;
99}
100
101static void veth_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info)
102{
Rick Jones33a5ba12011-11-15 14:59:53 +0000103 strlcpy(info->driver, DRV_NAME, sizeof(info->driver));
104 strlcpy(info->version, DRV_VERSION, sizeof(info->version));
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700105}
106
107static void veth_get_strings(struct net_device *dev, u32 stringset, u8 *buf)
108{
Toshiaki Makitad397b962018-10-11 18:36:50 +0900109 char *p = (char *)buf;
110 int i, j;
111
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700112 switch(stringset) {
113 case ETH_SS_STATS:
Toshiaki Makitad397b962018-10-11 18:36:50 +0900114 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++) {
Florian Fainelliabdf47a2019-02-21 20:09:29 -0800118 snprintf(p, ETH_GSTRING_LEN,
119 "rx_queue_%u_%.11s",
Toshiaki Makitad397b962018-10-11 18:36:50 +0900120 i, veth_rq_stats_desc[j].desc);
121 p += ETH_GSTRING_LEN;
122 }
123 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700124 break;
125 }
126}
127
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700128static int veth_get_sset_count(struct net_device *dev, int sset)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700129{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700130 switch (sset) {
131 case ETH_SS_STATS:
Toshiaki Makitad397b962018-10-11 18:36:50 +0900132 return ARRAY_SIZE(ethtool_stats_keys) +
133 VETH_RQ_STATS_LEN * dev->real_num_rx_queues;
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700134 default:
135 return -EOPNOTSUPP;
136 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700137}
138
139static void veth_get_ethtool_stats(struct net_device *dev,
140 struct ethtool_stats *stats, u64 *data)
141{
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000142 struct veth_priv *priv = netdev_priv(dev);
143 struct net_device *peer = rtnl_dereference(priv->peer);
Toshiaki Makitad397b962018-10-11 18:36:50 +0900144 int i, j, idx;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700145
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000146 data[0] = peer ? peer->ifindex : 0;
Toshiaki Makitad397b962018-10-11 18:36:50 +0900147 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;
153
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);
159 }
160 } while (u64_stats_fetch_retry_irq(&rq_stats->syncp, start));
161 idx += VETH_RQ_STATS_LEN;
162 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700163}
164
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700165static const struct ethtool_ops veth_ethtool_ops = {
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700166 .get_drvinfo = veth_get_drvinfo,
167 .get_link = ethtool_op_get_link,
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700168 .get_strings = veth_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700169 .get_sset_count = veth_get_sset_count,
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700170 .get_ethtool_stats = veth_get_ethtool_stats,
Philippe Reynes56607b92017-03-29 08:24:21 +0200171 .get_link_ksettings = veth_get_link_ksettings,
Julian Wiedmann056b21f2019-04-12 13:06:15 +0200172 .get_ts_info = ethtool_op_get_ts_info,
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700173};
174
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900175/* general routines */
176
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900177static bool veth_is_xdp_frame(void *ptr)
178{
179 return (unsigned long)ptr & VETH_XDP_FLAG;
180}
181
182static void *veth_ptr_to_xdp(void *ptr)
183{
184 return (void *)((unsigned long)ptr & ~VETH_XDP_FLAG);
185}
186
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900187static void *veth_xdp_to_ptr(void *ptr)
188{
189 return (void *)((unsigned long)ptr | VETH_XDP_FLAG);
190}
191
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900192static void veth_ptr_free(void *ptr)
193{
194 if (veth_is_xdp_frame(ptr))
195 xdp_return_frame(veth_ptr_to_xdp(ptr));
196 else
197 kfree_skb(ptr);
198}
199
Toshiaki Makita638264d2018-08-03 16:58:18 +0900200static void __veth_xdp_flush(struct veth_rq *rq)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900201{
202 /* Write ptr_ring before reading rx_notify_masked */
203 smp_mb();
Toshiaki Makita638264d2018-08-03 16:58:18 +0900204 if (!rq->rx_notify_masked) {
205 rq->rx_notify_masked = true;
206 napi_schedule(&rq->xdp_napi);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900207 }
208}
209
Toshiaki Makita638264d2018-08-03 16:58:18 +0900210static int veth_xdp_rx(struct veth_rq *rq, struct sk_buff *skb)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900211{
Toshiaki Makita638264d2018-08-03 16:58:18 +0900212 if (unlikely(ptr_ring_produce(&rq->xdp_ring, skb))) {
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900213 dev_kfree_skb_any(skb);
214 return NET_RX_DROP;
215 }
216
217 return NET_RX_SUCCESS;
218}
219
Toshiaki Makita638264d2018-08-03 16:58:18 +0900220static int veth_forward_skb(struct net_device *dev, struct sk_buff *skb,
221 struct veth_rq *rq, bool xdp)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700222{
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900223 return __dev_forward_skb(dev, skb) ?: xdp ?
Toshiaki Makita638264d2018-08-03 16:58:18 +0900224 veth_xdp_rx(rq, skb) :
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900225 netif_rx(skb);
226}
227
228static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev)
229{
230 struct veth_priv *rcv_priv, *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900231 struct veth_rq *rq = NULL;
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000232 struct net_device *rcv;
Eric Dumazet26811282012-12-29 16:02:43 +0000233 int length = skb->len;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900234 bool rcv_xdp = false;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900235 int rxq;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700236
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000237 rcu_read_lock();
238 rcv = rcu_dereference(priv->peer);
239 if (unlikely(!rcv)) {
240 kfree_skb(skb);
241 goto drop;
242 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700243
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900244 rcv_priv = netdev_priv(rcv);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900245 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);
251 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900252
Michael Walleaa4e6892018-08-29 17:24:11 +0200253 skb_tx_timestamp(skb);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900254 if (likely(veth_forward_skb(rcv, skb, rq, rcv_xdp) == NET_RX_SUCCESS)) {
Toshiaki Makita4195e542018-10-11 18:36:49 +0900255 if (!rcv_xdp) {
256 struct pcpu_lstats *stats = this_cpu_ptr(dev->lstats);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700257
Toshiaki Makita4195e542018-10-11 18:36:49 +0900258 u64_stats_update_begin(&stats->syncp);
259 stats->bytes += length;
260 stats->packets++;
261 u64_stats_update_end(&stats->syncp);
262 }
Eric Dumazet26811282012-12-29 16:02:43 +0000263 } else {
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000264drop:
Eric Dumazet26811282012-12-29 16:02:43 +0000265 atomic64_inc(&priv->dropped);
266 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900267
268 if (rcv_xdp)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900269 __veth_xdp_flush(rq);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900270
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000271 rcu_read_unlock();
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900272
Patrick McHardy6ed10652009-06-23 06:03:08 +0000273 return NETDEV_TX_OK;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700274}
275
Toshiaki Makita4195e542018-10-11 18:36:49 +0900276static u64 veth_stats_tx(struct pcpu_lstats *result, struct net_device *dev)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700277{
Eric Dumazetcf05c702011-06-19 22:48:34 -0700278 struct veth_priv *priv = netdev_priv(dev);
David S. Miller11687a12009-06-25 02:45:42 -0700279 int cpu;
David S. Miller11687a12009-06-25 02:45:42 -0700280
Eric Dumazet26811282012-12-29 16:02:43 +0000281 result->packets = 0;
282 result->bytes = 0;
Eric Dumazet2b1c8b02009-11-18 07:09:39 +0000283 for_each_possible_cpu(cpu) {
Li RongQing14d73412018-09-17 18:46:55 +0800284 struct pcpu_lstats *stats = per_cpu_ptr(dev->lstats, cpu);
Eric Dumazet26811282012-12-29 16:02:43 +0000285 u64 packets, bytes;
Eric Dumazetcf05c702011-06-19 22:48:34 -0700286 unsigned int start;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700287
Eric Dumazetcf05c702011-06-19 22:48:34 -0700288 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700289 start = u64_stats_fetch_begin_irq(&stats->syncp);
Eric Dumazet26811282012-12-29 16:02:43 +0000290 packets = stats->packets;
291 bytes = stats->bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700292 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
Eric Dumazet26811282012-12-29 16:02:43 +0000293 result->packets += packets;
294 result->bytes += bytes;
David S. Miller11687a12009-06-25 02:45:42 -0700295 }
Eric Dumazet26811282012-12-29 16:02:43 +0000296 return atomic64_read(&priv->dropped);
297}
298
Toshiaki Makita4195e542018-10-11 18:36:49 +0900299static void veth_stats_rx(struct veth_rq_stats *result, struct net_device *dev)
300{
301 struct veth_priv *priv = netdev_priv(dev);
302 int i;
303
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;
311
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;
321 }
322}
323
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800324static void veth_get_stats64(struct net_device *dev,
325 struct rtnl_link_stats64 *tot)
Eric Dumazet26811282012-12-29 16:02:43 +0000326{
327 struct veth_priv *priv = netdev_priv(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000328 struct net_device *peer;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900329 struct veth_rq_stats rx;
330 struct pcpu_lstats tx;
Eric Dumazet26811282012-12-29 16:02:43 +0000331
Toshiaki Makita4195e542018-10-11 18:36:49 +0900332 tot->tx_dropped = veth_stats_tx(&tx, dev);
333 tot->tx_bytes = tx.bytes;
334 tot->tx_packets = tx.packets;
335
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;
Eric Dumazet26811282012-12-29 16:02:43 +0000340
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000341 rcu_read_lock();
342 peer = rcu_dereference(priv->peer);
343 if (peer) {
Toshiaki Makita4195e542018-10-11 18:36:49 +0900344 tot->rx_dropped += veth_stats_tx(&tx, peer);
345 tot->rx_bytes += tx.bytes;
346 tot->rx_packets += tx.packets;
347
348 veth_stats_rx(&rx, peer);
349 tot->tx_bytes += rx.xdp_bytes;
350 tot->tx_packets += rx.xdp_packets;
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000351 }
352 rcu_read_unlock();
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700353}
354
Gao feng5c70ef82013-10-04 16:52:24 +0800355/* fake multicast ability */
356static void veth_set_multicast_list(struct net_device *dev)
357{
358}
359
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900360static struct sk_buff *veth_build_skb(void *head, int headroom, int len,
361 int buflen)
362{
363 struct sk_buff *skb;
364
365 if (!buflen) {
366 buflen = SKB_DATA_ALIGN(headroom + len) +
367 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
368 }
369 skb = build_skb(head, buflen);
370 if (!skb)
371 return NULL;
372
373 skb_reserve(skb, headroom);
374 skb_put(skb, len);
375
376 return skb;
377}
378
Toshiaki Makita638264d2018-08-03 16:58:18 +0900379static int veth_select_rxq(struct net_device *dev)
380{
381 return smp_processor_id() % dev->real_num_rx_queues;
382}
383
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900384static int veth_xdp_xmit(struct net_device *dev, int n,
385 struct xdp_frame **frames, u32 flags)
386{
387 struct veth_priv *rcv_priv, *priv = netdev_priv(dev);
388 struct net_device *rcv;
Toshiaki Makita21314792018-10-11 18:36:48 +0900389 int i, ret, drops = n;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900390 unsigned int max_len;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900391 struct veth_rq *rq;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900392
Toshiaki Makita21314792018-10-11 18:36:48 +0900393 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) {
394 ret = -EINVAL;
395 goto drop;
396 }
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900397
398 rcv = rcu_dereference(priv->peer);
Toshiaki Makita21314792018-10-11 18:36:48 +0900399 if (unlikely(!rcv)) {
400 ret = -ENXIO;
401 goto drop;
402 }
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900403
404 rcv_priv = netdev_priv(rcv);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900405 rq = &rcv_priv->rq[veth_select_rxq(rcv)];
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900406 /* 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.
409 */
Toshiaki Makita21314792018-10-11 18:36:48 +0900410 if (!rcu_access_pointer(rq->xdp_prog)) {
411 ret = -ENXIO;
412 goto drop;
413 }
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900414
Toshiaki Makita21314792018-10-11 18:36:48 +0900415 drops = 0;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900416 max_len = rcv->mtu + rcv->hard_header_len + VLAN_HLEN;
417
Toshiaki Makita638264d2018-08-03 16:58:18 +0900418 spin_lock(&rq->xdp_ring.producer_lock);
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900419 for (i = 0; i < n; i++) {
420 struct xdp_frame *frame = frames[i];
421 void *ptr = veth_xdp_to_ptr(frame);
422
423 if (unlikely(frame->len > max_len ||
Toshiaki Makita638264d2018-08-03 16:58:18 +0900424 __ptr_ring_produce(&rq->xdp_ring, ptr))) {
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900425 xdp_return_frame_rx_napi(frame);
426 drops++;
427 }
428 }
Toshiaki Makita638264d2018-08-03 16:58:18 +0900429 spin_unlock(&rq->xdp_ring.producer_lock);
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900430
431 if (flags & XDP_XMIT_FLUSH)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900432 __veth_xdp_flush(rq);
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900433
Toshiaki Makita21314792018-10-11 18:36:48 +0900434 if (likely(!drops))
435 return n;
436
437 ret = n - drops;
438drop:
439 atomic64_add(drops, &priv->dropped);
440
441 return ret;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900442}
443
Toshiaki Makitad1396002018-08-03 16:58:17 +0900444static void veth_xdp_flush(struct net_device *dev)
445{
446 struct veth_priv *rcv_priv, *priv = netdev_priv(dev);
447 struct net_device *rcv;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900448 struct veth_rq *rq;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900449
450 rcu_read_lock();
451 rcv = rcu_dereference(priv->peer);
452 if (unlikely(!rcv))
453 goto out;
454
455 rcv_priv = netdev_priv(rcv);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900456 rq = &rcv_priv->rq[veth_select_rxq(rcv)];
Toshiaki Makitad1396002018-08-03 16:58:17 +0900457 /* xdp_ring is initialized on receive side? */
Toshiaki Makita638264d2018-08-03 16:58:18 +0900458 if (unlikely(!rcu_access_pointer(rq->xdp_prog)))
Toshiaki Makitad1396002018-08-03 16:58:17 +0900459 goto out;
460
Toshiaki Makita638264d2018-08-03 16:58:18 +0900461 __veth_xdp_flush(rq);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900462out:
463 rcu_read_unlock();
464}
465
466static int veth_xdp_tx(struct net_device *dev, struct xdp_buff *xdp)
467{
468 struct xdp_frame *frame = convert_to_xdp_frame(xdp);
469
470 if (unlikely(!frame))
471 return -EOVERFLOW;
472
473 return veth_xdp_xmit(dev, 1, &frame, 0);
474}
475
Toshiaki Makita638264d2018-08-03 16:58:18 +0900476static struct sk_buff *veth_xdp_rcv_one(struct veth_rq *rq,
Toshiaki Makitad1396002018-08-03 16:58:17 +0900477 struct xdp_frame *frame,
478 unsigned int *xdp_xmit)
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900479{
480 void *hard_start = frame->data - frame->headroom;
481 void *head = hard_start - sizeof(struct xdp_frame);
482 int len = frame->len, delta = 0;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900483 struct xdp_frame orig_frame;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900484 struct bpf_prog *xdp_prog;
485 unsigned int headroom;
486 struct sk_buff *skb;
487
488 rcu_read_lock();
Toshiaki Makita638264d2018-08-03 16:58:18 +0900489 xdp_prog = rcu_dereference(rq->xdp_prog);
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900490 if (likely(xdp_prog)) {
491 struct xdp_buff xdp;
492 u32 act;
493
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;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900498 xdp.rxq = &rq->xdp_rxq;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900499
500 act = bpf_prog_run_xdp(xdp_prog, &xdp);
501
502 switch (act) {
503 case XDP_PASS:
504 delta = frame->data - xdp.data;
505 len = xdp.data_end - xdp.data;
506 break;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900507 case XDP_TX:
508 orig_frame = *frame;
509 xdp.data_hard_start = head;
510 xdp.rxq->mem = frame->mem;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900511 if (unlikely(veth_xdp_tx(rq->dev, &xdp) < 0)) {
512 trace_xdp_exception(rq->dev, xdp_prog, act);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900513 frame = &orig_frame;
514 goto err_xdp;
515 }
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;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900523 if (xdp_do_redirect(rq->dev, &xdp, xdp_prog)) {
Toshiaki Makitad1396002018-08-03 16:58:17 +0900524 frame = &orig_frame;
525 goto err_xdp;
526 }
527 *xdp_xmit |= VETH_XDP_REDIR;
528 rcu_read_unlock();
529 goto xdp_xmit;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900530 default:
531 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvaa9b6d9e2019-02-08 12:37:33 -0600532 /* fall through */
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900533 case XDP_ABORTED:
Toshiaki Makita638264d2018-08-03 16:58:18 +0900534 trace_xdp_exception(rq->dev, xdp_prog, act);
Gustavo A. R. Silvaa9b6d9e2019-02-08 12:37:33 -0600535 /* fall through */
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900536 case XDP_DROP:
537 goto err_xdp;
538 }
539 }
540 rcu_read_unlock();
541
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;
547 }
548
549 xdp_scrub_frame(frame);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900550 skb->protocol = eth_type_trans(skb, rq->dev);
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900551err:
552 return skb;
553err_xdp:
554 rcu_read_unlock();
555 xdp_return_frame(frame);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900556xdp_xmit:
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900557 return NULL;
558}
559
Toshiaki Makita638264d2018-08-03 16:58:18 +0900560static struct sk_buff *veth_xdp_rcv_skb(struct veth_rq *rq, struct sk_buff *skb,
Toshiaki Makitad1396002018-08-03 16:58:17 +0900561 unsigned int *xdp_xmit)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900562{
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;
568
Toshiaki Makita4bf9ffa2018-09-14 13:33:44 +0900569 skb_orphan(skb);
570
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900571 rcu_read_lock();
Toshiaki Makita638264d2018-08-03 16:58:18 +0900572 xdp_prog = rcu_dereference(rq->xdp_prog);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900573 if (unlikely(!xdp_prog)) {
574 rcu_read_unlock();
575 goto out;
576 }
577
578 mac_len = skb->data - skb_mac_header(skb);
579 pktlen = skb->len + mac_len;
580 headroom = skb_headroom(skb) - mac_len;
581
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;
588
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;
593
594 page = alloc_page(GFP_ATOMIC | __GFP_NOWARN);
595 if (!page)
596 goto drop;
597
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;
603 }
604
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;
611 }
612
613 skb_copy_header(nskb, skb);
614 head_off = skb_headroom(nskb) - skb_headroom(skb);
615 skb_headers_offset_update(nskb, head_off);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900616 consume_skb(skb);
617 skb = nskb;
618 }
619
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;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900624 xdp.rxq = &rq->xdp_rxq;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900625 orig_data = xdp.data;
626 orig_data_end = xdp.data_end;
627
628 act = bpf_prog_run_xdp(xdp_prog, &xdp);
629
630 switch (act) {
631 case XDP_PASS:
632 break;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900633 case XDP_TX:
634 get_page(virt_to_page(xdp.data));
635 consume_skb(skb);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900636 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);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900639 goto err_xdp;
640 }
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);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900647 xdp.rxq->mem = rq->xdp_mem;
648 if (xdp_do_redirect(rq->dev, &xdp, xdp_prog))
Toshiaki Makitad1396002018-08-03 16:58:17 +0900649 goto err_xdp;
650 *xdp_xmit |= VETH_XDP_REDIR;
651 rcu_read_unlock();
652 goto xdp_xmit;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900653 default:
654 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvaa9b6d9e2019-02-08 12:37:33 -0600655 /* fall through */
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900656 case XDP_ABORTED:
Toshiaki Makita638264d2018-08-03 16:58:18 +0900657 trace_xdp_exception(rq->dev, xdp_prog, act);
Gustavo A. R. Silvaa9b6d9e2019-02-08 12:37:33 -0600658 /* fall through */
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900659 case XDP_DROP:
660 goto drop;
661 }
662 rcu_read_unlock();
663
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);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900674 skb->protocol = eth_type_trans(skb, rq->dev);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900675
676 metalen = xdp.data - xdp.data_meta;
677 if (metalen)
678 skb_metadata_set(skb, metalen);
679out:
680 return skb;
681drop:
682 rcu_read_unlock();
683 kfree_skb(skb);
684 return NULL;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900685err_xdp:
686 rcu_read_unlock();
687 page_frag_free(xdp.data);
688xdp_xmit:
689 return NULL;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900690}
691
Toshiaki Makita638264d2018-08-03 16:58:18 +0900692static int veth_xdp_rcv(struct veth_rq *rq, int budget, unsigned int *xdp_xmit)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900693{
Toshiaki Makita4195e542018-10-11 18:36:49 +0900694 int i, done = 0, drops = 0, bytes = 0;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900695
696 for (i = 0; i < budget; i++) {
Toshiaki Makita638264d2018-08-03 16:58:18 +0900697 void *ptr = __ptr_ring_consume(&rq->xdp_ring);
Toshiaki Makita4195e542018-10-11 18:36:49 +0900698 unsigned int xdp_xmit_one = 0;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900699 struct sk_buff *skb;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900700
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900701 if (!ptr)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900702 break;
703
Toshiaki Makitad1396002018-08-03 16:58:17 +0900704 if (veth_is_xdp_frame(ptr)) {
Toshiaki Makita4195e542018-10-11 18:36:49 +0900705 struct xdp_frame *frame = veth_ptr_to_xdp(ptr);
706
707 bytes += frame->len;
708 skb = veth_xdp_rcv_one(rq, frame, &xdp_xmit_one);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900709 } else {
Toshiaki Makita4195e542018-10-11 18:36:49 +0900710 skb = ptr;
711 bytes += skb->len;
712 skb = veth_xdp_rcv_skb(rq, skb, &xdp_xmit_one);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900713 }
Toshiaki Makita4195e542018-10-11 18:36:49 +0900714 *xdp_xmit |= xdp_xmit_one;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900715
716 if (skb)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900717 napi_gro_receive(&rq->xdp_napi, skb);
Toshiaki Makita4195e542018-10-11 18:36:49 +0900718 else if (!xdp_xmit_one)
719 drops++;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900720
721 done++;
722 }
723
Toshiaki Makita4195e542018-10-11 18:36:49 +0900724 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);
729
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900730 return done;
731}
732
733static int veth_poll(struct napi_struct *napi, int budget)
734{
Toshiaki Makita638264d2018-08-03 16:58:18 +0900735 struct veth_rq *rq =
736 container_of(napi, struct veth_rq, xdp_napi);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900737 unsigned int xdp_xmit = 0;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900738 int done;
739
Toshiaki Makitad1396002018-08-03 16:58:17 +0900740 xdp_set_return_frame_no_direct();
Toshiaki Makita638264d2018-08-03 16:58:18 +0900741 done = veth_xdp_rcv(rq, budget, &xdp_xmit);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900742
743 if (done < budget && napi_complete_done(napi, done)) {
744 /* Write rx_notify_masked before reading ptr_ring */
Toshiaki Makita638264d2018-08-03 16:58:18 +0900745 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);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900749 }
750 }
751
Toshiaki Makitad1396002018-08-03 16:58:17 +0900752 if (xdp_xmit & VETH_XDP_TX)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900753 veth_xdp_flush(rq->dev);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900754 if (xdp_xmit & VETH_XDP_REDIR)
755 xdp_do_flush_map();
756 xdp_clear_return_frame_no_direct();
757
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900758 return done;
759}
760
761static int veth_napi_add(struct net_device *dev)
762{
763 struct veth_priv *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900764 int err, i;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900765
Toshiaki Makita638264d2018-08-03 16:58:18 +0900766 for (i = 0; i < dev->real_num_rx_queues; i++) {
767 struct veth_rq *rq = &priv->rq[i];
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900768
Toshiaki Makita638264d2018-08-03 16:58:18 +0900769 err = ptr_ring_init(&rq->xdp_ring, VETH_RING_SIZE, GFP_KERNEL);
770 if (err)
771 goto err_xdp_ring;
772 }
773
774 for (i = 0; i < dev->real_num_rx_queues; i++) {
775 struct veth_rq *rq = &priv->rq[i];
776
777 netif_napi_add(dev, &rq->xdp_napi, veth_poll, NAPI_POLL_WEIGHT);
778 napi_enable(&rq->xdp_napi);
779 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900780
781 return 0;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900782err_xdp_ring:
783 for (i--; i >= 0; i--)
784 ptr_ring_cleanup(&priv->rq[i].xdp_ring, veth_ptr_free);
785
786 return err;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900787}
788
789static void veth_napi_del(struct net_device *dev)
790{
791 struct veth_priv *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900792 int i;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900793
Toshiaki Makita638264d2018-08-03 16:58:18 +0900794 for (i = 0; i < dev->real_num_rx_queues; i++) {
795 struct veth_rq *rq = &priv->rq[i];
796
797 napi_disable(&rq->xdp_napi);
798 napi_hash_del(&rq->xdp_napi);
799 }
800 synchronize_net();
801
802 for (i = 0; i < dev->real_num_rx_queues; i++) {
803 struct veth_rq *rq = &priv->rq[i];
804
805 netif_napi_del(&rq->xdp_napi);
806 rq->rx_notify_masked = false;
807 ptr_ring_cleanup(&rq->xdp_ring, veth_ptr_free);
808 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900809}
810
811static int veth_enable_xdp(struct net_device *dev)
812{
813 struct veth_priv *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900814 int err, i;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900815
Toshiaki Makita638264d2018-08-03 16:58:18 +0900816 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];
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900819
Toshiaki Makita638264d2018-08-03 16:58:18 +0900820 err = xdp_rxq_info_reg(&rq->xdp_rxq, dev, i);
821 if (err < 0)
822 goto err_rxq_reg;
823
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;
829
830 /* Save original mem info as it can be overwritten */
831 rq->xdp_mem = rq->xdp_rxq.mem;
832 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900833
834 err = veth_napi_add(dev);
835 if (err)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900836 goto err_rxq_reg;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900837 }
838
Toshiaki Makita638264d2018-08-03 16:58:18 +0900839 for (i = 0; i < dev->real_num_rx_queues; i++)
840 rcu_assign_pointer(priv->rq[i].xdp_prog, priv->_xdp_prog);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900841
842 return 0;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900843err_reg_mem:
844 xdp_rxq_info_unreg(&priv->rq[i].xdp_rxq);
845err_rxq_reg:
846 for (i--; i >= 0; i--)
847 xdp_rxq_info_unreg(&priv->rq[i].xdp_rxq);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900848
849 return err;
850}
851
852static void veth_disable_xdp(struct net_device *dev)
853{
854 struct veth_priv *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900855 int i;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900856
Toshiaki Makita638264d2018-08-03 16:58:18 +0900857 for (i = 0; i < dev->real_num_rx_queues; i++)
858 rcu_assign_pointer(priv->rq[i].xdp_prog, NULL);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900859 veth_napi_del(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900860 for (i = 0; i < dev->real_num_rx_queues; i++) {
861 struct veth_rq *rq = &priv->rq[i];
862
863 rq->xdp_rxq.mem = rq->xdp_mem;
864 xdp_rxq_info_unreg(&rq->xdp_rxq);
865 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900866}
867
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700868static int veth_open(struct net_device *dev)
869{
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000870 struct veth_priv *priv = netdev_priv(dev);
871 struct net_device *peer = rtnl_dereference(priv->peer);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900872 int err;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700873
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000874 if (!peer)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700875 return -ENOTCONN;
876
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900877 if (priv->_xdp_prog) {
878 err = veth_enable_xdp(dev);
879 if (err)
880 return err;
881 }
882
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000883 if (peer->flags & IFF_UP) {
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700884 netif_carrier_on(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000885 netif_carrier_on(peer);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700886 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900887
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700888 return 0;
889}
890
Eric W. Biederman2cf48a12009-02-25 19:47:29 +0000891static int veth_close(struct net_device *dev)
892{
893 struct veth_priv *priv = netdev_priv(dev);
Eric Dumazet2efd32e2013-01-10 08:32:45 +0000894 struct net_device *peer = rtnl_dereference(priv->peer);
Eric W. Biederman2cf48a12009-02-25 19:47:29 +0000895
896 netif_carrier_off(dev);
Eric Dumazet2efd32e2013-01-10 08:32:45 +0000897 if (peer)
898 netif_carrier_off(peer);
Eric W. Biederman2cf48a12009-02-25 19:47:29 +0000899
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900900 if (priv->_xdp_prog)
901 veth_disable_xdp(dev);
902
Eric W. Biederman2cf48a12009-02-25 19:47:29 +0000903 return 0;
904}
905
Jarod Wilson91572082016-10-20 13:55:20 -0400906static int is_valid_veth_mtu(int mtu)
Eric Biederman38d40812009-03-03 23:36:04 -0800907{
Jarod Wilson91572082016-10-20 13:55:20 -0400908 return mtu >= ETH_MIN_MTU && mtu <= ETH_MAX_MTU;
Eric Biederman38d40812009-03-03 23:36:04 -0800909}
910
Toshiaki Makita7797b932018-08-15 17:07:29 +0900911static int veth_alloc_queues(struct net_device *dev)
912{
913 struct veth_priv *priv = netdev_priv(dev);
914 int i;
915
916 priv->rq = kcalloc(dev->num_rx_queues, sizeof(*priv->rq), GFP_KERNEL);
917 if (!priv->rq)
918 return -ENOMEM;
919
Toshiaki Makita4195e542018-10-11 18:36:49 +0900920 for (i = 0; i < dev->num_rx_queues; i++) {
Toshiaki Makita7797b932018-08-15 17:07:29 +0900921 priv->rq[i].dev = dev;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900922 u64_stats_init(&priv->rq[i].stats.syncp);
923 }
Toshiaki Makita7797b932018-08-15 17:07:29 +0900924
925 return 0;
926}
927
928static void veth_free_queues(struct net_device *dev)
929{
930 struct veth_priv *priv = netdev_priv(dev);
931
932 kfree(priv->rq);
933}
934
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700935static int veth_dev_init(struct net_device *dev)
936{
Toshiaki Makita7797b932018-08-15 17:07:29 +0900937 int err;
938
Li RongQing14d73412018-09-17 18:46:55 +0800939 dev->lstats = netdev_alloc_pcpu_stats(struct pcpu_lstats);
940 if (!dev->lstats)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700941 return -ENOMEM;
Toshiaki Makita7797b932018-08-15 17:07:29 +0900942
943 err = veth_alloc_queues(dev);
944 if (err) {
Li RongQing14d73412018-09-17 18:46:55 +0800945 free_percpu(dev->lstats);
Toshiaki Makita7797b932018-08-15 17:07:29 +0900946 return err;
947 }
948
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700949 return 0;
950}
951
David S. Miller11687a12009-06-25 02:45:42 -0700952static void veth_dev_free(struct net_device *dev)
953{
Toshiaki Makita7797b932018-08-15 17:07:29 +0900954 veth_free_queues(dev);
Li RongQing14d73412018-09-17 18:46:55 +0800955 free_percpu(dev->lstats);
David S. Miller11687a12009-06-25 02:45:42 -0700956}
957
WANG Congbb446c12014-06-23 15:36:02 -0700958#ifdef CONFIG_NET_POLL_CONTROLLER
959static void veth_poll_controller(struct net_device *dev)
960{
961 /* veth only receives frames when its peer sends one
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900962 * Since it has nothing to do with disabling irqs, we are guaranteed
WANG Congbb446c12014-06-23 15:36:02 -0700963 * never to have pending data when we poll for it so
964 * there is nothing to do here.
965 *
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
969 */
970}
971#endif /* CONFIG_NET_POLL_CONTROLLER */
972
Nicolas Dichtela45253b2015-04-02 17:07:11 +0200973static int veth_get_iflink(const struct net_device *dev)
974{
975 struct veth_priv *priv = netdev_priv(dev);
976 struct net_device *peer;
977 int iflink;
978
979 rcu_read_lock();
980 peer = rcu_dereference(priv->peer);
981 iflink = peer ? peer->ifindex : 0;
982 rcu_read_unlock();
983
984 return iflink;
985}
986
Toshiaki Makitadc224822018-08-03 16:58:11 +0900987static netdev_features_t veth_fix_features(struct net_device *dev,
988 netdev_features_t features)
989{
990 struct veth_priv *priv = netdev_priv(dev);
991 struct net_device *peer;
992
993 peer = rtnl_dereference(priv->peer);
994 if (peer) {
995 struct veth_priv *peer_priv = netdev_priv(peer);
996
997 if (peer_priv->_xdp_prog)
998 features &= ~NETIF_F_GSO_SOFTWARE;
999 }
1000
1001 return features;
1002}
1003
Paolo Abeni163e5292016-02-26 10:45:41 +01001004static void veth_set_rx_headroom(struct net_device *dev, int new_hr)
1005{
1006 struct veth_priv *peer_priv, *priv = netdev_priv(dev);
1007 struct net_device *peer;
1008
1009 if (new_hr < 0)
1010 new_hr = 0;
1011
1012 rcu_read_lock();
1013 peer = rcu_dereference(priv->peer);
1014 if (unlikely(!peer))
1015 goto out;
1016
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;
1022
1023out:
1024 rcu_read_unlock();
1025}
1026
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001027static int veth_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1028 struct netlink_ext_ack *extack)
1029{
1030 struct veth_priv *priv = netdev_priv(dev);
1031 struct bpf_prog *old_prog;
1032 struct net_device *peer;
Toshiaki Makitadc224822018-08-03 16:58:11 +09001033 unsigned int max_mtu;
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001034 int err;
1035
1036 old_prog = priv->_xdp_prog;
1037 priv->_xdp_prog = prog;
1038 peer = rtnl_dereference(priv->peer);
1039
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;
1045 }
1046
Toshiaki Makitadc224822018-08-03 16:58:11 +09001047 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;
1054 }
1055
Toshiaki Makita638264d2018-08-03 16:58:18 +09001056 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;
1060 }
1061
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001062 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;
1067 }
1068 }
Toshiaki Makitadc224822018-08-03 16:58:11 +09001069
1070 if (!old_prog) {
1071 peer->hw_features &= ~NETIF_F_GSO_SOFTWARE;
1072 peer->max_mtu = max_mtu;
1073 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001074 }
1075
1076 if (old_prog) {
Toshiaki Makitadc224822018-08-03 16:58:11 +09001077 if (!prog) {
1078 if (dev->flags & IFF_UP)
1079 veth_disable_xdp(dev);
1080
1081 if (peer) {
1082 peer->hw_features |= NETIF_F_GSO_SOFTWARE;
1083 peer->max_mtu = ETH_MAX_MTU;
1084 }
1085 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001086 bpf_prog_put(old_prog);
1087 }
1088
Toshiaki Makitadc224822018-08-03 16:58:11 +09001089 if ((!!old_prog ^ !!prog) && peer)
1090 netdev_update_features(peer);
1091
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001092 return 0;
1093err:
1094 priv->_xdp_prog = old_prog;
1095
1096 return err;
1097}
1098
1099static u32 veth_xdp_query(struct net_device *dev)
1100{
1101 struct veth_priv *priv = netdev_priv(dev);
1102 const struct bpf_prog *xdp_prog;
1103
1104 xdp_prog = priv->_xdp_prog;
1105 if (xdp_prog)
1106 return xdp_prog->aux->id;
1107
1108 return 0;
1109}
1110
1111static int veth_xdp(struct net_device *dev, struct netdev_bpf *xdp)
1112{
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;
1121 }
1122}
1123
Stephen Hemminger4456e7b2008-11-19 21:50:10 -08001124static const struct net_device_ops veth_netdev_ops = {
Daniel Lezcanoee923622009-02-22 00:04:45 -08001125 .ndo_init = veth_dev_init,
1126 .ndo_open = veth_open,
Eric W. Biederman2cf48a12009-02-25 19:47:29 +00001127 .ndo_stop = veth_close,
Daniel Lezcanoee923622009-02-22 00:04:45 -08001128 .ndo_start_xmit = veth_xmit,
stephen hemminger6311cc42011-06-08 14:53:59 +00001129 .ndo_get_stats64 = veth_get_stats64,
Gao feng5c70ef82013-10-04 16:52:24 +08001130 .ndo_set_rx_mode = veth_set_multicast_list,
Daniel Lezcanoee923622009-02-22 00:04:45 -08001131 .ndo_set_mac_address = eth_mac_addr,
WANG Congbb446c12014-06-23 15:36:02 -07001132#ifdef CONFIG_NET_POLL_CONTROLLER
1133 .ndo_poll_controller = veth_poll_controller,
1134#endif
Nicolas Dichtela45253b2015-04-02 17:07:11 +02001135 .ndo_get_iflink = veth_get_iflink,
Toshiaki Makitadc224822018-08-03 16:58:11 +09001136 .ndo_fix_features = veth_fix_features,
Toshiaki Makita1a04a822015-07-31 15:03:25 +09001137 .ndo_features_check = passthru_features_check,
Paolo Abeni163e5292016-02-26 10:45:41 +01001138 .ndo_set_rx_headroom = veth_set_rx_headroom,
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001139 .ndo_bpf = veth_xdp,
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +09001140 .ndo_xdp_xmit = veth_xdp_xmit,
Stephen Hemminger4456e7b2008-11-19 21:50:10 -08001141};
1142
Alexander Duyck732912d72016-04-19 14:02:26 -04001143#define VETH_FEATURES (NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HW_CSUM | \
Xin Longc80fafb2016-08-25 13:21:49 +08001144 NETIF_F_RXCSUM | NETIF_F_SCTP_CRC | NETIF_F_HIGHDMA | \
Alexander Duyck732912d72016-04-19 14:02:26 -04001145 NETIF_F_GSO_SOFTWARE | NETIF_F_GSO_ENCAP_ALL | \
Patrick McHardy28d2b132013-04-19 02:04:32 +00001146 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 )
Eric Dumazet80933152012-12-29 16:26:10 +00001148
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001149static void veth_setup(struct net_device *dev)
1150{
1151 ether_setup(dev);
1152
Neil Horman550fd082011-07-26 06:05:38 +00001153 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Hannes Frederic Sowa23ea5a92012-10-30 16:22:01 +00001154 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Phil Sutter02f01ec2015-08-18 10:30:29 +02001155 dev->priv_flags |= IFF_NO_QUEUE;
Paolo Abeni163e5292016-02-26 10:45:41 +01001156 dev->priv_flags |= IFF_PHONY_HEADROOM;
Neil Horman550fd082011-07-26 06:05:38 +00001157
Stephen Hemminger4456e7b2008-11-19 21:50:10 -08001158 dev->netdev_ops = &veth_netdev_ops;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001159 dev->ethtool_ops = &veth_ethtool_ops;
1160 dev->features |= NETIF_F_LLTX;
Eric Dumazet80933152012-12-29 16:26:10 +00001161 dev->features |= VETH_FEATURES;
Toshiaki Makita8d0d21f2014-02-18 21:20:08 +09001162 dev->vlan_features = dev->features &
Vlad Yasevich3f8c7072014-03-27 22:14:48 -04001163 ~(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);
David S. Millercf124db2017-05-08 12:52:56 -04001167 dev->needs_free_netdev = true;
1168 dev->priv_destructor = veth_dev_free;
Jarod Wilson91572082016-10-20 13:55:20 -04001169 dev->max_mtu = ETH_MAX_MTU;
Michał Mirosława2c725f2011-03-31 01:01:35 +00001170
Eric Dumazet80933152012-12-29 16:26:10 +00001171 dev->hw_features = VETH_FEATURES;
Eric Dumazet82d81892013-10-25 18:25:03 -07001172 dev->hw_enc_features = VETH_FEATURES;
David Ahern607fca92016-08-24 20:10:45 -07001173 dev->mpls_features = NETIF_F_HW_CSUM | NETIF_F_GSO_SOFTWARE;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001174}
1175
1176/*
1177 * netlink interface
1178 */
1179
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001180static int veth_validate(struct nlattr *tb[], struct nlattr *data[],
1181 struct netlink_ext_ack *extack)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001182{
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;
1188 }
Eric Biederman38d40812009-03-03 23:36:04 -08001189 if (tb[IFLA_MTU]) {
1190 if (!is_valid_veth_mtu(nla_get_u32(tb[IFLA_MTU])))
1191 return -EINVAL;
1192 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001193 return 0;
1194}
1195
1196static struct rtnl_link_ops veth_link_ops;
1197
Eric W. Biederman81adee42009-11-08 00:53:51 -08001198static int veth_newlink(struct net *src_net, struct net_device *dev,
Matthias Schiffer7a3f4a12017-06-25 23:55:59 +02001199 struct nlattr *tb[], struct nlattr *data[],
1200 struct netlink_ext_ack *extack)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001201{
Toshiaki Makita7797b932018-08-15 17:07:29 +09001202 int err;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001203 struct net_device *peer;
1204 struct veth_priv *priv;
1205 char ifname[IFNAMSIZ];
1206 struct nlattr *peer_tb[IFLA_MAX + 1], **tbp;
Tom Gundersen55177502014-07-14 16:37:25 +02001207 unsigned char name_assign_type;
Patrick McHardy3729d502010-02-26 06:34:54 +00001208 struct ifinfomsg *ifmp;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001209 struct net *net;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001210
1211 /*
1212 * create and register peer first
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001213 */
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001214 if (data != NULL && data[VETH_INFO_PEER] != NULL) {
1215 struct nlattr *nla_peer;
1216
1217 nla_peer = data[VETH_INFO_PEER];
Patrick McHardy3729d502010-02-26 06:34:54 +00001218 ifmp = nla_data(nla_peer);
Jiri Pirkof7b12602014-02-18 20:53:18 +01001219 err = rtnl_nla_parse_ifla(peer_tb,
1220 nla_data(nla_peer) + sizeof(struct ifinfomsg),
Johannes Bergfceb6432017-04-12 14:34:07 +02001221 nla_len(nla_peer) - sizeof(struct ifinfomsg),
1222 NULL);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001223 if (err < 0)
1224 return err;
1225
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001226 err = veth_validate(peer_tb, NULL, extack);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001227 if (err < 0)
1228 return err;
1229
1230 tbp = peer_tb;
Patrick McHardy3729d502010-02-26 06:34:54 +00001231 } else {
1232 ifmp = NULL;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001233 tbp = tb;
Patrick McHardy3729d502010-02-26 06:34:54 +00001234 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001235
Serhey Popovych191cdb32017-06-21 12:12:24 +03001236 if (ifmp && tbp[IFLA_IFNAME]) {
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001237 nla_strlcpy(ifname, tbp[IFLA_IFNAME], IFNAMSIZ);
Tom Gundersen55177502014-07-14 16:37:25 +02001238 name_assign_type = NET_NAME_USER;
1239 } else {
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001240 snprintf(ifname, IFNAMSIZ, DRV_NAME "%%d");
Tom Gundersen55177502014-07-14 16:37:25 +02001241 name_assign_type = NET_NAME_ENUM;
1242 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001243
Eric W. Biederman81adee42009-11-08 00:53:51 -08001244 net = rtnl_link_get_net(src_net, tbp);
1245 if (IS_ERR(net))
1246 return PTR_ERR(net);
1247
Tom Gundersen55177502014-07-14 16:37:25 +02001248 peer = rtnl_create_link(net, ifname, name_assign_type,
David Ahernd0522f12018-11-06 12:51:14 -08001249 &veth_link_ops, tbp, extack);
Eric W. Biederman81adee42009-11-08 00:53:51 -08001250 if (IS_ERR(peer)) {
1251 put_net(net);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001252 return PTR_ERR(peer);
Eric W. Biederman81adee42009-11-08 00:53:51 -08001253 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001254
Serhey Popovych191cdb32017-06-21 12:12:24 +03001255 if (!ifmp || !tbp[IFLA_ADDRESS])
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001256 eth_hw_addr_random(peer);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001257
Pavel Emelyanove6f8f1a2012-08-08 21:53:03 +00001258 if (ifmp && (dev->ifindex != 0))
1259 peer->ifindex = ifmp->ifi_index;
1260
Stephen Hemminger72d249552017-12-07 15:40:20 -08001261 peer->gso_max_size = dev->gso_max_size;
1262 peer->gso_max_segs = dev->gso_max_segs;
1263
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001264 err = register_netdevice(peer);
Eric W. Biederman81adee42009-11-08 00:53:51 -08001265 put_net(net);
1266 net = NULL;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001267 if (err < 0)
1268 goto err_register_peer;
1269
1270 netif_carrier_off(peer);
1271
Patrick McHardy3729d502010-02-26 06:34:54 +00001272 err = rtnl_configure_link(peer, ifmp);
1273 if (err < 0)
1274 goto err_configure_peer;
1275
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001276 /*
1277 * register dev last
1278 *
1279 * note, that since we've registered new device the dev's name
1280 * should be re-allocated
1281 */
1282
1283 if (tb[IFLA_ADDRESS] == NULL)
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001284 eth_hw_addr_random(dev);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001285
Jiri Pirko6c8c4442011-04-30 01:28:17 +00001286 if (tb[IFLA_IFNAME])
1287 nla_strlcpy(dev->name, tb[IFLA_IFNAME], IFNAMSIZ);
1288 else
1289 snprintf(dev->name, IFNAMSIZ, DRV_NAME "%%d");
1290
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001291 err = register_netdevice(dev);
1292 if (err < 0)
1293 goto err_register_dev;
1294
1295 netif_carrier_off(dev);
1296
1297 /*
1298 * tie the deviced together
1299 */
1300
1301 priv = netdev_priv(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +00001302 rcu_assign_pointer(priv->peer, peer);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001303
1304 priv = netdev_priv(peer);
Eric Dumazetd0e2c552013-01-04 15:42:40 +00001305 rcu_assign_pointer(priv->peer, dev);
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001306
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001307 return 0;
1308
1309err_register_dev:
1310 /* nothing to do */
Patrick McHardy3729d502010-02-26 06:34:54 +00001311err_configure_peer:
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001312 unregister_netdevice(peer);
1313 return err;
1314
1315err_register_peer:
1316 free_netdev(peer);
1317 return err;
1318}
1319
Eric Dumazet23289a32009-10-27 07:06:36 +00001320static void veth_dellink(struct net_device *dev, struct list_head *head)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001321{
1322 struct veth_priv *priv;
1323 struct net_device *peer;
1324
1325 priv = netdev_priv(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +00001326 peer = rtnl_dereference(priv->peer);
1327
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.
1331 */
1332 RCU_INIT_POINTER(priv->peer, NULL);
Eric Dumazet24540532009-10-30 01:00:27 -07001333 unregister_netdevice_queue(dev, head);
Eric Dumazetf45a5c22013-02-08 20:10:49 +00001334
1335 if (peer) {
1336 priv = netdev_priv(peer);
1337 RCU_INIT_POINTER(priv->peer, NULL);
1338 unregister_netdevice_queue(peer, head);
1339 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001340}
1341
Thomas Graf23711432012-02-15 04:09:46 +00001342static const struct nla_policy veth_policy[VETH_INFO_MAX + 1] = {
1343 [VETH_INFO_PEER] = { .len = sizeof(struct ifinfomsg) },
1344};
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001345
Nicolas Dichtele5f4e7b2015-01-20 15:15:46 +01001346static struct net *veth_get_link_net(const struct net_device *dev)
1347{
1348 struct veth_priv *priv = netdev_priv(dev);
1349 struct net_device *peer = rtnl_dereference(priv->peer);
1350
1351 return peer ? dev_net(peer) : dev_net(dev);
1352}
1353
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001354static 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,
Nicolas Dichtele5f4e7b2015-01-20 15:15:46 +01001363 .get_link_net = veth_get_link_net,
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001364};
1365
1366/*
1367 * init/fini
1368 */
1369
1370static __init int veth_init(void)
1371{
1372 return rtnl_link_register(&veth_link_ops);
1373}
1374
1375static __exit void veth_exit(void)
1376{
Patrick McHardy68365452008-01-20 17:25:14 -08001377 rtnl_link_unregister(&veth_link_ops);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001378}
1379
1380module_init(veth_init);
1381module_exit(veth_exit);
1382
1383MODULE_DESCRIPTION("Virtual Ethernet Tunnel");
1384MODULE_LICENSE("GPL v2");
1385MODULE_ALIAS_RTNL_LINK(DRV_NAME);