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