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