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