]>
Commit | Line | Data |
---|---|---|
e314dbdc PE |
1 | /* |
2 | * drivers/net/veth.c | |
3 | * | |
4 | * Copyright (C) 2007 OpenVZ http://openvz.org, SWsoft Inc | |
5 | * | |
6 | * Author: Pavel Emelianov <[email protected]> | |
7 | * Ethtool interface from: Eric W. Biederman <[email protected]> | |
8 | * | |
9 | */ | |
10 | ||
e314dbdc | 11 | #include <linux/netdevice.h> |
5a0e3ad6 | 12 | #include <linux/slab.h> |
e314dbdc PE |
13 | #include <linux/ethtool.h> |
14 | #include <linux/etherdevice.h> | |
cf05c700 | 15 | #include <linux/u64_stats_sync.h> |
e314dbdc | 16 | |
f7b12606 | 17 | #include <net/rtnetlink.h> |
e314dbdc PE |
18 | #include <net/dst.h> |
19 | #include <net/xfrm.h> | |
af87a3aa | 20 | #include <net/xdp.h> |
ecef969e | 21 | #include <linux/veth.h> |
9d9779e7 | 22 | #include <linux/module.h> |
948d4f21 TM |
23 | #include <linux/bpf.h> |
24 | #include <linux/filter.h> | |
25 | #include <linux/ptr_ring.h> | |
948d4f21 | 26 | #include <linux/bpf_trace.h> |
e314dbdc PE |
27 | |
28 | #define DRV_NAME "veth" | |
29 | #define DRV_VERSION "1.0" | |
30 | ||
9fc8d518 | 31 | #define VETH_XDP_FLAG BIT(0) |
948d4f21 TM |
32 | #define VETH_RING_SIZE 256 |
33 | #define VETH_XDP_HEADROOM (XDP_PACKET_HEADROOM + NET_IP_ALIGN) | |
34 | ||
d1396004 TM |
35 | /* Separating two types of XDP xmit */ |
36 | #define VETH_XDP_TX BIT(0) | |
37 | #define VETH_XDP_REDIR BIT(1) | |
38 | ||
2681128f ED |
39 | struct pcpu_vstats { |
40 | u64 packets; | |
41 | u64 bytes; | |
cf05c700 | 42 | struct u64_stats_sync syncp; |
e314dbdc PE |
43 | }; |
44 | ||
638264dc | 45 | struct veth_rq { |
948d4f21 TM |
46 | struct napi_struct xdp_napi; |
47 | struct net_device *dev; | |
48 | struct bpf_prog __rcu *xdp_prog; | |
d1396004 | 49 | struct xdp_mem_info xdp_mem; |
948d4f21 TM |
50 | bool rx_notify_masked; |
51 | struct ptr_ring xdp_ring; | |
52 | struct xdp_rxq_info xdp_rxq; | |
e314dbdc PE |
53 | }; |
54 | ||
638264dc TM |
55 | struct veth_priv { |
56 | struct net_device __rcu *peer; | |
57 | atomic64_t dropped; | |
58 | struct bpf_prog *_xdp_prog; | |
59 | struct veth_rq *rq; | |
60 | unsigned int requested_headroom; | |
61 | }; | |
62 | ||
e314dbdc PE |
63 | /* |
64 | * ethtool interface | |
65 | */ | |
66 | ||
67 | static struct { | |
68 | const char string[ETH_GSTRING_LEN]; | |
69 | } ethtool_stats_keys[] = { | |
70 | { "peer_ifindex" }, | |
71 | }; | |
72 | ||
56607b98 PR |
73 | static int veth_get_link_ksettings(struct net_device *dev, |
74 | struct ethtool_link_ksettings *cmd) | |
e314dbdc | 75 | { |
56607b98 PR |
76 | cmd->base.speed = SPEED_10000; |
77 | cmd->base.duplex = DUPLEX_FULL; | |
78 | cmd->base.port = PORT_TP; | |
79 | cmd->base.autoneg = AUTONEG_DISABLE; | |
e314dbdc PE |
80 | return 0; |
81 | } | |
82 | ||
83 | static void veth_get_drvinfo(struct net_device *dev, struct ethtool_drvinfo *info) | |
84 | { | |
33a5ba14 RJ |
85 | strlcpy(info->driver, DRV_NAME, sizeof(info->driver)); |
86 | strlcpy(info->version, DRV_VERSION, sizeof(info->version)); | |
e314dbdc PE |
87 | } |
88 | ||
89 | static void veth_get_strings(struct net_device *dev, u32 stringset, u8 *buf) | |
90 | { | |
91 | switch(stringset) { | |
92 | case ETH_SS_STATS: | |
93 | memcpy(buf, ðtool_stats_keys, sizeof(ethtool_stats_keys)); | |
94 | break; | |
95 | } | |
96 | } | |
97 | ||
b9f2c044 | 98 | static int veth_get_sset_count(struct net_device *dev, int sset) |
e314dbdc | 99 | { |
b9f2c044 JG |
100 | switch (sset) { |
101 | case ETH_SS_STATS: | |
102 | return ARRAY_SIZE(ethtool_stats_keys); | |
103 | default: | |
104 | return -EOPNOTSUPP; | |
105 | } | |
e314dbdc PE |
106 | } |
107 | ||
108 | static void veth_get_ethtool_stats(struct net_device *dev, | |
109 | struct ethtool_stats *stats, u64 *data) | |
110 | { | |
d0e2c55e ED |
111 | struct veth_priv *priv = netdev_priv(dev); |
112 | struct net_device *peer = rtnl_dereference(priv->peer); | |
e314dbdc | 113 | |
d0e2c55e | 114 | data[0] = peer ? peer->ifindex : 0; |
e314dbdc PE |
115 | } |
116 | ||
0fc0b732 | 117 | static const struct ethtool_ops veth_ethtool_ops = { |
e314dbdc PE |
118 | .get_drvinfo = veth_get_drvinfo, |
119 | .get_link = ethtool_op_get_link, | |
e314dbdc | 120 | .get_strings = veth_get_strings, |
b9f2c044 | 121 | .get_sset_count = veth_get_sset_count, |
e314dbdc | 122 | .get_ethtool_stats = veth_get_ethtool_stats, |
56607b98 | 123 | .get_link_ksettings = veth_get_link_ksettings, |
e314dbdc PE |
124 | }; |
125 | ||
948d4f21 TM |
126 | /* general routines */ |
127 | ||
9fc8d518 TM |
128 | static bool veth_is_xdp_frame(void *ptr) |
129 | { | |
130 | return (unsigned long)ptr & VETH_XDP_FLAG; | |
131 | } | |
132 | ||
133 | static void *veth_ptr_to_xdp(void *ptr) | |
134 | { | |
135 | return (void *)((unsigned long)ptr & ~VETH_XDP_FLAG); | |
136 | } | |
137 | ||
af87a3aa TM |
138 | static void *veth_xdp_to_ptr(void *ptr) |
139 | { | |
140 | return (void *)((unsigned long)ptr | VETH_XDP_FLAG); | |
141 | } | |
142 | ||
9fc8d518 TM |
143 | static void veth_ptr_free(void *ptr) |
144 | { | |
145 | if (veth_is_xdp_frame(ptr)) | |
146 | xdp_return_frame(veth_ptr_to_xdp(ptr)); | |
147 | else | |
148 | kfree_skb(ptr); | |
149 | } | |
150 | ||
638264dc | 151 | static void __veth_xdp_flush(struct veth_rq *rq) |
948d4f21 TM |
152 | { |
153 | /* Write ptr_ring before reading rx_notify_masked */ | |
154 | smp_mb(); | |
638264dc TM |
155 | if (!rq->rx_notify_masked) { |
156 | rq->rx_notify_masked = true; | |
157 | napi_schedule(&rq->xdp_napi); | |
948d4f21 TM |
158 | } |
159 | } | |
160 | ||
638264dc | 161 | static int veth_xdp_rx(struct veth_rq *rq, struct sk_buff *skb) |
948d4f21 | 162 | { |
638264dc | 163 | if (unlikely(ptr_ring_produce(&rq->xdp_ring, skb))) { |
948d4f21 TM |
164 | dev_kfree_skb_any(skb); |
165 | return NET_RX_DROP; | |
166 | } | |
167 | ||
168 | return NET_RX_SUCCESS; | |
169 | } | |
170 | ||
638264dc TM |
171 | static int veth_forward_skb(struct net_device *dev, struct sk_buff *skb, |
172 | struct veth_rq *rq, bool xdp) | |
e314dbdc | 173 | { |
948d4f21 | 174 | return __dev_forward_skb(dev, skb) ?: xdp ? |
638264dc | 175 | veth_xdp_rx(rq, skb) : |
948d4f21 TM |
176 | netif_rx(skb); |
177 | } | |
178 | ||
179 | static netdev_tx_t veth_xmit(struct sk_buff *skb, struct net_device *dev) | |
180 | { | |
181 | struct veth_priv *rcv_priv, *priv = netdev_priv(dev); | |
638264dc | 182 | struct veth_rq *rq = NULL; |
d0e2c55e | 183 | struct net_device *rcv; |
2681128f | 184 | int length = skb->len; |
948d4f21 | 185 | bool rcv_xdp = false; |
638264dc | 186 | int rxq; |
e314dbdc | 187 | |
d0e2c55e ED |
188 | rcu_read_lock(); |
189 | rcv = rcu_dereference(priv->peer); | |
190 | if (unlikely(!rcv)) { | |
191 | kfree_skb(skb); | |
192 | goto drop; | |
193 | } | |
e314dbdc | 194 | |
948d4f21 | 195 | rcv_priv = netdev_priv(rcv); |
638264dc TM |
196 | rxq = skb_get_queue_mapping(skb); |
197 | if (rxq < rcv->real_num_rx_queues) { | |
198 | rq = &rcv_priv->rq[rxq]; | |
199 | rcv_xdp = rcu_access_pointer(rq->xdp_prog); | |
200 | if (rcv_xdp) | |
201 | skb_record_rx_queue(skb, rxq); | |
202 | } | |
948d4f21 | 203 | |
638264dc | 204 | if (likely(veth_forward_skb(rcv, skb, rq, rcv_xdp) == NET_RX_SUCCESS)) { |
2681128f | 205 | struct pcpu_vstats *stats = this_cpu_ptr(dev->vstats); |
e314dbdc | 206 | |
2681128f ED |
207 | u64_stats_update_begin(&stats->syncp); |
208 | stats->bytes += length; | |
209 | stats->packets++; | |
210 | u64_stats_update_end(&stats->syncp); | |
211 | } else { | |
d0e2c55e | 212 | drop: |
2681128f ED |
213 | atomic64_inc(&priv->dropped); |
214 | } | |
948d4f21 TM |
215 | |
216 | if (rcv_xdp) | |
638264dc | 217 | __veth_xdp_flush(rq); |
948d4f21 | 218 | |
d0e2c55e | 219 | rcu_read_unlock(); |
948d4f21 | 220 | |
6ed10654 | 221 | return NETDEV_TX_OK; |
e314dbdc PE |
222 | } |
223 | ||
2681128f | 224 | static u64 veth_stats_one(struct pcpu_vstats *result, struct net_device *dev) |
e314dbdc | 225 | { |
cf05c700 | 226 | struct veth_priv *priv = netdev_priv(dev); |
11687a10 | 227 | int cpu; |
e314dbdc | 228 | |
2681128f ED |
229 | result->packets = 0; |
230 | result->bytes = 0; | |
2b1c8b0f | 231 | for_each_possible_cpu(cpu) { |
2681128f ED |
232 | struct pcpu_vstats *stats = per_cpu_ptr(dev->vstats, cpu); |
233 | u64 packets, bytes; | |
cf05c700 ED |
234 | unsigned int start; |
235 | ||
236 | do { | |
57a7744e | 237 | start = u64_stats_fetch_begin_irq(&stats->syncp); |
2681128f ED |
238 | packets = stats->packets; |
239 | bytes = stats->bytes; | |
57a7744e | 240 | } while (u64_stats_fetch_retry_irq(&stats->syncp, start)); |
2681128f ED |
241 | result->packets += packets; |
242 | result->bytes += bytes; | |
11687a10 | 243 | } |
2681128f ED |
244 | return atomic64_read(&priv->dropped); |
245 | } | |
246 | ||
bc1f4470 | 247 | static void veth_get_stats64(struct net_device *dev, |
248 | struct rtnl_link_stats64 *tot) | |
2681128f ED |
249 | { |
250 | struct veth_priv *priv = netdev_priv(dev); | |
d0e2c55e | 251 | struct net_device *peer; |
2681128f ED |
252 | struct pcpu_vstats one; |
253 | ||
254 | tot->tx_dropped = veth_stats_one(&one, dev); | |
255 | tot->tx_bytes = one.bytes; | |
256 | tot->tx_packets = one.packets; | |
257 | ||
d0e2c55e ED |
258 | rcu_read_lock(); |
259 | peer = rcu_dereference(priv->peer); | |
260 | if (peer) { | |
261 | tot->rx_dropped = veth_stats_one(&one, peer); | |
262 | tot->rx_bytes = one.bytes; | |
263 | tot->rx_packets = one.packets; | |
264 | } | |
265 | rcu_read_unlock(); | |
e314dbdc PE |
266 | } |
267 | ||
5c70ef85 G |
268 | /* fake multicast ability */ |
269 | static void veth_set_multicast_list(struct net_device *dev) | |
270 | { | |
271 | } | |
272 | ||
948d4f21 TM |
273 | static struct sk_buff *veth_build_skb(void *head, int headroom, int len, |
274 | int buflen) | |
275 | { | |
276 | struct sk_buff *skb; | |
277 | ||
278 | if (!buflen) { | |
279 | buflen = SKB_DATA_ALIGN(headroom + len) + | |
280 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); | |
281 | } | |
282 | skb = build_skb(head, buflen); | |
283 | if (!skb) | |
284 | return NULL; | |
285 | ||
286 | skb_reserve(skb, headroom); | |
287 | skb_put(skb, len); | |
288 | ||
289 | return skb; | |
290 | } | |
291 | ||
638264dc TM |
292 | static int veth_select_rxq(struct net_device *dev) |
293 | { | |
294 | return smp_processor_id() % dev->real_num_rx_queues; | |
295 | } | |
296 | ||
af87a3aa TM |
297 | static int veth_xdp_xmit(struct net_device *dev, int n, |
298 | struct xdp_frame **frames, u32 flags) | |
299 | { | |
300 | struct veth_priv *rcv_priv, *priv = netdev_priv(dev); | |
301 | struct net_device *rcv; | |
302 | unsigned int max_len; | |
638264dc | 303 | struct veth_rq *rq; |
af87a3aa TM |
304 | int i, drops = 0; |
305 | ||
306 | if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) | |
307 | return -EINVAL; | |
308 | ||
309 | rcv = rcu_dereference(priv->peer); | |
310 | if (unlikely(!rcv)) | |
311 | return -ENXIO; | |
312 | ||
313 | rcv_priv = netdev_priv(rcv); | |
638264dc | 314 | rq = &rcv_priv->rq[veth_select_rxq(rcv)]; |
af87a3aa TM |
315 | /* Non-NULL xdp_prog ensures that xdp_ring is initialized on receive |
316 | * side. This means an XDP program is loaded on the peer and the peer | |
317 | * device is up. | |
318 | */ | |
638264dc | 319 | if (!rcu_access_pointer(rq->xdp_prog)) |
af87a3aa TM |
320 | return -ENXIO; |
321 | ||
322 | max_len = rcv->mtu + rcv->hard_header_len + VLAN_HLEN; | |
323 | ||
638264dc | 324 | spin_lock(&rq->xdp_ring.producer_lock); |
af87a3aa TM |
325 | for (i = 0; i < n; i++) { |
326 | struct xdp_frame *frame = frames[i]; | |
327 | void *ptr = veth_xdp_to_ptr(frame); | |
328 | ||
329 | if (unlikely(frame->len > max_len || | |
638264dc | 330 | __ptr_ring_produce(&rq->xdp_ring, ptr))) { |
af87a3aa TM |
331 | xdp_return_frame_rx_napi(frame); |
332 | drops++; | |
333 | } | |
334 | } | |
638264dc | 335 | spin_unlock(&rq->xdp_ring.producer_lock); |
af87a3aa TM |
336 | |
337 | if (flags & XDP_XMIT_FLUSH) | |
638264dc | 338 | __veth_xdp_flush(rq); |
af87a3aa TM |
339 | |
340 | return n - drops; | |
341 | } | |
342 | ||
d1396004 TM |
343 | static void veth_xdp_flush(struct net_device *dev) |
344 | { | |
345 | struct veth_priv *rcv_priv, *priv = netdev_priv(dev); | |
346 | struct net_device *rcv; | |
638264dc | 347 | struct veth_rq *rq; |
d1396004 TM |
348 | |
349 | rcu_read_lock(); | |
350 | rcv = rcu_dereference(priv->peer); | |
351 | if (unlikely(!rcv)) | |
352 | goto out; | |
353 | ||
354 | rcv_priv = netdev_priv(rcv); | |
638264dc | 355 | rq = &rcv_priv->rq[veth_select_rxq(rcv)]; |
d1396004 | 356 | /* xdp_ring is initialized on receive side? */ |
638264dc | 357 | if (unlikely(!rcu_access_pointer(rq->xdp_prog))) |
d1396004 TM |
358 | goto out; |
359 | ||
638264dc | 360 | __veth_xdp_flush(rq); |
d1396004 TM |
361 | out: |
362 | rcu_read_unlock(); | |
363 | } | |
364 | ||
365 | static int veth_xdp_tx(struct net_device *dev, struct xdp_buff *xdp) | |
366 | { | |
367 | struct xdp_frame *frame = convert_to_xdp_frame(xdp); | |
368 | ||
369 | if (unlikely(!frame)) | |
370 | return -EOVERFLOW; | |
371 | ||
372 | return veth_xdp_xmit(dev, 1, &frame, 0); | |
373 | } | |
374 | ||
638264dc | 375 | static struct sk_buff *veth_xdp_rcv_one(struct veth_rq *rq, |
d1396004 TM |
376 | struct xdp_frame *frame, |
377 | unsigned int *xdp_xmit) | |
9fc8d518 TM |
378 | { |
379 | void *hard_start = frame->data - frame->headroom; | |
380 | void *head = hard_start - sizeof(struct xdp_frame); | |
381 | int len = frame->len, delta = 0; | |
d1396004 | 382 | struct xdp_frame orig_frame; |
9fc8d518 TM |
383 | struct bpf_prog *xdp_prog; |
384 | unsigned int headroom; | |
385 | struct sk_buff *skb; | |
386 | ||
387 | rcu_read_lock(); | |
638264dc | 388 | xdp_prog = rcu_dereference(rq->xdp_prog); |
9fc8d518 TM |
389 | if (likely(xdp_prog)) { |
390 | struct xdp_buff xdp; | |
391 | u32 act; | |
392 | ||
393 | xdp.data_hard_start = hard_start; | |
394 | xdp.data = frame->data; | |
395 | xdp.data_end = frame->data + frame->len; | |
396 | xdp.data_meta = frame->data - frame->metasize; | |
638264dc | 397 | xdp.rxq = &rq->xdp_rxq; |
9fc8d518 TM |
398 | |
399 | act = bpf_prog_run_xdp(xdp_prog, &xdp); | |
400 | ||
401 | switch (act) { | |
402 | case XDP_PASS: | |
403 | delta = frame->data - xdp.data; | |
404 | len = xdp.data_end - xdp.data; | |
405 | break; | |
d1396004 TM |
406 | case XDP_TX: |
407 | orig_frame = *frame; | |
408 | xdp.data_hard_start = head; | |
409 | xdp.rxq->mem = frame->mem; | |
638264dc TM |
410 | if (unlikely(veth_xdp_tx(rq->dev, &xdp) < 0)) { |
411 | trace_xdp_exception(rq->dev, xdp_prog, act); | |
d1396004 TM |
412 | frame = &orig_frame; |
413 | goto err_xdp; | |
414 | } | |
415 | *xdp_xmit |= VETH_XDP_TX; | |
416 | rcu_read_unlock(); | |
417 | goto xdp_xmit; | |
418 | case XDP_REDIRECT: | |
419 | orig_frame = *frame; | |
420 | xdp.data_hard_start = head; | |
421 | xdp.rxq->mem = frame->mem; | |
638264dc | 422 | if (xdp_do_redirect(rq->dev, &xdp, xdp_prog)) { |
d1396004 TM |
423 | frame = &orig_frame; |
424 | goto err_xdp; | |
425 | } | |
426 | *xdp_xmit |= VETH_XDP_REDIR; | |
427 | rcu_read_unlock(); | |
428 | goto xdp_xmit; | |
9fc8d518 TM |
429 | default: |
430 | bpf_warn_invalid_xdp_action(act); | |
431 | case XDP_ABORTED: | |
638264dc | 432 | trace_xdp_exception(rq->dev, xdp_prog, act); |
9fc8d518 TM |
433 | case XDP_DROP: |
434 | goto err_xdp; | |
435 | } | |
436 | } | |
437 | rcu_read_unlock(); | |
438 | ||
439 | headroom = sizeof(struct xdp_frame) + frame->headroom - delta; | |
440 | skb = veth_build_skb(head, headroom, len, 0); | |
441 | if (!skb) { | |
442 | xdp_return_frame(frame); | |
443 | goto err; | |
444 | } | |
445 | ||
446 | xdp_scrub_frame(frame); | |
638264dc | 447 | skb->protocol = eth_type_trans(skb, rq->dev); |
9fc8d518 TM |
448 | err: |
449 | return skb; | |
450 | err_xdp: | |
451 | rcu_read_unlock(); | |
452 | xdp_return_frame(frame); | |
d1396004 | 453 | xdp_xmit: |
9fc8d518 TM |
454 | return NULL; |
455 | } | |
456 | ||
638264dc | 457 | static struct sk_buff *veth_xdp_rcv_skb(struct veth_rq *rq, struct sk_buff *skb, |
d1396004 | 458 | unsigned int *xdp_xmit) |
948d4f21 TM |
459 | { |
460 | u32 pktlen, headroom, act, metalen; | |
461 | void *orig_data, *orig_data_end; | |
462 | struct bpf_prog *xdp_prog; | |
463 | int mac_len, delta, off; | |
464 | struct xdp_buff xdp; | |
465 | ||
4bf9ffa0 TM |
466 | skb_orphan(skb); |
467 | ||
948d4f21 | 468 | rcu_read_lock(); |
638264dc | 469 | xdp_prog = rcu_dereference(rq->xdp_prog); |
948d4f21 TM |
470 | if (unlikely(!xdp_prog)) { |
471 | rcu_read_unlock(); | |
472 | goto out; | |
473 | } | |
474 | ||
475 | mac_len = skb->data - skb_mac_header(skb); | |
476 | pktlen = skb->len + mac_len; | |
477 | headroom = skb_headroom(skb) - mac_len; | |
478 | ||
479 | if (skb_shared(skb) || skb_head_is_locked(skb) || | |
480 | skb_is_nonlinear(skb) || headroom < XDP_PACKET_HEADROOM) { | |
481 | struct sk_buff *nskb; | |
482 | int size, head_off; | |
483 | void *head, *start; | |
484 | struct page *page; | |
485 | ||
486 | size = SKB_DATA_ALIGN(VETH_XDP_HEADROOM + pktlen) + | |
487 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); | |
488 | if (size > PAGE_SIZE) | |
489 | goto drop; | |
490 | ||
491 | page = alloc_page(GFP_ATOMIC | __GFP_NOWARN); | |
492 | if (!page) | |
493 | goto drop; | |
494 | ||
495 | head = page_address(page); | |
496 | start = head + VETH_XDP_HEADROOM; | |
497 | if (skb_copy_bits(skb, -mac_len, start, pktlen)) { | |
498 | page_frag_free(head); | |
499 | goto drop; | |
500 | } | |
501 | ||
502 | nskb = veth_build_skb(head, | |
503 | VETH_XDP_HEADROOM + mac_len, skb->len, | |
504 | PAGE_SIZE); | |
505 | if (!nskb) { | |
506 | page_frag_free(head); | |
507 | goto drop; | |
508 | } | |
509 | ||
510 | skb_copy_header(nskb, skb); | |
511 | head_off = skb_headroom(nskb) - skb_headroom(skb); | |
512 | skb_headers_offset_update(nskb, head_off); | |
948d4f21 TM |
513 | consume_skb(skb); |
514 | skb = nskb; | |
515 | } | |
516 | ||
517 | xdp.data_hard_start = skb->head; | |
518 | xdp.data = skb_mac_header(skb); | |
519 | xdp.data_end = xdp.data + pktlen; | |
520 | xdp.data_meta = xdp.data; | |
638264dc | 521 | xdp.rxq = &rq->xdp_rxq; |
948d4f21 TM |
522 | orig_data = xdp.data; |
523 | orig_data_end = xdp.data_end; | |
524 | ||
525 | act = bpf_prog_run_xdp(xdp_prog, &xdp); | |
526 | ||
527 | switch (act) { | |
528 | case XDP_PASS: | |
529 | break; | |
d1396004 TM |
530 | case XDP_TX: |
531 | get_page(virt_to_page(xdp.data)); | |
532 | consume_skb(skb); | |
638264dc TM |
533 | xdp.rxq->mem = rq->xdp_mem; |
534 | if (unlikely(veth_xdp_tx(rq->dev, &xdp) < 0)) { | |
535 | trace_xdp_exception(rq->dev, xdp_prog, act); | |
d1396004 TM |
536 | goto err_xdp; |
537 | } | |
538 | *xdp_xmit |= VETH_XDP_TX; | |
539 | rcu_read_unlock(); | |
540 | goto xdp_xmit; | |
541 | case XDP_REDIRECT: | |
542 | get_page(virt_to_page(xdp.data)); | |
543 | consume_skb(skb); | |
638264dc TM |
544 | xdp.rxq->mem = rq->xdp_mem; |
545 | if (xdp_do_redirect(rq->dev, &xdp, xdp_prog)) | |
d1396004 TM |
546 | goto err_xdp; |
547 | *xdp_xmit |= VETH_XDP_REDIR; | |
548 | rcu_read_unlock(); | |
549 | goto xdp_xmit; | |
948d4f21 TM |
550 | default: |
551 | bpf_warn_invalid_xdp_action(act); | |
552 | case XDP_ABORTED: | |
638264dc | 553 | trace_xdp_exception(rq->dev, xdp_prog, act); |
948d4f21 TM |
554 | case XDP_DROP: |
555 | goto drop; | |
556 | } | |
557 | rcu_read_unlock(); | |
558 | ||
559 | delta = orig_data - xdp.data; | |
560 | off = mac_len + delta; | |
561 | if (off > 0) | |
562 | __skb_push(skb, off); | |
563 | else if (off < 0) | |
564 | __skb_pull(skb, -off); | |
565 | skb->mac_header -= delta; | |
566 | off = xdp.data_end - orig_data_end; | |
567 | if (off != 0) | |
568 | __skb_put(skb, off); | |
638264dc | 569 | skb->protocol = eth_type_trans(skb, rq->dev); |
948d4f21 TM |
570 | |
571 | metalen = xdp.data - xdp.data_meta; | |
572 | if (metalen) | |
573 | skb_metadata_set(skb, metalen); | |
574 | out: | |
575 | return skb; | |
576 | drop: | |
577 | rcu_read_unlock(); | |
578 | kfree_skb(skb); | |
579 | return NULL; | |
d1396004 TM |
580 | err_xdp: |
581 | rcu_read_unlock(); | |
582 | page_frag_free(xdp.data); | |
583 | xdp_xmit: | |
584 | return NULL; | |
948d4f21 TM |
585 | } |
586 | ||
638264dc | 587 | static int veth_xdp_rcv(struct veth_rq *rq, int budget, unsigned int *xdp_xmit) |
948d4f21 TM |
588 | { |
589 | int i, done = 0; | |
590 | ||
591 | for (i = 0; i < budget; i++) { | |
638264dc | 592 | void *ptr = __ptr_ring_consume(&rq->xdp_ring); |
9fc8d518 | 593 | struct sk_buff *skb; |
948d4f21 | 594 | |
9fc8d518 | 595 | if (!ptr) |
948d4f21 TM |
596 | break; |
597 | ||
d1396004 | 598 | if (veth_is_xdp_frame(ptr)) { |
638264dc | 599 | skb = veth_xdp_rcv_one(rq, veth_ptr_to_xdp(ptr), |
d1396004 TM |
600 | xdp_xmit); |
601 | } else { | |
638264dc | 602 | skb = veth_xdp_rcv_skb(rq, ptr, xdp_xmit); |
d1396004 | 603 | } |
948d4f21 TM |
604 | |
605 | if (skb) | |
638264dc | 606 | napi_gro_receive(&rq->xdp_napi, skb); |
948d4f21 TM |
607 | |
608 | done++; | |
609 | } | |
610 | ||
611 | return done; | |
612 | } | |
613 | ||
614 | static int veth_poll(struct napi_struct *napi, int budget) | |
615 | { | |
638264dc TM |
616 | struct veth_rq *rq = |
617 | container_of(napi, struct veth_rq, xdp_napi); | |
d1396004 | 618 | unsigned int xdp_xmit = 0; |
948d4f21 TM |
619 | int done; |
620 | ||
d1396004 | 621 | xdp_set_return_frame_no_direct(); |
638264dc | 622 | done = veth_xdp_rcv(rq, budget, &xdp_xmit); |
948d4f21 TM |
623 | |
624 | if (done < budget && napi_complete_done(napi, done)) { | |
625 | /* Write rx_notify_masked before reading ptr_ring */ | |
638264dc TM |
626 | smp_store_mb(rq->rx_notify_masked, false); |
627 | if (unlikely(!__ptr_ring_empty(&rq->xdp_ring))) { | |
628 | rq->rx_notify_masked = true; | |
629 | napi_schedule(&rq->xdp_napi); | |
948d4f21 TM |
630 | } |
631 | } | |
632 | ||
d1396004 | 633 | if (xdp_xmit & VETH_XDP_TX) |
638264dc | 634 | veth_xdp_flush(rq->dev); |
d1396004 TM |
635 | if (xdp_xmit & VETH_XDP_REDIR) |
636 | xdp_do_flush_map(); | |
637 | xdp_clear_return_frame_no_direct(); | |
638 | ||
948d4f21 TM |
639 | return done; |
640 | } | |
641 | ||
642 | static int veth_napi_add(struct net_device *dev) | |
643 | { | |
644 | struct veth_priv *priv = netdev_priv(dev); | |
638264dc | 645 | int err, i; |
948d4f21 | 646 | |
638264dc TM |
647 | for (i = 0; i < dev->real_num_rx_queues; i++) { |
648 | struct veth_rq *rq = &priv->rq[i]; | |
649 | ||
650 | err = ptr_ring_init(&rq->xdp_ring, VETH_RING_SIZE, GFP_KERNEL); | |
651 | if (err) | |
652 | goto err_xdp_ring; | |
653 | } | |
948d4f21 | 654 | |
638264dc TM |
655 | for (i = 0; i < dev->real_num_rx_queues; i++) { |
656 | struct veth_rq *rq = &priv->rq[i]; | |
657 | ||
658 | netif_napi_add(dev, &rq->xdp_napi, veth_poll, NAPI_POLL_WEIGHT); | |
659 | napi_enable(&rq->xdp_napi); | |
660 | } | |
948d4f21 TM |
661 | |
662 | return 0; | |
638264dc TM |
663 | err_xdp_ring: |
664 | for (i--; i >= 0; i--) | |
665 | ptr_ring_cleanup(&priv->rq[i].xdp_ring, veth_ptr_free); | |
666 | ||
667 | return err; | |
948d4f21 TM |
668 | } |
669 | ||
670 | static void veth_napi_del(struct net_device *dev) | |
671 | { | |
672 | struct veth_priv *priv = netdev_priv(dev); | |
638264dc | 673 | int i; |
948d4f21 | 674 | |
638264dc TM |
675 | for (i = 0; i < dev->real_num_rx_queues; i++) { |
676 | struct veth_rq *rq = &priv->rq[i]; | |
677 | ||
678 | napi_disable(&rq->xdp_napi); | |
679 | napi_hash_del(&rq->xdp_napi); | |
680 | } | |
681 | synchronize_net(); | |
682 | ||
683 | for (i = 0; i < dev->real_num_rx_queues; i++) { | |
684 | struct veth_rq *rq = &priv->rq[i]; | |
685 | ||
686 | netif_napi_del(&rq->xdp_napi); | |
687 | rq->rx_notify_masked = false; | |
688 | ptr_ring_cleanup(&rq->xdp_ring, veth_ptr_free); | |
689 | } | |
948d4f21 TM |
690 | } |
691 | ||
692 | static int veth_enable_xdp(struct net_device *dev) | |
693 | { | |
694 | struct veth_priv *priv = netdev_priv(dev); | |
638264dc | 695 | int err, i; |
948d4f21 | 696 | |
638264dc TM |
697 | if (!xdp_rxq_info_is_reg(&priv->rq[0].xdp_rxq)) { |
698 | for (i = 0; i < dev->real_num_rx_queues; i++) { | |
699 | struct veth_rq *rq = &priv->rq[i]; | |
948d4f21 | 700 | |
638264dc TM |
701 | err = xdp_rxq_info_reg(&rq->xdp_rxq, dev, i); |
702 | if (err < 0) | |
703 | goto err_rxq_reg; | |
704 | ||
705 | err = xdp_rxq_info_reg_mem_model(&rq->xdp_rxq, | |
706 | MEM_TYPE_PAGE_SHARED, | |
707 | NULL); | |
708 | if (err < 0) | |
709 | goto err_reg_mem; | |
710 | ||
711 | /* Save original mem info as it can be overwritten */ | |
712 | rq->xdp_mem = rq->xdp_rxq.mem; | |
713 | } | |
948d4f21 TM |
714 | |
715 | err = veth_napi_add(dev); | |
716 | if (err) | |
638264dc | 717 | goto err_rxq_reg; |
948d4f21 TM |
718 | } |
719 | ||
638264dc TM |
720 | for (i = 0; i < dev->real_num_rx_queues; i++) |
721 | rcu_assign_pointer(priv->rq[i].xdp_prog, priv->_xdp_prog); | |
948d4f21 TM |
722 | |
723 | return 0; | |
638264dc TM |
724 | err_reg_mem: |
725 | xdp_rxq_info_unreg(&priv->rq[i].xdp_rxq); | |
726 | err_rxq_reg: | |
727 | for (i--; i >= 0; i--) | |
728 | xdp_rxq_info_unreg(&priv->rq[i].xdp_rxq); | |
948d4f21 TM |
729 | |
730 | return err; | |
731 | } | |
732 | ||
733 | static void veth_disable_xdp(struct net_device *dev) | |
734 | { | |
735 | struct veth_priv *priv = netdev_priv(dev); | |
638264dc | 736 | int i; |
948d4f21 | 737 | |
638264dc TM |
738 | for (i = 0; i < dev->real_num_rx_queues; i++) |
739 | rcu_assign_pointer(priv->rq[i].xdp_prog, NULL); | |
948d4f21 | 740 | veth_napi_del(dev); |
638264dc TM |
741 | for (i = 0; i < dev->real_num_rx_queues; i++) { |
742 | struct veth_rq *rq = &priv->rq[i]; | |
743 | ||
744 | rq->xdp_rxq.mem = rq->xdp_mem; | |
745 | xdp_rxq_info_unreg(&rq->xdp_rxq); | |
746 | } | |
948d4f21 TM |
747 | } |
748 | ||
e314dbdc PE |
749 | static int veth_open(struct net_device *dev) |
750 | { | |
d0e2c55e ED |
751 | struct veth_priv *priv = netdev_priv(dev); |
752 | struct net_device *peer = rtnl_dereference(priv->peer); | |
948d4f21 | 753 | int err; |
e314dbdc | 754 | |
d0e2c55e | 755 | if (!peer) |
e314dbdc PE |
756 | return -ENOTCONN; |
757 | ||
948d4f21 TM |
758 | if (priv->_xdp_prog) { |
759 | err = veth_enable_xdp(dev); | |
760 | if (err) | |
761 | return err; | |
762 | } | |
763 | ||
d0e2c55e | 764 | if (peer->flags & IFF_UP) { |
e314dbdc | 765 | netif_carrier_on(dev); |
d0e2c55e | 766 | netif_carrier_on(peer); |
e314dbdc | 767 | } |
948d4f21 | 768 | |
e314dbdc PE |
769 | return 0; |
770 | } | |
771 | ||
2cf48a10 EB |
772 | static int veth_close(struct net_device *dev) |
773 | { | |
774 | struct veth_priv *priv = netdev_priv(dev); | |
2efd32ee | 775 | struct net_device *peer = rtnl_dereference(priv->peer); |
2cf48a10 EB |
776 | |
777 | netif_carrier_off(dev); | |
2efd32ee ED |
778 | if (peer) |
779 | netif_carrier_off(peer); | |
2cf48a10 | 780 | |
948d4f21 TM |
781 | if (priv->_xdp_prog) |
782 | veth_disable_xdp(dev); | |
783 | ||
2cf48a10 EB |
784 | return 0; |
785 | } | |
786 | ||
91572088 | 787 | static int is_valid_veth_mtu(int mtu) |
38d40815 | 788 | { |
91572088 | 789 | return mtu >= ETH_MIN_MTU && mtu <= ETH_MAX_MTU; |
38d40815 EB |
790 | } |
791 | ||
7797b93b TM |
792 | static int veth_alloc_queues(struct net_device *dev) |
793 | { | |
794 | struct veth_priv *priv = netdev_priv(dev); | |
795 | int i; | |
796 | ||
797 | priv->rq = kcalloc(dev->num_rx_queues, sizeof(*priv->rq), GFP_KERNEL); | |
798 | if (!priv->rq) | |
799 | return -ENOMEM; | |
800 | ||
801 | for (i = 0; i < dev->num_rx_queues; i++) | |
802 | priv->rq[i].dev = dev; | |
803 | ||
804 | return 0; | |
805 | } | |
806 | ||
807 | static void veth_free_queues(struct net_device *dev) | |
808 | { | |
809 | struct veth_priv *priv = netdev_priv(dev); | |
810 | ||
811 | kfree(priv->rq); | |
812 | } | |
813 | ||
e314dbdc PE |
814 | static int veth_dev_init(struct net_device *dev) |
815 | { | |
7797b93b TM |
816 | int err; |
817 | ||
1c213bd2 | 818 | dev->vstats = netdev_alloc_pcpu_stats(struct pcpu_vstats); |
2681128f | 819 | if (!dev->vstats) |
e314dbdc | 820 | return -ENOMEM; |
7797b93b TM |
821 | |
822 | err = veth_alloc_queues(dev); | |
823 | if (err) { | |
824 | free_percpu(dev->vstats); | |
825 | return err; | |
826 | } | |
827 | ||
e314dbdc PE |
828 | return 0; |
829 | } | |
830 | ||
11687a10 DM |
831 | static void veth_dev_free(struct net_device *dev) |
832 | { | |
7797b93b | 833 | veth_free_queues(dev); |
2681128f | 834 | free_percpu(dev->vstats); |
11687a10 DM |
835 | } |
836 | ||
bb446c19 WC |
837 | #ifdef CONFIG_NET_POLL_CONTROLLER |
838 | static void veth_poll_controller(struct net_device *dev) | |
839 | { | |
840 | /* veth only receives frames when its peer sends one | |
948d4f21 | 841 | * Since it has nothing to do with disabling irqs, we are guaranteed |
bb446c19 WC |
842 | * never to have pending data when we poll for it so |
843 | * there is nothing to do here. | |
844 | * | |
845 | * We need this though so netpoll recognizes us as an interface that | |
846 | * supports polling, which enables bridge devices in virt setups to | |
847 | * still use netconsole | |
848 | */ | |
849 | } | |
850 | #endif /* CONFIG_NET_POLL_CONTROLLER */ | |
851 | ||
a45253bf ND |
852 | static int veth_get_iflink(const struct net_device *dev) |
853 | { | |
854 | struct veth_priv *priv = netdev_priv(dev); | |
855 | struct net_device *peer; | |
856 | int iflink; | |
857 | ||
858 | rcu_read_lock(); | |
859 | peer = rcu_dereference(priv->peer); | |
860 | iflink = peer ? peer->ifindex : 0; | |
861 | rcu_read_unlock(); | |
862 | ||
863 | return iflink; | |
864 | } | |
865 | ||
dc224822 TM |
866 | static netdev_features_t veth_fix_features(struct net_device *dev, |
867 | netdev_features_t features) | |
868 | { | |
869 | struct veth_priv *priv = netdev_priv(dev); | |
870 | struct net_device *peer; | |
871 | ||
872 | peer = rtnl_dereference(priv->peer); | |
873 | if (peer) { | |
874 | struct veth_priv *peer_priv = netdev_priv(peer); | |
875 | ||
876 | if (peer_priv->_xdp_prog) | |
877 | features &= ~NETIF_F_GSO_SOFTWARE; | |
878 | } | |
879 | ||
880 | return features; | |
881 | } | |
882 | ||
163e5292 PA |
883 | static void veth_set_rx_headroom(struct net_device *dev, int new_hr) |
884 | { | |
885 | struct veth_priv *peer_priv, *priv = netdev_priv(dev); | |
886 | struct net_device *peer; | |
887 | ||
888 | if (new_hr < 0) | |
889 | new_hr = 0; | |
890 | ||
891 | rcu_read_lock(); | |
892 | peer = rcu_dereference(priv->peer); | |
893 | if (unlikely(!peer)) | |
894 | goto out; | |
895 | ||
896 | peer_priv = netdev_priv(peer); | |
897 | priv->requested_headroom = new_hr; | |
898 | new_hr = max(priv->requested_headroom, peer_priv->requested_headroom); | |
899 | dev->needed_headroom = new_hr; | |
900 | peer->needed_headroom = new_hr; | |
901 | ||
902 | out: | |
903 | rcu_read_unlock(); | |
904 | } | |
905 | ||
948d4f21 TM |
906 | static int veth_xdp_set(struct net_device *dev, struct bpf_prog *prog, |
907 | struct netlink_ext_ack *extack) | |
908 | { | |
909 | struct veth_priv *priv = netdev_priv(dev); | |
910 | struct bpf_prog *old_prog; | |
911 | struct net_device *peer; | |
dc224822 | 912 | unsigned int max_mtu; |
948d4f21 TM |
913 | int err; |
914 | ||
915 | old_prog = priv->_xdp_prog; | |
916 | priv->_xdp_prog = prog; | |
917 | peer = rtnl_dereference(priv->peer); | |
918 | ||
919 | if (prog) { | |
920 | if (!peer) { | |
921 | NL_SET_ERR_MSG_MOD(extack, "Cannot set XDP when peer is detached"); | |
922 | err = -ENOTCONN; | |
923 | goto err; | |
924 | } | |
925 | ||
dc224822 TM |
926 | max_mtu = PAGE_SIZE - VETH_XDP_HEADROOM - |
927 | peer->hard_header_len - | |
928 | SKB_DATA_ALIGN(sizeof(struct skb_shared_info)); | |
929 | if (peer->mtu > max_mtu) { | |
930 | NL_SET_ERR_MSG_MOD(extack, "Peer MTU is too large to set XDP"); | |
931 | err = -ERANGE; | |
932 | goto err; | |
933 | } | |
934 | ||
638264dc TM |
935 | if (dev->real_num_rx_queues < peer->real_num_tx_queues) { |
936 | NL_SET_ERR_MSG_MOD(extack, "XDP expects number of rx queues not less than peer tx queues"); | |
937 | err = -ENOSPC; | |
938 | goto err; | |
939 | } | |
940 | ||
948d4f21 TM |
941 | if (dev->flags & IFF_UP) { |
942 | err = veth_enable_xdp(dev); | |
943 | if (err) { | |
944 | NL_SET_ERR_MSG_MOD(extack, "Setup for XDP failed"); | |
945 | goto err; | |
946 | } | |
947 | } | |
dc224822 TM |
948 | |
949 | if (!old_prog) { | |
950 | peer->hw_features &= ~NETIF_F_GSO_SOFTWARE; | |
951 | peer->max_mtu = max_mtu; | |
952 | } | |
948d4f21 TM |
953 | } |
954 | ||
955 | if (old_prog) { | |
dc224822 TM |
956 | if (!prog) { |
957 | if (dev->flags & IFF_UP) | |
958 | veth_disable_xdp(dev); | |
959 | ||
960 | if (peer) { | |
961 | peer->hw_features |= NETIF_F_GSO_SOFTWARE; | |
962 | peer->max_mtu = ETH_MAX_MTU; | |
963 | } | |
964 | } | |
948d4f21 TM |
965 | bpf_prog_put(old_prog); |
966 | } | |
967 | ||
dc224822 TM |
968 | if ((!!old_prog ^ !!prog) && peer) |
969 | netdev_update_features(peer); | |
970 | ||
948d4f21 TM |
971 | return 0; |
972 | err: | |
973 | priv->_xdp_prog = old_prog; | |
974 | ||
975 | return err; | |
976 | } | |
977 | ||
978 | static u32 veth_xdp_query(struct net_device *dev) | |
979 | { | |
980 | struct veth_priv *priv = netdev_priv(dev); | |
981 | const struct bpf_prog *xdp_prog; | |
982 | ||
983 | xdp_prog = priv->_xdp_prog; | |
984 | if (xdp_prog) | |
985 | return xdp_prog->aux->id; | |
986 | ||
987 | return 0; | |
988 | } | |
989 | ||
990 | static int veth_xdp(struct net_device *dev, struct netdev_bpf *xdp) | |
991 | { | |
992 | switch (xdp->command) { | |
993 | case XDP_SETUP_PROG: | |
994 | return veth_xdp_set(dev, xdp->prog, xdp->extack); | |
995 | case XDP_QUERY_PROG: | |
996 | xdp->prog_id = veth_xdp_query(dev); | |
997 | return 0; | |
998 | default: | |
999 | return -EINVAL; | |
1000 | } | |
1001 | } | |
1002 | ||
4456e7bd | 1003 | static const struct net_device_ops veth_netdev_ops = { |
ee923623 DL |
1004 | .ndo_init = veth_dev_init, |
1005 | .ndo_open = veth_open, | |
2cf48a10 | 1006 | .ndo_stop = veth_close, |
ee923623 | 1007 | .ndo_start_xmit = veth_xmit, |
6311cc44 | 1008 | .ndo_get_stats64 = veth_get_stats64, |
5c70ef85 | 1009 | .ndo_set_rx_mode = veth_set_multicast_list, |
ee923623 | 1010 | .ndo_set_mac_address = eth_mac_addr, |
bb446c19 WC |
1011 | #ifdef CONFIG_NET_POLL_CONTROLLER |
1012 | .ndo_poll_controller = veth_poll_controller, | |
1013 | #endif | |
a45253bf | 1014 | .ndo_get_iflink = veth_get_iflink, |
dc224822 | 1015 | .ndo_fix_features = veth_fix_features, |
1a04a821 | 1016 | .ndo_features_check = passthru_features_check, |
163e5292 | 1017 | .ndo_set_rx_headroom = veth_set_rx_headroom, |
948d4f21 | 1018 | .ndo_bpf = veth_xdp, |
af87a3aa | 1019 | .ndo_xdp_xmit = veth_xdp_xmit, |
4456e7bd SH |
1020 | }; |
1021 | ||
732912d7 | 1022 | #define VETH_FEATURES (NETIF_F_SG | NETIF_F_FRAGLIST | NETIF_F_HW_CSUM | \ |
c80fafbb | 1023 | NETIF_F_RXCSUM | NETIF_F_SCTP_CRC | NETIF_F_HIGHDMA | \ |
732912d7 | 1024 | NETIF_F_GSO_SOFTWARE | NETIF_F_GSO_ENCAP_ALL | \ |
28d2b136 PM |
1025 | NETIF_F_HW_VLAN_CTAG_TX | NETIF_F_HW_VLAN_CTAG_RX | \ |
1026 | NETIF_F_HW_VLAN_STAG_TX | NETIF_F_HW_VLAN_STAG_RX ) | |
8093315a | 1027 | |
e314dbdc PE |
1028 | static void veth_setup(struct net_device *dev) |
1029 | { | |
1030 | ether_setup(dev); | |
1031 | ||
550fd08c | 1032 | dev->priv_flags &= ~IFF_TX_SKB_SHARING; |
23ea5a96 | 1033 | dev->priv_flags |= IFF_LIVE_ADDR_CHANGE; |
02f01ec1 | 1034 | dev->priv_flags |= IFF_NO_QUEUE; |
163e5292 | 1035 | dev->priv_flags |= IFF_PHONY_HEADROOM; |
550fd08c | 1036 | |
4456e7bd | 1037 | dev->netdev_ops = &veth_netdev_ops; |
e314dbdc PE |
1038 | dev->ethtool_ops = &veth_ethtool_ops; |
1039 | dev->features |= NETIF_F_LLTX; | |
8093315a | 1040 | dev->features |= VETH_FEATURES; |
8d0d21f4 | 1041 | dev->vlan_features = dev->features & |
3f8c707b VY |
1042 | ~(NETIF_F_HW_VLAN_CTAG_TX | |
1043 | NETIF_F_HW_VLAN_STAG_TX | | |
1044 | NETIF_F_HW_VLAN_CTAG_RX | | |
1045 | NETIF_F_HW_VLAN_STAG_RX); | |
cf124db5 DM |
1046 | dev->needs_free_netdev = true; |
1047 | dev->priv_destructor = veth_dev_free; | |
91572088 | 1048 | dev->max_mtu = ETH_MAX_MTU; |
a2c725fa | 1049 | |
8093315a | 1050 | dev->hw_features = VETH_FEATURES; |
82d81898 | 1051 | dev->hw_enc_features = VETH_FEATURES; |
607fca9a | 1052 | dev->mpls_features = NETIF_F_HW_CSUM | NETIF_F_GSO_SOFTWARE; |
e314dbdc PE |
1053 | } |
1054 | ||
1055 | /* | |
1056 | * netlink interface | |
1057 | */ | |
1058 | ||
a8b8a889 MS |
1059 | static int veth_validate(struct nlattr *tb[], struct nlattr *data[], |
1060 | struct netlink_ext_ack *extack) | |
e314dbdc PE |
1061 | { |
1062 | if (tb[IFLA_ADDRESS]) { | |
1063 | if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) | |
1064 | return -EINVAL; | |
1065 | if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) | |
1066 | return -EADDRNOTAVAIL; | |
1067 | } | |
38d40815 EB |
1068 | if (tb[IFLA_MTU]) { |
1069 | if (!is_valid_veth_mtu(nla_get_u32(tb[IFLA_MTU]))) | |
1070 | return -EINVAL; | |
1071 | } | |
e314dbdc PE |
1072 | return 0; |
1073 | } | |
1074 | ||
1075 | static struct rtnl_link_ops veth_link_ops; | |
1076 | ||
81adee47 | 1077 | static int veth_newlink(struct net *src_net, struct net_device *dev, |
7a3f4a18 MS |
1078 | struct nlattr *tb[], struct nlattr *data[], |
1079 | struct netlink_ext_ack *extack) | |
e314dbdc | 1080 | { |
7797b93b | 1081 | int err; |
e314dbdc PE |
1082 | struct net_device *peer; |
1083 | struct veth_priv *priv; | |
1084 | char ifname[IFNAMSIZ]; | |
1085 | struct nlattr *peer_tb[IFLA_MAX + 1], **tbp; | |
5517750f | 1086 | unsigned char name_assign_type; |
3729d502 | 1087 | struct ifinfomsg *ifmp; |
81adee47 | 1088 | struct net *net; |
e314dbdc PE |
1089 | |
1090 | /* | |
1091 | * create and register peer first | |
e314dbdc | 1092 | */ |
e314dbdc PE |
1093 | if (data != NULL && data[VETH_INFO_PEER] != NULL) { |
1094 | struct nlattr *nla_peer; | |
1095 | ||
1096 | nla_peer = data[VETH_INFO_PEER]; | |
3729d502 | 1097 | ifmp = nla_data(nla_peer); |
f7b12606 JP |
1098 | err = rtnl_nla_parse_ifla(peer_tb, |
1099 | nla_data(nla_peer) + sizeof(struct ifinfomsg), | |
fceb6435 JB |
1100 | nla_len(nla_peer) - sizeof(struct ifinfomsg), |
1101 | NULL); | |
e314dbdc PE |
1102 | if (err < 0) |
1103 | return err; | |
1104 | ||
a8b8a889 | 1105 | err = veth_validate(peer_tb, NULL, extack); |
e314dbdc PE |
1106 | if (err < 0) |
1107 | return err; | |
1108 | ||
1109 | tbp = peer_tb; | |
3729d502 PM |
1110 | } else { |
1111 | ifmp = NULL; | |
e314dbdc | 1112 | tbp = tb; |
3729d502 | 1113 | } |
e314dbdc | 1114 | |
191cdb38 | 1115 | if (ifmp && tbp[IFLA_IFNAME]) { |
e314dbdc | 1116 | nla_strlcpy(ifname, tbp[IFLA_IFNAME], IFNAMSIZ); |
5517750f TG |
1117 | name_assign_type = NET_NAME_USER; |
1118 | } else { | |
e314dbdc | 1119 | snprintf(ifname, IFNAMSIZ, DRV_NAME "%%d"); |
5517750f TG |
1120 | name_assign_type = NET_NAME_ENUM; |
1121 | } | |
e314dbdc | 1122 | |
81adee47 EB |
1123 | net = rtnl_link_get_net(src_net, tbp); |
1124 | if (IS_ERR(net)) | |
1125 | return PTR_ERR(net); | |
1126 | ||
5517750f TG |
1127 | peer = rtnl_create_link(net, ifname, name_assign_type, |
1128 | &veth_link_ops, tbp); | |
81adee47 EB |
1129 | if (IS_ERR(peer)) { |
1130 | put_net(net); | |
e314dbdc | 1131 | return PTR_ERR(peer); |
81adee47 | 1132 | } |
e314dbdc | 1133 | |
191cdb38 | 1134 | if (!ifmp || !tbp[IFLA_ADDRESS]) |
f2cedb63 | 1135 | eth_hw_addr_random(peer); |
e6f8f1a7 PE |
1136 | |
1137 | if (ifmp && (dev->ifindex != 0)) | |
1138 | peer->ifindex = ifmp->ifi_index; | |
e314dbdc | 1139 | |
72d24955 SH |
1140 | peer->gso_max_size = dev->gso_max_size; |
1141 | peer->gso_max_segs = dev->gso_max_segs; | |
1142 | ||
e314dbdc | 1143 | err = register_netdevice(peer); |
81adee47 EB |
1144 | put_net(net); |
1145 | net = NULL; | |
e314dbdc PE |
1146 | if (err < 0) |
1147 | goto err_register_peer; | |
1148 | ||
1149 | netif_carrier_off(peer); | |
1150 | ||
3729d502 PM |
1151 | err = rtnl_configure_link(peer, ifmp); |
1152 | if (err < 0) | |
1153 | goto err_configure_peer; | |
1154 | ||
e314dbdc PE |
1155 | /* |
1156 | * register dev last | |
1157 | * | |
1158 | * note, that since we've registered new device the dev's name | |
1159 | * should be re-allocated | |
1160 | */ | |
1161 | ||
1162 | if (tb[IFLA_ADDRESS] == NULL) | |
f2cedb63 | 1163 | eth_hw_addr_random(dev); |
e314dbdc | 1164 | |
6c8c4446 JP |
1165 | if (tb[IFLA_IFNAME]) |
1166 | nla_strlcpy(dev->name, tb[IFLA_IFNAME], IFNAMSIZ); | |
1167 | else | |
1168 | snprintf(dev->name, IFNAMSIZ, DRV_NAME "%%d"); | |
1169 | ||
e314dbdc PE |
1170 | err = register_netdevice(dev); |
1171 | if (err < 0) | |
1172 | goto err_register_dev; | |
1173 | ||
1174 | netif_carrier_off(dev); | |
1175 | ||
1176 | /* | |
1177 | * tie the deviced together | |
1178 | */ | |
1179 | ||
1180 | priv = netdev_priv(dev); | |
d0e2c55e | 1181 | rcu_assign_pointer(priv->peer, peer); |
e314dbdc PE |
1182 | |
1183 | priv = netdev_priv(peer); | |
d0e2c55e | 1184 | rcu_assign_pointer(priv->peer, dev); |
948d4f21 | 1185 | |
e314dbdc PE |
1186 | return 0; |
1187 | ||
1188 | err_register_dev: | |
1189 | /* nothing to do */ | |
3729d502 | 1190 | err_configure_peer: |
e314dbdc PE |
1191 | unregister_netdevice(peer); |
1192 | return err; | |
1193 | ||
1194 | err_register_peer: | |
1195 | free_netdev(peer); | |
1196 | return err; | |
1197 | } | |
1198 | ||
23289a37 | 1199 | static void veth_dellink(struct net_device *dev, struct list_head *head) |
e314dbdc PE |
1200 | { |
1201 | struct veth_priv *priv; | |
1202 | struct net_device *peer; | |
1203 | ||
1204 | priv = netdev_priv(dev); | |
d0e2c55e ED |
1205 | peer = rtnl_dereference(priv->peer); |
1206 | ||
1207 | /* Note : dellink() is called from default_device_exit_batch(), | |
1208 | * before a rcu_synchronize() point. The devices are guaranteed | |
1209 | * not being freed before one RCU grace period. | |
1210 | */ | |
1211 | RCU_INIT_POINTER(priv->peer, NULL); | |
24540535 | 1212 | unregister_netdevice_queue(dev, head); |
f45a5c26 ED |
1213 | |
1214 | if (peer) { | |
1215 | priv = netdev_priv(peer); | |
1216 | RCU_INIT_POINTER(priv->peer, NULL); | |
1217 | unregister_netdevice_queue(peer, head); | |
1218 | } | |
e314dbdc PE |
1219 | } |
1220 | ||
23711438 TG |
1221 | static const struct nla_policy veth_policy[VETH_INFO_MAX + 1] = { |
1222 | [VETH_INFO_PEER] = { .len = sizeof(struct ifinfomsg) }, | |
1223 | }; | |
e314dbdc | 1224 | |
e5f4e7b9 ND |
1225 | static struct net *veth_get_link_net(const struct net_device *dev) |
1226 | { | |
1227 | struct veth_priv *priv = netdev_priv(dev); | |
1228 | struct net_device *peer = rtnl_dereference(priv->peer); | |
1229 | ||
1230 | return peer ? dev_net(peer) : dev_net(dev); | |
1231 | } | |
1232 | ||
e314dbdc PE |
1233 | static struct rtnl_link_ops veth_link_ops = { |
1234 | .kind = DRV_NAME, | |
1235 | .priv_size = sizeof(struct veth_priv), | |
1236 | .setup = veth_setup, | |
1237 | .validate = veth_validate, | |
1238 | .newlink = veth_newlink, | |
1239 | .dellink = veth_dellink, | |
1240 | .policy = veth_policy, | |
1241 | .maxtype = VETH_INFO_MAX, | |
e5f4e7b9 | 1242 | .get_link_net = veth_get_link_net, |
e314dbdc PE |
1243 | }; |
1244 | ||
1245 | /* | |
1246 | * init/fini | |
1247 | */ | |
1248 | ||
1249 | static __init int veth_init(void) | |
1250 | { | |
1251 | return rtnl_link_register(&veth_link_ops); | |
1252 | } | |
1253 | ||
1254 | static __exit void veth_exit(void) | |
1255 | { | |
68365458 | 1256 | rtnl_link_unregister(&veth_link_ops); |
e314dbdc PE |
1257 | } |
1258 | ||
1259 | module_init(veth_init); | |
1260 | module_exit(veth_exit); | |
1261 | ||
1262 | MODULE_DESCRIPTION("Virtual Ethernet Tunnel"); | |
1263 | MODULE_LICENSE("GPL v2"); | |
1264 | MODULE_ALIAS_RTNL_LINK(DRV_NAME); |