blob: f412ea1cef18bbf215ac6ae46d257b39a8a95c74 [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++) {
118 snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s",
119 i, veth_rq_stats_desc[j].desc);
120 p += ETH_GSTRING_LEN;
121 }
122 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700123 break;
124 }
125}
126
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700127static int veth_get_sset_count(struct net_device *dev, int sset)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700128{
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700129 switch (sset) {
130 case ETH_SS_STATS:
Toshiaki Makitad397b962018-10-11 18:36:50 +0900131 return ARRAY_SIZE(ethtool_stats_keys) +
132 VETH_RQ_STATS_LEN * dev->real_num_rx_queues;
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700133 default:
134 return -EOPNOTSUPP;
135 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700136}
137
138static void veth_get_ethtool_stats(struct net_device *dev,
139 struct ethtool_stats *stats, u64 *data)
140{
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000141 struct veth_priv *priv = netdev_priv(dev);
142 struct net_device *peer = rtnl_dereference(priv->peer);
Toshiaki Makitad397b962018-10-11 18:36:50 +0900143 int i, j, idx;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700144
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000145 data[0] = peer ? peer->ifindex : 0;
Toshiaki Makitad397b962018-10-11 18:36:50 +0900146 idx = 1;
147 for (i = 0; i < dev->real_num_rx_queues; i++) {
148 const struct veth_rq_stats *rq_stats = &priv->rq[i].stats;
149 const void *stats_base = (void *)rq_stats;
150 unsigned int start;
151 size_t offset;
152
153 do {
154 start = u64_stats_fetch_begin_irq(&rq_stats->syncp);
155 for (j = 0; j < VETH_RQ_STATS_LEN; j++) {
156 offset = veth_rq_stats_desc[j].offset;
157 data[idx + j] = *(u64 *)(stats_base + offset);
158 }
159 } while (u64_stats_fetch_retry_irq(&rq_stats->syncp, start));
160 idx += VETH_RQ_STATS_LEN;
161 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700162}
163
Michael Walleaa4e6892018-08-29 17:24:11 +0200164static int veth_get_ts_info(struct net_device *dev,
165 struct ethtool_ts_info *info)
166{
167 info->so_timestamping =
168 SOF_TIMESTAMPING_TX_SOFTWARE |
169 SOF_TIMESTAMPING_RX_SOFTWARE |
170 SOF_TIMESTAMPING_SOFTWARE;
171 info->phc_index = -1;
172
173 return 0;
174}
175
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700176static const struct ethtool_ops veth_ethtool_ops = {
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700177 .get_drvinfo = veth_get_drvinfo,
178 .get_link = ethtool_op_get_link,
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700179 .get_strings = veth_get_strings,
Jeff Garzikb9f2c042007-10-03 18:07:32 -0700180 .get_sset_count = veth_get_sset_count,
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700181 .get_ethtool_stats = veth_get_ethtool_stats,
Philippe Reynes56607b92017-03-29 08:24:21 +0200182 .get_link_ksettings = veth_get_link_ksettings,
Michael Walleaa4e6892018-08-29 17:24:11 +0200183 .get_ts_info = veth_get_ts_info,
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700184};
185
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900186/* general routines */
187
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900188static bool veth_is_xdp_frame(void *ptr)
189{
190 return (unsigned long)ptr & VETH_XDP_FLAG;
191}
192
193static void *veth_ptr_to_xdp(void *ptr)
194{
195 return (void *)((unsigned long)ptr & ~VETH_XDP_FLAG);
196}
197
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900198static void *veth_xdp_to_ptr(void *ptr)
199{
200 return (void *)((unsigned long)ptr | VETH_XDP_FLAG);
201}
202
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900203static void veth_ptr_free(void *ptr)
204{
205 if (veth_is_xdp_frame(ptr))
206 xdp_return_frame(veth_ptr_to_xdp(ptr));
207 else
208 kfree_skb(ptr);
209}
210
Toshiaki Makita638264d2018-08-03 16:58:18 +0900211static void __veth_xdp_flush(struct veth_rq *rq)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900212{
213 /* Write ptr_ring before reading rx_notify_masked */
214 smp_mb();
Toshiaki Makita638264d2018-08-03 16:58:18 +0900215 if (!rq->rx_notify_masked) {
216 rq->rx_notify_masked = true;
217 napi_schedule(&rq->xdp_napi);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900218 }
219}
220
Toshiaki Makita638264d2018-08-03 16:58:18 +0900221static int veth_xdp_rx(struct veth_rq *rq, struct sk_buff *skb)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900222{
Toshiaki Makita638264d2018-08-03 16:58:18 +0900223 if (unlikely(ptr_ring_produce(&rq->xdp_ring, skb))) {
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900224 dev_kfree_skb_any(skb);
225 return NET_RX_DROP;
226 }
227
228 return NET_RX_SUCCESS;
229}
230
Toshiaki Makita638264d2018-08-03 16:58:18 +0900231static int veth_forward_skb(struct net_device *dev, struct sk_buff *skb,
232 struct veth_rq *rq, bool xdp)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700233{
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900234 return __dev_forward_skb(dev, skb) ?: xdp ?
Toshiaki Makita638264d2018-08-03 16:58:18 +0900235 veth_xdp_rx(rq, skb) :
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900236 netif_rx(skb);
237}
238
239static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev)
240{
241 struct veth_priv *rcv_priv, *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900242 struct veth_rq *rq = NULL;
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000243 struct net_device *rcv;
Eric Dumazet26811282012-12-29 16:02:43 +0000244 int length = skb->len;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900245 bool rcv_xdp = false;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900246 int rxq;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700247
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000248 rcu_read_lock();
249 rcv = rcu_dereference(priv->peer);
250 if (unlikely(!rcv)) {
251 kfree_skb(skb);
252 goto drop;
253 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700254
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900255 rcv_priv = netdev_priv(rcv);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900256 rxq = skb_get_queue_mapping(skb);
257 if (rxq < rcv->real_num_rx_queues) {
258 rq = &rcv_priv->rq[rxq];
259 rcv_xdp = rcu_access_pointer(rq->xdp_prog);
260 if (rcv_xdp)
261 skb_record_rx_queue(skb, rxq);
262 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900263
Michael Walleaa4e6892018-08-29 17:24:11 +0200264 skb_tx_timestamp(skb);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900265 if (likely(veth_forward_skb(rcv, skb, rq, rcv_xdp) == NET_RX_SUCCESS)) {
Toshiaki Makita4195e542018-10-11 18:36:49 +0900266 if (!rcv_xdp) {
267 struct pcpu_lstats *stats = this_cpu_ptr(dev->lstats);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700268
Toshiaki Makita4195e542018-10-11 18:36:49 +0900269 u64_stats_update_begin(&stats->syncp);
270 stats->bytes += length;
271 stats->packets++;
272 u64_stats_update_end(&stats->syncp);
273 }
Eric Dumazet26811282012-12-29 16:02:43 +0000274 } else {
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000275drop:
Eric Dumazet26811282012-12-29 16:02:43 +0000276 atomic64_inc(&priv->dropped);
277 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900278
279 if (rcv_xdp)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900280 __veth_xdp_flush(rq);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900281
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000282 rcu_read_unlock();
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900283
Patrick McHardy6ed10652009-06-23 06:03:08 +0000284 return NETDEV_TX_OK;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700285}
286
Toshiaki Makita4195e542018-10-11 18:36:49 +0900287static u64 veth_stats_tx(struct pcpu_lstats *result, struct net_device *dev)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700288{
Eric Dumazetcf05c702011-06-19 22:48:34 -0700289 struct veth_priv *priv = netdev_priv(dev);
David S. Miller11687a12009-06-25 02:45:42 -0700290 int cpu;
David S. Miller11687a12009-06-25 02:45:42 -0700291
Eric Dumazet26811282012-12-29 16:02:43 +0000292 result->packets = 0;
293 result->bytes = 0;
Eric Dumazet2b1c8b02009-11-18 07:09:39 +0000294 for_each_possible_cpu(cpu) {
Li RongQing14d73412018-09-17 18:46:55 +0800295 struct pcpu_lstats *stats = per_cpu_ptr(dev->lstats, cpu);
Eric Dumazet26811282012-12-29 16:02:43 +0000296 u64 packets, bytes;
Eric Dumazetcf05c702011-06-19 22:48:34 -0700297 unsigned int start;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700298
Eric Dumazetcf05c702011-06-19 22:48:34 -0700299 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -0700300 start = u64_stats_fetch_begin_irq(&stats->syncp);
Eric Dumazet26811282012-12-29 16:02:43 +0000301 packets = stats->packets;
302 bytes = stats->bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -0700303 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
Eric Dumazet26811282012-12-29 16:02:43 +0000304 result->packets += packets;
305 result->bytes += bytes;
David S. Miller11687a12009-06-25 02:45:42 -0700306 }
Eric Dumazet26811282012-12-29 16:02:43 +0000307 return atomic64_read(&priv->dropped);
308}
309
Toshiaki Makita4195e542018-10-11 18:36:49 +0900310static void veth_stats_rx(struct veth_rq_stats *result, struct net_device *dev)
311{
312 struct veth_priv *priv = netdev_priv(dev);
313 int i;
314
315 result->xdp_packets = 0;
316 result->xdp_bytes = 0;
317 result->xdp_drops = 0;
318 for (i = 0; i < dev->num_rx_queues; i++) {
319 struct veth_rq_stats *stats = &priv->rq[i].stats;
320 u64 packets, bytes, drops;
321 unsigned int start;
322
323 do {
324 start = u64_stats_fetch_begin_irq(&stats->syncp);
325 packets = stats->xdp_packets;
326 bytes = stats->xdp_bytes;
327 drops = stats->xdp_drops;
328 } while (u64_stats_fetch_retry_irq(&stats->syncp, start));
329 result->xdp_packets += packets;
330 result->xdp_bytes += bytes;
331 result->xdp_drops += drops;
332 }
333}
334
stephen hemmingerbc1f4472017-01-06 19:12:52 -0800335static void veth_get_stats64(struct net_device *dev,
336 struct rtnl_link_stats64 *tot)
Eric Dumazet26811282012-12-29 16:02:43 +0000337{
338 struct veth_priv *priv = netdev_priv(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000339 struct net_device *peer;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900340 struct veth_rq_stats rx;
341 struct pcpu_lstats tx;
Eric Dumazet26811282012-12-29 16:02:43 +0000342
Toshiaki Makita4195e542018-10-11 18:36:49 +0900343 tot->tx_dropped = veth_stats_tx(&tx, dev);
344 tot->tx_bytes = tx.bytes;
345 tot->tx_packets = tx.packets;
346
347 veth_stats_rx(&rx, dev);
348 tot->rx_dropped = rx.xdp_drops;
349 tot->rx_bytes = rx.xdp_bytes;
350 tot->rx_packets = rx.xdp_packets;
Eric Dumazet26811282012-12-29 16:02:43 +0000351
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000352 rcu_read_lock();
353 peer = rcu_dereference(priv->peer);
354 if (peer) {
Toshiaki Makita4195e542018-10-11 18:36:49 +0900355 tot->rx_dropped += veth_stats_tx(&tx, peer);
356 tot->rx_bytes += tx.bytes;
357 tot->rx_packets += tx.packets;
358
359 veth_stats_rx(&rx, peer);
360 tot->tx_bytes += rx.xdp_bytes;
361 tot->tx_packets += rx.xdp_packets;
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000362 }
363 rcu_read_unlock();
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700364}
365
Gao feng5c70ef82013-10-04 16:52:24 +0800366/* fake multicast ability */
367static void veth_set_multicast_list(struct net_device *dev)
368{
369}
370
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900371static struct sk_buff *veth_build_skb(void *head, int headroom, int len,
372 int buflen)
373{
374 struct sk_buff *skb;
375
376 if (!buflen) {
377 buflen = SKB_DATA_ALIGN(headroom + len) +
378 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
379 }
380 skb = build_skb(head, buflen);
381 if (!skb)
382 return NULL;
383
384 skb_reserve(skb, headroom);
385 skb_put(skb, len);
386
387 return skb;
388}
389
Toshiaki Makita638264d2018-08-03 16:58:18 +0900390static int veth_select_rxq(struct net_device *dev)
391{
392 return smp_processor_id() % dev->real_num_rx_queues;
393}
394
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900395static int veth_xdp_xmit(struct net_device *dev, int n,
396 struct xdp_frame **frames, u32 flags)
397{
398 struct veth_priv *rcv_priv, *priv = netdev_priv(dev);
399 struct net_device *rcv;
Toshiaki Makita21314792018-10-11 18:36:48 +0900400 int i, ret, drops = n;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900401 unsigned int max_len;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900402 struct veth_rq *rq;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900403
Toshiaki Makita21314792018-10-11 18:36:48 +0900404 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) {
405 ret = -EINVAL;
406 goto drop;
407 }
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900408
409 rcv = rcu_dereference(priv->peer);
Toshiaki Makita21314792018-10-11 18:36:48 +0900410 if (unlikely(!rcv)) {
411 ret = -ENXIO;
412 goto drop;
413 }
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900414
415 rcv_priv = netdev_priv(rcv);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900416 rq = &rcv_priv->rq[veth_select_rxq(rcv)];
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900417 /* Non-NULL xdp_prog ensures that xdp_ring is initialized on receive
418 * side. This means an XDP program is loaded on the peer and the peer
419 * device is up.
420 */
Toshiaki Makita21314792018-10-11 18:36:48 +0900421 if (!rcu_access_pointer(rq->xdp_prog)) {
422 ret = -ENXIO;
423 goto drop;
424 }
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900425
Toshiaki Makita21314792018-10-11 18:36:48 +0900426 drops = 0;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900427 max_len = rcv->mtu + rcv->hard_header_len + VLAN_HLEN;
428
Toshiaki Makita638264d2018-08-03 16:58:18 +0900429 spin_lock(&rq->xdp_ring.producer_lock);
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900430 for (i = 0; i < n; i++) {
431 struct xdp_frame *frame = frames[i];
432 void *ptr = veth_xdp_to_ptr(frame);
433
434 if (unlikely(frame->len > max_len ||
Toshiaki Makita638264d2018-08-03 16:58:18 +0900435 __ptr_ring_produce(&rq->xdp_ring, ptr))) {
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900436 xdp_return_frame_rx_napi(frame);
437 drops++;
438 }
439 }
Toshiaki Makita638264d2018-08-03 16:58:18 +0900440 spin_unlock(&rq->xdp_ring.producer_lock);
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900441
442 if (flags & XDP_XMIT_FLUSH)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900443 __veth_xdp_flush(rq);
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900444
Toshiaki Makita21314792018-10-11 18:36:48 +0900445 if (likely(!drops))
446 return n;
447
448 ret = n - drops;
449drop:
450 atomic64_add(drops, &priv->dropped);
451
452 return ret;
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +0900453}
454
Toshiaki Makitad1396002018-08-03 16:58:17 +0900455static void veth_xdp_flush(struct net_device *dev)
456{
457 struct veth_priv *rcv_priv, *priv = netdev_priv(dev);
458 struct net_device *rcv;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900459 struct veth_rq *rq;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900460
461 rcu_read_lock();
462 rcv = rcu_dereference(priv->peer);
463 if (unlikely(!rcv))
464 goto out;
465
466 rcv_priv = netdev_priv(rcv);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900467 rq = &rcv_priv->rq[veth_select_rxq(rcv)];
Toshiaki Makitad1396002018-08-03 16:58:17 +0900468 /* xdp_ring is initialized on receive side? */
Toshiaki Makita638264d2018-08-03 16:58:18 +0900469 if (unlikely(!rcu_access_pointer(rq->xdp_prog)))
Toshiaki Makitad1396002018-08-03 16:58:17 +0900470 goto out;
471
Toshiaki Makita638264d2018-08-03 16:58:18 +0900472 __veth_xdp_flush(rq);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900473out:
474 rcu_read_unlock();
475}
476
477static int veth_xdp_tx(struct net_device *dev, struct xdp_buff *xdp)
478{
479 struct xdp_frame *frame = convert_to_xdp_frame(xdp);
480
481 if (unlikely(!frame))
482 return -EOVERFLOW;
483
484 return veth_xdp_xmit(dev, 1, &frame, 0);
485}
486
Toshiaki Makita638264d2018-08-03 16:58:18 +0900487static struct sk_buff *veth_xdp_rcv_one(struct veth_rq *rq,
Toshiaki Makitad1396002018-08-03 16:58:17 +0900488 struct xdp_frame *frame,
489 unsigned int *xdp_xmit)
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900490{
491 void *hard_start = frame->data - frame->headroom;
492 void *head = hard_start - sizeof(struct xdp_frame);
493 int len = frame->len, delta = 0;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900494 struct xdp_frame orig_frame;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900495 struct bpf_prog *xdp_prog;
496 unsigned int headroom;
497 struct sk_buff *skb;
498
499 rcu_read_lock();
Toshiaki Makita638264d2018-08-03 16:58:18 +0900500 xdp_prog = rcu_dereference(rq->xdp_prog);
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900501 if (likely(xdp_prog)) {
502 struct xdp_buff xdp;
503 u32 act;
504
505 xdp.data_hard_start = hard_start;
506 xdp.data = frame->data;
507 xdp.data_end = frame->data + frame->len;
508 xdp.data_meta = frame->data - frame->metasize;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900509 xdp.rxq = &rq->xdp_rxq;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900510
511 act = bpf_prog_run_xdp(xdp_prog, &xdp);
512
513 switch (act) {
514 case XDP_PASS:
515 delta = frame->data - xdp.data;
516 len = xdp.data_end - xdp.data;
517 break;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900518 case XDP_TX:
519 orig_frame = *frame;
520 xdp.data_hard_start = head;
521 xdp.rxq->mem = frame->mem;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900522 if (unlikely(veth_xdp_tx(rq->dev, &xdp) < 0)) {
523 trace_xdp_exception(rq->dev, xdp_prog, act);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900524 frame = &orig_frame;
525 goto err_xdp;
526 }
527 *xdp_xmit |= VETH_XDP_TX;
528 rcu_read_unlock();
529 goto xdp_xmit;
530 case XDP_REDIRECT:
531 orig_frame = *frame;
532 xdp.data_hard_start = head;
533 xdp.rxq->mem = frame->mem;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900534 if (xdp_do_redirect(rq->dev, &xdp, xdp_prog)) {
Toshiaki Makitad1396002018-08-03 16:58:17 +0900535 frame = &orig_frame;
536 goto err_xdp;
537 }
538 *xdp_xmit |= VETH_XDP_REDIR;
539 rcu_read_unlock();
540 goto xdp_xmit;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900541 default:
542 bpf_warn_invalid_xdp_action(act);
543 case XDP_ABORTED:
Toshiaki Makita638264d2018-08-03 16:58:18 +0900544 trace_xdp_exception(rq->dev, xdp_prog, act);
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900545 case XDP_DROP:
546 goto err_xdp;
547 }
548 }
549 rcu_read_unlock();
550
551 headroom = sizeof(struct xdp_frame) + frame->headroom - delta;
552 skb = veth_build_skb(head, headroom, len, 0);
553 if (!skb) {
554 xdp_return_frame(frame);
555 goto err;
556 }
557
558 xdp_scrub_frame(frame);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900559 skb->protocol = eth_type_trans(skb, rq->dev);
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900560err:
561 return skb;
562err_xdp:
563 rcu_read_unlock();
564 xdp_return_frame(frame);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900565xdp_xmit:
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900566 return NULL;
567}
568
Toshiaki Makita638264d2018-08-03 16:58:18 +0900569static struct sk_buff *veth_xdp_rcv_skb(struct veth_rq *rq, struct sk_buff *skb,
Toshiaki Makitad1396002018-08-03 16:58:17 +0900570 unsigned int *xdp_xmit)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900571{
572 u32 pktlen, headroom, act, metalen;
573 void *orig_data, *orig_data_end;
574 struct bpf_prog *xdp_prog;
575 int mac_len, delta, off;
576 struct xdp_buff xdp;
577
Toshiaki Makita4bf9ffa2018-09-14 13:33:44 +0900578 skb_orphan(skb);
579
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900580 rcu_read_lock();
Toshiaki Makita638264d2018-08-03 16:58:18 +0900581 xdp_prog = rcu_dereference(rq->xdp_prog);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900582 if (unlikely(!xdp_prog)) {
583 rcu_read_unlock();
584 goto out;
585 }
586
587 mac_len = skb->data - skb_mac_header(skb);
588 pktlen = skb->len + mac_len;
589 headroom = skb_headroom(skb) - mac_len;
590
591 if (skb_shared(skb) || skb_head_is_locked(skb) ||
592 skb_is_nonlinear(skb) || headroom < XDP_PACKET_HEADROOM) {
593 struct sk_buff *nskb;
594 int size, head_off;
595 void *head, *start;
596 struct page *page;
597
598 size = SKB_DATA_ALIGN(VETH_XDP_HEADROOM + pktlen) +
599 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
600 if (size > PAGE_SIZE)
601 goto drop;
602
603 page = alloc_page(GFP_ATOMIC | __GFP_NOWARN);
604 if (!page)
605 goto drop;
606
607 head = page_address(page);
608 start = head + VETH_XDP_HEADROOM;
609 if (skb_copy_bits(skb, -mac_len, start, pktlen)) {
610 page_frag_free(head);
611 goto drop;
612 }
613
614 nskb = veth_build_skb(head,
615 VETH_XDP_HEADROOM + mac_len, skb->len,
616 PAGE_SIZE);
617 if (!nskb) {
618 page_frag_free(head);
619 goto drop;
620 }
621
622 skb_copy_header(nskb, skb);
623 head_off = skb_headroom(nskb) - skb_headroom(skb);
624 skb_headers_offset_update(nskb, head_off);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900625 consume_skb(skb);
626 skb = nskb;
627 }
628
629 xdp.data_hard_start = skb->head;
630 xdp.data = skb_mac_header(skb);
631 xdp.data_end = xdp.data + pktlen;
632 xdp.data_meta = xdp.data;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900633 xdp.rxq = &rq->xdp_rxq;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900634 orig_data = xdp.data;
635 orig_data_end = xdp.data_end;
636
637 act = bpf_prog_run_xdp(xdp_prog, &xdp);
638
639 switch (act) {
640 case XDP_PASS:
641 break;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900642 case XDP_TX:
643 get_page(virt_to_page(xdp.data));
644 consume_skb(skb);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900645 xdp.rxq->mem = rq->xdp_mem;
646 if (unlikely(veth_xdp_tx(rq->dev, &xdp) < 0)) {
647 trace_xdp_exception(rq->dev, xdp_prog, act);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900648 goto err_xdp;
649 }
650 *xdp_xmit |= VETH_XDP_TX;
651 rcu_read_unlock();
652 goto xdp_xmit;
653 case XDP_REDIRECT:
654 get_page(virt_to_page(xdp.data));
655 consume_skb(skb);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900656 xdp.rxq->mem = rq->xdp_mem;
657 if (xdp_do_redirect(rq->dev, &xdp, xdp_prog))
Toshiaki Makitad1396002018-08-03 16:58:17 +0900658 goto err_xdp;
659 *xdp_xmit |= VETH_XDP_REDIR;
660 rcu_read_unlock();
661 goto xdp_xmit;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900662 default:
663 bpf_warn_invalid_xdp_action(act);
664 case XDP_ABORTED:
Toshiaki Makita638264d2018-08-03 16:58:18 +0900665 trace_xdp_exception(rq->dev, xdp_prog, act);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900666 case XDP_DROP:
667 goto drop;
668 }
669 rcu_read_unlock();
670
671 delta = orig_data - xdp.data;
672 off = mac_len + delta;
673 if (off > 0)
674 __skb_push(skb, off);
675 else if (off < 0)
676 __skb_pull(skb, -off);
677 skb->mac_header -= delta;
678 off = xdp.data_end - orig_data_end;
679 if (off != 0)
680 __skb_put(skb, off);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900681 skb->protocol = eth_type_trans(skb, rq->dev);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900682
683 metalen = xdp.data - xdp.data_meta;
684 if (metalen)
685 skb_metadata_set(skb, metalen);
686out:
687 return skb;
688drop:
689 rcu_read_unlock();
690 kfree_skb(skb);
691 return NULL;
Toshiaki Makitad1396002018-08-03 16:58:17 +0900692err_xdp:
693 rcu_read_unlock();
694 page_frag_free(xdp.data);
695xdp_xmit:
696 return NULL;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900697}
698
Toshiaki Makita638264d2018-08-03 16:58:18 +0900699static int veth_xdp_rcv(struct veth_rq *rq, int budget, unsigned int *xdp_xmit)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900700{
Toshiaki Makita4195e542018-10-11 18:36:49 +0900701 int i, done = 0, drops = 0, bytes = 0;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900702
703 for (i = 0; i < budget; i++) {
Toshiaki Makita638264d2018-08-03 16:58:18 +0900704 void *ptr = __ptr_ring_consume(&rq->xdp_ring);
Toshiaki Makita4195e542018-10-11 18:36:49 +0900705 unsigned int xdp_xmit_one = 0;
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900706 struct sk_buff *skb;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900707
Toshiaki Makita9fc8d512018-08-03 16:58:13 +0900708 if (!ptr)
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900709 break;
710
Toshiaki Makitad1396002018-08-03 16:58:17 +0900711 if (veth_is_xdp_frame(ptr)) {
Toshiaki Makita4195e542018-10-11 18:36:49 +0900712 struct xdp_frame *frame = veth_ptr_to_xdp(ptr);
713
714 bytes += frame->len;
715 skb = veth_xdp_rcv_one(rq, frame, &xdp_xmit_one);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900716 } else {
Toshiaki Makita4195e542018-10-11 18:36:49 +0900717 skb = ptr;
718 bytes += skb->len;
719 skb = veth_xdp_rcv_skb(rq, skb, &xdp_xmit_one);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900720 }
Toshiaki Makita4195e542018-10-11 18:36:49 +0900721 *xdp_xmit |= xdp_xmit_one;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900722
723 if (skb)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900724 napi_gro_receive(&rq->xdp_napi, skb);
Toshiaki Makita4195e542018-10-11 18:36:49 +0900725 else if (!xdp_xmit_one)
726 drops++;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900727
728 done++;
729 }
730
Toshiaki Makita4195e542018-10-11 18:36:49 +0900731 u64_stats_update_begin(&rq->stats.syncp);
732 rq->stats.xdp_packets += done;
733 rq->stats.xdp_bytes += bytes;
734 rq->stats.xdp_drops += drops;
735 u64_stats_update_end(&rq->stats.syncp);
736
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900737 return done;
738}
739
740static int veth_poll(struct napi_struct *napi, int budget)
741{
Toshiaki Makita638264d2018-08-03 16:58:18 +0900742 struct veth_rq *rq =
743 container_of(napi, struct veth_rq, xdp_napi);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900744 unsigned int xdp_xmit = 0;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900745 int done;
746
Toshiaki Makitad1396002018-08-03 16:58:17 +0900747 xdp_set_return_frame_no_direct();
Toshiaki Makita638264d2018-08-03 16:58:18 +0900748 done = veth_xdp_rcv(rq, budget, &xdp_xmit);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900749
750 if (done < budget && napi_complete_done(napi, done)) {
751 /* Write rx_notify_masked before reading ptr_ring */
Toshiaki Makita638264d2018-08-03 16:58:18 +0900752 smp_store_mb(rq->rx_notify_masked, false);
753 if (unlikely(!__ptr_ring_empty(&rq->xdp_ring))) {
754 rq->rx_notify_masked = true;
755 napi_schedule(&rq->xdp_napi);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900756 }
757 }
758
Toshiaki Makitad1396002018-08-03 16:58:17 +0900759 if (xdp_xmit & VETH_XDP_TX)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900760 veth_xdp_flush(rq->dev);
Toshiaki Makitad1396002018-08-03 16:58:17 +0900761 if (xdp_xmit & VETH_XDP_REDIR)
762 xdp_do_flush_map();
763 xdp_clear_return_frame_no_direct();
764
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900765 return done;
766}
767
768static int veth_napi_add(struct net_device *dev)
769{
770 struct veth_priv *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900771 int err, i;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900772
Toshiaki Makita638264d2018-08-03 16:58:18 +0900773 for (i = 0; i < dev->real_num_rx_queues; i++) {
774 struct veth_rq *rq = &priv->rq[i];
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900775
Toshiaki Makita638264d2018-08-03 16:58:18 +0900776 err = ptr_ring_init(&rq->xdp_ring, VETH_RING_SIZE, GFP_KERNEL);
777 if (err)
778 goto err_xdp_ring;
779 }
780
781 for (i = 0; i < dev->real_num_rx_queues; i++) {
782 struct veth_rq *rq = &priv->rq[i];
783
784 netif_napi_add(dev, &rq->xdp_napi, veth_poll, NAPI_POLL_WEIGHT);
785 napi_enable(&rq->xdp_napi);
786 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900787
788 return 0;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900789err_xdp_ring:
790 for (i--; i >= 0; i--)
791 ptr_ring_cleanup(&priv->rq[i].xdp_ring, veth_ptr_free);
792
793 return err;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900794}
795
796static void veth_napi_del(struct net_device *dev)
797{
798 struct veth_priv *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900799 int i;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900800
Toshiaki Makita638264d2018-08-03 16:58:18 +0900801 for (i = 0; i < dev->real_num_rx_queues; i++) {
802 struct veth_rq *rq = &priv->rq[i];
803
804 napi_disable(&rq->xdp_napi);
805 napi_hash_del(&rq->xdp_napi);
806 }
807 synchronize_net();
808
809 for (i = 0; i < dev->real_num_rx_queues; i++) {
810 struct veth_rq *rq = &priv->rq[i];
811
812 netif_napi_del(&rq->xdp_napi);
813 rq->rx_notify_masked = false;
814 ptr_ring_cleanup(&rq->xdp_ring, veth_ptr_free);
815 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900816}
817
818static int veth_enable_xdp(struct net_device *dev)
819{
820 struct veth_priv *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900821 int err, i;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900822
Toshiaki Makita638264d2018-08-03 16:58:18 +0900823 if (!xdp_rxq_info_is_reg(&priv->rq[0].xdp_rxq)) {
824 for (i = 0; i < dev->real_num_rx_queues; i++) {
825 struct veth_rq *rq = &priv->rq[i];
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900826
Toshiaki Makita638264d2018-08-03 16:58:18 +0900827 err = xdp_rxq_info_reg(&rq->xdp_rxq, dev, i);
828 if (err < 0)
829 goto err_rxq_reg;
830
831 err = xdp_rxq_info_reg_mem_model(&rq->xdp_rxq,
832 MEM_TYPE_PAGE_SHARED,
833 NULL);
834 if (err < 0)
835 goto err_reg_mem;
836
837 /* Save original mem info as it can be overwritten */
838 rq->xdp_mem = rq->xdp_rxq.mem;
839 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900840
841 err = veth_napi_add(dev);
842 if (err)
Toshiaki Makita638264d2018-08-03 16:58:18 +0900843 goto err_rxq_reg;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900844 }
845
Toshiaki Makita638264d2018-08-03 16:58:18 +0900846 for (i = 0; i < dev->real_num_rx_queues; i++)
847 rcu_assign_pointer(priv->rq[i].xdp_prog, priv->_xdp_prog);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900848
849 return 0;
Toshiaki Makita638264d2018-08-03 16:58:18 +0900850err_reg_mem:
851 xdp_rxq_info_unreg(&priv->rq[i].xdp_rxq);
852err_rxq_reg:
853 for (i--; i >= 0; i--)
854 xdp_rxq_info_unreg(&priv->rq[i].xdp_rxq);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900855
856 return err;
857}
858
859static void veth_disable_xdp(struct net_device *dev)
860{
861 struct veth_priv *priv = netdev_priv(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900862 int i;
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900863
Toshiaki Makita638264d2018-08-03 16:58:18 +0900864 for (i = 0; i < dev->real_num_rx_queues; i++)
865 rcu_assign_pointer(priv->rq[i].xdp_prog, NULL);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900866 veth_napi_del(dev);
Toshiaki Makita638264d2018-08-03 16:58:18 +0900867 for (i = 0; i < dev->real_num_rx_queues; i++) {
868 struct veth_rq *rq = &priv->rq[i];
869
870 rq->xdp_rxq.mem = rq->xdp_mem;
871 xdp_rxq_info_unreg(&rq->xdp_rxq);
872 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900873}
874
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700875static int veth_open(struct net_device *dev)
876{
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000877 struct veth_priv *priv = netdev_priv(dev);
878 struct net_device *peer = rtnl_dereference(priv->peer);
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900879 int err;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700880
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000881 if (!peer)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700882 return -ENOTCONN;
883
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900884 if (priv->_xdp_prog) {
885 err = veth_enable_xdp(dev);
886 if (err)
887 return err;
888 }
889
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000890 if (peer->flags & IFF_UP) {
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700891 netif_carrier_on(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +0000892 netif_carrier_on(peer);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700893 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900894
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700895 return 0;
896}
897
Eric W. Biederman2cf48a12009-02-25 19:47:29 +0000898static int veth_close(struct net_device *dev)
899{
900 struct veth_priv *priv = netdev_priv(dev);
Eric Dumazet2efd32e2013-01-10 08:32:45 +0000901 struct net_device *peer = rtnl_dereference(priv->peer);
Eric W. Biederman2cf48a12009-02-25 19:47:29 +0000902
903 netif_carrier_off(dev);
Eric Dumazet2efd32e2013-01-10 08:32:45 +0000904 if (peer)
905 netif_carrier_off(peer);
Eric W. Biederman2cf48a12009-02-25 19:47:29 +0000906
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900907 if (priv->_xdp_prog)
908 veth_disable_xdp(dev);
909
Eric W. Biederman2cf48a12009-02-25 19:47:29 +0000910 return 0;
911}
912
Jarod Wilson91572082016-10-20 13:55:20 -0400913static int is_valid_veth_mtu(int mtu)
Eric Biederman38d40812009-03-03 23:36:04 -0800914{
Jarod Wilson91572082016-10-20 13:55:20 -0400915 return mtu >= ETH_MIN_MTU && mtu <= ETH_MAX_MTU;
Eric Biederman38d40812009-03-03 23:36:04 -0800916}
917
Toshiaki Makita7797b932018-08-15 17:07:29 +0900918static int veth_alloc_queues(struct net_device *dev)
919{
920 struct veth_priv *priv = netdev_priv(dev);
921 int i;
922
923 priv->rq = kcalloc(dev->num_rx_queues, sizeof(*priv->rq), GFP_KERNEL);
924 if (!priv->rq)
925 return -ENOMEM;
926
Toshiaki Makita4195e542018-10-11 18:36:49 +0900927 for (i = 0; i < dev->num_rx_queues; i++) {
Toshiaki Makita7797b932018-08-15 17:07:29 +0900928 priv->rq[i].dev = dev;
Toshiaki Makita4195e542018-10-11 18:36:49 +0900929 u64_stats_init(&priv->rq[i].stats.syncp);
930 }
Toshiaki Makita7797b932018-08-15 17:07:29 +0900931
932 return 0;
933}
934
935static void veth_free_queues(struct net_device *dev)
936{
937 struct veth_priv *priv = netdev_priv(dev);
938
939 kfree(priv->rq);
940}
941
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700942static int veth_dev_init(struct net_device *dev)
943{
Toshiaki Makita7797b932018-08-15 17:07:29 +0900944 int err;
945
Li RongQing14d73412018-09-17 18:46:55 +0800946 dev->lstats = netdev_alloc_pcpu_stats(struct pcpu_lstats);
947 if (!dev->lstats)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700948 return -ENOMEM;
Toshiaki Makita7797b932018-08-15 17:07:29 +0900949
950 err = veth_alloc_queues(dev);
951 if (err) {
Li RongQing14d73412018-09-17 18:46:55 +0800952 free_percpu(dev->lstats);
Toshiaki Makita7797b932018-08-15 17:07:29 +0900953 return err;
954 }
955
Pavel Emelyanove314dbd2007-09-25 16:14:46 -0700956 return 0;
957}
958
David S. Miller11687a12009-06-25 02:45:42 -0700959static void veth_dev_free(struct net_device *dev)
960{
Toshiaki Makita7797b932018-08-15 17:07:29 +0900961 veth_free_queues(dev);
Li RongQing14d73412018-09-17 18:46:55 +0800962 free_percpu(dev->lstats);
David S. Miller11687a12009-06-25 02:45:42 -0700963}
964
WANG Congbb446c12014-06-23 15:36:02 -0700965#ifdef CONFIG_NET_POLL_CONTROLLER
966static void veth_poll_controller(struct net_device *dev)
967{
968 /* veth only receives frames when its peer sends one
Toshiaki Makita948d4f22018-08-03 16:58:10 +0900969 * Since it has nothing to do with disabling irqs, we are guaranteed
WANG Congbb446c12014-06-23 15:36:02 -0700970 * never to have pending data when we poll for it so
971 * there is nothing to do here.
972 *
973 * We need this though so netpoll recognizes us as an interface that
974 * supports polling, which enables bridge devices in virt setups to
975 * still use netconsole
976 */
977}
978#endif /* CONFIG_NET_POLL_CONTROLLER */
979
Nicolas Dichtela45253b2015-04-02 17:07:11 +0200980static int veth_get_iflink(const struct net_device *dev)
981{
982 struct veth_priv *priv = netdev_priv(dev);
983 struct net_device *peer;
984 int iflink;
985
986 rcu_read_lock();
987 peer = rcu_dereference(priv->peer);
988 iflink = peer ? peer->ifindex : 0;
989 rcu_read_unlock();
990
991 return iflink;
992}
993
Toshiaki Makitadc224822018-08-03 16:58:11 +0900994static netdev_features_t veth_fix_features(struct net_device *dev,
995 netdev_features_t features)
996{
997 struct veth_priv *priv = netdev_priv(dev);
998 struct net_device *peer;
999
1000 peer = rtnl_dereference(priv->peer);
1001 if (peer) {
1002 struct veth_priv *peer_priv = netdev_priv(peer);
1003
1004 if (peer_priv->_xdp_prog)
1005 features &= ~NETIF_F_GSO_SOFTWARE;
1006 }
1007
1008 return features;
1009}
1010
Paolo Abeni163e5292016-02-26 10:45:41 +01001011static void veth_set_rx_headroom(struct net_device *dev, int new_hr)
1012{
1013 struct veth_priv *peer_priv, *priv = netdev_priv(dev);
1014 struct net_device *peer;
1015
1016 if (new_hr < 0)
1017 new_hr = 0;
1018
1019 rcu_read_lock();
1020 peer = rcu_dereference(priv->peer);
1021 if (unlikely(!peer))
1022 goto out;
1023
1024 peer_priv = netdev_priv(peer);
1025 priv->requested_headroom = new_hr;
1026 new_hr = max(priv->requested_headroom, peer_priv->requested_headroom);
1027 dev->needed_headroom = new_hr;
1028 peer->needed_headroom = new_hr;
1029
1030out:
1031 rcu_read_unlock();
1032}
1033
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001034static int veth_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1035 struct netlink_ext_ack *extack)
1036{
1037 struct veth_priv *priv = netdev_priv(dev);
1038 struct bpf_prog *old_prog;
1039 struct net_device *peer;
Toshiaki Makitadc224822018-08-03 16:58:11 +09001040 unsigned int max_mtu;
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001041 int err;
1042
1043 old_prog = priv->_xdp_prog;
1044 priv->_xdp_prog = prog;
1045 peer = rtnl_dereference(priv->peer);
1046
1047 if (prog) {
1048 if (!peer) {
1049 NL_SET_ERR_MSG_MOD(extack, "Cannot set XDP when peer is detached");
1050 err = -ENOTCONN;
1051 goto err;
1052 }
1053
Toshiaki Makitadc224822018-08-03 16:58:11 +09001054 max_mtu = PAGE_SIZE - VETH_XDP_HEADROOM -
1055 peer->hard_header_len -
1056 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1057 if (peer->mtu > max_mtu) {
1058 NL_SET_ERR_MSG_MOD(extack, "Peer MTU is too large to set XDP");
1059 err = -ERANGE;
1060 goto err;
1061 }
1062
Toshiaki Makita638264d2018-08-03 16:58:18 +09001063 if (dev->real_num_rx_queues < peer->real_num_tx_queues) {
1064 NL_SET_ERR_MSG_MOD(extack, "XDP expects number of rx queues not less than peer tx queues");
1065 err = -ENOSPC;
1066 goto err;
1067 }
1068
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001069 if (dev->flags & IFF_UP) {
1070 err = veth_enable_xdp(dev);
1071 if (err) {
1072 NL_SET_ERR_MSG_MOD(extack, "Setup for XDP failed");
1073 goto err;
1074 }
1075 }
Toshiaki Makitadc224822018-08-03 16:58:11 +09001076
1077 if (!old_prog) {
1078 peer->hw_features &= ~NETIF_F_GSO_SOFTWARE;
1079 peer->max_mtu = max_mtu;
1080 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001081 }
1082
1083 if (old_prog) {
Toshiaki Makitadc224822018-08-03 16:58:11 +09001084 if (!prog) {
1085 if (dev->flags & IFF_UP)
1086 veth_disable_xdp(dev);
1087
1088 if (peer) {
1089 peer->hw_features |= NETIF_F_GSO_SOFTWARE;
1090 peer->max_mtu = ETH_MAX_MTU;
1091 }
1092 }
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001093 bpf_prog_put(old_prog);
1094 }
1095
Toshiaki Makitadc224822018-08-03 16:58:11 +09001096 if ((!!old_prog ^ !!prog) && peer)
1097 netdev_update_features(peer);
1098
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001099 return 0;
1100err:
1101 priv->_xdp_prog = old_prog;
1102
1103 return err;
1104}
1105
1106static u32 veth_xdp_query(struct net_device *dev)
1107{
1108 struct veth_priv *priv = netdev_priv(dev);
1109 const struct bpf_prog *xdp_prog;
1110
1111 xdp_prog = priv->_xdp_prog;
1112 if (xdp_prog)
1113 return xdp_prog->aux->id;
1114
1115 return 0;
1116}
1117
1118static int veth_xdp(struct net_device *dev, struct netdev_bpf *xdp)
1119{
1120 switch (xdp->command) {
1121 case XDP_SETUP_PROG:
1122 return veth_xdp_set(dev, xdp->prog, xdp->extack);
1123 case XDP_QUERY_PROG:
1124 xdp->prog_id = veth_xdp_query(dev);
1125 return 0;
1126 default:
1127 return -EINVAL;
1128 }
1129}
1130
Stephen Hemminger4456e7b2008-11-19 21:50:10 -08001131static const struct net_device_ops veth_netdev_ops = {
Daniel Lezcanoee923622009-02-22 00:04:45 -08001132 .ndo_init = veth_dev_init,
1133 .ndo_open = veth_open,
Eric W. Biederman2cf48a12009-02-25 19:47:29 +00001134 .ndo_stop = veth_close,
Daniel Lezcanoee923622009-02-22 00:04:45 -08001135 .ndo_start_xmit = veth_xmit,
stephen hemminger6311cc42011-06-08 14:53:59 +00001136 .ndo_get_stats64 = veth_get_stats64,
Gao feng5c70ef82013-10-04 16:52:24 +08001137 .ndo_set_rx_mode = veth_set_multicast_list,
Daniel Lezcanoee923622009-02-22 00:04:45 -08001138 .ndo_set_mac_address = eth_mac_addr,
WANG Congbb446c12014-06-23 15:36:02 -07001139#ifdef CONFIG_NET_POLL_CONTROLLER
1140 .ndo_poll_controller = veth_poll_controller,
1141#endif
Nicolas Dichtela45253b2015-04-02 17:07:11 +02001142 .ndo_get_iflink = veth_get_iflink,
Toshiaki Makitadc224822018-08-03 16:58:11 +09001143 .ndo_fix_features = veth_fix_features,
Toshiaki Makita1a04a822015-07-31 15:03:25 +09001144 .ndo_features_check = passthru_features_check,
Paolo Abeni163e5292016-02-26 10:45:41 +01001145 .ndo_set_rx_headroom = veth_set_rx_headroom,
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001146 .ndo_bpf = veth_xdp,
Toshiaki Makitaaf87a3a2018-08-03 16:58:14 +09001147 .ndo_xdp_xmit = veth_xdp_xmit,
Stephen Hemminger4456e7b2008-11-19 21:50:10 -08001148};
1149
Alexander Duyck732912d72016-04-19 14:02:26 -04001150#define VETH_FEATURES (NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HW_CSUM | \
Xin Longc80fafb2016-08-25 13:21:49 +08001151 NETIF_F_RXCSUM | NETIF_F_SCTP_CRC | NETIF_F_HIGHDMA | \
Alexander Duyck732912d72016-04-19 14:02:26 -04001152 NETIF_F_GSO_SOFTWARE | NETIF_F_GSO_ENCAP_ALL | \
Patrick McHardy28d2b132013-04-19 02:04:32 +00001153 NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX | \
1154 NETIF_F_HW_VLAN_STAG_TX | NETIF_F_HW_VLAN_STAG_RX )
Eric Dumazet80933152012-12-29 16:26:10 +00001155
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001156static void veth_setup(struct net_device *dev)
1157{
1158 ether_setup(dev);
1159
Neil Horman550fd082011-07-26 06:05:38 +00001160 dev->priv_flags &= ~IFF_TX_SKB_SHARING;
Hannes Frederic Sowa23ea5a92012-10-30 16:22:01 +00001161 dev->priv_flags |= IFF_LIVE_ADDR_CHANGE;
Phil Sutter02f01ec2015-08-18 10:30:29 +02001162 dev->priv_flags |= IFF_NO_QUEUE;
Paolo Abeni163e5292016-02-26 10:45:41 +01001163 dev->priv_flags |= IFF_PHONY_HEADROOM;
Neil Horman550fd082011-07-26 06:05:38 +00001164
Stephen Hemminger4456e7b2008-11-19 21:50:10 -08001165 dev->netdev_ops = &veth_netdev_ops;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001166 dev->ethtool_ops = &veth_ethtool_ops;
1167 dev->features |= NETIF_F_LLTX;
Eric Dumazet80933152012-12-29 16:26:10 +00001168 dev->features |= VETH_FEATURES;
Toshiaki Makita8d0d21f2014-02-18 21:20:08 +09001169 dev->vlan_features = dev->features &
Vlad Yasevich3f8c7072014-03-27 22:14:48 -04001170 ~(NETIF_F_HW_VLAN_CTAG_TX |
1171 NETIF_F_HW_VLAN_STAG_TX |
1172 NETIF_F_HW_VLAN_CTAG_RX |
1173 NETIF_F_HW_VLAN_STAG_RX);
David S. Millercf124db2017-05-08 12:52:56 -04001174 dev->needs_free_netdev = true;
1175 dev->priv_destructor = veth_dev_free;
Jarod Wilson91572082016-10-20 13:55:20 -04001176 dev->max_mtu = ETH_MAX_MTU;
Michał Mirosława2c725f2011-03-31 01:01:35 +00001177
Eric Dumazet80933152012-12-29 16:26:10 +00001178 dev->hw_features = VETH_FEATURES;
Eric Dumazet82d81892013-10-25 18:25:03 -07001179 dev->hw_enc_features = VETH_FEATURES;
David Ahern607fca92016-08-24 20:10:45 -07001180 dev->mpls_features = NETIF_F_HW_CSUM | NETIF_F_GSO_SOFTWARE;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001181}
1182
1183/*
1184 * netlink interface
1185 */
1186
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001187static int veth_validate(struct nlattr *tb[], struct nlattr *data[],
1188 struct netlink_ext_ack *extack)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001189{
1190 if (tb[IFLA_ADDRESS]) {
1191 if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN)
1192 return -EINVAL;
1193 if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS])))
1194 return -EADDRNOTAVAIL;
1195 }
Eric Biederman38d40812009-03-03 23:36:04 -08001196 if (tb[IFLA_MTU]) {
1197 if (!is_valid_veth_mtu(nla_get_u32(tb[IFLA_MTU])))
1198 return -EINVAL;
1199 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001200 return 0;
1201}
1202
1203static struct rtnl_link_ops veth_link_ops;
1204
Eric W. Biederman81adee42009-11-08 00:53:51 -08001205static int veth_newlink(struct net *src_net, struct net_device *dev,
Matthias Schiffer7a3f4a12017-06-25 23:55:59 +02001206 struct nlattr *tb[], struct nlattr *data[],
1207 struct netlink_ext_ack *extack)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001208{
Toshiaki Makita7797b932018-08-15 17:07:29 +09001209 int err;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001210 struct net_device *peer;
1211 struct veth_priv *priv;
1212 char ifname[IFNAMSIZ];
1213 struct nlattr *peer_tb[IFLA_MAX + 1], **tbp;
Tom Gundersen55177502014-07-14 16:37:25 +02001214 unsigned char name_assign_type;
Patrick McHardy3729d502010-02-26 06:34:54 +00001215 struct ifinfomsg *ifmp;
Eric W. Biederman81adee42009-11-08 00:53:51 -08001216 struct net *net;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001217
1218 /*
1219 * create and register peer first
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001220 */
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001221 if (data != NULL && data[VETH_INFO_PEER] != NULL) {
1222 struct nlattr *nla_peer;
1223
1224 nla_peer = data[VETH_INFO_PEER];
Patrick McHardy3729d502010-02-26 06:34:54 +00001225 ifmp = nla_data(nla_peer);
Jiri Pirkof7b12602014-02-18 20:53:18 +01001226 err = rtnl_nla_parse_ifla(peer_tb,
1227 nla_data(nla_peer) + sizeof(struct ifinfomsg),
Johannes Bergfceb6432017-04-12 14:34:07 +02001228 nla_len(nla_peer) - sizeof(struct ifinfomsg),
1229 NULL);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001230 if (err < 0)
1231 return err;
1232
Matthias Schiffera8b8a8892017-06-25 23:56:01 +02001233 err = veth_validate(peer_tb, NULL, extack);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001234 if (err < 0)
1235 return err;
1236
1237 tbp = peer_tb;
Patrick McHardy3729d502010-02-26 06:34:54 +00001238 } else {
1239 ifmp = NULL;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001240 tbp = tb;
Patrick McHardy3729d502010-02-26 06:34:54 +00001241 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001242
Serhey Popovych191cdb32017-06-21 12:12:24 +03001243 if (ifmp && tbp[IFLA_IFNAME]) {
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001244 nla_strlcpy(ifname, tbp[IFLA_IFNAME], IFNAMSIZ);
Tom Gundersen55177502014-07-14 16:37:25 +02001245 name_assign_type = NET_NAME_USER;
1246 } else {
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001247 snprintf(ifname, IFNAMSIZ, DRV_NAME "%%d");
Tom Gundersen55177502014-07-14 16:37:25 +02001248 name_assign_type = NET_NAME_ENUM;
1249 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001250
Eric W. Biederman81adee42009-11-08 00:53:51 -08001251 net = rtnl_link_get_net(src_net, tbp);
1252 if (IS_ERR(net))
1253 return PTR_ERR(net);
1254
Tom Gundersen55177502014-07-14 16:37:25 +02001255 peer = rtnl_create_link(net, ifname, name_assign_type,
David Ahernd0522f12018-11-06 12:51:14 -08001256 &veth_link_ops, tbp, extack);
Eric W. Biederman81adee42009-11-08 00:53:51 -08001257 if (IS_ERR(peer)) {
1258 put_net(net);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001259 return PTR_ERR(peer);
Eric W. Biederman81adee42009-11-08 00:53:51 -08001260 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001261
Serhey Popovych191cdb32017-06-21 12:12:24 +03001262 if (!ifmp || !tbp[IFLA_ADDRESS])
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001263 eth_hw_addr_random(peer);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001264
Pavel Emelyanove6f8f1a2012-08-08 21:53:03 +00001265 if (ifmp && (dev->ifindex != 0))
1266 peer->ifindex = ifmp->ifi_index;
1267
Stephen Hemminger72d249552017-12-07 15:40:20 -08001268 peer->gso_max_size = dev->gso_max_size;
1269 peer->gso_max_segs = dev->gso_max_segs;
1270
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001271 err = register_netdevice(peer);
Eric W. Biederman81adee42009-11-08 00:53:51 -08001272 put_net(net);
1273 net = NULL;
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001274 if (err < 0)
1275 goto err_register_peer;
1276
1277 netif_carrier_off(peer);
1278
Patrick McHardy3729d502010-02-26 06:34:54 +00001279 err = rtnl_configure_link(peer, ifmp);
1280 if (err < 0)
1281 goto err_configure_peer;
1282
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001283 /*
1284 * register dev last
1285 *
1286 * note, that since we've registered new device the dev's name
1287 * should be re-allocated
1288 */
1289
1290 if (tb[IFLA_ADDRESS] == NULL)
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001291 eth_hw_addr_random(dev);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001292
Jiri Pirko6c8c4442011-04-30 01:28:17 +00001293 if (tb[IFLA_IFNAME])
1294 nla_strlcpy(dev->name, tb[IFLA_IFNAME], IFNAMSIZ);
1295 else
1296 snprintf(dev->name, IFNAMSIZ, DRV_NAME "%%d");
1297
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001298 err = register_netdevice(dev);
1299 if (err < 0)
1300 goto err_register_dev;
1301
1302 netif_carrier_off(dev);
1303
1304 /*
1305 * tie the deviced together
1306 */
1307
1308 priv = netdev_priv(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +00001309 rcu_assign_pointer(priv->peer, peer);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001310
1311 priv = netdev_priv(peer);
Eric Dumazetd0e2c552013-01-04 15:42:40 +00001312 rcu_assign_pointer(priv->peer, dev);
Toshiaki Makita948d4f22018-08-03 16:58:10 +09001313
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001314 return 0;
1315
1316err_register_dev:
1317 /* nothing to do */
Patrick McHardy3729d502010-02-26 06:34:54 +00001318err_configure_peer:
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001319 unregister_netdevice(peer);
1320 return err;
1321
1322err_register_peer:
1323 free_netdev(peer);
1324 return err;
1325}
1326
Eric Dumazet23289a32009-10-27 07:06:36 +00001327static void veth_dellink(struct net_device *dev, struct list_head *head)
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001328{
1329 struct veth_priv *priv;
1330 struct net_device *peer;
1331
1332 priv = netdev_priv(dev);
Eric Dumazetd0e2c552013-01-04 15:42:40 +00001333 peer = rtnl_dereference(priv->peer);
1334
1335 /* Note : dellink() is called from default_device_exit_batch(),
1336 * before a rcu_synchronize() point. The devices are guaranteed
1337 * not being freed before one RCU grace period.
1338 */
1339 RCU_INIT_POINTER(priv->peer, NULL);
Eric Dumazet24540532009-10-30 01:00:27 -07001340 unregister_netdevice_queue(dev, head);
Eric Dumazetf45a5c22013-02-08 20:10:49 +00001341
1342 if (peer) {
1343 priv = netdev_priv(peer);
1344 RCU_INIT_POINTER(priv->peer, NULL);
1345 unregister_netdevice_queue(peer, head);
1346 }
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001347}
1348
Thomas Graf23711432012-02-15 04:09:46 +00001349static const struct nla_policy veth_policy[VETH_INFO_MAX + 1] = {
1350 [VETH_INFO_PEER] = { .len = sizeof(struct ifinfomsg) },
1351};
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001352
Nicolas Dichtele5f4e7b2015-01-20 15:15:46 +01001353static struct net *veth_get_link_net(const struct net_device *dev)
1354{
1355 struct veth_priv *priv = netdev_priv(dev);
1356 struct net_device *peer = rtnl_dereference(priv->peer);
1357
1358 return peer ? dev_net(peer) : dev_net(dev);
1359}
1360
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001361static struct rtnl_link_ops veth_link_ops = {
1362 .kind = DRV_NAME,
1363 .priv_size = sizeof(struct veth_priv),
1364 .setup = veth_setup,
1365 .validate = veth_validate,
1366 .newlink = veth_newlink,
1367 .dellink = veth_dellink,
1368 .policy = veth_policy,
1369 .maxtype = VETH_INFO_MAX,
Nicolas Dichtele5f4e7b2015-01-20 15:15:46 +01001370 .get_link_net = veth_get_link_net,
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001371};
1372
1373/*
1374 * init/fini
1375 */
1376
1377static __init int veth_init(void)
1378{
1379 return rtnl_link_register(&veth_link_ops);
1380}
1381
1382static __exit void veth_exit(void)
1383{
Patrick McHardy68365452008-01-20 17:25:14 -08001384 rtnl_link_unregister(&veth_link_ops);
Pavel Emelyanove314dbd2007-09-25 16:14:46 -07001385}
1386
1387module_init(veth_init);
1388module_exit(veth_exit);
1389
1390MODULE_DESCRIPTION("Virtual Ethernet Tunnel");
1391MODULE_LICENSE("GPL v2");
1392MODULE_ALIAS_RTNL_LINK(DRV_NAME);