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