]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/net/virtio_net.c
virtio-net: correctly handle XDP_PASS for linearized packets
[mirror_ubuntu-bionic-kernel.git] / drivers / net / virtio_net.c
CommitLineData
48925e37 1/* A network driver using virtio.
296f96fc
RR
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
adf8d3ff 16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
296f96fc
RR
17 */
18//#define DEBUG
19#include <linux/netdevice.h>
20#include <linux/etherdevice.h>
a9ea3fc6 21#include <linux/ethtool.h>
296f96fc
RR
22#include <linux/module.h>
23#include <linux/virtio.h>
24#include <linux/virtio_net.h>
f600b690 25#include <linux/bpf.h>
296f96fc 26#include <linux/scatterlist.h>
e918085a 27#include <linux/if_vlan.h>
5a0e3ad6 28#include <linux/slab.h>
8de4b2f3 29#include <linux/cpu.h>
ab7db917 30#include <linux/average.h>
91815639 31#include <net/busy_poll.h>
296f96fc 32
d34710e3 33static int napi_weight = NAPI_POLL_WEIGHT;
6c0cd7c0
DL
34module_param(napi_weight, int, 0444);
35
eb939922 36static bool csum = true, gso = true;
34a48579
RR
37module_param(csum, bool, 0444);
38module_param(gso, bool, 0444);
39
296f96fc 40/* FIXME: MTU in config. */
5061de36 41#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
3f2c31d9 42#define GOOD_COPY_LEN 128
296f96fc 43
5377d758
JB
44/* RX packet size EWMA. The average packet size is used to determine the packet
45 * buffer size when refilling RX rings. As the entire RX ring may be refilled
46 * at once, the weight is chosen so that the EWMA will be insensitive to short-
47 * term, transient changes in packet size.
ab7db917 48 */
5377d758 49DECLARE_EWMA(pkt_len, 1, 64)
ab7db917
MD
50
51/* Minimum alignment for mergeable packet buffers. */
52#define MERGEABLE_BUFFER_ALIGN max(L1_CACHE_BYTES, 256)
53
66846048 54#define VIRTNET_DRIVER_VERSION "1.0.0"
2a41f71d 55
3fa2a1df 56struct virtnet_stats {
83a27052
ED
57 struct u64_stats_sync tx_syncp;
58 struct u64_stats_sync rx_syncp;
3fa2a1df 59 u64 tx_bytes;
60 u64 tx_packets;
61
62 u64 rx_bytes;
63 u64 rx_packets;
64};
65
e9d7417b
JW
66/* Internal representation of a send virtqueue */
67struct send_queue {
68 /* Virtqueue associated with this send _queue */
69 struct virtqueue *vq;
70
71 /* TX: fragments + linear part + virtio header */
72 struct scatterlist sg[MAX_SKB_FRAGS + 2];
986a4f4d
JW
73
74 /* Name of the send queue: output.$index */
75 char name[40];
e9d7417b
JW
76};
77
78/* Internal representation of a receive virtqueue */
79struct receive_queue {
80 /* Virtqueue associated with this receive_queue */
81 struct virtqueue *vq;
82
296f96fc
RR
83 struct napi_struct napi;
84
f600b690
JF
85 struct bpf_prog __rcu *xdp_prog;
86
e9d7417b
JW
87 /* Chain pages by the private ptr. */
88 struct page *pages;
89
ab7db917 90 /* Average packet length for mergeable receive buffers. */
5377d758 91 struct ewma_pkt_len mrg_avg_pkt_len;
ab7db917 92
fb51879d
MD
93 /* Page frag for packet buffer allocation. */
94 struct page_frag alloc_frag;
95
e9d7417b
JW
96 /* RX: fragments + linear part + virtio header */
97 struct scatterlist sg[MAX_SKB_FRAGS + 2];
986a4f4d
JW
98
99 /* Name of this receive queue: input.$index */
100 char name[40];
e9d7417b
JW
101};
102
103struct virtnet_info {
104 struct virtio_device *vdev;
105 struct virtqueue *cvq;
106 struct net_device *dev;
986a4f4d
JW
107 struct send_queue *sq;
108 struct receive_queue *rq;
e9d7417b
JW
109 unsigned int status;
110
986a4f4d
JW
111 /* Max # of queue pairs supported by the device */
112 u16 max_queue_pairs;
113
114 /* # of queue pairs currently used by the driver */
115 u16 curr_queue_pairs;
116
672aafd5
JF
117 /* # of XDP queue pairs currently used by the driver */
118 u16 xdp_queue_pairs;
119
97402b96
HX
120 /* I like... big packets and I cannot lie! */
121 bool big_packets;
122
3f2c31d9
MM
123 /* Host will merge rx buffers for big packets (shake it! shake it!) */
124 bool mergeable_rx_bufs;
125
986a4f4d
JW
126 /* Has control virtqueue */
127 bool has_cvq;
128
e7428e95
MT
129 /* Host can handle any s/g split between our header and packet data */
130 bool any_header_sg;
131
012873d0
MT
132 /* Packet virtio header size */
133 u8 hdr_len;
134
3fa2a1df 135 /* Active statistics */
136 struct virtnet_stats __percpu *stats;
137
3161e453
RR
138 /* Work struct for refilling if we run low on memory. */
139 struct delayed_work refill;
140
586d17c5
JW
141 /* Work struct for config space updates */
142 struct work_struct config_work;
143
986a4f4d
JW
144 /* Does the affinity hint is set for virtqueues? */
145 bool affinity_hint_set;
47be2479 146
8017c279
SAS
147 /* CPU hotplug instances for online & dead */
148 struct hlist_node node;
149 struct hlist_node node_dead;
2ac46030
MT
150
151 /* Control VQ buffers: protected by the rtnl lock */
152 struct virtio_net_ctrl_hdr ctrl_hdr;
153 virtio_net_ctrl_ack ctrl_status;
a725ee3e 154 struct virtio_net_ctrl_mq ctrl_mq;
2ac46030
MT
155 u8 ctrl_promisc;
156 u8 ctrl_allmulti;
a725ee3e 157 u16 ctrl_vid;
16032be5
NA
158
159 /* Ethtool settings */
160 u8 duplex;
161 u32 speed;
296f96fc
RR
162};
163
9ab86bbc 164struct padded_vnet_hdr {
012873d0 165 struct virtio_net_hdr_mrg_rxbuf hdr;
9ab86bbc 166 /*
012873d0
MT
167 * hdr is in a separate sg buffer, and data sg buffer shares same page
168 * with this header sg. This padding makes next sg 16 byte aligned
169 * after the header.
9ab86bbc 170 */
012873d0 171 char padding[4];
9ab86bbc
SM
172};
173
986a4f4d
JW
174/* Converting between virtqueue no. and kernel tx/rx queue no.
175 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
176 */
177static int vq2txq(struct virtqueue *vq)
178{
9d0ca6ed 179 return (vq->index - 1) / 2;
986a4f4d
JW
180}
181
182static int txq2vq(int txq)
183{
184 return txq * 2 + 1;
185}
186
187static int vq2rxq(struct virtqueue *vq)
188{
9d0ca6ed 189 return vq->index / 2;
986a4f4d
JW
190}
191
192static int rxq2vq(int rxq)
193{
194 return rxq * 2;
195}
196
012873d0 197static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
296f96fc 198{
012873d0 199 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
296f96fc
RR
200}
201
9ab86bbc
SM
202/*
203 * private is used to chain pages for big packets, put the whole
204 * most recent used list in the beginning for reuse
205 */
e9d7417b 206static void give_pages(struct receive_queue *rq, struct page *page)
0a888fd1 207{
9ab86bbc 208 struct page *end;
0a888fd1 209
e9d7417b 210 /* Find end of list, sew whole thing into vi->rq.pages. */
9ab86bbc 211 for (end = page; end->private; end = (struct page *)end->private);
e9d7417b
JW
212 end->private = (unsigned long)rq->pages;
213 rq->pages = page;
0a888fd1
MM
214}
215
e9d7417b 216static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
fb6813f4 217{
e9d7417b 218 struct page *p = rq->pages;
fb6813f4 219
9ab86bbc 220 if (p) {
e9d7417b 221 rq->pages = (struct page *)p->private;
9ab86bbc
SM
222 /* clear private here, it is used to chain pages */
223 p->private = 0;
224 } else
fb6813f4
RR
225 p = alloc_page(gfp_mask);
226 return p;
227}
228
e9d7417b 229static void skb_xmit_done(struct virtqueue *vq)
296f96fc 230{
e9d7417b 231 struct virtnet_info *vi = vq->vdev->priv;
296f96fc 232
2cb9c6ba 233 /* Suppress further interrupts. */
e9d7417b 234 virtqueue_disable_cb(vq);
11a3a154 235
363f1514 236 /* We were probably waiting for more output buffers. */
986a4f4d 237 netif_wake_subqueue(vi->dev, vq2txq(vq));
296f96fc
RR
238}
239
ab7db917
MD
240static unsigned int mergeable_ctx_to_buf_truesize(unsigned long mrg_ctx)
241{
242 unsigned int truesize = mrg_ctx & (MERGEABLE_BUFFER_ALIGN - 1);
243 return (truesize + 1) * MERGEABLE_BUFFER_ALIGN;
244}
245
246static void *mergeable_ctx_to_buf_address(unsigned long mrg_ctx)
247{
248 return (void *)(mrg_ctx & -MERGEABLE_BUFFER_ALIGN);
249
250}
251
252static unsigned long mergeable_buf_to_ctx(void *buf, unsigned int truesize)
253{
254 unsigned int size = truesize / MERGEABLE_BUFFER_ALIGN;
255 return (unsigned long)buf | (size - 1);
256}
257
3464645a 258/* Called from bottom half context */
946fa564
MT
259static struct sk_buff *page_to_skb(struct virtnet_info *vi,
260 struct receive_queue *rq,
2613af0e
MD
261 struct page *page, unsigned int offset,
262 unsigned int len, unsigned int truesize)
9ab86bbc
SM
263{
264 struct sk_buff *skb;
012873d0 265 struct virtio_net_hdr_mrg_rxbuf *hdr;
2613af0e 266 unsigned int copy, hdr_len, hdr_padded_len;
9ab86bbc 267 char *p;
fb6813f4 268
2613af0e 269 p = page_address(page) + offset;
3f2c31d9 270
9ab86bbc 271 /* copy small packet so we can reuse these pages for small data */
c67f5db8 272 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
9ab86bbc
SM
273 if (unlikely(!skb))
274 return NULL;
3f2c31d9 275
9ab86bbc 276 hdr = skb_vnet_hdr(skb);
3f2c31d9 277
012873d0
MT
278 hdr_len = vi->hdr_len;
279 if (vi->mergeable_rx_bufs)
280 hdr_padded_len = sizeof *hdr;
281 else
2613af0e 282 hdr_padded_len = sizeof(struct padded_vnet_hdr);
3f2c31d9 283
9ab86bbc 284 memcpy(hdr, p, hdr_len);
3f2c31d9 285
9ab86bbc 286 len -= hdr_len;
2613af0e
MD
287 offset += hdr_padded_len;
288 p += hdr_padded_len;
3f2c31d9 289
9ab86bbc
SM
290 copy = len;
291 if (copy > skb_tailroom(skb))
292 copy = skb_tailroom(skb);
293 memcpy(skb_put(skb, copy), p, copy);
3f2c31d9 294
9ab86bbc
SM
295 len -= copy;
296 offset += copy;
3f2c31d9 297
2613af0e
MD
298 if (vi->mergeable_rx_bufs) {
299 if (len)
300 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
301 else
302 put_page(page);
303 return skb;
304 }
305
e878d78b
SL
306 /*
307 * Verify that we can indeed put this data into a skb.
308 * This is here to handle cases when the device erroneously
309 * tries to receive more than is possible. This is usually
310 * the case of a broken device.
311 */
312 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
be443899 313 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
e878d78b
SL
314 dev_kfree_skb(skb);
315 return NULL;
316 }
2613af0e 317 BUG_ON(offset >= PAGE_SIZE);
9ab86bbc 318 while (len) {
2613af0e
MD
319 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
320 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
321 frag_size, truesize);
322 len -= frag_size;
9ab86bbc
SM
323 page = (struct page *)page->private;
324 offset = 0;
325 }
3f2c31d9 326
9ab86bbc 327 if (page)
e9d7417b 328 give_pages(rq, page);
3f2c31d9 329
9ab86bbc
SM
330 return skb;
331}
3f2c31d9 332
56434a01
JF
333static void virtnet_xdp_xmit(struct virtnet_info *vi,
334 struct receive_queue *rq,
335 struct send_queue *sq,
336 struct xdp_buff *xdp)
337{
338 struct page *page = virt_to_head_page(xdp->data);
339 struct virtio_net_hdr_mrg_rxbuf *hdr;
340 unsigned int num_sg, len;
341 void *xdp_sent;
342 int err;
343
344 /* Free up any pending old buffers before queueing new ones. */
345 while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) {
346 struct page *sent_page = virt_to_head_page(xdp_sent);
347
348 if (vi->mergeable_rx_bufs)
349 put_page(sent_page);
350 else
351 give_pages(rq, sent_page);
352 }
353
354 /* Zero header and leave csum up to XDP layers */
355 hdr = xdp->data;
356 memset(hdr, 0, vi->hdr_len);
357
358 num_sg = 1;
359 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
360 err = virtqueue_add_outbuf(sq->vq, sq->sg, num_sg,
361 xdp->data, GFP_ATOMIC);
362 if (unlikely(err)) {
363 if (vi->mergeable_rx_bufs)
364 put_page(page);
365 else
366 give_pages(rq, page);
367 return; // On error abort to avoid unnecessary kick
368 } else if (!vi->mergeable_rx_bufs) {
369 /* If not mergeable bufs must be big packets so cleanup pages */
370 give_pages(rq, (struct page *)page->private);
371 page->private = 0;
372 }
373
374 virtqueue_kick(sq->vq);
375}
376
f600b690 377static u32 do_xdp_prog(struct virtnet_info *vi,
56434a01 378 struct receive_queue *rq,
f600b690
JF
379 struct bpf_prog *xdp_prog,
380 struct page *page, int offset, int len)
381{
382 int hdr_padded_len;
383 struct xdp_buff xdp;
56434a01 384 unsigned int qp;
f600b690
JF
385 u32 act;
386 u8 *buf;
387
388 buf = page_address(page) + offset;
389
390 if (vi->mergeable_rx_bufs)
391 hdr_padded_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
392 else
393 hdr_padded_len = sizeof(struct padded_vnet_hdr);
394
395 xdp.data = buf + hdr_padded_len;
396 xdp.data_end = xdp.data + (len - vi->hdr_len);
397
398 act = bpf_prog_run_xdp(xdp_prog, &xdp);
399 switch (act) {
400 case XDP_PASS:
401 return XDP_PASS;
56434a01
JF
402 case XDP_TX:
403 qp = vi->curr_queue_pairs -
404 vi->xdp_queue_pairs +
405 smp_processor_id();
406 xdp.data = buf + (vi->mergeable_rx_bufs ? 0 : 4);
407 virtnet_xdp_xmit(vi, rq, &vi->sq[qp], &xdp);
408 return XDP_TX;
f600b690
JF
409 default:
410 bpf_warn_invalid_xdp_action(act);
f600b690
JF
411 case XDP_ABORTED:
412 case XDP_DROP:
413 return XDP_DROP;
414 }
415}
416
012873d0 417static struct sk_buff *receive_small(struct virtnet_info *vi, void *buf, unsigned int len)
f121159d
MT
418{
419 struct sk_buff * skb = buf;
420
012873d0 421 len -= vi->hdr_len;
f121159d
MT
422 skb_trim(skb, len);
423
424 return skb;
425}
426
427static struct sk_buff *receive_big(struct net_device *dev,
946fa564 428 struct virtnet_info *vi,
f121159d
MT
429 struct receive_queue *rq,
430 void *buf,
431 unsigned int len)
432{
f600b690 433 struct bpf_prog *xdp_prog;
f121159d 434 struct page *page = buf;
f600b690 435 struct sk_buff *skb;
f121159d 436
f600b690
JF
437 rcu_read_lock();
438 xdp_prog = rcu_dereference(rq->xdp_prog);
439 if (xdp_prog) {
440 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
441 u32 act;
442
443 if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags))
444 goto err_xdp;
56434a01
JF
445 act = do_xdp_prog(vi, rq, xdp_prog, page, 0, len);
446 switch (act) {
447 case XDP_PASS:
448 break;
449 case XDP_TX:
450 rcu_read_unlock();
451 goto xdp_xmit;
452 case XDP_DROP:
453 default:
f600b690 454 goto err_xdp;
56434a01 455 }
f600b690
JF
456 }
457 rcu_read_unlock();
458
459 skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
f121159d
MT
460 if (unlikely(!skb))
461 goto err;
462
463 return skb;
464
f600b690
JF
465err_xdp:
466 rcu_read_unlock();
f121159d
MT
467err:
468 dev->stats.rx_dropped++;
469 give_pages(rq, page);
56434a01 470xdp_xmit:
f121159d
MT
471 return NULL;
472}
473
72979a6c
JF
474/* The conditions to enable XDP should preclude the underlying device from
475 * sending packets across multiple buffers (num_buf > 1). However per spec
476 * it does not appear to be illegal to do so but rather just against convention.
477 * So in order to avoid making a system unresponsive the packets are pushed
478 * into a page and the XDP program is run. This will be extremely slow and we
479 * push a warning to the user to fix this as soon as possible. Fixing this may
480 * require resolving the underlying hardware to determine why multiple buffers
481 * are being received or simply loading the XDP program in the ingress stack
482 * after the skb is built because there is no advantage to running it here
483 * anymore.
484 */
485static struct page *xdp_linearize_page(struct receive_queue *rq,
56a86f84 486 u16 *num_buf,
72979a6c
JF
487 struct page *p,
488 int offset,
489 unsigned int *len)
490{
491 struct page *page = alloc_page(GFP_ATOMIC);
492 unsigned int page_off = 0;
493
494 if (!page)
495 return NULL;
496
497 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
498 page_off += *len;
499
56a86f84 500 while (--*num_buf) {
72979a6c
JF
501 unsigned int buflen;
502 unsigned long ctx;
503 void *buf;
504 int off;
505
506 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &buflen);
507 if (unlikely(!ctx))
508 goto err_buf;
509
56a86f84
JW
510 buf = mergeable_ctx_to_buf_address(ctx);
511 p = virt_to_head_page(buf);
512 off = buf - page_address(p);
513
72979a6c
JF
514 /* guard against a misconfigured or uncooperative backend that
515 * is sending packet larger than the MTU.
516 */
56a86f84
JW
517 if ((page_off + buflen) > PAGE_SIZE) {
518 put_page(p);
72979a6c 519 goto err_buf;
56a86f84 520 }
72979a6c
JF
521
522 memcpy(page_address(page) + page_off,
523 page_address(p) + off, buflen);
524 page_off += buflen;
56a86f84 525 put_page(p);
72979a6c
JF
526 }
527
528 *len = page_off;
529 return page;
530err_buf:
531 __free_pages(page, 0);
532 return NULL;
533}
534
8fc3b9e9 535static struct sk_buff *receive_mergeable(struct net_device *dev,
fdd819b2 536 struct virtnet_info *vi,
8fc3b9e9 537 struct receive_queue *rq,
ab7db917 538 unsigned long ctx,
8fc3b9e9 539 unsigned int len)
9ab86bbc 540{
ab7db917 541 void *buf = mergeable_ctx_to_buf_address(ctx);
012873d0
MT
542 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
543 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
8fc3b9e9
MT
544 struct page *page = virt_to_head_page(buf);
545 int offset = buf - page_address(page);
f600b690
JF
546 struct sk_buff *head_skb, *curr_skb;
547 struct bpf_prog *xdp_prog;
548 unsigned int truesize;
549
56434a01
JF
550 head_skb = NULL;
551
f600b690
JF
552 rcu_read_lock();
553 xdp_prog = rcu_dereference(rq->xdp_prog);
554 if (xdp_prog) {
72979a6c 555 struct page *xdp_page;
f600b690
JF
556 u32 act;
557
73b62bd0 558 /* This happens when rx buffer size is underestimated */
f600b690 559 if (unlikely(num_buf > 1)) {
72979a6c 560 /* linearize data for XDP */
56a86f84 561 xdp_page = xdp_linearize_page(rq, &num_buf,
72979a6c
JF
562 page, offset, &len);
563 if (!xdp_page)
564 goto err_xdp;
565 offset = 0;
566 } else {
567 xdp_page = page;
f600b690
JF
568 }
569
570 /* Transient failure which in theory could occur if
571 * in-flight packets from before XDP was enabled reach
572 * the receive path after XDP is loaded. In practice I
573 * was not able to create this condition.
574 */
575 if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags))
576 goto err_xdp;
577
275be061 578 act = do_xdp_prog(vi, rq, xdp_prog, xdp_page, offset, len);
56434a01
JF
579 switch (act) {
580 case XDP_PASS:
1830f893
JW
581 /* We can only create skb based on xdp_page. */
582 if (unlikely(xdp_page != page)) {
583 rcu_read_unlock();
584 put_page(page);
585 head_skb = page_to_skb(vi, rq, xdp_page,
586 0, len, PAGE_SIZE);
587 return head_skb;
588 }
56434a01
JF
589 break;
590 case XDP_TX:
72979a6c
JF
591 if (unlikely(xdp_page != page))
592 goto err_xdp;
56434a01
JF
593 rcu_read_unlock();
594 goto xdp_xmit;
595 case XDP_DROP:
596 default:
72979a6c
JF
597 if (unlikely(xdp_page != page))
598 __free_pages(xdp_page, 0);
f600b690 599 goto err_xdp;
56434a01 600 }
f600b690
JF
601 }
602 rcu_read_unlock();
ab7db917 603
f600b690
JF
604 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
605 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
606 curr_skb = head_skb;
9ab86bbc 607
8fc3b9e9
MT
608 if (unlikely(!curr_skb))
609 goto err_skb;
9ab86bbc 610 while (--num_buf) {
8fc3b9e9
MT
611 int num_skb_frags;
612
ab7db917
MD
613 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
614 if (unlikely(!ctx)) {
8fc3b9e9 615 pr_debug("%s: rx error: %d buffers out of %d missing\n",
fdd819b2 616 dev->name, num_buf,
012873d0
MT
617 virtio16_to_cpu(vi->vdev,
618 hdr->num_buffers));
8fc3b9e9
MT
619 dev->stats.rx_length_errors++;
620 goto err_buf;
3f2c31d9 621 }
8fc3b9e9 622
ab7db917 623 buf = mergeable_ctx_to_buf_address(ctx);
8fc3b9e9 624 page = virt_to_head_page(buf);
8fc3b9e9
MT
625
626 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
2613af0e
MD
627 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
628 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
8fc3b9e9
MT
629
630 if (unlikely(!nskb))
631 goto err_skb;
2613af0e
MD
632 if (curr_skb == head_skb)
633 skb_shinfo(curr_skb)->frag_list = nskb;
634 else
635 curr_skb->next = nskb;
636 curr_skb = nskb;
637 head_skb->truesize += nskb->truesize;
638 num_skb_frags = 0;
639 }
ab7db917 640 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
2613af0e
MD
641 if (curr_skb != head_skb) {
642 head_skb->data_len += len;
643 head_skb->len += len;
fb51879d 644 head_skb->truesize += truesize;
2613af0e 645 }
8fc3b9e9 646 offset = buf - page_address(page);
ba275241
JW
647 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
648 put_page(page);
649 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
fb51879d 650 len, truesize);
ba275241
JW
651 } else {
652 skb_add_rx_frag(curr_skb, num_skb_frags, page,
fb51879d 653 offset, len, truesize);
ba275241 654 }
8fc3b9e9
MT
655 }
656
5377d758 657 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
8fc3b9e9
MT
658 return head_skb;
659
f600b690
JF
660err_xdp:
661 rcu_read_unlock();
8fc3b9e9
MT
662err_skb:
663 put_page(page);
664 while (--num_buf) {
ab7db917
MD
665 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
666 if (unlikely(!ctx)) {
8fc3b9e9
MT
667 pr_debug("%s: rx error: %d buffers missing\n",
668 dev->name, num_buf);
669 dev->stats.rx_length_errors++;
670 break;
671 }
ab7db917 672 page = virt_to_head_page(mergeable_ctx_to_buf_address(ctx));
8fc3b9e9 673 put_page(page);
9ab86bbc 674 }
8fc3b9e9
MT
675err_buf:
676 dev->stats.rx_dropped++;
677 dev_kfree_skb(head_skb);
56434a01 678xdp_xmit:
8fc3b9e9 679 return NULL;
9ab86bbc
SM
680}
681
946fa564
MT
682static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
683 void *buf, unsigned int len)
9ab86bbc 684{
e9d7417b 685 struct net_device *dev = vi->dev;
58472a76 686 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
9ab86bbc 687 struct sk_buff *skb;
012873d0 688 struct virtio_net_hdr_mrg_rxbuf *hdr;
3f2c31d9 689
bcff3162 690 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
9ab86bbc
SM
691 pr_debug("%s: short packet %i\n", dev->name, len);
692 dev->stats.rx_length_errors++;
ab7db917
MD
693 if (vi->mergeable_rx_bufs) {
694 unsigned long ctx = (unsigned long)buf;
695 void *base = mergeable_ctx_to_buf_address(ctx);
696 put_page(virt_to_head_page(base));
697 } else if (vi->big_packets) {
98bfd23c 698 give_pages(rq, buf);
ab7db917 699 } else {
9ab86bbc 700 dev_kfree_skb(buf);
ab7db917 701 }
9ab86bbc
SM
702 return;
703 }
3f2c31d9 704
f121159d 705 if (vi->mergeable_rx_bufs)
fdd819b2 706 skb = receive_mergeable(dev, vi, rq, (unsigned long)buf, len);
f121159d 707 else if (vi->big_packets)
946fa564 708 skb = receive_big(dev, vi, rq, buf, len);
f121159d 709 else
012873d0 710 skb = receive_small(vi, buf, len);
f121159d
MT
711
712 if (unlikely(!skb))
713 return;
3f2c31d9 714
9ab86bbc 715 hdr = skb_vnet_hdr(skb);
3fa2a1df 716
83a27052 717 u64_stats_update_begin(&stats->rx_syncp);
3fa2a1df 718 stats->rx_bytes += skb->len;
719 stats->rx_packets++;
83a27052 720 u64_stats_update_end(&stats->rx_syncp);
296f96fc 721
e858fae2 722 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
10a8d94a 723 skb->ip_summed = CHECKSUM_UNNECESSARY;
296f96fc 724
e858fae2
MR
725 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
726 virtio_is_little_endian(vi->vdev))) {
727 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
728 dev->name, hdr->hdr.gso_type,
729 hdr->hdr.gso_size);
730 goto frame_err;
296f96fc
RR
731 }
732
d1dc06dc
MR
733 skb->protocol = eth_type_trans(skb, dev);
734 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
735 ntohs(skb->protocol), skb->len, skb->pkt_type);
736
0fbd050a 737 napi_gro_receive(&rq->napi, skb);
296f96fc
RR
738 return;
739
740frame_err:
741 dev->stats.rx_frame_errors++;
296f96fc
RR
742 dev_kfree_skb(skb);
743}
744
946fa564
MT
745static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
746 gfp_t gfp)
296f96fc
RR
747{
748 struct sk_buff *skb;
012873d0 749 struct virtio_net_hdr_mrg_rxbuf *hdr;
9ab86bbc 750 int err;
3f2c31d9 751
5061de36 752 skb = __netdev_alloc_skb_ip_align(vi->dev, GOOD_PACKET_LEN, gfp);
9ab86bbc
SM
753 if (unlikely(!skb))
754 return -ENOMEM;
296f96fc 755
5061de36 756 skb_put(skb, GOOD_PACKET_LEN);
3f2c31d9 757
9ab86bbc 758 hdr = skb_vnet_hdr(skb);
547c890c 759 sg_init_table(rq->sg, 2);
012873d0 760 sg_set_buf(rq->sg, hdr, vi->hdr_len);
e9d7417b 761 skb_to_sgvec(skb, rq->sg + 1, 0, skb->len);
97402b96 762
9dc7b9e4 763 err = virtqueue_add_inbuf(rq->vq, rq->sg, 2, skb, gfp);
9ab86bbc
SM
764 if (err < 0)
765 dev_kfree_skb(skb);
97402b96 766
9ab86bbc
SM
767 return err;
768}
97402b96 769
012873d0
MT
770static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
771 gfp_t gfp)
9ab86bbc 772{
9ab86bbc
SM
773 struct page *first, *list = NULL;
774 char *p;
775 int i, err, offset;
776
a5835440
RR
777 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
778
e9d7417b 779 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
9ab86bbc 780 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
e9d7417b 781 first = get_a_page(rq, gfp);
9ab86bbc
SM
782 if (!first) {
783 if (list)
e9d7417b 784 give_pages(rq, list);
9ab86bbc 785 return -ENOMEM;
97402b96 786 }
e9d7417b 787 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
97402b96 788
9ab86bbc
SM
789 /* chain new page in list head to match sg */
790 first->private = (unsigned long)list;
791 list = first;
792 }
296f96fc 793
e9d7417b 794 first = get_a_page(rq, gfp);
9ab86bbc 795 if (!first) {
e9d7417b 796 give_pages(rq, list);
9ab86bbc
SM
797 return -ENOMEM;
798 }
799 p = page_address(first);
800
e9d7417b 801 /* rq->sg[0], rq->sg[1] share the same page */
012873d0
MT
802 /* a separated rq->sg[0] for header - required in case !any_header_sg */
803 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
9ab86bbc 804
e9d7417b 805 /* rq->sg[1] for data packet, from offset */
9ab86bbc 806 offset = sizeof(struct padded_vnet_hdr);
e9d7417b 807 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
9ab86bbc
SM
808
809 /* chain first in list head */
810 first->private = (unsigned long)list;
9dc7b9e4
RR
811 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
812 first, gfp);
9ab86bbc 813 if (err < 0)
e9d7417b 814 give_pages(rq, first);
9ab86bbc
SM
815
816 return err;
296f96fc
RR
817}
818
5377d758 819static unsigned int get_mergeable_buf_len(struct ewma_pkt_len *avg_pkt_len)
3f2c31d9 820{
ab7db917 821 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
fbf28d78
MD
822 unsigned int len;
823
5377d758 824 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
fbf28d78
MD
825 GOOD_PACKET_LEN, PAGE_SIZE - hdr_len);
826 return ALIGN(len, MERGEABLE_BUFFER_ALIGN);
827}
828
829static int add_recvbuf_mergeable(struct receive_queue *rq, gfp_t gfp)
830{
fb51879d
MD
831 struct page_frag *alloc_frag = &rq->alloc_frag;
832 char *buf;
ab7db917 833 unsigned long ctx;
3f2c31d9 834 int err;
fb51879d 835 unsigned int len, hole;
3f2c31d9 836
fbf28d78 837 len = get_mergeable_buf_len(&rq->mrg_avg_pkt_len);
ab7db917 838 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
9ab86bbc 839 return -ENOMEM;
ab7db917 840
fb51879d 841 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
ab7db917 842 ctx = mergeable_buf_to_ctx(buf, len);
fb51879d 843 get_page(alloc_frag->page);
fb51879d
MD
844 alloc_frag->offset += len;
845 hole = alloc_frag->size - alloc_frag->offset;
ab7db917
MD
846 if (hole < len) {
847 /* To avoid internal fragmentation, if there is very likely not
848 * enough space for another buffer, add the remaining space to
849 * the current buffer. This extra space is not included in
850 * the truesize stored in ctx.
851 */
fb51879d
MD
852 len += hole;
853 alloc_frag->offset += hole;
854 }
3f2c31d9 855
fb51879d 856 sg_init_one(rq->sg, buf, len);
ab7db917 857 err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, (void *)ctx, gfp);
9ab86bbc 858 if (err < 0)
2613af0e 859 put_page(virt_to_head_page(buf));
3f2c31d9 860
9ab86bbc
SM
861 return err;
862}
3f2c31d9 863
b2baed69
RR
864/*
865 * Returns false if we couldn't fill entirely (OOM).
866 *
867 * Normally run in the receive path, but can also be run from ndo_open
868 * before we're receiving packets, or from refill_work which is
869 * careful to disable receiving (using napi_disable).
870 */
946fa564
MT
871static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
872 gfp_t gfp)
9ab86bbc
SM
873{
874 int err;
1788f495 875 bool oom;
3f2c31d9 876
fb51879d 877 gfp |= __GFP_COLD;
9ab86bbc
SM
878 do {
879 if (vi->mergeable_rx_bufs)
e9d7417b 880 err = add_recvbuf_mergeable(rq, gfp);
9ab86bbc 881 else if (vi->big_packets)
012873d0 882 err = add_recvbuf_big(vi, rq, gfp);
9ab86bbc 883 else
946fa564 884 err = add_recvbuf_small(vi, rq, gfp);
3f2c31d9 885
1788f495 886 oom = err == -ENOMEM;
9ed4cb07 887 if (err)
3f2c31d9 888 break;
b7dfde95 889 } while (rq->vq->num_free);
681daee2 890 virtqueue_kick(rq->vq);
3161e453 891 return !oom;
3f2c31d9
MM
892}
893
18445c4d 894static void skb_recv_done(struct virtqueue *rvq)
296f96fc
RR
895{
896 struct virtnet_info *vi = rvq->vdev->priv;
986a4f4d 897 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
e9d7417b 898
18445c4d 899 /* Schedule NAPI, Suppress further interrupts if successful. */
e9d7417b 900 if (napi_schedule_prep(&rq->napi)) {
1915a712 901 virtqueue_disable_cb(rvq);
e9d7417b 902 __napi_schedule(&rq->napi);
18445c4d 903 }
296f96fc
RR
904}
905
e9d7417b 906static void virtnet_napi_enable(struct receive_queue *rq)
3e9d08ec 907{
e9d7417b 908 napi_enable(&rq->napi);
3e9d08ec
BR
909
910 /* If all buffers were filled by other side before we napi_enabled, we
911 * won't get another interrupt, so process any outstanding packets
912 * now. virtnet_poll wants re-enable the queue, so we disable here.
913 * We synchronize against interrupts via NAPI_STATE_SCHED */
e9d7417b
JW
914 if (napi_schedule_prep(&rq->napi)) {
915 virtqueue_disable_cb(rq->vq);
ec13ee80 916 local_bh_disable();
e9d7417b 917 __napi_schedule(&rq->napi);
ec13ee80 918 local_bh_enable();
3e9d08ec
BR
919 }
920}
921
3161e453
RR
922static void refill_work(struct work_struct *work)
923{
e9d7417b
JW
924 struct virtnet_info *vi =
925 container_of(work, struct virtnet_info, refill.work);
3161e453 926 bool still_empty;
986a4f4d
JW
927 int i;
928
55257d72 929 for (i = 0; i < vi->curr_queue_pairs; i++) {
986a4f4d 930 struct receive_queue *rq = &vi->rq[i];
3161e453 931
986a4f4d 932 napi_disable(&rq->napi);
946fa564 933 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
986a4f4d 934 virtnet_napi_enable(rq);
3161e453 935
986a4f4d
JW
936 /* In theory, this can happen: if we don't get any buffers in
937 * we will *never* try to fill again.
938 */
939 if (still_empty)
940 schedule_delayed_work(&vi->refill, HZ/2);
941 }
3161e453
RR
942}
943
2ffa7598 944static int virtnet_receive(struct receive_queue *rq, int budget)
296f96fc 945{
e9d7417b 946 struct virtnet_info *vi = rq->vq->vdev->priv;
2ffa7598 947 unsigned int len, received = 0;
9ab86bbc 948 void *buf;
296f96fc 949
296f96fc 950 while (received < budget &&
e9d7417b 951 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
946fa564 952 receive_buf(vi, rq, buf, len);
296f96fc
RR
953 received++;
954 }
955
be121f46 956 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
946fa564 957 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
3b07e9ca 958 schedule_delayed_work(&vi->refill, 0);
3161e453 959 }
296f96fc 960
2ffa7598
JW
961 return received;
962}
963
964static int virtnet_poll(struct napi_struct *napi, int budget)
965{
966 struct receive_queue *rq =
967 container_of(napi, struct receive_queue, napi);
faadb05f 968 unsigned int r, received;
2ffa7598 969
faadb05f 970 received = virtnet_receive(rq, budget);
2ffa7598 971
8329d98e
RR
972 /* Out of packets? */
973 if (received < budget) {
cbdadbbf 974 r = virtqueue_enable_cb_prepare(rq->vq);
0fbd050a 975 napi_complete_done(napi, received);
cbdadbbf 976 if (unlikely(virtqueue_poll(rq->vq, r)) &&
8e95a202 977 napi_schedule_prep(napi)) {
e9d7417b 978 virtqueue_disable_cb(rq->vq);
288379f0 979 __napi_schedule(napi);
4265f161 980 }
296f96fc
RR
981 }
982
983 return received;
984}
985
91815639
JW
986#ifdef CONFIG_NET_RX_BUSY_POLL
987/* must be called with local_bh_disable()d */
988static int virtnet_busy_poll(struct napi_struct *napi)
989{
990 struct receive_queue *rq =
991 container_of(napi, struct receive_queue, napi);
992 struct virtnet_info *vi = rq->vq->vdev->priv;
993 int r, received = 0, budget = 4;
994
995 if (!(vi->status & VIRTIO_NET_S_LINK_UP))
996 return LL_FLUSH_FAILED;
997
998 if (!napi_schedule_prep(napi))
999 return LL_FLUSH_BUSY;
1000
1001 virtqueue_disable_cb(rq->vq);
1002
1003again:
1004 received += virtnet_receive(rq, budget);
1005
1006 r = virtqueue_enable_cb_prepare(rq->vq);
1007 clear_bit(NAPI_STATE_SCHED, &napi->state);
1008 if (unlikely(virtqueue_poll(rq->vq, r)) &&
1009 napi_schedule_prep(napi)) {
1010 virtqueue_disable_cb(rq->vq);
1011 if (received < budget) {
1012 budget -= received;
1013 goto again;
1014 } else {
1015 __napi_schedule(napi);
1016 }
1017 }
1018
1019 return received;
1020}
1021#endif /* CONFIG_NET_RX_BUSY_POLL */
1022
986a4f4d
JW
1023static int virtnet_open(struct net_device *dev)
1024{
1025 struct virtnet_info *vi = netdev_priv(dev);
1026 int i;
1027
e4166625
JW
1028 for (i = 0; i < vi->max_queue_pairs; i++) {
1029 if (i < vi->curr_queue_pairs)
1030 /* Make sure we have some buffers: if oom use wq. */
946fa564 1031 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
e4166625 1032 schedule_delayed_work(&vi->refill, 0);
986a4f4d
JW
1033 virtnet_napi_enable(&vi->rq[i]);
1034 }
1035
1036 return 0;
1037}
1038
b7dfde95 1039static void free_old_xmit_skbs(struct send_queue *sq)
296f96fc
RR
1040{
1041 struct sk_buff *skb;
6ee57bcc 1042 unsigned int len;
e9d7417b 1043 struct virtnet_info *vi = sq->vq->vdev->priv;
58472a76 1044 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
296f96fc 1045
e9d7417b 1046 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
296f96fc 1047 pr_debug("Sent skb %p\n", skb);
3fa2a1df 1048
83a27052 1049 u64_stats_update_begin(&stats->tx_syncp);
3fa2a1df 1050 stats->tx_bytes += skb->len;
1051 stats->tx_packets++;
83a27052 1052 u64_stats_update_end(&stats->tx_syncp);
3fa2a1df 1053
ed79bab8 1054 dev_kfree_skb_any(skb);
296f96fc
RR
1055 }
1056}
1057
e9d7417b 1058static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
296f96fc 1059{
012873d0 1060 struct virtio_net_hdr_mrg_rxbuf *hdr;
296f96fc 1061 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
e9d7417b 1062 struct virtnet_info *vi = sq->vq->vdev->priv;
7bedc7dc 1063 unsigned num_sg;
012873d0 1064 unsigned hdr_len = vi->hdr_len;
e7428e95 1065 bool can_push;
296f96fc 1066
e174961c 1067 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
e7428e95
MT
1068
1069 can_push = vi->any_header_sg &&
1070 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1071 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1072 /* Even if we can, don't push here yet as this would skew
1073 * csum_start offset below. */
1074 if (can_push)
012873d0 1075 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
e7428e95
MT
1076 else
1077 hdr = skb_vnet_hdr(skb);
296f96fc 1078
e858fae2
MR
1079 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
1080 virtio_is_little_endian(vi->vdev)))
1081 BUG();
296f96fc 1082
3f2c31d9 1083 if (vi->mergeable_rx_bufs)
012873d0 1084 hdr->num_buffers = 0;
3f2c31d9 1085
547c890c 1086 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
e7428e95
MT
1087 if (can_push) {
1088 __skb_push(skb, hdr_len);
1089 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
1090 /* Pull header back to avoid skew in tx bytes calculations. */
1091 __skb_pull(skb, hdr_len);
1092 } else {
1093 sg_set_buf(sq->sg, hdr, hdr_len);
1094 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len) + 1;
1095 }
9dc7b9e4 1096 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
11a3a154
RR
1097}
1098
424efe9c 1099static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
99ffc696
RR
1100{
1101 struct virtnet_info *vi = netdev_priv(dev);
986a4f4d
JW
1102 int qnum = skb_get_queue_mapping(skb);
1103 struct send_queue *sq = &vi->sq[qnum];
9ed4cb07 1104 int err;
4b7fd2e6
MT
1105 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1106 bool kick = !skb->xmit_more;
2cb9c6ba 1107
2cb9c6ba 1108 /* Free up any pending old buffers before queueing new ones. */
e9d7417b 1109 free_old_xmit_skbs(sq);
99ffc696 1110
074c3582
JK
1111 /* timestamp packet in software */
1112 skb_tx_timestamp(skb);
1113
03f191ba 1114 /* Try to transmit */
b7dfde95 1115 err = xmit_skb(sq, skb);
48925e37 1116
9ed4cb07 1117 /* This should not happen! */
681daee2 1118 if (unlikely(err)) {
9ed4cb07
RR
1119 dev->stats.tx_fifo_errors++;
1120 if (net_ratelimit())
1121 dev_warn(&dev->dev,
b7dfde95 1122 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
58eba97d 1123 dev->stats.tx_dropped++;
85e94525 1124 dev_kfree_skb_any(skb);
58eba97d 1125 return NETDEV_TX_OK;
296f96fc 1126 }
03f191ba 1127
48925e37
RR
1128 /* Don't wait up for transmitted skbs to be freed. */
1129 skb_orphan(skb);
1130 nf_reset(skb);
1131
60302ff6
MT
1132 /* If running out of space, stop queue to avoid getting packets that we
1133 * are then unable to transmit.
1134 * An alternative would be to force queuing layer to requeue the skb by
1135 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1136 * returned in a normal path of operation: it means that driver is not
1137 * maintaining the TX queue stop/start state properly, and causes
1138 * the stack to do a non-trivial amount of useless work.
1139 * Since most packets only take 1 or 2 ring slots, stopping the queue
1140 * early means 16 slots are typically wasted.
d631b94e 1141 */
b7dfde95 1142 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
986a4f4d 1143 netif_stop_subqueue(dev, qnum);
e9d7417b 1144 if (unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
48925e37 1145 /* More just got used, free them then recheck. */
b7dfde95
LT
1146 free_old_xmit_skbs(sq);
1147 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
986a4f4d 1148 netif_start_subqueue(dev, qnum);
e9d7417b 1149 virtqueue_disable_cb(sq->vq);
48925e37
RR
1150 }
1151 }
99ffc696 1152 }
48925e37 1153
4b7fd2e6 1154 if (kick || netif_xmit_stopped(txq))
0b725a2c 1155 virtqueue_kick(sq->vq);
296f96fc 1156
0b725a2c 1157 return NETDEV_TX_OK;
c223a078
DM
1158}
1159
40cbfc37
AK
1160/*
1161 * Send command via the control virtqueue and check status. Commands
1162 * supported by the hypervisor, as indicated by feature bits, should
788a8b6d 1163 * never fail unless improperly formatted.
40cbfc37
AK
1164 */
1165static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
d24bae32 1166 struct scatterlist *out)
40cbfc37 1167{
f7bc9594 1168 struct scatterlist *sgs[4], hdr, stat;
d24bae32 1169 unsigned out_num = 0, tmp;
40cbfc37
AK
1170
1171 /* Caller should know better */
f7bc9594 1172 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
40cbfc37 1173
2ac46030
MT
1174 vi->ctrl_status = ~0;
1175 vi->ctrl_hdr.class = class;
1176 vi->ctrl_hdr.cmd = cmd;
f7bc9594 1177 /* Add header */
2ac46030 1178 sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr));
f7bc9594 1179 sgs[out_num++] = &hdr;
40cbfc37 1180
f7bc9594
RR
1181 if (out)
1182 sgs[out_num++] = out;
40cbfc37 1183
f7bc9594 1184 /* Add return status. */
2ac46030 1185 sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status));
d24bae32 1186 sgs[out_num] = &stat;
40cbfc37 1187
d24bae32 1188 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
a7c58146 1189 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
40cbfc37 1190
67975901 1191 if (unlikely(!virtqueue_kick(vi->cvq)))
2ac46030 1192 return vi->ctrl_status == VIRTIO_NET_OK;
40cbfc37
AK
1193
1194 /* Spin for a response, the kick causes an ioport write, trapping
1195 * into the hypervisor, so the request should be handled immediately.
1196 */
047b9b94
HG
1197 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1198 !virtqueue_is_broken(vi->cvq))
40cbfc37
AK
1199 cpu_relax();
1200
2ac46030 1201 return vi->ctrl_status == VIRTIO_NET_OK;
40cbfc37
AK
1202}
1203
9c46f6d4
AW
1204static int virtnet_set_mac_address(struct net_device *dev, void *p)
1205{
1206 struct virtnet_info *vi = netdev_priv(dev);
1207 struct virtio_device *vdev = vi->vdev;
f2f2c8b4 1208 int ret;
e37e2ff3 1209 struct sockaddr *addr;
7e58d5ae 1210 struct scatterlist sg;
9c46f6d4 1211
e37e2ff3
AL
1212 addr = kmalloc(sizeof(*addr), GFP_KERNEL);
1213 if (!addr)
1214 return -ENOMEM;
1215 memcpy(addr, p, sizeof(*addr));
1216
1217 ret = eth_prepare_mac_addr_change(dev, addr);
f2f2c8b4 1218 if (ret)
e37e2ff3 1219 goto out;
9c46f6d4 1220
7e58d5ae
AK
1221 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1222 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1223 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
d24bae32 1224 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
7e58d5ae
AK
1225 dev_warn(&vdev->dev,
1226 "Failed to set mac address by vq command.\n");
e37e2ff3
AL
1227 ret = -EINVAL;
1228 goto out;
7e58d5ae 1229 }
7e93a02f
MT
1230 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1231 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
855e0c52
RR
1232 unsigned int i;
1233
1234 /* Naturally, this has an atomicity problem. */
1235 for (i = 0; i < dev->addr_len; i++)
1236 virtio_cwrite8(vdev,
1237 offsetof(struct virtio_net_config, mac) +
1238 i, addr->sa_data[i]);
7e58d5ae
AK
1239 }
1240
1241 eth_commit_mac_addr_change(dev, p);
e37e2ff3 1242 ret = 0;
9c46f6d4 1243
e37e2ff3
AL
1244out:
1245 kfree(addr);
1246 return ret;
9c46f6d4
AW
1247}
1248
3fa2a1df 1249static struct rtnl_link_stats64 *virtnet_stats(struct net_device *dev,
1250 struct rtnl_link_stats64 *tot)
1251{
1252 struct virtnet_info *vi = netdev_priv(dev);
1253 int cpu;
1254 unsigned int start;
1255
1256 for_each_possible_cpu(cpu) {
58472a76 1257 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
3fa2a1df 1258 u64 tpackets, tbytes, rpackets, rbytes;
1259
1260 do {
57a7744e 1261 start = u64_stats_fetch_begin_irq(&stats->tx_syncp);
3fa2a1df 1262 tpackets = stats->tx_packets;
1263 tbytes = stats->tx_bytes;
57a7744e 1264 } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start));
83a27052
ED
1265
1266 do {
57a7744e 1267 start = u64_stats_fetch_begin_irq(&stats->rx_syncp);
3fa2a1df 1268 rpackets = stats->rx_packets;
1269 rbytes = stats->rx_bytes;
57a7744e 1270 } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start));
3fa2a1df 1271
1272 tot->rx_packets += rpackets;
1273 tot->tx_packets += tpackets;
1274 tot->rx_bytes += rbytes;
1275 tot->tx_bytes += tbytes;
1276 }
1277
1278 tot->tx_dropped = dev->stats.tx_dropped;
021ac8d3 1279 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
3fa2a1df 1280 tot->rx_dropped = dev->stats.rx_dropped;
1281 tot->rx_length_errors = dev->stats.rx_length_errors;
1282 tot->rx_frame_errors = dev->stats.rx_frame_errors;
1283
1284 return tot;
1285}
1286
da74e89d
AS
1287#ifdef CONFIG_NET_POLL_CONTROLLER
1288static void virtnet_netpoll(struct net_device *dev)
1289{
1290 struct virtnet_info *vi = netdev_priv(dev);
986a4f4d 1291 int i;
da74e89d 1292
986a4f4d
JW
1293 for (i = 0; i < vi->curr_queue_pairs; i++)
1294 napi_schedule(&vi->rq[i].napi);
da74e89d
AS
1295}
1296#endif
1297
586d17c5
JW
1298static void virtnet_ack_link_announce(struct virtnet_info *vi)
1299{
1300 rtnl_lock();
1301 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
d24bae32 1302 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
586d17c5
JW
1303 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1304 rtnl_unlock();
1305}
1306
986a4f4d
JW
1307static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1308{
1309 struct scatterlist sg;
986a4f4d
JW
1310 struct net_device *dev = vi->dev;
1311
1312 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1313 return 0;
1314
a725ee3e
AL
1315 vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1316 sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq));
986a4f4d
JW
1317
1318 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
d24bae32 1319 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
986a4f4d
JW
1320 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1321 queue_pairs);
1322 return -EINVAL;
55257d72 1323 } else {
986a4f4d 1324 vi->curr_queue_pairs = queue_pairs;
35ed159b
JW
1325 /* virtnet_open() will refill when device is going to up. */
1326 if (dev->flags & IFF_UP)
1327 schedule_delayed_work(&vi->refill, 0);
55257d72 1328 }
986a4f4d
JW
1329
1330 return 0;
1331}
1332
296f96fc
RR
1333static int virtnet_close(struct net_device *dev)
1334{
1335 struct virtnet_info *vi = netdev_priv(dev);
986a4f4d 1336 int i;
296f96fc 1337
b2baed69
RR
1338 /* Make sure refill_work doesn't re-enable napi! */
1339 cancel_delayed_work_sync(&vi->refill);
986a4f4d
JW
1340
1341 for (i = 0; i < vi->max_queue_pairs; i++)
1342 napi_disable(&vi->rq[i].napi);
296f96fc 1343
296f96fc
RR
1344 return 0;
1345}
1346
2af7698e
AW
1347static void virtnet_set_rx_mode(struct net_device *dev)
1348{
1349 struct virtnet_info *vi = netdev_priv(dev);
f565a7c2 1350 struct scatterlist sg[2];
f565a7c2 1351 struct virtio_net_ctrl_mac *mac_data;
ccffad25 1352 struct netdev_hw_addr *ha;
32e7bfc4 1353 int uc_count;
4cd24eaf 1354 int mc_count;
f565a7c2
AW
1355 void *buf;
1356 int i;
2af7698e 1357
788a8b6d 1358 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
2af7698e
AW
1359 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1360 return;
1361
2ac46030
MT
1362 vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0);
1363 vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
2af7698e 1364
2ac46030 1365 sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc));
2af7698e
AW
1366
1367 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
d24bae32 1368 VIRTIO_NET_CTRL_RX_PROMISC, sg))
2af7698e 1369 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
2ac46030 1370 vi->ctrl_promisc ? "en" : "dis");
2af7698e 1371
2ac46030 1372 sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti));
2af7698e
AW
1373
1374 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
d24bae32 1375 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
2af7698e 1376 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
2ac46030 1377 vi->ctrl_allmulti ? "en" : "dis");
f565a7c2 1378
32e7bfc4 1379 uc_count = netdev_uc_count(dev);
4cd24eaf 1380 mc_count = netdev_mc_count(dev);
f565a7c2 1381 /* MAC filter - use one buffer for both lists */
4cd24eaf
JP
1382 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1383 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1384 mac_data = buf;
e68ed8f0 1385 if (!buf)
f565a7c2 1386 return;
f565a7c2 1387
23e258e1
AW
1388 sg_init_table(sg, 2);
1389
f565a7c2 1390 /* Store the unicast list and count in the front of the buffer */
fdd819b2 1391 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
ccffad25 1392 i = 0;
32e7bfc4 1393 netdev_for_each_uc_addr(ha, dev)
ccffad25 1394 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
f565a7c2
AW
1395
1396 sg_set_buf(&sg[0], mac_data,
32e7bfc4 1397 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
f565a7c2
AW
1398
1399 /* multicast list and count fill the end */
32e7bfc4 1400 mac_data = (void *)&mac_data->macs[uc_count][0];
f565a7c2 1401
fdd819b2 1402 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
567ec874 1403 i = 0;
22bedad3
JP
1404 netdev_for_each_mc_addr(ha, dev)
1405 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
f565a7c2
AW
1406
1407 sg_set_buf(&sg[1], mac_data,
4cd24eaf 1408 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
f565a7c2
AW
1409
1410 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
d24bae32 1411 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
99e872ae 1412 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
f565a7c2
AW
1413
1414 kfree(buf);
2af7698e
AW
1415}
1416
80d5c368
PM
1417static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1418 __be16 proto, u16 vid)
0bde9569
AW
1419{
1420 struct virtnet_info *vi = netdev_priv(dev);
1421 struct scatterlist sg;
1422
a725ee3e
AL
1423 vi->ctrl_vid = vid;
1424 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
0bde9569
AW
1425
1426 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
d24bae32 1427 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
0bde9569 1428 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
8e586137 1429 return 0;
0bde9569
AW
1430}
1431
80d5c368
PM
1432static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1433 __be16 proto, u16 vid)
0bde9569
AW
1434{
1435 struct virtnet_info *vi = netdev_priv(dev);
1436 struct scatterlist sg;
1437
a725ee3e
AL
1438 vi->ctrl_vid = vid;
1439 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
0bde9569
AW
1440
1441 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
d24bae32 1442 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
0bde9569 1443 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
8e586137 1444 return 0;
0bde9569
AW
1445}
1446
8898c21c 1447static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
986a4f4d
JW
1448{
1449 int i;
1450
8898c21c
WG
1451 if (vi->affinity_hint_set) {
1452 for (i = 0; i < vi->max_queue_pairs; i++) {
47be2479
WG
1453 virtqueue_set_affinity(vi->rq[i].vq, -1);
1454 virtqueue_set_affinity(vi->sq[i].vq, -1);
1455 }
1456
8898c21c
WG
1457 vi->affinity_hint_set = false;
1458 }
8898c21c 1459}
47be2479 1460
8898c21c
WG
1461static void virtnet_set_affinity(struct virtnet_info *vi)
1462{
1463 int i;
1464 int cpu;
986a4f4d
JW
1465
1466 /* In multiqueue mode, when the number of cpu is equal to the number of
1467 * queue pairs, we let the queue pairs to be private to one cpu by
1468 * setting the affinity hint to eliminate the contention.
1469 */
8898c21c
WG
1470 if (vi->curr_queue_pairs == 1 ||
1471 vi->max_queue_pairs != num_online_cpus()) {
1472 virtnet_clean_affinity(vi, -1);
1473 return;
986a4f4d
JW
1474 }
1475
8898c21c
WG
1476 i = 0;
1477 for_each_online_cpu(cpu) {
986a4f4d
JW
1478 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1479 virtqueue_set_affinity(vi->sq[i].vq, cpu);
9bb8ca86 1480 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
8898c21c 1481 i++;
986a4f4d
JW
1482 }
1483
8898c21c 1484 vi->affinity_hint_set = true;
986a4f4d
JW
1485}
1486
8017c279 1487static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
8de4b2f3 1488{
8017c279
SAS
1489 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1490 node);
1491 virtnet_set_affinity(vi);
1492 return 0;
1493}
8de4b2f3 1494
8017c279
SAS
1495static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1496{
1497 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1498 node_dead);
1499 virtnet_set_affinity(vi);
1500 return 0;
1501}
3ab098df 1502
8017c279
SAS
1503static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1504{
1505 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1506 node);
1507
1508 virtnet_clean_affinity(vi, cpu);
1509 return 0;
1510}
1511
1512static enum cpuhp_state virtionet_online;
1513
1514static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1515{
1516 int ret;
1517
1518 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1519 if (ret)
1520 return ret;
1521 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1522 &vi->node_dead);
1523 if (!ret)
1524 return ret;
1525 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1526 return ret;
1527}
1528
1529static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1530{
1531 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1532 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1533 &vi->node_dead);
986a4f4d
JW
1534}
1535
8f9f4668
RJ
1536static void virtnet_get_ringparam(struct net_device *dev,
1537 struct ethtool_ringparam *ring)
1538{
1539 struct virtnet_info *vi = netdev_priv(dev);
1540
986a4f4d
JW
1541 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1542 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
8f9f4668
RJ
1543 ring->rx_pending = ring->rx_max_pending;
1544 ring->tx_pending = ring->tx_max_pending;
8f9f4668
RJ
1545}
1546
66846048
RJ
1547
1548static void virtnet_get_drvinfo(struct net_device *dev,
1549 struct ethtool_drvinfo *info)
1550{
1551 struct virtnet_info *vi = netdev_priv(dev);
1552 struct virtio_device *vdev = vi->vdev;
1553
1554 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1555 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1556 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1557
1558}
1559
d73bcd2c
JW
1560/* TODO: Eliminate OOO packets during switching */
1561static int virtnet_set_channels(struct net_device *dev,
1562 struct ethtool_channels *channels)
1563{
1564 struct virtnet_info *vi = netdev_priv(dev);
1565 u16 queue_pairs = channels->combined_count;
1566 int err;
1567
1568 /* We don't support separate rx/tx channels.
1569 * We don't allow setting 'other' channels.
1570 */
1571 if (channels->rx_count || channels->tx_count || channels->other_count)
1572 return -EINVAL;
1573
c18e9cd6 1574 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
d73bcd2c
JW
1575 return -EINVAL;
1576
f600b690
JF
1577 /* For now we don't support modifying channels while XDP is loaded
1578 * also when XDP is loaded all RX queues have XDP programs so we only
1579 * need to check a single RX queue.
1580 */
1581 if (vi->rq[0].xdp_prog)
1582 return -EINVAL;
1583
47be2479 1584 get_online_cpus();
d73bcd2c
JW
1585 err = virtnet_set_queues(vi, queue_pairs);
1586 if (!err) {
1587 netif_set_real_num_tx_queues(dev, queue_pairs);
1588 netif_set_real_num_rx_queues(dev, queue_pairs);
1589
8898c21c 1590 virtnet_set_affinity(vi);
d73bcd2c 1591 }
47be2479 1592 put_online_cpus();
d73bcd2c
JW
1593
1594 return err;
1595}
1596
1597static void virtnet_get_channels(struct net_device *dev,
1598 struct ethtool_channels *channels)
1599{
1600 struct virtnet_info *vi = netdev_priv(dev);
1601
1602 channels->combined_count = vi->curr_queue_pairs;
1603 channels->max_combined = vi->max_queue_pairs;
1604 channels->max_other = 0;
1605 channels->rx_count = 0;
1606 channels->tx_count = 0;
1607 channels->other_count = 0;
1608}
1609
16032be5
NA
1610/* Check if the user is trying to change anything besides speed/duplex */
1611static bool virtnet_validate_ethtool_cmd(const struct ethtool_cmd *cmd)
1612{
1613 struct ethtool_cmd diff1 = *cmd;
1614 struct ethtool_cmd diff2 = {};
1615
0cf3ace9
NA
1616 /* cmd is always set so we need to clear it, validate the port type
1617 * and also without autonegotiation we can ignore advertising
1618 */
16032be5 1619 ethtool_cmd_speed_set(&diff1, 0);
0cf3ace9 1620 diff2.port = PORT_OTHER;
16032be5
NA
1621 diff1.advertising = 0;
1622 diff1.duplex = 0;
16032be5
NA
1623 diff1.cmd = 0;
1624
1625 return !memcmp(&diff1, &diff2, sizeof(diff1));
1626}
1627
1628static int virtnet_set_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1629{
1630 struct virtnet_info *vi = netdev_priv(dev);
1631 u32 speed;
1632
1633 speed = ethtool_cmd_speed(cmd);
1634 /* don't allow custom speed and duplex */
1635 if (!ethtool_validate_speed(speed) ||
1636 !ethtool_validate_duplex(cmd->duplex) ||
1637 !virtnet_validate_ethtool_cmd(cmd))
1638 return -EINVAL;
1639 vi->speed = speed;
1640 vi->duplex = cmd->duplex;
1641
1642 return 0;
1643}
1644
1645static int virtnet_get_settings(struct net_device *dev, struct ethtool_cmd *cmd)
1646{
1647 struct virtnet_info *vi = netdev_priv(dev);
1648
1649 ethtool_cmd_speed_set(cmd, vi->speed);
1650 cmd->duplex = vi->duplex;
1651 cmd->port = PORT_OTHER;
1652
1653 return 0;
1654}
1655
1656static void virtnet_init_settings(struct net_device *dev)
1657{
1658 struct virtnet_info *vi = netdev_priv(dev);
1659
1660 vi->speed = SPEED_UNKNOWN;
1661 vi->duplex = DUPLEX_UNKNOWN;
1662}
1663
0fc0b732 1664static const struct ethtool_ops virtnet_ethtool_ops = {
66846048 1665 .get_drvinfo = virtnet_get_drvinfo,
9f4d26d0 1666 .get_link = ethtool_op_get_link,
8f9f4668 1667 .get_ringparam = virtnet_get_ringparam,
d73bcd2c
JW
1668 .set_channels = virtnet_set_channels,
1669 .get_channels = virtnet_get_channels,
074c3582 1670 .get_ts_info = ethtool_op_get_ts_info,
16032be5
NA
1671 .get_settings = virtnet_get_settings,
1672 .set_settings = virtnet_set_settings,
a9ea3fc6
HX
1673};
1674
f600b690
JF
1675static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog)
1676{
1677 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
1678 struct virtnet_info *vi = netdev_priv(dev);
1679 struct bpf_prog *old_prog;
672aafd5
JF
1680 u16 xdp_qp = 0, curr_qp;
1681 int i, err;
f600b690
JF
1682
1683 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
1684 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6)) {
1685 netdev_warn(dev, "can't set XDP while host is implementing LRO, disable LRO first\n");
1686 return -EOPNOTSUPP;
1687 }
1688
1689 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
1690 netdev_warn(dev, "XDP expects header/data in single page, any_header_sg required\n");
1691 return -EINVAL;
1692 }
1693
1694 if (dev->mtu > max_sz) {
1695 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
1696 return -EINVAL;
1697 }
1698
672aafd5
JF
1699 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
1700 if (prog)
1701 xdp_qp = nr_cpu_ids;
1702
1703 /* XDP requires extra queues for XDP_TX */
1704 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
1705 netdev_warn(dev, "request %i queues but max is %i\n",
1706 curr_qp + xdp_qp, vi->max_queue_pairs);
1707 return -ENOMEM;
1708 }
1709
1710 err = virtnet_set_queues(vi, curr_qp + xdp_qp);
1711 if (err) {
1712 dev_warn(&dev->dev, "XDP Device queue allocation failure.\n");
1713 return err;
1714 }
1715
f600b690
JF
1716 if (prog) {
1717 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
672aafd5
JF
1718 if (IS_ERR(prog)) {
1719 virtnet_set_queues(vi, curr_qp);
f600b690 1720 return PTR_ERR(prog);
672aafd5 1721 }
f600b690
JF
1722 }
1723
672aafd5
JF
1724 vi->xdp_queue_pairs = xdp_qp;
1725 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
1726
f600b690
JF
1727 for (i = 0; i < vi->max_queue_pairs; i++) {
1728 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1729 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
1730 if (old_prog)
1731 bpf_prog_put(old_prog);
1732 }
1733
1734 return 0;
1735}
1736
1737static bool virtnet_xdp_query(struct net_device *dev)
1738{
1739 struct virtnet_info *vi = netdev_priv(dev);
1740 int i;
1741
1742 for (i = 0; i < vi->max_queue_pairs; i++) {
1743 if (vi->rq[i].xdp_prog)
1744 return true;
1745 }
1746 return false;
1747}
1748
1749static int virtnet_xdp(struct net_device *dev, struct netdev_xdp *xdp)
1750{
1751 switch (xdp->command) {
1752 case XDP_SETUP_PROG:
1753 return virtnet_xdp_set(dev, xdp->prog);
1754 case XDP_QUERY_PROG:
1755 xdp->prog_attached = virtnet_xdp_query(dev);
1756 return 0;
1757 default:
1758 return -EINVAL;
1759 }
1760}
1761
76288b4e
SH
1762static const struct net_device_ops virtnet_netdev = {
1763 .ndo_open = virtnet_open,
1764 .ndo_stop = virtnet_close,
1765 .ndo_start_xmit = start_xmit,
1766 .ndo_validate_addr = eth_validate_addr,
9c46f6d4 1767 .ndo_set_mac_address = virtnet_set_mac_address,
2af7698e 1768 .ndo_set_rx_mode = virtnet_set_rx_mode,
3fa2a1df 1769 .ndo_get_stats64 = virtnet_stats,
1824a989
AW
1770 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
1771 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
76288b4e
SH
1772#ifdef CONFIG_NET_POLL_CONTROLLER
1773 .ndo_poll_controller = virtnet_netpoll,
1774#endif
91815639
JW
1775#ifdef CONFIG_NET_RX_BUSY_POLL
1776 .ndo_busy_poll = virtnet_busy_poll,
1777#endif
f600b690 1778 .ndo_xdp = virtnet_xdp,
76288b4e
SH
1779};
1780
586d17c5 1781static void virtnet_config_changed_work(struct work_struct *work)
9f4d26d0 1782{
586d17c5
JW
1783 struct virtnet_info *vi =
1784 container_of(work, struct virtnet_info, config_work);
9f4d26d0
MM
1785 u16 v;
1786
855e0c52
RR
1787 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
1788 struct virtio_net_config, status, &v) < 0)
507613bf 1789 return;
586d17c5
JW
1790
1791 if (v & VIRTIO_NET_S_ANNOUNCE) {
ee89bab1 1792 netdev_notify_peers(vi->dev);
586d17c5
JW
1793 virtnet_ack_link_announce(vi);
1794 }
9f4d26d0
MM
1795
1796 /* Ignore unknown (future) status bits */
1797 v &= VIRTIO_NET_S_LINK_UP;
1798
1799 if (vi->status == v)
507613bf 1800 return;
9f4d26d0
MM
1801
1802 vi->status = v;
1803
1804 if (vi->status & VIRTIO_NET_S_LINK_UP) {
1805 netif_carrier_on(vi->dev);
986a4f4d 1806 netif_tx_wake_all_queues(vi->dev);
9f4d26d0
MM
1807 } else {
1808 netif_carrier_off(vi->dev);
986a4f4d 1809 netif_tx_stop_all_queues(vi->dev);
9f4d26d0
MM
1810 }
1811}
1812
1813static void virtnet_config_changed(struct virtio_device *vdev)
1814{
1815 struct virtnet_info *vi = vdev->priv;
1816
3b07e9ca 1817 schedule_work(&vi->config_work);
9f4d26d0
MM
1818}
1819
986a4f4d
JW
1820static void virtnet_free_queues(struct virtnet_info *vi)
1821{
d4fb84ee
AV
1822 int i;
1823
ab3971b1
JW
1824 for (i = 0; i < vi->max_queue_pairs; i++) {
1825 napi_hash_del(&vi->rq[i].napi);
d4fb84ee 1826 netif_napi_del(&vi->rq[i].napi);
ab3971b1 1827 }
d4fb84ee 1828
963abe5c
ED
1829 /* We called napi_hash_del() before netif_napi_del(),
1830 * we need to respect an RCU grace period before freeing vi->rq
1831 */
1832 synchronize_net();
1833
986a4f4d
JW
1834 kfree(vi->rq);
1835 kfree(vi->sq);
1836}
1837
1838static void free_receive_bufs(struct virtnet_info *vi)
1839{
f600b690 1840 struct bpf_prog *old_prog;
986a4f4d
JW
1841 int i;
1842
f600b690 1843 rtnl_lock();
986a4f4d
JW
1844 for (i = 0; i < vi->max_queue_pairs; i++) {
1845 while (vi->rq[i].pages)
1846 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
f600b690
JF
1847
1848 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1849 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
1850 if (old_prog)
1851 bpf_prog_put(old_prog);
986a4f4d 1852 }
f600b690 1853 rtnl_unlock();
986a4f4d
JW
1854}
1855
fb51879d
MD
1856static void free_receive_page_frags(struct virtnet_info *vi)
1857{
1858 int i;
1859 for (i = 0; i < vi->max_queue_pairs; i++)
1860 if (vi->rq[i].alloc_frag.page)
1861 put_page(vi->rq[i].alloc_frag.page);
1862}
1863
56434a01
JF
1864static bool is_xdp_queue(struct virtnet_info *vi, int q)
1865{
1866 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
1867 return false;
1868 else if (q < vi->curr_queue_pairs)
1869 return true;
1870 else
1871 return false;
1872}
1873
986a4f4d
JW
1874static void free_unused_bufs(struct virtnet_info *vi)
1875{
1876 void *buf;
1877 int i;
1878
1879 for (i = 0; i < vi->max_queue_pairs; i++) {
1880 struct virtqueue *vq = vi->sq[i].vq;
56434a01
JF
1881 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
1882 if (!is_xdp_queue(vi, i))
1883 dev_kfree_skb(buf);
1884 else
1885 put_page(virt_to_head_page(buf));
1886 }
986a4f4d
JW
1887 }
1888
1889 for (i = 0; i < vi->max_queue_pairs; i++) {
1890 struct virtqueue *vq = vi->rq[i].vq;
1891
1892 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
ab7db917
MD
1893 if (vi->mergeable_rx_bufs) {
1894 unsigned long ctx = (unsigned long)buf;
1895 void *base = mergeable_ctx_to_buf_address(ctx);
1896 put_page(virt_to_head_page(base));
1897 } else if (vi->big_packets) {
fa9fac17 1898 give_pages(&vi->rq[i], buf);
ab7db917 1899 } else {
986a4f4d 1900 dev_kfree_skb(buf);
ab7db917 1901 }
986a4f4d 1902 }
986a4f4d
JW
1903 }
1904}
1905
e9d7417b
JW
1906static void virtnet_del_vqs(struct virtnet_info *vi)
1907{
1908 struct virtio_device *vdev = vi->vdev;
1909
8898c21c 1910 virtnet_clean_affinity(vi, -1);
986a4f4d 1911
e9d7417b 1912 vdev->config->del_vqs(vdev);
986a4f4d
JW
1913
1914 virtnet_free_queues(vi);
e9d7417b
JW
1915}
1916
986a4f4d 1917static int virtnet_find_vqs(struct virtnet_info *vi)
3f9c10b0 1918{
986a4f4d
JW
1919 vq_callback_t **callbacks;
1920 struct virtqueue **vqs;
1921 int ret = -ENOMEM;
1922 int i, total_vqs;
1923 const char **names;
1924
1925 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
1926 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
1927 * possible control vq.
1928 */
1929 total_vqs = vi->max_queue_pairs * 2 +
1930 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
1931
1932 /* Allocate space for find_vqs parameters */
1933 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
1934 if (!vqs)
1935 goto err_vq;
1936 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
1937 if (!callbacks)
1938 goto err_callback;
1939 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
1940 if (!names)
1941 goto err_names;
1942
1943 /* Parameters for control virtqueue, if any */
1944 if (vi->has_cvq) {
1945 callbacks[total_vqs - 1] = NULL;
1946 names[total_vqs - 1] = "control";
1947 }
3f9c10b0 1948
986a4f4d
JW
1949 /* Allocate/initialize parameters for send/receive virtqueues */
1950 for (i = 0; i < vi->max_queue_pairs; i++) {
1951 callbacks[rxq2vq(i)] = skb_recv_done;
1952 callbacks[txq2vq(i)] = skb_xmit_done;
1953 sprintf(vi->rq[i].name, "input.%d", i);
1954 sprintf(vi->sq[i].name, "output.%d", i);
1955 names[rxq2vq(i)] = vi->rq[i].name;
1956 names[txq2vq(i)] = vi->sq[i].name;
1957 }
3f9c10b0 1958
986a4f4d
JW
1959 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
1960 names);
1961 if (ret)
1962 goto err_find;
3f9c10b0 1963
986a4f4d
JW
1964 if (vi->has_cvq) {
1965 vi->cvq = vqs[total_vqs - 1];
3f9c10b0 1966 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
f646968f 1967 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
3f9c10b0 1968 }
986a4f4d
JW
1969
1970 for (i = 0; i < vi->max_queue_pairs; i++) {
1971 vi->rq[i].vq = vqs[rxq2vq(i)];
1972 vi->sq[i].vq = vqs[txq2vq(i)];
1973 }
1974
1975 kfree(names);
1976 kfree(callbacks);
1977 kfree(vqs);
1978
3f9c10b0 1979 return 0;
986a4f4d
JW
1980
1981err_find:
1982 kfree(names);
1983err_names:
1984 kfree(callbacks);
1985err_callback:
1986 kfree(vqs);
1987err_vq:
1988 return ret;
1989}
1990
1991static int virtnet_alloc_queues(struct virtnet_info *vi)
1992{
1993 int i;
1994
1995 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
1996 if (!vi->sq)
1997 goto err_sq;
1998 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
008d4278 1999 if (!vi->rq)
986a4f4d
JW
2000 goto err_rq;
2001
2002 INIT_DELAYED_WORK(&vi->refill, refill_work);
2003 for (i = 0; i < vi->max_queue_pairs; i++) {
2004 vi->rq[i].pages = NULL;
2005 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2006 napi_weight);
2007
2008 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
5377d758 2009 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
986a4f4d
JW
2010 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
2011 }
2012
2013 return 0;
2014
2015err_rq:
2016 kfree(vi->sq);
2017err_sq:
2018 return -ENOMEM;
2019}
2020
2021static int init_vqs(struct virtnet_info *vi)
2022{
2023 int ret;
2024
2025 /* Allocate send & receive queues */
2026 ret = virtnet_alloc_queues(vi);
2027 if (ret)
2028 goto err;
2029
2030 ret = virtnet_find_vqs(vi);
2031 if (ret)
2032 goto err_free;
2033
47be2479 2034 get_online_cpus();
8898c21c 2035 virtnet_set_affinity(vi);
47be2479
WG
2036 put_online_cpus();
2037
986a4f4d
JW
2038 return 0;
2039
2040err_free:
2041 virtnet_free_queues(vi);
2042err:
2043 return ret;
3f9c10b0
AS
2044}
2045
fbf28d78
MD
2046#ifdef CONFIG_SYSFS
2047static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
2048 struct rx_queue_attribute *attribute, char *buf)
2049{
2050 struct virtnet_info *vi = netdev_priv(queue->dev);
2051 unsigned int queue_index = get_netdev_rx_queue_index(queue);
5377d758 2052 struct ewma_pkt_len *avg;
fbf28d78
MD
2053
2054 BUG_ON(queue_index >= vi->max_queue_pairs);
2055 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
2056 return sprintf(buf, "%u\n", get_mergeable_buf_len(avg));
2057}
2058
2059static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2060 __ATTR_RO(mergeable_rx_buffer_size);
2061
2062static struct attribute *virtio_net_mrg_rx_attrs[] = {
2063 &mergeable_rx_buffer_size_attribute.attr,
2064 NULL
2065};
2066
2067static const struct attribute_group virtio_net_mrg_rx_group = {
2068 .name = "virtio_net",
2069 .attrs = virtio_net_mrg_rx_attrs
2070};
2071#endif
2072
892d6eb1
JW
2073static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2074 unsigned int fbit,
2075 const char *fname, const char *dname)
2076{
2077 if (!virtio_has_feature(vdev, fbit))
2078 return false;
2079
2080 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2081 fname, dname);
2082
2083 return true;
2084}
2085
2086#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2087 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2088
2089static bool virtnet_validate_features(struct virtio_device *vdev)
2090{
2091 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2092 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2093 "VIRTIO_NET_F_CTRL_VQ") ||
2094 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2095 "VIRTIO_NET_F_CTRL_VQ") ||
2096 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2097 "VIRTIO_NET_F_CTRL_VQ") ||
2098 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2099 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2100 "VIRTIO_NET_F_CTRL_VQ"))) {
2101 return false;
2102 }
2103
2104 return true;
2105}
2106
d0c2c997
JW
2107#define MIN_MTU ETH_MIN_MTU
2108#define MAX_MTU ETH_MAX_MTU
2109
296f96fc
RR
2110static int virtnet_probe(struct virtio_device *vdev)
2111{
986a4f4d 2112 int i, err;
296f96fc
RR
2113 struct net_device *dev;
2114 struct virtnet_info *vi;
986a4f4d 2115 u16 max_queue_pairs;
14de9d11 2116 int mtu;
986a4f4d 2117
6ba42248
MT
2118 if (!vdev->config->get) {
2119 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2120 __func__);
2121 return -EINVAL;
2122 }
2123
892d6eb1
JW
2124 if (!virtnet_validate_features(vdev))
2125 return -EINVAL;
2126
986a4f4d 2127 /* Find if host supports multiqueue virtio_net device */
855e0c52
RR
2128 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2129 struct virtio_net_config,
2130 max_virtqueue_pairs, &max_queue_pairs);
986a4f4d
JW
2131
2132 /* We need at least 2 queue's */
2133 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2134 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2135 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2136 max_queue_pairs = 1;
296f96fc
RR
2137
2138 /* Allocate ourselves a network device with room for our info */
986a4f4d 2139 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
296f96fc
RR
2140 if (!dev)
2141 return -ENOMEM;
2142
2143 /* Set up network device as normal. */
f2f2c8b4 2144 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
76288b4e 2145 dev->netdev_ops = &virtnet_netdev;
296f96fc 2146 dev->features = NETIF_F_HIGHDMA;
3fa2a1df 2147
7ad24ea4 2148 dev->ethtool_ops = &virtnet_ethtool_ops;
296f96fc
RR
2149 SET_NETDEV_DEV(dev, &vdev->dev);
2150
2151 /* Do we support "hardware" checksums? */
98e778c9 2152 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
296f96fc 2153 /* This opens up the world of extra features. */
48900cb6 2154 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
98e778c9 2155 if (csum)
48900cb6 2156 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
98e778c9
MM
2157
2158 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
e3e3c423 2159 dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO
34a48579
RR
2160 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2161 }
5539ae96 2162 /* Individual feature bits: what can host handle? */
98e778c9
MM
2163 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2164 dev->hw_features |= NETIF_F_TSO;
2165 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2166 dev->hw_features |= NETIF_F_TSO6;
2167 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2168 dev->hw_features |= NETIF_F_TSO_ECN;
e3e3c423
VY
2169 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
2170 dev->hw_features |= NETIF_F_UFO;
98e778c9 2171
41f2f127
JW
2172 dev->features |= NETIF_F_GSO_ROBUST;
2173
98e778c9 2174 if (gso)
e3e3c423 2175 dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO);
98e778c9 2176 /* (!csum && gso) case will be fixed by register_netdev() */
296f96fc 2177 }
4f49129b
TH
2178 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2179 dev->features |= NETIF_F_RXCSUM;
296f96fc 2180
4fda8302
JW
2181 dev->vlan_features = dev->features;
2182
d0c2c997
JW
2183 /* MTU range: 68 - 65535 */
2184 dev->min_mtu = MIN_MTU;
2185 dev->max_mtu = MAX_MTU;
2186
296f96fc 2187 /* Configuration may specify what MAC to use. Otherwise random. */
855e0c52
RR
2188 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2189 virtio_cread_bytes(vdev,
2190 offsetof(struct virtio_net_config, mac),
2191 dev->dev_addr, dev->addr_len);
2192 else
f2cedb63 2193 eth_hw_addr_random(dev);
296f96fc
RR
2194
2195 /* Set up our device-specific information */
2196 vi = netdev_priv(dev);
296f96fc
RR
2197 vi->dev = dev;
2198 vi->vdev = vdev;
d9d5dcc8 2199 vdev->priv = vi;
3fa2a1df 2200 vi->stats = alloc_percpu(struct virtnet_stats);
2201 err = -ENOMEM;
2202 if (vi->stats == NULL)
2203 goto free;
2204
827da44c
JS
2205 for_each_possible_cpu(i) {
2206 struct virtnet_stats *virtnet_stats;
2207 virtnet_stats = per_cpu_ptr(vi->stats, i);
2208 u64_stats_init(&virtnet_stats->tx_syncp);
2209 u64_stats_init(&virtnet_stats->rx_syncp);
2210 }
2211
586d17c5 2212 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
296f96fc 2213
97402b96 2214 /* If we can receive ANY GSO packets, we must allocate large ones. */
8e95a202
JP
2215 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2216 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
e3e3c423
VY
2217 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2218 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
97402b96
HX
2219 vi->big_packets = true;
2220
3f2c31d9
MM
2221 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2222 vi->mergeable_rx_bufs = true;
2223
d04302b3
MT
2224 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2225 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
012873d0
MT
2226 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2227 else
2228 vi->hdr_len = sizeof(struct virtio_net_hdr);
2229
75993300
MT
2230 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2231 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
e7428e95
MT
2232 vi->any_header_sg = true;
2233
986a4f4d
JW
2234 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2235 vi->has_cvq = true;
2236
14de9d11
AC
2237 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2238 mtu = virtio_cread16(vdev,
2239 offsetof(struct virtio_net_config,
2240 mtu));
93a205ee 2241 if (mtu < dev->min_mtu) {
14de9d11 2242 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
93a205ee 2243 } else {
d0c2c997 2244 dev->mtu = mtu;
93a205ee
AC
2245 dev->max_mtu = mtu;
2246 }
14de9d11
AC
2247 }
2248
012873d0
MT
2249 if (vi->any_header_sg)
2250 dev->needed_headroom = vi->hdr_len;
6ebbc1a6 2251
44900010
JW
2252 /* Enable multiqueue by default */
2253 if (num_online_cpus() >= max_queue_pairs)
2254 vi->curr_queue_pairs = max_queue_pairs;
2255 else
2256 vi->curr_queue_pairs = num_online_cpus();
986a4f4d
JW
2257 vi->max_queue_pairs = max_queue_pairs;
2258
2259 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
3f9c10b0 2260 err = init_vqs(vi);
d2a7ddda 2261 if (err)
9bb8ca86 2262 goto free_stats;
296f96fc 2263
fbf28d78
MD
2264#ifdef CONFIG_SYSFS
2265 if (vi->mergeable_rx_bufs)
2266 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2267#endif
0f13b66b
ZYW
2268 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2269 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
986a4f4d 2270
16032be5
NA
2271 virtnet_init_settings(dev);
2272
296f96fc
RR
2273 err = register_netdev(dev);
2274 if (err) {
2275 pr_debug("virtio_net: registering device failed\n");
d2a7ddda 2276 goto free_vqs;
296f96fc 2277 }
b3369c1f 2278
4baf1e33
MT
2279 virtio_device_ready(vdev);
2280
8017c279 2281 err = virtnet_cpu_notif_add(vi);
8de4b2f3
WG
2282 if (err) {
2283 pr_debug("virtio_net: registering cpu notifier failed\n");
f00e35e2 2284 goto free_unregister_netdev;
8de4b2f3
WG
2285 }
2286
a220871b
JW
2287 rtnl_lock();
2288 virtnet_set_queues(vi, vi->curr_queue_pairs);
2289 rtnl_unlock();
44900010 2290
167c25e4
JW
2291 /* Assume link up if device can't report link status,
2292 otherwise get link status from config. */
2293 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2294 netif_carrier_off(dev);
3b07e9ca 2295 schedule_work(&vi->config_work);
167c25e4
JW
2296 } else {
2297 vi->status = VIRTIO_NET_S_LINK_UP;
2298 netif_carrier_on(dev);
2299 }
9f4d26d0 2300
986a4f4d
JW
2301 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2302 dev->name, max_queue_pairs);
2303
296f96fc
RR
2304 return 0;
2305
f00e35e2 2306free_unregister_netdev:
02465555
MT
2307 vi->vdev->config->reset(vdev);
2308
b3369c1f 2309 unregister_netdev(dev);
d2a7ddda 2310free_vqs:
986a4f4d 2311 cancel_delayed_work_sync(&vi->refill);
fb51879d 2312 free_receive_page_frags(vi);
e9d7417b 2313 virtnet_del_vqs(vi);
3fa2a1df 2314free_stats:
2315 free_percpu(vi->stats);
296f96fc
RR
2316free:
2317 free_netdev(dev);
2318 return err;
2319}
2320
04486ed0 2321static void remove_vq_common(struct virtnet_info *vi)
296f96fc 2322{
04486ed0 2323 vi->vdev->config->reset(vi->vdev);
830a8a97
SM
2324
2325 /* Free unused buffers in both send and recv, if any. */
9ab86bbc 2326 free_unused_bufs(vi);
fb6813f4 2327
986a4f4d 2328 free_receive_bufs(vi);
d2a7ddda 2329
fb51879d
MD
2330 free_receive_page_frags(vi);
2331
986a4f4d 2332 virtnet_del_vqs(vi);
04486ed0
AS
2333}
2334
8cc085d6 2335static void virtnet_remove(struct virtio_device *vdev)
04486ed0
AS
2336{
2337 struct virtnet_info *vi = vdev->priv;
2338
8017c279 2339 virtnet_cpu_notif_remove(vi);
8de4b2f3 2340
102a2786
MT
2341 /* Make sure no work handler is accessing the device. */
2342 flush_work(&vi->config_work);
586d17c5 2343
04486ed0
AS
2344 unregister_netdev(vi->dev);
2345
2346 remove_vq_common(vi);
fb6813f4 2347
2e66f55b 2348 free_percpu(vi->stats);
74b2553f 2349 free_netdev(vi->dev);
296f96fc
RR
2350}
2351
89107000 2352#ifdef CONFIG_PM_SLEEP
0741bcb5
AS
2353static int virtnet_freeze(struct virtio_device *vdev)
2354{
2355 struct virtnet_info *vi = vdev->priv;
986a4f4d 2356 int i;
0741bcb5 2357
8017c279 2358 virtnet_cpu_notif_remove(vi);
ec9debbd 2359
102a2786
MT
2360 /* Make sure no work handler is accessing the device */
2361 flush_work(&vi->config_work);
586d17c5 2362
0741bcb5
AS
2363 netif_device_detach(vi->dev);
2364 cancel_delayed_work_sync(&vi->refill);
2365
91815639 2366 if (netif_running(vi->dev)) {
ab3971b1 2367 for (i = 0; i < vi->max_queue_pairs; i++)
986a4f4d 2368 napi_disable(&vi->rq[i].napi);
91815639 2369 }
0741bcb5
AS
2370
2371 remove_vq_common(vi);
2372
2373 return 0;
2374}
2375
2376static int virtnet_restore(struct virtio_device *vdev)
2377{
2378 struct virtnet_info *vi = vdev->priv;
986a4f4d 2379 int err, i;
0741bcb5
AS
2380
2381 err = init_vqs(vi);
2382 if (err)
2383 return err;
2384
e53fbd11
MT
2385 virtio_device_ready(vdev);
2386
6cd4ce00
JW
2387 if (netif_running(vi->dev)) {
2388 for (i = 0; i < vi->curr_queue_pairs; i++)
946fa564 2389 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
6cd4ce00
JW
2390 schedule_delayed_work(&vi->refill, 0);
2391
986a4f4d
JW
2392 for (i = 0; i < vi->max_queue_pairs; i++)
2393 virtnet_napi_enable(&vi->rq[i]);
6cd4ce00 2394 }
0741bcb5
AS
2395
2396 netif_device_attach(vi->dev);
2397
35ed159b 2398 rtnl_lock();
986a4f4d 2399 virtnet_set_queues(vi, vi->curr_queue_pairs);
35ed159b 2400 rtnl_unlock();
986a4f4d 2401
8017c279 2402 err = virtnet_cpu_notif_add(vi);
ec9debbd
JW
2403 if (err)
2404 return err;
2405
0741bcb5
AS
2406 return 0;
2407}
2408#endif
2409
296f96fc
RR
2410static struct virtio_device_id id_table[] = {
2411 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2412 { 0 },
2413};
2414
f3358507
MT
2415#define VIRTNET_FEATURES \
2416 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2417 VIRTIO_NET_F_MAC, \
2418 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2419 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2420 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2421 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2422 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2423 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2424 VIRTIO_NET_F_CTRL_MAC_ADDR, \
2425 VIRTIO_NET_F_MTU
2426
c45a6816 2427static unsigned int features[] = {
f3358507
MT
2428 VIRTNET_FEATURES,
2429};
2430
2431static unsigned int features_legacy[] = {
2432 VIRTNET_FEATURES,
2433 VIRTIO_NET_F_GSO,
e7428e95 2434 VIRTIO_F_ANY_LAYOUT,
c45a6816
RR
2435};
2436
22402529 2437static struct virtio_driver virtio_net_driver = {
c45a6816
RR
2438 .feature_table = features,
2439 .feature_table_size = ARRAY_SIZE(features),
f3358507
MT
2440 .feature_table_legacy = features_legacy,
2441 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
296f96fc
RR
2442 .driver.name = KBUILD_MODNAME,
2443 .driver.owner = THIS_MODULE,
2444 .id_table = id_table,
2445 .probe = virtnet_probe,
8cc085d6 2446 .remove = virtnet_remove,
9f4d26d0 2447 .config_changed = virtnet_config_changed,
89107000 2448#ifdef CONFIG_PM_SLEEP
0741bcb5
AS
2449 .freeze = virtnet_freeze,
2450 .restore = virtnet_restore,
2451#endif
296f96fc
RR
2452};
2453
8017c279
SAS
2454static __init int virtio_net_driver_init(void)
2455{
2456 int ret;
2457
2458 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "AP_VIRT_NET_ONLINE",
2459 virtnet_cpu_online,
2460 virtnet_cpu_down_prep);
2461 if (ret < 0)
2462 goto out;
2463 virtionet_online = ret;
2464 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "VIRT_NET_DEAD",
2465 NULL, virtnet_cpu_dead);
2466 if (ret)
2467 goto err_dead;
2468
2469 ret = register_virtio_driver(&virtio_net_driver);
2470 if (ret)
2471 goto err_virtio;
2472 return 0;
2473err_virtio:
2474 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2475err_dead:
2476 cpuhp_remove_multi_state(virtionet_online);
2477out:
2478 return ret;
2479}
2480module_init(virtio_net_driver_init);
2481
2482static __exit void virtio_net_driver_exit(void)
2483{
2484 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2485 cpuhp_remove_multi_state(virtionet_online);
2486 unregister_virtio_driver(&virtio_net_driver);
2487}
2488module_exit(virtio_net_driver_exit);
296f96fc
RR
2489
2490MODULE_DEVICE_TABLE(virtio, id_table);
2491MODULE_DESCRIPTION("Virtio network driver");
2492MODULE_LICENSE("GPL");