]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blob - drivers/net/virtio_net.c
can: xilinx_can: fix RX overflow interrupt not being enabled
[mirror_ubuntu-bionic-kernel.git] / drivers / net / virtio_net.c
1 /* A network driver using virtio.
2 *
3 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
17 */
18 //#define DEBUG
19 #include <linux/netdevice.h>
20 #include <linux/etherdevice.h>
21 #include <linux/ethtool.h>
22 #include <linux/module.h>
23 #include <linux/virtio.h>
24 #include <linux/virtio_net.h>
25 #include <linux/bpf.h>
26 #include <linux/bpf_trace.h>
27 #include <linux/scatterlist.h>
28 #include <linux/if_vlan.h>
29 #include <linux/slab.h>
30 #include <linux/cpu.h>
31 #include <linux/average.h>
32 #include <linux/filter.h>
33 #include <net/route.h>
34
35 static int napi_weight = NAPI_POLL_WEIGHT;
36 module_param(napi_weight, int, 0444);
37
38 static bool csum = true, gso = true, napi_tx;
39 module_param(csum, bool, 0444);
40 module_param(gso, bool, 0444);
41 module_param(napi_tx, bool, 0644);
42
43 /* FIXME: MTU in config. */
44 #define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
45 #define GOOD_COPY_LEN 128
46
47 #define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
48
49 /* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
50 #define VIRTIO_XDP_HEADROOM 256
51
52 /* RX packet size EWMA. The average packet size is used to determine the packet
53 * buffer size when refilling RX rings. As the entire RX ring may be refilled
54 * at once, the weight is chosen so that the EWMA will be insensitive to short-
55 * term, transient changes in packet size.
56 */
57 DECLARE_EWMA(pkt_len, 0, 64)
58
59 #define VIRTNET_DRIVER_VERSION "1.0.0"
60
61 static const unsigned long guest_offloads[] = {
62 VIRTIO_NET_F_GUEST_TSO4,
63 VIRTIO_NET_F_GUEST_TSO6,
64 VIRTIO_NET_F_GUEST_ECN,
65 VIRTIO_NET_F_GUEST_UFO
66 };
67
68 struct virtnet_stats {
69 struct u64_stats_sync tx_syncp;
70 struct u64_stats_sync rx_syncp;
71 u64 tx_bytes;
72 u64 tx_packets;
73
74 u64 rx_bytes;
75 u64 rx_packets;
76 };
77
78 /* Internal representation of a send virtqueue */
79 struct send_queue {
80 /* Virtqueue associated with this send _queue */
81 struct virtqueue *vq;
82
83 /* TX: fragments + linear part + virtio header */
84 struct scatterlist sg[MAX_SKB_FRAGS + 2];
85
86 /* Name of the send queue: output.$index */
87 char name[40];
88
89 struct napi_struct napi;
90 };
91
92 /* Internal representation of a receive virtqueue */
93 struct receive_queue {
94 /* Virtqueue associated with this receive_queue */
95 struct virtqueue *vq;
96
97 struct napi_struct napi;
98
99 struct bpf_prog __rcu *xdp_prog;
100
101 /* Chain pages by the private ptr. */
102 struct page *pages;
103
104 /* Average packet length for mergeable receive buffers. */
105 struct ewma_pkt_len mrg_avg_pkt_len;
106
107 /* Page frag for packet buffer allocation. */
108 struct page_frag alloc_frag;
109
110 /* RX: fragments + linear part + virtio header */
111 struct scatterlist sg[MAX_SKB_FRAGS + 2];
112
113 /* Min single buffer size for mergeable buffers case. */
114 unsigned int min_buf_len;
115
116 /* Name of this receive queue: input.$index */
117 char name[40];
118 };
119
120 /* Control VQ buffers: protected by the rtnl lock */
121 struct control_buf {
122 struct virtio_net_ctrl_hdr hdr;
123 virtio_net_ctrl_ack status;
124 struct virtio_net_ctrl_mq mq;
125 u8 promisc;
126 u8 allmulti;
127 __virtio16 vid;
128 u64 offloads;
129 };
130
131 struct virtnet_info {
132 struct virtio_device *vdev;
133 struct virtqueue *cvq;
134 struct net_device *dev;
135 struct send_queue *sq;
136 struct receive_queue *rq;
137 unsigned int status;
138
139 /* Max # of queue pairs supported by the device */
140 u16 max_queue_pairs;
141
142 /* # of queue pairs currently used by the driver */
143 u16 curr_queue_pairs;
144
145 /* # of XDP queue pairs currently used by the driver */
146 u16 xdp_queue_pairs;
147
148 /* I like... big packets and I cannot lie! */
149 bool big_packets;
150
151 /* Host will merge rx buffers for big packets (shake it! shake it!) */
152 bool mergeable_rx_bufs;
153
154 /* Has control virtqueue */
155 bool has_cvq;
156
157 /* Host can handle any s/g split between our header and packet data */
158 bool any_header_sg;
159
160 /* Packet virtio header size */
161 u8 hdr_len;
162
163 /* Active statistics */
164 struct virtnet_stats __percpu *stats;
165
166 /* Work struct for refilling if we run low on memory. */
167 struct delayed_work refill;
168
169 /* Work struct for config space updates */
170 struct work_struct config_work;
171
172 /* Does the affinity hint is set for virtqueues? */
173 bool affinity_hint_set;
174
175 /* CPU hotplug instances for online & dead */
176 struct hlist_node node;
177 struct hlist_node node_dead;
178
179 struct control_buf *ctrl;
180
181 /* Ethtool settings */
182 u8 duplex;
183 u32 speed;
184
185 unsigned long guest_offloads;
186 };
187
188 struct padded_vnet_hdr {
189 struct virtio_net_hdr_mrg_rxbuf hdr;
190 /*
191 * hdr is in a separate sg buffer, and data sg buffer shares same page
192 * with this header sg. This padding makes next sg 16 byte aligned
193 * after the header.
194 */
195 char padding[4];
196 };
197
198 /* Converting between virtqueue no. and kernel tx/rx queue no.
199 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
200 */
201 static int vq2txq(struct virtqueue *vq)
202 {
203 return (vq->index - 1) / 2;
204 }
205
206 static int txq2vq(int txq)
207 {
208 return txq * 2 + 1;
209 }
210
211 static int vq2rxq(struct virtqueue *vq)
212 {
213 return vq->index / 2;
214 }
215
216 static int rxq2vq(int rxq)
217 {
218 return rxq * 2;
219 }
220
221 static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
222 {
223 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
224 }
225
226 /*
227 * private is used to chain pages for big packets, put the whole
228 * most recent used list in the beginning for reuse
229 */
230 static void give_pages(struct receive_queue *rq, struct page *page)
231 {
232 struct page *end;
233
234 /* Find end of list, sew whole thing into vi->rq.pages. */
235 for (end = page; end->private; end = (struct page *)end->private);
236 end->private = (unsigned long)rq->pages;
237 rq->pages = page;
238 }
239
240 static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
241 {
242 struct page *p = rq->pages;
243
244 if (p) {
245 rq->pages = (struct page *)p->private;
246 /* clear private here, it is used to chain pages */
247 p->private = 0;
248 } else
249 p = alloc_page(gfp_mask);
250 return p;
251 }
252
253 static void virtqueue_napi_schedule(struct napi_struct *napi,
254 struct virtqueue *vq)
255 {
256 if (napi_schedule_prep(napi)) {
257 virtqueue_disable_cb(vq);
258 __napi_schedule(napi);
259 }
260 }
261
262 static void virtqueue_napi_complete(struct napi_struct *napi,
263 struct virtqueue *vq, int processed)
264 {
265 int opaque;
266
267 opaque = virtqueue_enable_cb_prepare(vq);
268 if (napi_complete_done(napi, processed)) {
269 if (unlikely(virtqueue_poll(vq, opaque)))
270 virtqueue_napi_schedule(napi, vq);
271 } else {
272 virtqueue_disable_cb(vq);
273 }
274 }
275
276 static void skb_xmit_done(struct virtqueue *vq)
277 {
278 struct virtnet_info *vi = vq->vdev->priv;
279 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
280
281 /* Suppress further interrupts. */
282 virtqueue_disable_cb(vq);
283
284 if (napi->weight)
285 virtqueue_napi_schedule(napi, vq);
286 else
287 /* We were probably waiting for more output buffers. */
288 netif_wake_subqueue(vi->dev, vq2txq(vq));
289 }
290
291 #define MRG_CTX_HEADER_SHIFT 22
292 static void *mergeable_len_to_ctx(unsigned int truesize,
293 unsigned int headroom)
294 {
295 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
296 }
297
298 static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
299 {
300 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
301 }
302
303 static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
304 {
305 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
306 }
307
308 /* Called from bottom half context */
309 static struct sk_buff *page_to_skb(struct virtnet_info *vi,
310 struct receive_queue *rq,
311 struct page *page, unsigned int offset,
312 unsigned int len, unsigned int truesize)
313 {
314 struct sk_buff *skb;
315 struct virtio_net_hdr_mrg_rxbuf *hdr;
316 unsigned int copy, hdr_len, hdr_padded_len;
317 char *p;
318
319 p = page_address(page) + offset;
320
321 /* copy small packet so we can reuse these pages for small data */
322 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
323 if (unlikely(!skb))
324 return NULL;
325
326 hdr = skb_vnet_hdr(skb);
327
328 hdr_len = vi->hdr_len;
329 if (vi->mergeable_rx_bufs)
330 hdr_padded_len = sizeof(*hdr);
331 else
332 hdr_padded_len = sizeof(struct padded_vnet_hdr);
333
334 memcpy(hdr, p, hdr_len);
335
336 len -= hdr_len;
337 offset += hdr_padded_len;
338 p += hdr_padded_len;
339
340 copy = len;
341 if (copy > skb_tailroom(skb))
342 copy = skb_tailroom(skb);
343 skb_put_data(skb, p, copy);
344
345 len -= copy;
346 offset += copy;
347
348 if (vi->mergeable_rx_bufs) {
349 if (len)
350 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
351 else
352 put_page(page);
353 return skb;
354 }
355
356 /*
357 * Verify that we can indeed put this data into a skb.
358 * This is here to handle cases when the device erroneously
359 * tries to receive more than is possible. This is usually
360 * the case of a broken device.
361 */
362 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
363 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
364 dev_kfree_skb(skb);
365 return NULL;
366 }
367 BUG_ON(offset >= PAGE_SIZE);
368 while (len) {
369 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
370 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
371 frag_size, truesize);
372 len -= frag_size;
373 page = (struct page *)page->private;
374 offset = 0;
375 }
376
377 if (page)
378 give_pages(rq, page);
379
380 return skb;
381 }
382
383 static void virtnet_xdp_flush(struct net_device *dev)
384 {
385 struct virtnet_info *vi = netdev_priv(dev);
386 struct send_queue *sq;
387 unsigned int qp;
388
389 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
390 sq = &vi->sq[qp];
391
392 virtqueue_kick(sq->vq);
393 }
394
395 static bool __virtnet_xdp_xmit(struct virtnet_info *vi,
396 struct xdp_buff *xdp)
397 {
398 struct virtio_net_hdr_mrg_rxbuf *hdr;
399 unsigned int len;
400 struct send_queue *sq;
401 unsigned int qp;
402 void *xdp_sent;
403 int err;
404
405 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
406 sq = &vi->sq[qp];
407
408 /* Free up any pending old buffers before queueing new ones. */
409 while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) {
410 struct page *sent_page = virt_to_head_page(xdp_sent);
411
412 put_page(sent_page);
413 }
414
415 xdp->data -= vi->hdr_len;
416 /* Zero header and leave csum up to XDP layers */
417 hdr = xdp->data;
418 memset(hdr, 0, vi->hdr_len);
419
420 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
421
422 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp->data, GFP_ATOMIC);
423 if (unlikely(err))
424 return false; /* Caller handle free/refcnt */
425
426 return true;
427 }
428
429 static int virtnet_xdp_xmit(struct net_device *dev, struct xdp_buff *xdp)
430 {
431 struct virtnet_info *vi = netdev_priv(dev);
432 bool sent = __virtnet_xdp_xmit(vi, xdp);
433
434 if (!sent)
435 return -ENOSPC;
436 return 0;
437 }
438
439 static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
440 {
441 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
442 }
443
444 /* We copy the packet for XDP in the following cases:
445 *
446 * 1) Packet is scattered across multiple rx buffers.
447 * 2) Headroom space is insufficient.
448 *
449 * This is inefficient but it's a temporary condition that
450 * we hit right after XDP is enabled and until queue is refilled
451 * with large buffers with sufficient headroom - so it should affect
452 * at most queue size packets.
453 * Afterwards, the conditions to enable
454 * XDP should preclude the underlying device from sending packets
455 * across multiple buffers (num_buf > 1), and we make sure buffers
456 * have enough headroom.
457 */
458 static struct page *xdp_linearize_page(struct receive_queue *rq,
459 u16 *num_buf,
460 struct page *p,
461 int offset,
462 int page_off,
463 unsigned int *len)
464 {
465 struct page *page = alloc_page(GFP_ATOMIC);
466
467 if (!page)
468 return NULL;
469
470 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
471 page_off += *len;
472
473 while (--*num_buf) {
474 unsigned int buflen;
475 void *buf;
476 int off;
477
478 buf = virtqueue_get_buf(rq->vq, &buflen);
479 if (unlikely(!buf))
480 goto err_buf;
481
482 p = virt_to_head_page(buf);
483 off = buf - page_address(p);
484
485 /* guard against a misconfigured or uncooperative backend that
486 * is sending packet larger than the MTU.
487 */
488 if ((page_off + buflen) > PAGE_SIZE) {
489 put_page(p);
490 goto err_buf;
491 }
492
493 memcpy(page_address(page) + page_off,
494 page_address(p) + off, buflen);
495 page_off += buflen;
496 put_page(p);
497 }
498
499 /* Headroom does not contribute to packet length */
500 *len = page_off - VIRTIO_XDP_HEADROOM;
501 return page;
502 err_buf:
503 __free_pages(page, 0);
504 return NULL;
505 }
506
507 static struct sk_buff *receive_small(struct net_device *dev,
508 struct virtnet_info *vi,
509 struct receive_queue *rq,
510 void *buf, void *ctx,
511 unsigned int len,
512 bool *xdp_xmit)
513 {
514 struct sk_buff *skb;
515 struct bpf_prog *xdp_prog;
516 unsigned int xdp_headroom = (unsigned long)ctx;
517 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
518 unsigned int headroom = vi->hdr_len + header_offset;
519 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
520 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
521 struct page *page = virt_to_head_page(buf);
522 unsigned int delta = 0;
523 struct page *xdp_page;
524 bool sent;
525 int err;
526
527 len -= vi->hdr_len;
528
529 rcu_read_lock();
530 xdp_prog = rcu_dereference(rq->xdp_prog);
531 if (xdp_prog) {
532 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
533 struct xdp_buff xdp;
534 void *orig_data;
535 u32 act;
536
537 if (unlikely(hdr->hdr.gso_type))
538 goto err_xdp;
539
540 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
541 int offset = buf - page_address(page) + header_offset;
542 unsigned int tlen = len + vi->hdr_len;
543 u16 num_buf = 1;
544
545 xdp_headroom = virtnet_get_headroom(vi);
546 header_offset = VIRTNET_RX_PAD + xdp_headroom;
547 headroom = vi->hdr_len + header_offset;
548 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
549 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
550 xdp_page = xdp_linearize_page(rq, &num_buf, page,
551 offset, header_offset,
552 &tlen);
553 if (!xdp_page)
554 goto err_xdp;
555
556 buf = page_address(xdp_page);
557 put_page(page);
558 page = xdp_page;
559 }
560
561 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
562 xdp.data = xdp.data_hard_start + xdp_headroom;
563 xdp_set_data_meta_invalid(&xdp);
564 xdp.data_end = xdp.data + len;
565 orig_data = xdp.data;
566 act = bpf_prog_run_xdp(xdp_prog, &xdp);
567
568 switch (act) {
569 case XDP_PASS:
570 /* Recalculate length in case bpf program changed it */
571 delta = orig_data - xdp.data;
572 break;
573 case XDP_TX:
574 sent = __virtnet_xdp_xmit(vi, &xdp);
575 if (unlikely(!sent)) {
576 trace_xdp_exception(vi->dev, xdp_prog, act);
577 goto err_xdp;
578 }
579 *xdp_xmit = true;
580 rcu_read_unlock();
581 goto xdp_xmit;
582 case XDP_REDIRECT:
583 err = xdp_do_redirect(dev, &xdp, xdp_prog);
584 if (err)
585 goto err_xdp;
586 *xdp_xmit = true;
587 rcu_read_unlock();
588 goto xdp_xmit;
589 default:
590 bpf_warn_invalid_xdp_action(act);
591 case XDP_ABORTED:
592 trace_xdp_exception(vi->dev, xdp_prog, act);
593 case XDP_DROP:
594 goto err_xdp;
595 }
596 }
597 rcu_read_unlock();
598
599 skb = build_skb(buf, buflen);
600 if (!skb) {
601 put_page(page);
602 goto err;
603 }
604 skb_reserve(skb, headroom - delta);
605 skb_put(skb, len + delta);
606 if (!delta) {
607 buf += header_offset;
608 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
609 } /* keep zeroed vnet hdr since packet was changed by bpf */
610
611 err:
612 return skb;
613
614 err_xdp:
615 rcu_read_unlock();
616 dev->stats.rx_dropped++;
617 put_page(page);
618 xdp_xmit:
619 return NULL;
620 }
621
622 static struct sk_buff *receive_big(struct net_device *dev,
623 struct virtnet_info *vi,
624 struct receive_queue *rq,
625 void *buf,
626 unsigned int len)
627 {
628 struct page *page = buf;
629 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
630
631 if (unlikely(!skb))
632 goto err;
633
634 return skb;
635
636 err:
637 dev->stats.rx_dropped++;
638 give_pages(rq, page);
639 return NULL;
640 }
641
642 static struct sk_buff *receive_mergeable(struct net_device *dev,
643 struct virtnet_info *vi,
644 struct receive_queue *rq,
645 void *buf,
646 void *ctx,
647 unsigned int len,
648 bool *xdp_xmit)
649 {
650 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
651 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
652 struct page *page = virt_to_head_page(buf);
653 int offset = buf - page_address(page);
654 struct sk_buff *head_skb, *curr_skb;
655 struct bpf_prog *xdp_prog;
656 unsigned int truesize;
657 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
658 int err;
659 bool sent;
660
661 head_skb = NULL;
662
663 rcu_read_lock();
664 xdp_prog = rcu_dereference(rq->xdp_prog);
665 if (xdp_prog) {
666 struct page *xdp_page;
667 struct xdp_buff xdp;
668 void *data;
669 u32 act;
670
671 /* Transient failure which in theory could occur if
672 * in-flight packets from before XDP was enabled reach
673 * the receive path after XDP is loaded.
674 */
675 if (unlikely(hdr->hdr.gso_type))
676 goto err_xdp;
677
678 /* This happens when rx buffer size is underestimated */
679 if (unlikely(num_buf > 1 ||
680 headroom < virtnet_get_headroom(vi))) {
681 /* linearize data for XDP */
682 xdp_page = xdp_linearize_page(rq, &num_buf,
683 page, offset,
684 VIRTIO_XDP_HEADROOM,
685 &len);
686 if (!xdp_page)
687 goto err_xdp;
688 offset = VIRTIO_XDP_HEADROOM;
689 } else {
690 xdp_page = page;
691 }
692
693 /* Allow consuming headroom but reserve enough space to push
694 * the descriptor on if we get an XDP_TX return code.
695 */
696 data = page_address(xdp_page) + offset;
697 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
698 xdp.data = data + vi->hdr_len;
699 xdp_set_data_meta_invalid(&xdp);
700 xdp.data_end = xdp.data + (len - vi->hdr_len);
701 act = bpf_prog_run_xdp(xdp_prog, &xdp);
702
703 if (act != XDP_PASS)
704 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
705
706 switch (act) {
707 case XDP_PASS:
708 /* recalculate offset to account for any header
709 * adjustments. Note other cases do not build an
710 * skb and avoid using offset
711 */
712 offset = xdp.data -
713 page_address(xdp_page) - vi->hdr_len;
714
715 /* We can only create skb based on xdp_page. */
716 if (unlikely(xdp_page != page)) {
717 rcu_read_unlock();
718 put_page(page);
719 head_skb = page_to_skb(vi, rq, xdp_page,
720 offset, len, PAGE_SIZE);
721 return head_skb;
722 }
723 break;
724 case XDP_TX:
725 sent = __virtnet_xdp_xmit(vi, &xdp);
726 if (unlikely(!sent)) {
727 trace_xdp_exception(vi->dev, xdp_prog, act);
728 if (unlikely(xdp_page != page))
729 put_page(xdp_page);
730 goto err_xdp;
731 }
732 *xdp_xmit = true;
733 if (unlikely(xdp_page != page))
734 put_page(page);
735 rcu_read_unlock();
736 goto xdp_xmit;
737 case XDP_REDIRECT:
738 err = xdp_do_redirect(dev, &xdp, xdp_prog);
739 if (!err)
740 *xdp_xmit = true;
741 rcu_read_unlock();
742 goto xdp_xmit;
743 default:
744 bpf_warn_invalid_xdp_action(act);
745 case XDP_ABORTED:
746 trace_xdp_exception(vi->dev, xdp_prog, act);
747 case XDP_DROP:
748 if (unlikely(xdp_page != page))
749 __free_pages(xdp_page, 0);
750 goto err_xdp;
751 }
752 }
753 rcu_read_unlock();
754
755 truesize = mergeable_ctx_to_truesize(ctx);
756 if (unlikely(len > truesize)) {
757 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
758 dev->name, len, (unsigned long)ctx);
759 dev->stats.rx_length_errors++;
760 goto err_skb;
761 }
762
763 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
764 curr_skb = head_skb;
765
766 if (unlikely(!curr_skb))
767 goto err_skb;
768 while (--num_buf) {
769 int num_skb_frags;
770
771 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
772 if (unlikely(!buf)) {
773 pr_debug("%s: rx error: %d buffers out of %d missing\n",
774 dev->name, num_buf,
775 virtio16_to_cpu(vi->vdev,
776 hdr->num_buffers));
777 dev->stats.rx_length_errors++;
778 goto err_buf;
779 }
780
781 page = virt_to_head_page(buf);
782
783 truesize = mergeable_ctx_to_truesize(ctx);
784 if (unlikely(len > truesize)) {
785 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
786 dev->name, len, (unsigned long)ctx);
787 dev->stats.rx_length_errors++;
788 goto err_skb;
789 }
790
791 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
792 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
793 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
794
795 if (unlikely(!nskb))
796 goto err_skb;
797 if (curr_skb == head_skb)
798 skb_shinfo(curr_skb)->frag_list = nskb;
799 else
800 curr_skb->next = nskb;
801 curr_skb = nskb;
802 head_skb->truesize += nskb->truesize;
803 num_skb_frags = 0;
804 }
805 if (curr_skb != head_skb) {
806 head_skb->data_len += len;
807 head_skb->len += len;
808 head_skb->truesize += truesize;
809 }
810 offset = buf - page_address(page);
811 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
812 put_page(page);
813 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
814 len, truesize);
815 } else {
816 skb_add_rx_frag(curr_skb, num_skb_frags, page,
817 offset, len, truesize);
818 }
819 }
820
821 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
822 return head_skb;
823
824 err_xdp:
825 rcu_read_unlock();
826 err_skb:
827 put_page(page);
828 while (num_buf-- > 1) {
829 buf = virtqueue_get_buf(rq->vq, &len);
830 if (unlikely(!buf)) {
831 pr_debug("%s: rx error: %d buffers missing\n",
832 dev->name, num_buf);
833 dev->stats.rx_length_errors++;
834 break;
835 }
836 page = virt_to_head_page(buf);
837 put_page(page);
838 }
839 err_buf:
840 dev->stats.rx_dropped++;
841 dev_kfree_skb(head_skb);
842 xdp_xmit:
843 return NULL;
844 }
845
846 static int receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
847 void *buf, unsigned int len, void **ctx, bool *xdp_xmit)
848 {
849 struct net_device *dev = vi->dev;
850 struct sk_buff *skb;
851 struct virtio_net_hdr_mrg_rxbuf *hdr;
852 int ret;
853
854 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
855 pr_debug("%s: short packet %i\n", dev->name, len);
856 dev->stats.rx_length_errors++;
857 if (vi->mergeable_rx_bufs) {
858 put_page(virt_to_head_page(buf));
859 } else if (vi->big_packets) {
860 give_pages(rq, buf);
861 } else {
862 put_page(virt_to_head_page(buf));
863 }
864 return 0;
865 }
866
867 if (vi->mergeable_rx_bufs)
868 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit);
869 else if (vi->big_packets)
870 skb = receive_big(dev, vi, rq, buf, len);
871 else
872 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit);
873
874 if (unlikely(!skb))
875 return 0;
876
877 hdr = skb_vnet_hdr(skb);
878
879 ret = skb->len;
880
881 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
882 skb->ip_summed = CHECKSUM_UNNECESSARY;
883
884 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
885 virtio_is_little_endian(vi->vdev))) {
886 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
887 dev->name, hdr->hdr.gso_type,
888 hdr->hdr.gso_size);
889 goto frame_err;
890 }
891
892 skb->protocol = eth_type_trans(skb, dev);
893 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
894 ntohs(skb->protocol), skb->len, skb->pkt_type);
895
896 napi_gro_receive(&rq->napi, skb);
897 return ret;
898
899 frame_err:
900 dev->stats.rx_frame_errors++;
901 dev_kfree_skb(skb);
902 return 0;
903 }
904
905 /* Unlike mergeable buffers, all buffers are allocated to the
906 * same size, except for the headroom. For this reason we do
907 * not need to use mergeable_len_to_ctx here - it is enough
908 * to store the headroom as the context ignoring the truesize.
909 */
910 static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
911 gfp_t gfp)
912 {
913 struct page_frag *alloc_frag = &rq->alloc_frag;
914 char *buf;
915 unsigned int xdp_headroom = virtnet_get_headroom(vi);
916 void *ctx = (void *)(unsigned long)xdp_headroom;
917 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
918 int err;
919
920 len = SKB_DATA_ALIGN(len) +
921 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
922 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
923 return -ENOMEM;
924
925 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
926 get_page(alloc_frag->page);
927 alloc_frag->offset += len;
928 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
929 vi->hdr_len + GOOD_PACKET_LEN);
930 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
931 if (err < 0)
932 put_page(virt_to_head_page(buf));
933 return err;
934 }
935
936 static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
937 gfp_t gfp)
938 {
939 struct page *first, *list = NULL;
940 char *p;
941 int i, err, offset;
942
943 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
944
945 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
946 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
947 first = get_a_page(rq, gfp);
948 if (!first) {
949 if (list)
950 give_pages(rq, list);
951 return -ENOMEM;
952 }
953 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
954
955 /* chain new page in list head to match sg */
956 first->private = (unsigned long)list;
957 list = first;
958 }
959
960 first = get_a_page(rq, gfp);
961 if (!first) {
962 give_pages(rq, list);
963 return -ENOMEM;
964 }
965 p = page_address(first);
966
967 /* rq->sg[0], rq->sg[1] share the same page */
968 /* a separated rq->sg[0] for header - required in case !any_header_sg */
969 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
970
971 /* rq->sg[1] for data packet, from offset */
972 offset = sizeof(struct padded_vnet_hdr);
973 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
974
975 /* chain first in list head */
976 first->private = (unsigned long)list;
977 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
978 first, gfp);
979 if (err < 0)
980 give_pages(rq, first);
981
982 return err;
983 }
984
985 static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
986 struct ewma_pkt_len *avg_pkt_len)
987 {
988 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
989 unsigned int len;
990
991 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
992 rq->min_buf_len, PAGE_SIZE - hdr_len);
993 return ALIGN(len, L1_CACHE_BYTES);
994 }
995
996 static int add_recvbuf_mergeable(struct virtnet_info *vi,
997 struct receive_queue *rq, gfp_t gfp)
998 {
999 struct page_frag *alloc_frag = &rq->alloc_frag;
1000 unsigned int headroom = virtnet_get_headroom(vi);
1001 char *buf;
1002 void *ctx;
1003 int err;
1004 unsigned int len, hole;
1005
1006 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len);
1007 if (unlikely(!skb_page_frag_refill(len + headroom, alloc_frag, gfp)))
1008 return -ENOMEM;
1009
1010 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1011 buf += headroom; /* advance address leaving hole at front of pkt */
1012 get_page(alloc_frag->page);
1013 alloc_frag->offset += len + headroom;
1014 hole = alloc_frag->size - alloc_frag->offset;
1015 if (hole < len + headroom) {
1016 /* To avoid internal fragmentation, if there is very likely not
1017 * enough space for another buffer, add the remaining space to
1018 * the current buffer.
1019 */
1020 len += hole;
1021 alloc_frag->offset += hole;
1022 }
1023
1024 sg_init_one(rq->sg, buf, len);
1025 ctx = mergeable_len_to_ctx(len, headroom);
1026 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
1027 if (err < 0)
1028 put_page(virt_to_head_page(buf));
1029
1030 return err;
1031 }
1032
1033 /*
1034 * Returns false if we couldn't fill entirely (OOM).
1035 *
1036 * Normally run in the receive path, but can also be run from ndo_open
1037 * before we're receiving packets, or from refill_work which is
1038 * careful to disable receiving (using napi_disable).
1039 */
1040 static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1041 gfp_t gfp)
1042 {
1043 int err;
1044 bool oom;
1045
1046 do {
1047 if (vi->mergeable_rx_bufs)
1048 err = add_recvbuf_mergeable(vi, rq, gfp);
1049 else if (vi->big_packets)
1050 err = add_recvbuf_big(vi, rq, gfp);
1051 else
1052 err = add_recvbuf_small(vi, rq, gfp);
1053
1054 oom = err == -ENOMEM;
1055 if (err)
1056 break;
1057 } while (rq->vq->num_free);
1058 virtqueue_kick(rq->vq);
1059 return !oom;
1060 }
1061
1062 static void skb_recv_done(struct virtqueue *rvq)
1063 {
1064 struct virtnet_info *vi = rvq->vdev->priv;
1065 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
1066
1067 virtqueue_napi_schedule(&rq->napi, rvq);
1068 }
1069
1070 static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
1071 {
1072 napi_enable(napi);
1073
1074 /* If all buffers were filled by other side before we napi_enabled, we
1075 * won't get another interrupt, so process any outstanding packets now.
1076 * Call local_bh_enable after to trigger softIRQ processing.
1077 */
1078 local_bh_disable();
1079 virtqueue_napi_schedule(napi, vq);
1080 local_bh_enable();
1081 }
1082
1083 static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1084 struct virtqueue *vq,
1085 struct napi_struct *napi)
1086 {
1087 if (!napi->weight)
1088 return;
1089
1090 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1091 * enable the feature if this is likely affine with the transmit path.
1092 */
1093 if (!vi->affinity_hint_set) {
1094 napi->weight = 0;
1095 return;
1096 }
1097
1098 return virtnet_napi_enable(vq, napi);
1099 }
1100
1101 static void virtnet_napi_tx_disable(struct napi_struct *napi)
1102 {
1103 if (napi->weight)
1104 napi_disable(napi);
1105 }
1106
1107 static void refill_work(struct work_struct *work)
1108 {
1109 struct virtnet_info *vi =
1110 container_of(work, struct virtnet_info, refill.work);
1111 bool still_empty;
1112 int i;
1113
1114 for (i = 0; i < vi->curr_queue_pairs; i++) {
1115 struct receive_queue *rq = &vi->rq[i];
1116
1117 napi_disable(&rq->napi);
1118 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
1119 virtnet_napi_enable(rq->vq, &rq->napi);
1120
1121 /* In theory, this can happen: if we don't get any buffers in
1122 * we will *never* try to fill again.
1123 */
1124 if (still_empty)
1125 schedule_delayed_work(&vi->refill, HZ/2);
1126 }
1127 }
1128
1129 static int virtnet_receive(struct receive_queue *rq, int budget, bool *xdp_xmit)
1130 {
1131 struct virtnet_info *vi = rq->vq->vdev->priv;
1132 unsigned int len, received = 0, bytes = 0;
1133 void *buf;
1134 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
1135
1136 if (!vi->big_packets || vi->mergeable_rx_bufs) {
1137 void *ctx;
1138
1139 while (received < budget &&
1140 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
1141 bytes += receive_buf(vi, rq, buf, len, ctx, xdp_xmit);
1142 received++;
1143 }
1144 } else {
1145 while (received < budget &&
1146 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
1147 bytes += receive_buf(vi, rq, buf, len, NULL, xdp_xmit);
1148 received++;
1149 }
1150 }
1151
1152 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
1153 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
1154 schedule_delayed_work(&vi->refill, 0);
1155 }
1156
1157 u64_stats_update_begin(&stats->rx_syncp);
1158 stats->rx_bytes += bytes;
1159 stats->rx_packets += received;
1160 u64_stats_update_end(&stats->rx_syncp);
1161
1162 return received;
1163 }
1164
1165 static void free_old_xmit_skbs(struct send_queue *sq)
1166 {
1167 struct sk_buff *skb;
1168 unsigned int len;
1169 struct virtnet_info *vi = sq->vq->vdev->priv;
1170 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
1171 unsigned int packets = 0;
1172 unsigned int bytes = 0;
1173
1174 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1175 pr_debug("Sent skb %p\n", skb);
1176
1177 bytes += skb->len;
1178 packets++;
1179
1180 dev_consume_skb_any(skb);
1181 }
1182
1183 /* Avoid overhead when no packets have been processed
1184 * happens when called speculatively from start_xmit.
1185 */
1186 if (!packets)
1187 return;
1188
1189 u64_stats_update_begin(&stats->tx_syncp);
1190 stats->tx_bytes += bytes;
1191 stats->tx_packets += packets;
1192 u64_stats_update_end(&stats->tx_syncp);
1193 }
1194
1195 static void virtnet_poll_cleantx(struct receive_queue *rq)
1196 {
1197 struct virtnet_info *vi = rq->vq->vdev->priv;
1198 unsigned int index = vq2rxq(rq->vq);
1199 struct send_queue *sq = &vi->sq[index];
1200 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1201
1202 if (!sq->napi.weight)
1203 return;
1204
1205 if (__netif_tx_trylock(txq)) {
1206 free_old_xmit_skbs(sq);
1207 __netif_tx_unlock(txq);
1208 }
1209
1210 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1211 netif_tx_wake_queue(txq);
1212 }
1213
1214 static int virtnet_poll(struct napi_struct *napi, int budget)
1215 {
1216 struct receive_queue *rq =
1217 container_of(napi, struct receive_queue, napi);
1218 struct virtnet_info *vi = rq->vq->vdev->priv;
1219 struct send_queue *sq;
1220 unsigned int received, qp;
1221 bool xdp_xmit = false;
1222
1223 virtnet_poll_cleantx(rq);
1224
1225 received = virtnet_receive(rq, budget, &xdp_xmit);
1226
1227 /* Out of packets? */
1228 if (received < budget)
1229 virtqueue_napi_complete(napi, rq->vq, received);
1230
1231 if (xdp_xmit) {
1232 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs +
1233 smp_processor_id();
1234 sq = &vi->sq[qp];
1235 virtqueue_kick(sq->vq);
1236 xdp_do_flush_map();
1237 }
1238
1239 return received;
1240 }
1241
1242 static int virtnet_open(struct net_device *dev)
1243 {
1244 struct virtnet_info *vi = netdev_priv(dev);
1245 int i;
1246
1247 for (i = 0; i < vi->max_queue_pairs; i++) {
1248 if (i < vi->curr_queue_pairs)
1249 /* Make sure we have some buffers: if oom use wq. */
1250 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
1251 schedule_delayed_work(&vi->refill, 0);
1252 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
1253 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
1254 }
1255
1256 return 0;
1257 }
1258
1259 static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1260 {
1261 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1262 struct virtnet_info *vi = sq->vq->vdev->priv;
1263 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1264
1265 __netif_tx_lock(txq, raw_smp_processor_id());
1266 free_old_xmit_skbs(sq);
1267 __netif_tx_unlock(txq);
1268
1269 virtqueue_napi_complete(napi, sq->vq, 0);
1270
1271 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1272 netif_tx_wake_queue(txq);
1273
1274 return 0;
1275 }
1276
1277 static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
1278 {
1279 struct virtio_net_hdr_mrg_rxbuf *hdr;
1280 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
1281 struct virtnet_info *vi = sq->vq->vdev->priv;
1282 int num_sg;
1283 unsigned hdr_len = vi->hdr_len;
1284 bool can_push;
1285
1286 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
1287
1288 can_push = vi->any_header_sg &&
1289 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1290 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1291 /* Even if we can, don't push here yet as this would skew
1292 * csum_start offset below. */
1293 if (can_push)
1294 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
1295 else
1296 hdr = skb_vnet_hdr(skb);
1297
1298 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
1299 virtio_is_little_endian(vi->vdev), false,
1300 0))
1301 BUG();
1302
1303 if (vi->mergeable_rx_bufs)
1304 hdr->num_buffers = 0;
1305
1306 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
1307 if (can_push) {
1308 __skb_push(skb, hdr_len);
1309 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
1310 if (unlikely(num_sg < 0))
1311 return num_sg;
1312 /* Pull header back to avoid skew in tx bytes calculations. */
1313 __skb_pull(skb, hdr_len);
1314 } else {
1315 sg_set_buf(sq->sg, hdr, hdr_len);
1316 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1317 if (unlikely(num_sg < 0))
1318 return num_sg;
1319 num_sg++;
1320 }
1321 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
1322 }
1323
1324 static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
1325 {
1326 struct virtnet_info *vi = netdev_priv(dev);
1327 int qnum = skb_get_queue_mapping(skb);
1328 struct send_queue *sq = &vi->sq[qnum];
1329 int err;
1330 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1331 bool kick = !skb->xmit_more;
1332 bool use_napi = sq->napi.weight;
1333
1334 /* Free up any pending old buffers before queueing new ones. */
1335 free_old_xmit_skbs(sq);
1336
1337 if (use_napi && kick)
1338 virtqueue_enable_cb_delayed(sq->vq);
1339
1340 /* timestamp packet in software */
1341 skb_tx_timestamp(skb);
1342
1343 /* Try to transmit */
1344 err = xmit_skb(sq, skb);
1345
1346 /* This should not happen! */
1347 if (unlikely(err)) {
1348 dev->stats.tx_fifo_errors++;
1349 if (net_ratelimit())
1350 dev_warn(&dev->dev,
1351 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
1352 dev->stats.tx_dropped++;
1353 dev_kfree_skb_any(skb);
1354 return NETDEV_TX_OK;
1355 }
1356
1357 /* Don't wait up for transmitted skbs to be freed. */
1358 if (!use_napi) {
1359 skb_orphan(skb);
1360 nf_reset(skb);
1361 }
1362
1363 /* If running out of space, stop queue to avoid getting packets that we
1364 * are then unable to transmit.
1365 * An alternative would be to force queuing layer to requeue the skb by
1366 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1367 * returned in a normal path of operation: it means that driver is not
1368 * maintaining the TX queue stop/start state properly, and causes
1369 * the stack to do a non-trivial amount of useless work.
1370 * Since most packets only take 1 or 2 ring slots, stopping the queue
1371 * early means 16 slots are typically wasted.
1372 */
1373 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
1374 netif_stop_subqueue(dev, qnum);
1375 if (!use_napi &&
1376 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
1377 /* More just got used, free them then recheck. */
1378 free_old_xmit_skbs(sq);
1379 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
1380 netif_start_subqueue(dev, qnum);
1381 virtqueue_disable_cb(sq->vq);
1382 }
1383 }
1384 }
1385
1386 if (kick || netif_xmit_stopped(txq))
1387 virtqueue_kick(sq->vq);
1388
1389 return NETDEV_TX_OK;
1390 }
1391
1392 /*
1393 * Send command via the control virtqueue and check status. Commands
1394 * supported by the hypervisor, as indicated by feature bits, should
1395 * never fail unless improperly formatted.
1396 */
1397 static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
1398 struct scatterlist *out)
1399 {
1400 struct scatterlist *sgs[4], hdr, stat;
1401 unsigned out_num = 0, tmp;
1402
1403 /* Caller should know better */
1404 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
1405
1406 vi->ctrl->status = ~0;
1407 vi->ctrl->hdr.class = class;
1408 vi->ctrl->hdr.cmd = cmd;
1409 /* Add header */
1410 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
1411 sgs[out_num++] = &hdr;
1412
1413 if (out)
1414 sgs[out_num++] = out;
1415
1416 /* Add return status. */
1417 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
1418 sgs[out_num] = &stat;
1419
1420 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
1421 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
1422
1423 if (unlikely(!virtqueue_kick(vi->cvq)))
1424 return vi->ctrl->status == VIRTIO_NET_OK;
1425
1426 /* Spin for a response, the kick causes an ioport write, trapping
1427 * into the hypervisor, so the request should be handled immediately.
1428 */
1429 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1430 !virtqueue_is_broken(vi->cvq))
1431 cpu_relax();
1432
1433 return vi->ctrl->status == VIRTIO_NET_OK;
1434 }
1435
1436 static int virtnet_set_mac_address(struct net_device *dev, void *p)
1437 {
1438 struct virtnet_info *vi = netdev_priv(dev);
1439 struct virtio_device *vdev = vi->vdev;
1440 int ret;
1441 struct sockaddr *addr;
1442 struct scatterlist sg;
1443
1444 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
1445 if (!addr)
1446 return -ENOMEM;
1447
1448 ret = eth_prepare_mac_addr_change(dev, addr);
1449 if (ret)
1450 goto out;
1451
1452 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1453 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1454 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
1455 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
1456 dev_warn(&vdev->dev,
1457 "Failed to set mac address by vq command.\n");
1458 ret = -EINVAL;
1459 goto out;
1460 }
1461 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1462 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
1463 unsigned int i;
1464
1465 /* Naturally, this has an atomicity problem. */
1466 for (i = 0; i < dev->addr_len; i++)
1467 virtio_cwrite8(vdev,
1468 offsetof(struct virtio_net_config, mac) +
1469 i, addr->sa_data[i]);
1470 }
1471
1472 eth_commit_mac_addr_change(dev, p);
1473 ret = 0;
1474
1475 out:
1476 kfree(addr);
1477 return ret;
1478 }
1479
1480 static void virtnet_stats(struct net_device *dev,
1481 struct rtnl_link_stats64 *tot)
1482 {
1483 struct virtnet_info *vi = netdev_priv(dev);
1484 int cpu;
1485 unsigned int start;
1486
1487 for_each_possible_cpu(cpu) {
1488 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
1489 u64 tpackets, tbytes, rpackets, rbytes;
1490
1491 do {
1492 start = u64_stats_fetch_begin_irq(&stats->tx_syncp);
1493 tpackets = stats->tx_packets;
1494 tbytes = stats->tx_bytes;
1495 } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start));
1496
1497 do {
1498 start = u64_stats_fetch_begin_irq(&stats->rx_syncp);
1499 rpackets = stats->rx_packets;
1500 rbytes = stats->rx_bytes;
1501 } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start));
1502
1503 tot->rx_packets += rpackets;
1504 tot->tx_packets += tpackets;
1505 tot->rx_bytes += rbytes;
1506 tot->tx_bytes += tbytes;
1507 }
1508
1509 tot->tx_dropped = dev->stats.tx_dropped;
1510 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
1511 tot->rx_dropped = dev->stats.rx_dropped;
1512 tot->rx_length_errors = dev->stats.rx_length_errors;
1513 tot->rx_frame_errors = dev->stats.rx_frame_errors;
1514 }
1515
1516 #ifdef CONFIG_NET_POLL_CONTROLLER
1517 static void virtnet_netpoll(struct net_device *dev)
1518 {
1519 struct virtnet_info *vi = netdev_priv(dev);
1520 int i;
1521
1522 for (i = 0; i < vi->curr_queue_pairs; i++)
1523 napi_schedule(&vi->rq[i].napi);
1524 }
1525 #endif
1526
1527 static void virtnet_ack_link_announce(struct virtnet_info *vi)
1528 {
1529 rtnl_lock();
1530 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
1531 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
1532 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1533 rtnl_unlock();
1534 }
1535
1536 static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1537 {
1538 struct scatterlist sg;
1539 struct net_device *dev = vi->dev;
1540
1541 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1542 return 0;
1543
1544 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1545 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq));
1546
1547 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
1548 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
1549 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1550 queue_pairs);
1551 return -EINVAL;
1552 } else {
1553 vi->curr_queue_pairs = queue_pairs;
1554 /* virtnet_open() will refill when device is going to up. */
1555 if (dev->flags & IFF_UP)
1556 schedule_delayed_work(&vi->refill, 0);
1557 }
1558
1559 return 0;
1560 }
1561
1562 static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1563 {
1564 int err;
1565
1566 rtnl_lock();
1567 err = _virtnet_set_queues(vi, queue_pairs);
1568 rtnl_unlock();
1569 return err;
1570 }
1571
1572 static int virtnet_close(struct net_device *dev)
1573 {
1574 struct virtnet_info *vi = netdev_priv(dev);
1575 int i;
1576
1577 /* Make sure refill_work doesn't re-enable napi! */
1578 cancel_delayed_work_sync(&vi->refill);
1579
1580 for (i = 0; i < vi->max_queue_pairs; i++) {
1581 napi_disable(&vi->rq[i].napi);
1582 virtnet_napi_tx_disable(&vi->sq[i].napi);
1583 }
1584
1585 return 0;
1586 }
1587
1588 static void virtnet_set_rx_mode(struct net_device *dev)
1589 {
1590 struct virtnet_info *vi = netdev_priv(dev);
1591 struct scatterlist sg[2];
1592 struct virtio_net_ctrl_mac *mac_data;
1593 struct netdev_hw_addr *ha;
1594 int uc_count;
1595 int mc_count;
1596 void *buf;
1597 int i;
1598
1599 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
1600 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1601 return;
1602
1603 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0);
1604 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
1605
1606 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc));
1607
1608 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
1609 VIRTIO_NET_CTRL_RX_PROMISC, sg))
1610 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
1611 vi->ctrl->promisc ? "en" : "dis");
1612
1613 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti));
1614
1615 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
1616 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
1617 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
1618 vi->ctrl->allmulti ? "en" : "dis");
1619
1620 uc_count = netdev_uc_count(dev);
1621 mc_count = netdev_mc_count(dev);
1622 /* MAC filter - use one buffer for both lists */
1623 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1624 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1625 mac_data = buf;
1626 if (!buf)
1627 return;
1628
1629 sg_init_table(sg, 2);
1630
1631 /* Store the unicast list and count in the front of the buffer */
1632 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
1633 i = 0;
1634 netdev_for_each_uc_addr(ha, dev)
1635 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
1636
1637 sg_set_buf(&sg[0], mac_data,
1638 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
1639
1640 /* multicast list and count fill the end */
1641 mac_data = (void *)&mac_data->macs[uc_count][0];
1642
1643 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
1644 i = 0;
1645 netdev_for_each_mc_addr(ha, dev)
1646 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
1647
1648 sg_set_buf(&sg[1], mac_data,
1649 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
1650
1651 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
1652 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
1653 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
1654
1655 kfree(buf);
1656 }
1657
1658 static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1659 __be16 proto, u16 vid)
1660 {
1661 struct virtnet_info *vi = netdev_priv(dev);
1662 struct scatterlist sg;
1663
1664 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
1665 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
1666
1667 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
1668 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
1669 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
1670 return 0;
1671 }
1672
1673 static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1674 __be16 proto, u16 vid)
1675 {
1676 struct virtnet_info *vi = netdev_priv(dev);
1677 struct scatterlist sg;
1678
1679 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
1680 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
1681
1682 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
1683 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
1684 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
1685 return 0;
1686 }
1687
1688 static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
1689 {
1690 int i;
1691
1692 if (vi->affinity_hint_set) {
1693 for (i = 0; i < vi->max_queue_pairs; i++) {
1694 virtqueue_set_affinity(vi->rq[i].vq, -1);
1695 virtqueue_set_affinity(vi->sq[i].vq, -1);
1696 }
1697
1698 vi->affinity_hint_set = false;
1699 }
1700 }
1701
1702 static void virtnet_set_affinity(struct virtnet_info *vi)
1703 {
1704 int i;
1705 int cpu;
1706
1707 /* In multiqueue mode, when the number of cpu is equal to the number of
1708 * queue pairs, we let the queue pairs to be private to one cpu by
1709 * setting the affinity hint to eliminate the contention.
1710 */
1711 if (vi->curr_queue_pairs == 1 ||
1712 vi->max_queue_pairs != num_online_cpus()) {
1713 virtnet_clean_affinity(vi, -1);
1714 return;
1715 }
1716
1717 i = 0;
1718 for_each_online_cpu(cpu) {
1719 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1720 virtqueue_set_affinity(vi->sq[i].vq, cpu);
1721 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
1722 i++;
1723 }
1724
1725 vi->affinity_hint_set = true;
1726 }
1727
1728 static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
1729 {
1730 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1731 node);
1732 virtnet_set_affinity(vi);
1733 return 0;
1734 }
1735
1736 static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1737 {
1738 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1739 node_dead);
1740 virtnet_set_affinity(vi);
1741 return 0;
1742 }
1743
1744 static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1745 {
1746 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1747 node);
1748
1749 virtnet_clean_affinity(vi, cpu);
1750 return 0;
1751 }
1752
1753 static enum cpuhp_state virtionet_online;
1754
1755 static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1756 {
1757 int ret;
1758
1759 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1760 if (ret)
1761 return ret;
1762 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1763 &vi->node_dead);
1764 if (!ret)
1765 return ret;
1766 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1767 return ret;
1768 }
1769
1770 static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1771 {
1772 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1773 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1774 &vi->node_dead);
1775 }
1776
1777 static void virtnet_get_ringparam(struct net_device *dev,
1778 struct ethtool_ringparam *ring)
1779 {
1780 struct virtnet_info *vi = netdev_priv(dev);
1781
1782 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1783 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
1784 ring->rx_pending = ring->rx_max_pending;
1785 ring->tx_pending = ring->tx_max_pending;
1786 }
1787
1788
1789 static void virtnet_get_drvinfo(struct net_device *dev,
1790 struct ethtool_drvinfo *info)
1791 {
1792 struct virtnet_info *vi = netdev_priv(dev);
1793 struct virtio_device *vdev = vi->vdev;
1794
1795 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1796 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1797 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1798
1799 }
1800
1801 /* TODO: Eliminate OOO packets during switching */
1802 static int virtnet_set_channels(struct net_device *dev,
1803 struct ethtool_channels *channels)
1804 {
1805 struct virtnet_info *vi = netdev_priv(dev);
1806 u16 queue_pairs = channels->combined_count;
1807 int err;
1808
1809 /* We don't support separate rx/tx channels.
1810 * We don't allow setting 'other' channels.
1811 */
1812 if (channels->rx_count || channels->tx_count || channels->other_count)
1813 return -EINVAL;
1814
1815 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
1816 return -EINVAL;
1817
1818 /* For now we don't support modifying channels while XDP is loaded
1819 * also when XDP is loaded all RX queues have XDP programs so we only
1820 * need to check a single RX queue.
1821 */
1822 if (vi->rq[0].xdp_prog)
1823 return -EINVAL;
1824
1825 get_online_cpus();
1826 err = _virtnet_set_queues(vi, queue_pairs);
1827 if (!err) {
1828 netif_set_real_num_tx_queues(dev, queue_pairs);
1829 netif_set_real_num_rx_queues(dev, queue_pairs);
1830
1831 virtnet_set_affinity(vi);
1832 }
1833 put_online_cpus();
1834
1835 return err;
1836 }
1837
1838 static void virtnet_get_channels(struct net_device *dev,
1839 struct ethtool_channels *channels)
1840 {
1841 struct virtnet_info *vi = netdev_priv(dev);
1842
1843 channels->combined_count = vi->curr_queue_pairs;
1844 channels->max_combined = vi->max_queue_pairs;
1845 channels->max_other = 0;
1846 channels->rx_count = 0;
1847 channels->tx_count = 0;
1848 channels->other_count = 0;
1849 }
1850
1851 /* Check if the user is trying to change anything besides speed/duplex */
1852 static bool
1853 virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
1854 {
1855 struct ethtool_link_ksettings diff1 = *cmd;
1856 struct ethtool_link_ksettings diff2 = {};
1857
1858 /* cmd is always set so we need to clear it, validate the port type
1859 * and also without autonegotiation we can ignore advertising
1860 */
1861 diff1.base.speed = 0;
1862 diff2.base.port = PORT_OTHER;
1863 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
1864 diff1.base.duplex = 0;
1865 diff1.base.cmd = 0;
1866 diff1.base.link_mode_masks_nwords = 0;
1867
1868 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
1869 bitmap_empty(diff1.link_modes.supported,
1870 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1871 bitmap_empty(diff1.link_modes.advertising,
1872 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1873 bitmap_empty(diff1.link_modes.lp_advertising,
1874 __ETHTOOL_LINK_MODE_MASK_NBITS);
1875 }
1876
1877 static int virtnet_set_link_ksettings(struct net_device *dev,
1878 const struct ethtool_link_ksettings *cmd)
1879 {
1880 struct virtnet_info *vi = netdev_priv(dev);
1881 u32 speed;
1882
1883 speed = cmd->base.speed;
1884 /* don't allow custom speed and duplex */
1885 if (!ethtool_validate_speed(speed) ||
1886 !ethtool_validate_duplex(cmd->base.duplex) ||
1887 !virtnet_validate_ethtool_cmd(cmd))
1888 return -EINVAL;
1889 vi->speed = speed;
1890 vi->duplex = cmd->base.duplex;
1891
1892 return 0;
1893 }
1894
1895 static int virtnet_get_link_ksettings(struct net_device *dev,
1896 struct ethtool_link_ksettings *cmd)
1897 {
1898 struct virtnet_info *vi = netdev_priv(dev);
1899
1900 cmd->base.speed = vi->speed;
1901 cmd->base.duplex = vi->duplex;
1902 cmd->base.port = PORT_OTHER;
1903
1904 return 0;
1905 }
1906
1907 static void virtnet_init_settings(struct net_device *dev)
1908 {
1909 struct virtnet_info *vi = netdev_priv(dev);
1910
1911 vi->speed = SPEED_UNKNOWN;
1912 vi->duplex = DUPLEX_UNKNOWN;
1913 }
1914
1915 static const struct ethtool_ops virtnet_ethtool_ops = {
1916 .get_drvinfo = virtnet_get_drvinfo,
1917 .get_link = ethtool_op_get_link,
1918 .get_ringparam = virtnet_get_ringparam,
1919 .set_channels = virtnet_set_channels,
1920 .get_channels = virtnet_get_channels,
1921 .get_ts_info = ethtool_op_get_ts_info,
1922 .get_link_ksettings = virtnet_get_link_ksettings,
1923 .set_link_ksettings = virtnet_set_link_ksettings,
1924 };
1925
1926 static void virtnet_freeze_down(struct virtio_device *vdev)
1927 {
1928 struct virtnet_info *vi = vdev->priv;
1929 int i;
1930
1931 /* Make sure no work handler is accessing the device */
1932 flush_work(&vi->config_work);
1933
1934 netif_device_detach(vi->dev);
1935 netif_tx_disable(vi->dev);
1936 cancel_delayed_work_sync(&vi->refill);
1937
1938 if (netif_running(vi->dev)) {
1939 for (i = 0; i < vi->max_queue_pairs; i++) {
1940 napi_disable(&vi->rq[i].napi);
1941 virtnet_napi_tx_disable(&vi->sq[i].napi);
1942 }
1943 }
1944 }
1945
1946 static int init_vqs(struct virtnet_info *vi);
1947
1948 static int virtnet_restore_up(struct virtio_device *vdev)
1949 {
1950 struct virtnet_info *vi = vdev->priv;
1951 int err, i;
1952
1953 err = init_vqs(vi);
1954 if (err)
1955 return err;
1956
1957 virtio_device_ready(vdev);
1958
1959 if (netif_running(vi->dev)) {
1960 for (i = 0; i < vi->curr_queue_pairs; i++)
1961 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
1962 schedule_delayed_work(&vi->refill, 0);
1963
1964 for (i = 0; i < vi->max_queue_pairs; i++) {
1965 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
1966 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
1967 &vi->sq[i].napi);
1968 }
1969 }
1970
1971 netif_device_attach(vi->dev);
1972 return err;
1973 }
1974
1975 static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
1976 {
1977 struct scatterlist sg;
1978 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads);
1979
1980 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads));
1981
1982 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
1983 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
1984 dev_warn(&vi->dev->dev, "Fail to set guest offload. \n");
1985 return -EINVAL;
1986 }
1987
1988 return 0;
1989 }
1990
1991 static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
1992 {
1993 u64 offloads = 0;
1994
1995 if (!vi->guest_offloads)
1996 return 0;
1997
1998 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
1999 offloads = 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2000
2001 return virtnet_set_guest_offloads(vi, offloads);
2002 }
2003
2004 static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
2005 {
2006 u64 offloads = vi->guest_offloads;
2007
2008 if (!vi->guest_offloads)
2009 return 0;
2010 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2011 offloads |= 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2012
2013 return virtnet_set_guest_offloads(vi, offloads);
2014 }
2015
2016 static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
2017 struct netlink_ext_ack *extack)
2018 {
2019 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2020 struct virtnet_info *vi = netdev_priv(dev);
2021 struct bpf_prog *old_prog;
2022 u16 xdp_qp = 0, curr_qp;
2023 int i, err;
2024
2025 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2026 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2027 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2028 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
2029 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO))) {
2030 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing LRO, disable LRO first");
2031 return -EOPNOTSUPP;
2032 }
2033
2034 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
2035 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
2036 return -EINVAL;
2037 }
2038
2039 if (dev->mtu > max_sz) {
2040 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
2041 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2042 return -EINVAL;
2043 }
2044
2045 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2046 if (prog)
2047 xdp_qp = nr_cpu_ids;
2048
2049 /* XDP requires extra queues for XDP_TX */
2050 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
2051 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
2052 netdev_warn(dev, "request %i queues but max is %i\n",
2053 curr_qp + xdp_qp, vi->max_queue_pairs);
2054 return -ENOMEM;
2055 }
2056
2057 if (prog) {
2058 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
2059 if (IS_ERR(prog))
2060 return PTR_ERR(prog);
2061 }
2062
2063 /* Make sure NAPI is not using any XDP TX queues for RX. */
2064 if (netif_running(dev))
2065 for (i = 0; i < vi->max_queue_pairs; i++)
2066 napi_disable(&vi->rq[i].napi);
2067
2068 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
2069 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2070 if (err)
2071 goto err;
2072 vi->xdp_queue_pairs = xdp_qp;
2073
2074 for (i = 0; i < vi->max_queue_pairs; i++) {
2075 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2076 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
2077 if (i == 0) {
2078 if (!old_prog)
2079 virtnet_clear_guest_offloads(vi);
2080 if (!prog)
2081 virtnet_restore_guest_offloads(vi);
2082 }
2083 if (old_prog)
2084 bpf_prog_put(old_prog);
2085 if (netif_running(dev))
2086 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
2087 }
2088
2089 return 0;
2090
2091 err:
2092 for (i = 0; i < vi->max_queue_pairs; i++)
2093 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
2094 if (prog)
2095 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2096 return err;
2097 }
2098
2099 static u32 virtnet_xdp_query(struct net_device *dev)
2100 {
2101 struct virtnet_info *vi = netdev_priv(dev);
2102 const struct bpf_prog *xdp_prog;
2103 int i;
2104
2105 for (i = 0; i < vi->max_queue_pairs; i++) {
2106 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2107 if (xdp_prog)
2108 return xdp_prog->aux->id;
2109 }
2110 return 0;
2111 }
2112
2113 static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
2114 {
2115 switch (xdp->command) {
2116 case XDP_SETUP_PROG:
2117 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
2118 case XDP_QUERY_PROG:
2119 xdp->prog_id = virtnet_xdp_query(dev);
2120 xdp->prog_attached = !!xdp->prog_id;
2121 return 0;
2122 default:
2123 return -EINVAL;
2124 }
2125 }
2126
2127 static const struct net_device_ops virtnet_netdev = {
2128 .ndo_open = virtnet_open,
2129 .ndo_stop = virtnet_close,
2130 .ndo_start_xmit = start_xmit,
2131 .ndo_validate_addr = eth_validate_addr,
2132 .ndo_set_mac_address = virtnet_set_mac_address,
2133 .ndo_set_rx_mode = virtnet_set_rx_mode,
2134 .ndo_get_stats64 = virtnet_stats,
2135 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2136 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
2137 #ifdef CONFIG_NET_POLL_CONTROLLER
2138 .ndo_poll_controller = virtnet_netpoll,
2139 #endif
2140 .ndo_bpf = virtnet_xdp,
2141 .ndo_xdp_xmit = virtnet_xdp_xmit,
2142 .ndo_xdp_flush = virtnet_xdp_flush,
2143 .ndo_features_check = passthru_features_check,
2144 };
2145
2146 static void virtnet_config_changed_work(struct work_struct *work)
2147 {
2148 struct virtnet_info *vi =
2149 container_of(work, struct virtnet_info, config_work);
2150 u16 v;
2151
2152 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2153 struct virtio_net_config, status, &v) < 0)
2154 return;
2155
2156 if (v & VIRTIO_NET_S_ANNOUNCE) {
2157 netdev_notify_peers(vi->dev);
2158 virtnet_ack_link_announce(vi);
2159 }
2160
2161 /* Ignore unknown (future) status bits */
2162 v &= VIRTIO_NET_S_LINK_UP;
2163
2164 if (vi->status == v)
2165 return;
2166
2167 vi->status = v;
2168
2169 if (vi->status & VIRTIO_NET_S_LINK_UP) {
2170 netif_carrier_on(vi->dev);
2171 netif_tx_wake_all_queues(vi->dev);
2172 } else {
2173 netif_carrier_off(vi->dev);
2174 netif_tx_stop_all_queues(vi->dev);
2175 }
2176 }
2177
2178 static void virtnet_config_changed(struct virtio_device *vdev)
2179 {
2180 struct virtnet_info *vi = vdev->priv;
2181
2182 schedule_work(&vi->config_work);
2183 }
2184
2185 static void virtnet_free_queues(struct virtnet_info *vi)
2186 {
2187 int i;
2188
2189 for (i = 0; i < vi->max_queue_pairs; i++) {
2190 napi_hash_del(&vi->rq[i].napi);
2191 netif_napi_del(&vi->rq[i].napi);
2192 netif_napi_del(&vi->sq[i].napi);
2193 }
2194
2195 /* We called napi_hash_del() before netif_napi_del(),
2196 * we need to respect an RCU grace period before freeing vi->rq
2197 */
2198 synchronize_net();
2199
2200 kfree(vi->rq);
2201 kfree(vi->sq);
2202 kfree(vi->ctrl);
2203 }
2204
2205 static void _free_receive_bufs(struct virtnet_info *vi)
2206 {
2207 struct bpf_prog *old_prog;
2208 int i;
2209
2210 for (i = 0; i < vi->max_queue_pairs; i++) {
2211 while (vi->rq[i].pages)
2212 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
2213
2214 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2215 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2216 if (old_prog)
2217 bpf_prog_put(old_prog);
2218 }
2219 }
2220
2221 static void free_receive_bufs(struct virtnet_info *vi)
2222 {
2223 rtnl_lock();
2224 _free_receive_bufs(vi);
2225 rtnl_unlock();
2226 }
2227
2228 static void free_receive_page_frags(struct virtnet_info *vi)
2229 {
2230 int i;
2231 for (i = 0; i < vi->max_queue_pairs; i++)
2232 if (vi->rq[i].alloc_frag.page)
2233 put_page(vi->rq[i].alloc_frag.page);
2234 }
2235
2236 static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
2237 {
2238 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2239 return false;
2240 else if (q < vi->curr_queue_pairs)
2241 return true;
2242 else
2243 return false;
2244 }
2245
2246 static void free_unused_bufs(struct virtnet_info *vi)
2247 {
2248 void *buf;
2249 int i;
2250
2251 for (i = 0; i < vi->max_queue_pairs; i++) {
2252 struct virtqueue *vq = vi->sq[i].vq;
2253 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
2254 if (!is_xdp_raw_buffer_queue(vi, i))
2255 dev_kfree_skb(buf);
2256 else
2257 put_page(virt_to_head_page(buf));
2258 }
2259 }
2260
2261 for (i = 0; i < vi->max_queue_pairs; i++) {
2262 struct virtqueue *vq = vi->rq[i].vq;
2263
2264 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
2265 if (vi->mergeable_rx_bufs) {
2266 put_page(virt_to_head_page(buf));
2267 } else if (vi->big_packets) {
2268 give_pages(&vi->rq[i], buf);
2269 } else {
2270 put_page(virt_to_head_page(buf));
2271 }
2272 }
2273 }
2274 }
2275
2276 static void virtnet_del_vqs(struct virtnet_info *vi)
2277 {
2278 struct virtio_device *vdev = vi->vdev;
2279
2280 virtnet_clean_affinity(vi, -1);
2281
2282 vdev->config->del_vqs(vdev);
2283
2284 virtnet_free_queues(vi);
2285 }
2286
2287 /* How large should a single buffer be so a queue full of these can fit at
2288 * least one full packet?
2289 * Logic below assumes the mergeable buffer header is used.
2290 */
2291 static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2292 {
2293 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2294 unsigned int rq_size = virtqueue_get_vring_size(vq);
2295 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2296 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2297 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2298
2299 return max(max(min_buf_len, hdr_len) - hdr_len,
2300 (unsigned int)GOOD_PACKET_LEN);
2301 }
2302
2303 static int virtnet_find_vqs(struct virtnet_info *vi)
2304 {
2305 vq_callback_t **callbacks;
2306 struct virtqueue **vqs;
2307 int ret = -ENOMEM;
2308 int i, total_vqs;
2309 const char **names;
2310 bool *ctx;
2311
2312 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2313 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2314 * possible control vq.
2315 */
2316 total_vqs = vi->max_queue_pairs * 2 +
2317 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2318
2319 /* Allocate space for find_vqs parameters */
2320 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
2321 if (!vqs)
2322 goto err_vq;
2323 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
2324 if (!callbacks)
2325 goto err_callback;
2326 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
2327 if (!names)
2328 goto err_names;
2329 if (!vi->big_packets || vi->mergeable_rx_bufs) {
2330 ctx = kzalloc(total_vqs * sizeof(*ctx), GFP_KERNEL);
2331 if (!ctx)
2332 goto err_ctx;
2333 } else {
2334 ctx = NULL;
2335 }
2336
2337 /* Parameters for control virtqueue, if any */
2338 if (vi->has_cvq) {
2339 callbacks[total_vqs - 1] = NULL;
2340 names[total_vqs - 1] = "control";
2341 }
2342
2343 /* Allocate/initialize parameters for send/receive virtqueues */
2344 for (i = 0; i < vi->max_queue_pairs; i++) {
2345 callbacks[rxq2vq(i)] = skb_recv_done;
2346 callbacks[txq2vq(i)] = skb_xmit_done;
2347 sprintf(vi->rq[i].name, "input.%d", i);
2348 sprintf(vi->sq[i].name, "output.%d", i);
2349 names[rxq2vq(i)] = vi->rq[i].name;
2350 names[txq2vq(i)] = vi->sq[i].name;
2351 if (ctx)
2352 ctx[rxq2vq(i)] = true;
2353 }
2354
2355 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
2356 names, ctx, NULL);
2357 if (ret)
2358 goto err_find;
2359
2360 if (vi->has_cvq) {
2361 vi->cvq = vqs[total_vqs - 1];
2362 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
2363 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
2364 }
2365
2366 for (i = 0; i < vi->max_queue_pairs; i++) {
2367 vi->rq[i].vq = vqs[rxq2vq(i)];
2368 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
2369 vi->sq[i].vq = vqs[txq2vq(i)];
2370 }
2371
2372 kfree(names);
2373 kfree(callbacks);
2374 kfree(vqs);
2375 kfree(ctx);
2376
2377 return 0;
2378
2379 err_find:
2380 kfree(ctx);
2381 err_ctx:
2382 kfree(names);
2383 err_names:
2384 kfree(callbacks);
2385 err_callback:
2386 kfree(vqs);
2387 err_vq:
2388 return ret;
2389 }
2390
2391 static int virtnet_alloc_queues(struct virtnet_info *vi)
2392 {
2393 int i;
2394
2395 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
2396 if (!vi->ctrl)
2397 goto err_ctrl;
2398 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
2399 if (!vi->sq)
2400 goto err_sq;
2401 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
2402 if (!vi->rq)
2403 goto err_rq;
2404
2405 INIT_DELAYED_WORK(&vi->refill, refill_work);
2406 for (i = 0; i < vi->max_queue_pairs; i++) {
2407 vi->rq[i].pages = NULL;
2408 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2409 napi_weight);
2410 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2411 napi_tx ? napi_weight : 0);
2412
2413 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
2414 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
2415 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
2416 }
2417
2418 return 0;
2419
2420 err_rq:
2421 kfree(vi->sq);
2422 err_sq:
2423 kfree(vi->ctrl);
2424 err_ctrl:
2425 return -ENOMEM;
2426 }
2427
2428 static int init_vqs(struct virtnet_info *vi)
2429 {
2430 int ret;
2431
2432 /* Allocate send & receive queues */
2433 ret = virtnet_alloc_queues(vi);
2434 if (ret)
2435 goto err;
2436
2437 ret = virtnet_find_vqs(vi);
2438 if (ret)
2439 goto err_free;
2440
2441 get_online_cpus();
2442 virtnet_set_affinity(vi);
2443 put_online_cpus();
2444
2445 return 0;
2446
2447 err_free:
2448 virtnet_free_queues(vi);
2449 err:
2450 return ret;
2451 }
2452
2453 #ifdef CONFIG_SYSFS
2454 static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
2455 char *buf)
2456 {
2457 struct virtnet_info *vi = netdev_priv(queue->dev);
2458 unsigned int queue_index = get_netdev_rx_queue_index(queue);
2459 struct ewma_pkt_len *avg;
2460
2461 BUG_ON(queue_index >= vi->max_queue_pairs);
2462 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
2463 return sprintf(buf, "%u\n",
2464 get_mergeable_buf_len(&vi->rq[queue_index], avg));
2465 }
2466
2467 static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2468 __ATTR_RO(mergeable_rx_buffer_size);
2469
2470 static struct attribute *virtio_net_mrg_rx_attrs[] = {
2471 &mergeable_rx_buffer_size_attribute.attr,
2472 NULL
2473 };
2474
2475 static const struct attribute_group virtio_net_mrg_rx_group = {
2476 .name = "virtio_net",
2477 .attrs = virtio_net_mrg_rx_attrs
2478 };
2479 #endif
2480
2481 static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2482 unsigned int fbit,
2483 const char *fname, const char *dname)
2484 {
2485 if (!virtio_has_feature(vdev, fbit))
2486 return false;
2487
2488 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2489 fname, dname);
2490
2491 return true;
2492 }
2493
2494 #define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2495 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2496
2497 static bool virtnet_validate_features(struct virtio_device *vdev)
2498 {
2499 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2500 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2501 "VIRTIO_NET_F_CTRL_VQ") ||
2502 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2503 "VIRTIO_NET_F_CTRL_VQ") ||
2504 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2505 "VIRTIO_NET_F_CTRL_VQ") ||
2506 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2507 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2508 "VIRTIO_NET_F_CTRL_VQ"))) {
2509 return false;
2510 }
2511
2512 return true;
2513 }
2514
2515 #define MIN_MTU ETH_MIN_MTU
2516 #define MAX_MTU ETH_MAX_MTU
2517
2518 static int virtnet_validate(struct virtio_device *vdev)
2519 {
2520 if (!vdev->config->get) {
2521 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2522 __func__);
2523 return -EINVAL;
2524 }
2525
2526 if (!virtnet_validate_features(vdev))
2527 return -EINVAL;
2528
2529 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2530 int mtu = virtio_cread16(vdev,
2531 offsetof(struct virtio_net_config,
2532 mtu));
2533 if (mtu < MIN_MTU)
2534 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2535 }
2536
2537 return 0;
2538 }
2539
2540 static int virtnet_probe(struct virtio_device *vdev)
2541 {
2542 int i, err;
2543 struct net_device *dev;
2544 struct virtnet_info *vi;
2545 u16 max_queue_pairs;
2546 int mtu;
2547
2548 /* Find if host supports multiqueue virtio_net device */
2549 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2550 struct virtio_net_config,
2551 max_virtqueue_pairs, &max_queue_pairs);
2552
2553 /* We need at least 2 queue's */
2554 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2555 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2556 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2557 max_queue_pairs = 1;
2558
2559 /* Allocate ourselves a network device with room for our info */
2560 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
2561 if (!dev)
2562 return -ENOMEM;
2563
2564 /* Set up network device as normal. */
2565 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
2566 dev->netdev_ops = &virtnet_netdev;
2567 dev->features = NETIF_F_HIGHDMA;
2568
2569 dev->ethtool_ops = &virtnet_ethtool_ops;
2570 SET_NETDEV_DEV(dev, &vdev->dev);
2571
2572 /* Do we support "hardware" checksums? */
2573 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
2574 /* This opens up the world of extra features. */
2575 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
2576 if (csum)
2577 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
2578
2579 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
2580 dev->hw_features |= NETIF_F_TSO
2581 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2582 }
2583 /* Individual feature bits: what can host handle? */
2584 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2585 dev->hw_features |= NETIF_F_TSO;
2586 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2587 dev->hw_features |= NETIF_F_TSO6;
2588 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2589 dev->hw_features |= NETIF_F_TSO_ECN;
2590
2591 dev->features |= NETIF_F_GSO_ROBUST;
2592
2593 if (gso)
2594 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
2595 /* (!csum && gso) case will be fixed by register_netdev() */
2596 }
2597 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2598 dev->features |= NETIF_F_RXCSUM;
2599
2600 dev->vlan_features = dev->features;
2601
2602 /* MTU range: 68 - 65535 */
2603 dev->min_mtu = MIN_MTU;
2604 dev->max_mtu = MAX_MTU;
2605
2606 /* Configuration may specify what MAC to use. Otherwise random. */
2607 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2608 virtio_cread_bytes(vdev,
2609 offsetof(struct virtio_net_config, mac),
2610 dev->dev_addr, dev->addr_len);
2611 else
2612 eth_hw_addr_random(dev);
2613
2614 /* Set up our device-specific information */
2615 vi = netdev_priv(dev);
2616 vi->dev = dev;
2617 vi->vdev = vdev;
2618 vdev->priv = vi;
2619 vi->stats = alloc_percpu(struct virtnet_stats);
2620 err = -ENOMEM;
2621 if (vi->stats == NULL)
2622 goto free;
2623
2624 for_each_possible_cpu(i) {
2625 struct virtnet_stats *virtnet_stats;
2626 virtnet_stats = per_cpu_ptr(vi->stats, i);
2627 u64_stats_init(&virtnet_stats->tx_syncp);
2628 u64_stats_init(&virtnet_stats->rx_syncp);
2629 }
2630
2631 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
2632
2633 /* If we can receive ANY GSO packets, we must allocate large ones. */
2634 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2635 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2636 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2637 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
2638 vi->big_packets = true;
2639
2640 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2641 vi->mergeable_rx_bufs = true;
2642
2643 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2644 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
2645 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2646 else
2647 vi->hdr_len = sizeof(struct virtio_net_hdr);
2648
2649 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2650 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
2651 vi->any_header_sg = true;
2652
2653 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2654 vi->has_cvq = true;
2655
2656 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2657 mtu = virtio_cread16(vdev,
2658 offsetof(struct virtio_net_config,
2659 mtu));
2660 if (mtu < dev->min_mtu) {
2661 /* Should never trigger: MTU was previously validated
2662 * in virtnet_validate.
2663 */
2664 dev_err(&vdev->dev, "device MTU appears to have changed "
2665 "it is now %d < %d", mtu, dev->min_mtu);
2666 goto free_stats;
2667 }
2668
2669 dev->mtu = mtu;
2670 dev->max_mtu = mtu;
2671
2672 /* TODO: size buffers correctly in this case. */
2673 if (dev->mtu > ETH_DATA_LEN)
2674 vi->big_packets = true;
2675 }
2676
2677 if (vi->any_header_sg)
2678 dev->needed_headroom = vi->hdr_len;
2679
2680 /* Enable multiqueue by default */
2681 if (num_online_cpus() >= max_queue_pairs)
2682 vi->curr_queue_pairs = max_queue_pairs;
2683 else
2684 vi->curr_queue_pairs = num_online_cpus();
2685 vi->max_queue_pairs = max_queue_pairs;
2686
2687 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
2688 err = init_vqs(vi);
2689 if (err)
2690 goto free_stats;
2691
2692 #ifdef CONFIG_SYSFS
2693 if (vi->mergeable_rx_bufs)
2694 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2695 #endif
2696 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2697 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
2698
2699 virtnet_init_settings(dev);
2700
2701 err = register_netdev(dev);
2702 if (err) {
2703 pr_debug("virtio_net: registering device failed\n");
2704 goto free_vqs;
2705 }
2706
2707 virtio_device_ready(vdev);
2708
2709 err = virtnet_cpu_notif_add(vi);
2710 if (err) {
2711 pr_debug("virtio_net: registering cpu notifier failed\n");
2712 goto free_unregister_netdev;
2713 }
2714
2715 virtnet_set_queues(vi, vi->curr_queue_pairs);
2716
2717 /* Assume link up if device can't report link status,
2718 otherwise get link status from config. */
2719 netif_carrier_off(dev);
2720 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2721 schedule_work(&vi->config_work);
2722 } else {
2723 vi->status = VIRTIO_NET_S_LINK_UP;
2724 netif_carrier_on(dev);
2725 }
2726
2727 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
2728 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
2729 set_bit(guest_offloads[i], &vi->guest_offloads);
2730
2731 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2732 dev->name, max_queue_pairs);
2733
2734 return 0;
2735
2736 free_unregister_netdev:
2737 vi->vdev->config->reset(vdev);
2738
2739 unregister_netdev(dev);
2740 free_vqs:
2741 cancel_delayed_work_sync(&vi->refill);
2742 free_receive_page_frags(vi);
2743 virtnet_del_vqs(vi);
2744 free_stats:
2745 free_percpu(vi->stats);
2746 free:
2747 free_netdev(dev);
2748 return err;
2749 }
2750
2751 static void remove_vq_common(struct virtnet_info *vi)
2752 {
2753 vi->vdev->config->reset(vi->vdev);
2754
2755 /* Free unused buffers in both send and recv, if any. */
2756 free_unused_bufs(vi);
2757
2758 free_receive_bufs(vi);
2759
2760 free_receive_page_frags(vi);
2761
2762 virtnet_del_vqs(vi);
2763 }
2764
2765 static void virtnet_remove(struct virtio_device *vdev)
2766 {
2767 struct virtnet_info *vi = vdev->priv;
2768
2769 virtnet_cpu_notif_remove(vi);
2770
2771 /* Make sure no work handler is accessing the device. */
2772 flush_work(&vi->config_work);
2773
2774 unregister_netdev(vi->dev);
2775
2776 remove_vq_common(vi);
2777
2778 free_percpu(vi->stats);
2779 free_netdev(vi->dev);
2780 }
2781
2782 static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
2783 {
2784 struct virtnet_info *vi = vdev->priv;
2785
2786 virtnet_cpu_notif_remove(vi);
2787 virtnet_freeze_down(vdev);
2788 remove_vq_common(vi);
2789
2790 return 0;
2791 }
2792
2793 static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
2794 {
2795 struct virtnet_info *vi = vdev->priv;
2796 int err;
2797
2798 err = virtnet_restore_up(vdev);
2799 if (err)
2800 return err;
2801 virtnet_set_queues(vi, vi->curr_queue_pairs);
2802
2803 err = virtnet_cpu_notif_add(vi);
2804 if (err)
2805 return err;
2806
2807 return 0;
2808 }
2809
2810 static struct virtio_device_id id_table[] = {
2811 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2812 { 0 },
2813 };
2814
2815 #define VIRTNET_FEATURES \
2816 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2817 VIRTIO_NET_F_MAC, \
2818 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2819 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2820 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2821 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2822 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2823 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2824 VIRTIO_NET_F_CTRL_MAC_ADDR, \
2825 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS
2826
2827 static unsigned int features[] = {
2828 VIRTNET_FEATURES,
2829 };
2830
2831 static unsigned int features_legacy[] = {
2832 VIRTNET_FEATURES,
2833 VIRTIO_NET_F_GSO,
2834 VIRTIO_F_ANY_LAYOUT,
2835 };
2836
2837 static struct virtio_driver virtio_net_driver = {
2838 .feature_table = features,
2839 .feature_table_size = ARRAY_SIZE(features),
2840 .feature_table_legacy = features_legacy,
2841 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
2842 .driver.name = KBUILD_MODNAME,
2843 .driver.owner = THIS_MODULE,
2844 .id_table = id_table,
2845 .validate = virtnet_validate,
2846 .probe = virtnet_probe,
2847 .remove = virtnet_remove,
2848 .config_changed = virtnet_config_changed,
2849 #ifdef CONFIG_PM_SLEEP
2850 .freeze = virtnet_freeze,
2851 .restore = virtnet_restore,
2852 #endif
2853 };
2854
2855 static __init int virtio_net_driver_init(void)
2856 {
2857 int ret;
2858
2859 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
2860 virtnet_cpu_online,
2861 virtnet_cpu_down_prep);
2862 if (ret < 0)
2863 goto out;
2864 virtionet_online = ret;
2865 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
2866 NULL, virtnet_cpu_dead);
2867 if (ret)
2868 goto err_dead;
2869
2870 ret = register_virtio_driver(&virtio_net_driver);
2871 if (ret)
2872 goto err_virtio;
2873 return 0;
2874 err_virtio:
2875 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2876 err_dead:
2877 cpuhp_remove_multi_state(virtionet_online);
2878 out:
2879 return ret;
2880 }
2881 module_init(virtio_net_driver_init);
2882
2883 static __exit void virtio_net_driver_exit(void)
2884 {
2885 unregister_virtio_driver(&virtio_net_driver);
2886 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2887 cpuhp_remove_multi_state(virtionet_online);
2888 }
2889 module_exit(virtio_net_driver_exit);
2890
2891 MODULE_DEVICE_TABLE(virtio, id_table);
2892 MODULE_DESCRIPTION("Virtio network driver");
2893 MODULE_LICENSE("GPL");