xref: /linux/drivers/net/virtio_net.c (revision a6a6a98094116b60e5523a571d9443c53325f5b1)
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 <linux/dim.h>
23 #include <net/route.h>
24 #include <net/xdp.h>
25 #include <net/net_failover.h>
26 #include <net/netdev_rx_queue.h>
27 #include <net/netdev_queues.h>
28 
29 static int napi_weight = NAPI_POLL_WEIGHT;
30 module_param(napi_weight, int, 0444);
31 
32 static bool csum = true, gso = true, napi_tx = true;
33 module_param(csum, bool, 0444);
34 module_param(gso, bool, 0444);
35 module_param(napi_tx, bool, 0644);
36 
37 /* FIXME: MTU in config. */
38 #define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
39 #define GOOD_COPY_LEN	128
40 
41 #define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
42 
43 /* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
44 #define VIRTIO_XDP_HEADROOM 256
45 
46 /* Separating two types of XDP xmit */
47 #define VIRTIO_XDP_TX		BIT(0)
48 #define VIRTIO_XDP_REDIR	BIT(1)
49 
50 #define VIRTIO_XDP_FLAG		BIT(0)
51 #define VIRTIO_ORPHAN_FLAG	BIT(1)
52 
53 /* RX packet size EWMA. The average packet size is used to determine the packet
54  * buffer size when refilling RX rings. As the entire RX ring may be refilled
55  * at once, the weight is chosen so that the EWMA will be insensitive to short-
56  * term, transient changes in packet size.
57  */
58 DECLARE_EWMA(pkt_len, 0, 64)
59 
60 #define VIRTNET_DRIVER_VERSION "1.0.0"
61 
62 static const unsigned long guest_offloads[] = {
63 	VIRTIO_NET_F_GUEST_TSO4,
64 	VIRTIO_NET_F_GUEST_TSO6,
65 	VIRTIO_NET_F_GUEST_ECN,
66 	VIRTIO_NET_F_GUEST_UFO,
67 	VIRTIO_NET_F_GUEST_CSUM,
68 	VIRTIO_NET_F_GUEST_USO4,
69 	VIRTIO_NET_F_GUEST_USO6,
70 	VIRTIO_NET_F_GUEST_HDRLEN
71 };
72 
73 #define GUEST_OFFLOAD_GRO_HW_MASK ((1ULL << VIRTIO_NET_F_GUEST_TSO4) | \
74 				(1ULL << VIRTIO_NET_F_GUEST_TSO6) | \
75 				(1ULL << VIRTIO_NET_F_GUEST_ECN)  | \
76 				(1ULL << VIRTIO_NET_F_GUEST_UFO)  | \
77 				(1ULL << VIRTIO_NET_F_GUEST_USO4) | \
78 				(1ULL << VIRTIO_NET_F_GUEST_USO6))
79 
80 struct virtnet_stat_desc {
81 	char desc[ETH_GSTRING_LEN];
82 	size_t offset;
83 	size_t qstat_offset;
84 };
85 
86 struct virtnet_sq_free_stats {
87 	u64 packets;
88 	u64 bytes;
89 	u64 napi_packets;
90 	u64 napi_bytes;
91 };
92 
93 struct virtnet_sq_stats {
94 	struct u64_stats_sync syncp;
95 	u64_stats_t packets;
96 	u64_stats_t bytes;
97 	u64_stats_t xdp_tx;
98 	u64_stats_t xdp_tx_drops;
99 	u64_stats_t kicks;
100 	u64_stats_t tx_timeouts;
101 	u64_stats_t stop;
102 	u64_stats_t wake;
103 };
104 
105 struct virtnet_rq_stats {
106 	struct u64_stats_sync syncp;
107 	u64_stats_t packets;
108 	u64_stats_t bytes;
109 	u64_stats_t drops;
110 	u64_stats_t xdp_packets;
111 	u64_stats_t xdp_tx;
112 	u64_stats_t xdp_redirects;
113 	u64_stats_t xdp_drops;
114 	u64_stats_t kicks;
115 };
116 
117 #define VIRTNET_SQ_STAT(name, m) {name, offsetof(struct virtnet_sq_stats, m), -1}
118 #define VIRTNET_RQ_STAT(name, m) {name, offsetof(struct virtnet_rq_stats, m), -1}
119 
120 #define VIRTNET_SQ_STAT_QSTAT(name, m)				\
121 	{							\
122 		name,						\
123 		offsetof(struct virtnet_sq_stats, m),		\
124 		offsetof(struct netdev_queue_stats_tx, m),	\
125 	}
126 
127 #define VIRTNET_RQ_STAT_QSTAT(name, m)				\
128 	{							\
129 		name,						\
130 		offsetof(struct virtnet_rq_stats, m),		\
131 		offsetof(struct netdev_queue_stats_rx, m),	\
132 	}
133 
134 static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
135 	VIRTNET_SQ_STAT("xdp_tx",       xdp_tx),
136 	VIRTNET_SQ_STAT("xdp_tx_drops", xdp_tx_drops),
137 	VIRTNET_SQ_STAT("kicks",        kicks),
138 	VIRTNET_SQ_STAT("tx_timeouts",  tx_timeouts),
139 };
140 
141 static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
142 	VIRTNET_RQ_STAT("drops",         drops),
143 	VIRTNET_RQ_STAT("xdp_packets",   xdp_packets),
144 	VIRTNET_RQ_STAT("xdp_tx",        xdp_tx),
145 	VIRTNET_RQ_STAT("xdp_redirects", xdp_redirects),
146 	VIRTNET_RQ_STAT("xdp_drops",     xdp_drops),
147 	VIRTNET_RQ_STAT("kicks",         kicks),
148 };
149 
150 static const struct virtnet_stat_desc virtnet_sq_stats_desc_qstat[] = {
151 	VIRTNET_SQ_STAT_QSTAT("packets", packets),
152 	VIRTNET_SQ_STAT_QSTAT("bytes",   bytes),
153 	VIRTNET_SQ_STAT_QSTAT("stop",	 stop),
154 	VIRTNET_SQ_STAT_QSTAT("wake",	 wake),
155 };
156 
157 static const struct virtnet_stat_desc virtnet_rq_stats_desc_qstat[] = {
158 	VIRTNET_RQ_STAT_QSTAT("packets", packets),
159 	VIRTNET_RQ_STAT_QSTAT("bytes",   bytes),
160 };
161 
162 #define VIRTNET_STATS_DESC_CQ(name) \
163 	{#name, offsetof(struct virtio_net_stats_cvq, name), -1}
164 
165 #define VIRTNET_STATS_DESC_RX(class, name) \
166 	{#name, offsetof(struct virtio_net_stats_rx_ ## class, rx_ ## name), -1}
167 
168 #define VIRTNET_STATS_DESC_TX(class, name) \
169 	{#name, offsetof(struct virtio_net_stats_tx_ ## class, tx_ ## name), -1}
170 
171 
172 static const struct virtnet_stat_desc virtnet_stats_cvq_desc[] = {
173 	VIRTNET_STATS_DESC_CQ(command_num),
174 	VIRTNET_STATS_DESC_CQ(ok_num),
175 };
176 
177 static const struct virtnet_stat_desc virtnet_stats_rx_basic_desc[] = {
178 	VIRTNET_STATS_DESC_RX(basic, packets),
179 	VIRTNET_STATS_DESC_RX(basic, bytes),
180 
181 	VIRTNET_STATS_DESC_RX(basic, notifications),
182 	VIRTNET_STATS_DESC_RX(basic, interrupts),
183 };
184 
185 static const struct virtnet_stat_desc virtnet_stats_tx_basic_desc[] = {
186 	VIRTNET_STATS_DESC_TX(basic, packets),
187 	VIRTNET_STATS_DESC_TX(basic, bytes),
188 
189 	VIRTNET_STATS_DESC_TX(basic, notifications),
190 	VIRTNET_STATS_DESC_TX(basic, interrupts),
191 };
192 
193 static const struct virtnet_stat_desc virtnet_stats_rx_csum_desc[] = {
194 	VIRTNET_STATS_DESC_RX(csum, needs_csum),
195 };
196 
197 static const struct virtnet_stat_desc virtnet_stats_tx_gso_desc[] = {
198 	VIRTNET_STATS_DESC_TX(gso, gso_packets_noseg),
199 	VIRTNET_STATS_DESC_TX(gso, gso_bytes_noseg),
200 };
201 
202 static const struct virtnet_stat_desc virtnet_stats_rx_speed_desc[] = {
203 	VIRTNET_STATS_DESC_RX(speed, ratelimit_bytes),
204 };
205 
206 static const struct virtnet_stat_desc virtnet_stats_tx_speed_desc[] = {
207 	VIRTNET_STATS_DESC_TX(speed, ratelimit_bytes),
208 };
209 
210 #define VIRTNET_STATS_DESC_RX_QSTAT(class, name, qstat_field)			\
211 	{									\
212 		#name,								\
213 		offsetof(struct virtio_net_stats_rx_ ## class, rx_ ## name),	\
214 		offsetof(struct netdev_queue_stats_rx, qstat_field),		\
215 	}
216 
217 #define VIRTNET_STATS_DESC_TX_QSTAT(class, name, qstat_field)			\
218 	{									\
219 		#name,								\
220 		offsetof(struct virtio_net_stats_tx_ ## class, tx_ ## name),	\
221 		offsetof(struct netdev_queue_stats_tx, qstat_field),		\
222 	}
223 
224 static const struct virtnet_stat_desc virtnet_stats_rx_basic_desc_qstat[] = {
225 	VIRTNET_STATS_DESC_RX_QSTAT(basic, drops,         hw_drops),
226 	VIRTNET_STATS_DESC_RX_QSTAT(basic, drop_overruns, hw_drop_overruns),
227 };
228 
229 static const struct virtnet_stat_desc virtnet_stats_tx_basic_desc_qstat[] = {
230 	VIRTNET_STATS_DESC_TX_QSTAT(basic, drops,          hw_drops),
231 	VIRTNET_STATS_DESC_TX_QSTAT(basic, drop_malformed, hw_drop_errors),
232 };
233 
234 static const struct virtnet_stat_desc virtnet_stats_rx_csum_desc_qstat[] = {
235 	VIRTNET_STATS_DESC_RX_QSTAT(csum, csum_valid, csum_unnecessary),
236 	VIRTNET_STATS_DESC_RX_QSTAT(csum, csum_none,  csum_none),
237 	VIRTNET_STATS_DESC_RX_QSTAT(csum, csum_bad,   csum_bad),
238 };
239 
240 static const struct virtnet_stat_desc virtnet_stats_tx_csum_desc_qstat[] = {
241 	VIRTNET_STATS_DESC_TX_QSTAT(csum, csum_none,  csum_none),
242 	VIRTNET_STATS_DESC_TX_QSTAT(csum, needs_csum, needs_csum),
243 };
244 
245 static const struct virtnet_stat_desc virtnet_stats_rx_gso_desc_qstat[] = {
246 	VIRTNET_STATS_DESC_RX_QSTAT(gso, gso_packets,           hw_gro_packets),
247 	VIRTNET_STATS_DESC_RX_QSTAT(gso, gso_bytes,             hw_gro_bytes),
248 	VIRTNET_STATS_DESC_RX_QSTAT(gso, gso_packets_coalesced, hw_gro_wire_packets),
249 	VIRTNET_STATS_DESC_RX_QSTAT(gso, gso_bytes_coalesced,   hw_gro_wire_bytes),
250 };
251 
252 static const struct virtnet_stat_desc virtnet_stats_tx_gso_desc_qstat[] = {
253 	VIRTNET_STATS_DESC_TX_QSTAT(gso, gso_packets,        hw_gso_packets),
254 	VIRTNET_STATS_DESC_TX_QSTAT(gso, gso_bytes,          hw_gso_bytes),
255 	VIRTNET_STATS_DESC_TX_QSTAT(gso, gso_segments,       hw_gso_wire_packets),
256 	VIRTNET_STATS_DESC_TX_QSTAT(gso, gso_segments_bytes, hw_gso_wire_bytes),
257 };
258 
259 static const struct virtnet_stat_desc virtnet_stats_rx_speed_desc_qstat[] = {
260 	VIRTNET_STATS_DESC_RX_QSTAT(speed, ratelimit_packets, hw_drop_ratelimits),
261 };
262 
263 static const struct virtnet_stat_desc virtnet_stats_tx_speed_desc_qstat[] = {
264 	VIRTNET_STATS_DESC_TX_QSTAT(speed, ratelimit_packets, hw_drop_ratelimits),
265 };
266 
267 #define VIRTNET_Q_TYPE_RX 0
268 #define VIRTNET_Q_TYPE_TX 1
269 #define VIRTNET_Q_TYPE_CQ 2
270 
271 struct virtnet_interrupt_coalesce {
272 	u32 max_packets;
273 	u32 max_usecs;
274 };
275 
276 /* The dma information of pages allocated at a time. */
277 struct virtnet_rq_dma {
278 	dma_addr_t addr;
279 	u32 ref;
280 	u16 len;
281 	u16 need_sync;
282 };
283 
284 /* Internal representation of a send virtqueue */
285 struct send_queue {
286 	/* Virtqueue associated with this send _queue */
287 	struct virtqueue *vq;
288 
289 	/* TX: fragments + linear part + virtio header */
290 	struct scatterlist sg[MAX_SKB_FRAGS + 2];
291 
292 	/* Name of the send queue: output.$index */
293 	char name[16];
294 
295 	struct virtnet_sq_stats stats;
296 
297 	struct virtnet_interrupt_coalesce intr_coal;
298 
299 	struct napi_struct napi;
300 
301 	/* Record whether sq is in reset state. */
302 	bool reset;
303 };
304 
305 /* Internal representation of a receive virtqueue */
306 struct receive_queue {
307 	/* Virtqueue associated with this receive_queue */
308 	struct virtqueue *vq;
309 
310 	struct napi_struct napi;
311 
312 	struct bpf_prog __rcu *xdp_prog;
313 
314 	struct virtnet_rq_stats stats;
315 
316 	/* The number of rx notifications */
317 	u16 calls;
318 
319 	/* Is dynamic interrupt moderation enabled? */
320 	bool dim_enabled;
321 
322 	/* Used to protect dim_enabled and inter_coal */
323 	struct mutex dim_lock;
324 
325 	/* Dynamic Interrupt Moderation */
326 	struct dim dim;
327 
328 	u32 packets_in_napi;
329 
330 	struct virtnet_interrupt_coalesce intr_coal;
331 
332 	/* Chain pages by the private ptr. */
333 	struct page *pages;
334 
335 	/* Average packet length for mergeable receive buffers. */
336 	struct ewma_pkt_len mrg_avg_pkt_len;
337 
338 	/* Page frag for packet buffer allocation. */
339 	struct page_frag alloc_frag;
340 
341 	/* RX: fragments + linear part + virtio header */
342 	struct scatterlist sg[MAX_SKB_FRAGS + 2];
343 
344 	/* Min single buffer size for mergeable buffers case. */
345 	unsigned int min_buf_len;
346 
347 	/* Name of this receive queue: input.$index */
348 	char name[16];
349 
350 	struct xdp_rxq_info xdp_rxq;
351 
352 	/* Record the last dma info to free after new pages is allocated. */
353 	struct virtnet_rq_dma *last_dma;
354 };
355 
356 /* This structure can contain rss message with maximum settings for indirection table and keysize
357  * Note, that default structure that describes RSS configuration virtio_net_rss_config
358  * contains same info but can't handle table values.
359  * In any case, structure would be passed to virtio hw through sg_buf split by parts
360  * because table sizes may be differ according to the device configuration.
361  */
362 #define VIRTIO_NET_RSS_MAX_KEY_SIZE     40
363 #define VIRTIO_NET_RSS_MAX_TABLE_LEN    128
364 struct virtio_net_ctrl_rss {
365 	u32 hash_types;
366 	u16 indirection_table_mask;
367 	u16 unclassified_queue;
368 	u16 indirection_table[VIRTIO_NET_RSS_MAX_TABLE_LEN];
369 	u16 max_tx_vq;
370 	u8 hash_key_length;
371 	u8 key[VIRTIO_NET_RSS_MAX_KEY_SIZE];
372 };
373 
374 /* Control VQ buffers: protected by the rtnl lock */
375 struct control_buf {
376 	struct virtio_net_ctrl_hdr hdr;
377 	virtio_net_ctrl_ack status;
378 };
379 
380 struct virtnet_info {
381 	struct virtio_device *vdev;
382 	struct virtqueue *cvq;
383 	struct net_device *dev;
384 	struct send_queue *sq;
385 	struct receive_queue *rq;
386 	unsigned int status;
387 
388 	/* Max # of queue pairs supported by the device */
389 	u16 max_queue_pairs;
390 
391 	/* # of queue pairs currently used by the driver */
392 	u16 curr_queue_pairs;
393 
394 	/* # of XDP queue pairs currently used by the driver */
395 	u16 xdp_queue_pairs;
396 
397 	/* xdp_queue_pairs may be 0, when xdp is already loaded. So add this. */
398 	bool xdp_enabled;
399 
400 	/* I like... big packets and I cannot lie! */
401 	bool big_packets;
402 
403 	/* number of sg entries allocated for big packets */
404 	unsigned int big_packets_num_skbfrags;
405 
406 	/* Host will merge rx buffers for big packets (shake it! shake it!) */
407 	bool mergeable_rx_bufs;
408 
409 	/* Host supports rss and/or hash report */
410 	bool has_rss;
411 	bool has_rss_hash_report;
412 	u8 rss_key_size;
413 	u16 rss_indir_table_size;
414 	u32 rss_hash_types_supported;
415 	u32 rss_hash_types_saved;
416 	struct virtio_net_ctrl_rss rss;
417 
418 	/* Has control virtqueue */
419 	bool has_cvq;
420 
421 	/* Lock to protect the control VQ */
422 	struct mutex cvq_lock;
423 
424 	/* Host can handle any s/g split between our header and packet data */
425 	bool any_header_sg;
426 
427 	/* Packet virtio header size */
428 	u8 hdr_len;
429 
430 	/* Work struct for delayed refilling if we run low on memory. */
431 	struct delayed_work refill;
432 
433 	/* Is delayed refill enabled? */
434 	bool refill_enabled;
435 
436 	/* The lock to synchronize the access to refill_enabled */
437 	spinlock_t refill_lock;
438 
439 	/* Work struct for config space updates */
440 	struct work_struct config_work;
441 
442 	/* Work struct for setting rx mode */
443 	struct work_struct rx_mode_work;
444 
445 	/* OK to queue work setting RX mode? */
446 	bool rx_mode_work_enabled;
447 
448 	/* Does the affinity hint is set for virtqueues? */
449 	bool affinity_hint_set;
450 
451 	/* CPU hotplug instances for online & dead */
452 	struct hlist_node node;
453 	struct hlist_node node_dead;
454 
455 	struct control_buf *ctrl;
456 
457 	/* Ethtool settings */
458 	u8 duplex;
459 	u32 speed;
460 
461 	/* Is rx dynamic interrupt moderation enabled? */
462 	bool rx_dim_enabled;
463 
464 	/* Interrupt coalescing settings */
465 	struct virtnet_interrupt_coalesce intr_coal_tx;
466 	struct virtnet_interrupt_coalesce intr_coal_rx;
467 
468 	unsigned long guest_offloads;
469 	unsigned long guest_offloads_capable;
470 
471 	/* failover when STANDBY feature enabled */
472 	struct failover *failover;
473 
474 	u64 device_stats_cap;
475 };
476 
477 struct padded_vnet_hdr {
478 	struct virtio_net_hdr_v1_hash hdr;
479 	/*
480 	 * hdr is in a separate sg buffer, and data sg buffer shares same page
481 	 * with this header sg. This padding makes next sg 16 byte aligned
482 	 * after the header.
483 	 */
484 	char padding[12];
485 };
486 
487 struct virtio_net_common_hdr {
488 	union {
489 		struct virtio_net_hdr hdr;
490 		struct virtio_net_hdr_mrg_rxbuf	mrg_hdr;
491 		struct virtio_net_hdr_v1_hash hash_v1_hdr;
492 	};
493 };
494 
495 static void virtnet_sq_free_unused_buf(struct virtqueue *vq, void *buf);
496 
497 static bool is_xdp_frame(void *ptr)
498 {
499 	return (unsigned long)ptr & VIRTIO_XDP_FLAG;
500 }
501 
502 static void *xdp_to_ptr(struct xdp_frame *ptr)
503 {
504 	return (void *)((unsigned long)ptr | VIRTIO_XDP_FLAG);
505 }
506 
507 static struct xdp_frame *ptr_to_xdp(void *ptr)
508 {
509 	return (struct xdp_frame *)((unsigned long)ptr & ~VIRTIO_XDP_FLAG);
510 }
511 
512 static bool is_orphan_skb(void *ptr)
513 {
514 	return (unsigned long)ptr & VIRTIO_ORPHAN_FLAG;
515 }
516 
517 static void *skb_to_ptr(struct sk_buff *skb, bool orphan)
518 {
519 	return (void *)((unsigned long)skb | (orphan ? VIRTIO_ORPHAN_FLAG : 0));
520 }
521 
522 static struct sk_buff *ptr_to_skb(void *ptr)
523 {
524 	return (struct sk_buff *)((unsigned long)ptr & ~VIRTIO_ORPHAN_FLAG);
525 }
526 
527 static void __free_old_xmit(struct send_queue *sq, struct netdev_queue *txq,
528 			    bool in_napi, struct virtnet_sq_free_stats *stats)
529 {
530 	unsigned int len;
531 	void *ptr;
532 
533 	while ((ptr = virtqueue_get_buf(sq->vq, &len)) != NULL) {
534 		if (!is_xdp_frame(ptr)) {
535 			struct sk_buff *skb = ptr_to_skb(ptr);
536 
537 			pr_debug("Sent skb %p\n", skb);
538 
539 			if (is_orphan_skb(ptr)) {
540 				stats->packets++;
541 				stats->bytes += skb->len;
542 			} else {
543 				stats->napi_packets++;
544 				stats->napi_bytes += skb->len;
545 			}
546 			napi_consume_skb(skb, in_napi);
547 		} else {
548 			struct xdp_frame *frame = ptr_to_xdp(ptr);
549 
550 			stats->packets++;
551 			stats->bytes += xdp_get_frame_len(frame);
552 			xdp_return_frame(frame);
553 		}
554 	}
555 	netdev_tx_completed_queue(txq, stats->napi_packets, stats->napi_bytes);
556 }
557 
558 /* Converting between virtqueue no. and kernel tx/rx queue no.
559  * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
560  */
561 static int vq2txq(struct virtqueue *vq)
562 {
563 	return (vq->index - 1) / 2;
564 }
565 
566 static int txq2vq(int txq)
567 {
568 	return txq * 2 + 1;
569 }
570 
571 static int vq2rxq(struct virtqueue *vq)
572 {
573 	return vq->index / 2;
574 }
575 
576 static int rxq2vq(int rxq)
577 {
578 	return rxq * 2;
579 }
580 
581 static int vq_type(struct virtnet_info *vi, int qid)
582 {
583 	if (qid == vi->max_queue_pairs * 2)
584 		return VIRTNET_Q_TYPE_CQ;
585 
586 	if (qid % 2)
587 		return VIRTNET_Q_TYPE_TX;
588 
589 	return VIRTNET_Q_TYPE_RX;
590 }
591 
592 static inline struct virtio_net_common_hdr *
593 skb_vnet_common_hdr(struct sk_buff *skb)
594 {
595 	return (struct virtio_net_common_hdr *)skb->cb;
596 }
597 
598 /*
599  * private is used to chain pages for big packets, put the whole
600  * most recent used list in the beginning for reuse
601  */
602 static void give_pages(struct receive_queue *rq, struct page *page)
603 {
604 	struct page *end;
605 
606 	/* Find end of list, sew whole thing into vi->rq.pages. */
607 	for (end = page; end->private; end = (struct page *)end->private);
608 	end->private = (unsigned long)rq->pages;
609 	rq->pages = page;
610 }
611 
612 static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
613 {
614 	struct page *p = rq->pages;
615 
616 	if (p) {
617 		rq->pages = (struct page *)p->private;
618 		/* clear private here, it is used to chain pages */
619 		p->private = 0;
620 	} else
621 		p = alloc_page(gfp_mask);
622 	return p;
623 }
624 
625 static void virtnet_rq_free_buf(struct virtnet_info *vi,
626 				struct receive_queue *rq, void *buf)
627 {
628 	if (vi->mergeable_rx_bufs)
629 		put_page(virt_to_head_page(buf));
630 	else if (vi->big_packets)
631 		give_pages(rq, buf);
632 	else
633 		put_page(virt_to_head_page(buf));
634 }
635 
636 static void enable_delayed_refill(struct virtnet_info *vi)
637 {
638 	spin_lock_bh(&vi->refill_lock);
639 	vi->refill_enabled = true;
640 	spin_unlock_bh(&vi->refill_lock);
641 }
642 
643 static void disable_delayed_refill(struct virtnet_info *vi)
644 {
645 	spin_lock_bh(&vi->refill_lock);
646 	vi->refill_enabled = false;
647 	spin_unlock_bh(&vi->refill_lock);
648 }
649 
650 static void enable_rx_mode_work(struct virtnet_info *vi)
651 {
652 	rtnl_lock();
653 	vi->rx_mode_work_enabled = true;
654 	rtnl_unlock();
655 }
656 
657 static void disable_rx_mode_work(struct virtnet_info *vi)
658 {
659 	rtnl_lock();
660 	vi->rx_mode_work_enabled = false;
661 	rtnl_unlock();
662 }
663 
664 static void virtqueue_napi_schedule(struct napi_struct *napi,
665 				    struct virtqueue *vq)
666 {
667 	if (napi_schedule_prep(napi)) {
668 		virtqueue_disable_cb(vq);
669 		__napi_schedule(napi);
670 	}
671 }
672 
673 static bool virtqueue_napi_complete(struct napi_struct *napi,
674 				    struct virtqueue *vq, int processed)
675 {
676 	int opaque;
677 
678 	opaque = virtqueue_enable_cb_prepare(vq);
679 	if (napi_complete_done(napi, processed)) {
680 		if (unlikely(virtqueue_poll(vq, opaque)))
681 			virtqueue_napi_schedule(napi, vq);
682 		else
683 			return true;
684 	} else {
685 		virtqueue_disable_cb(vq);
686 	}
687 
688 	return false;
689 }
690 
691 static void skb_xmit_done(struct virtqueue *vq)
692 {
693 	struct virtnet_info *vi = vq->vdev->priv;
694 	struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
695 
696 	/* Suppress further interrupts. */
697 	virtqueue_disable_cb(vq);
698 
699 	if (napi->weight)
700 		virtqueue_napi_schedule(napi, vq);
701 	else
702 		/* We were probably waiting for more output buffers. */
703 		netif_wake_subqueue(vi->dev, vq2txq(vq));
704 }
705 
706 #define MRG_CTX_HEADER_SHIFT 22
707 static void *mergeable_len_to_ctx(unsigned int truesize,
708 				  unsigned int headroom)
709 {
710 	return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
711 }
712 
713 static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
714 {
715 	return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
716 }
717 
718 static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
719 {
720 	return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
721 }
722 
723 static struct sk_buff *virtnet_build_skb(void *buf, unsigned int buflen,
724 					 unsigned int headroom,
725 					 unsigned int len)
726 {
727 	struct sk_buff *skb;
728 
729 	skb = build_skb(buf, buflen);
730 	if (unlikely(!skb))
731 		return NULL;
732 
733 	skb_reserve(skb, headroom);
734 	skb_put(skb, len);
735 
736 	return skb;
737 }
738 
739 /* Called from bottom half context */
740 static struct sk_buff *page_to_skb(struct virtnet_info *vi,
741 				   struct receive_queue *rq,
742 				   struct page *page, unsigned int offset,
743 				   unsigned int len, unsigned int truesize,
744 				   unsigned int headroom)
745 {
746 	struct sk_buff *skb;
747 	struct virtio_net_common_hdr *hdr;
748 	unsigned int copy, hdr_len, hdr_padded_len;
749 	struct page *page_to_free = NULL;
750 	int tailroom, shinfo_size;
751 	char *p, *hdr_p, *buf;
752 
753 	p = page_address(page) + offset;
754 	hdr_p = p;
755 
756 	hdr_len = vi->hdr_len;
757 	if (vi->mergeable_rx_bufs)
758 		hdr_padded_len = hdr_len;
759 	else
760 		hdr_padded_len = sizeof(struct padded_vnet_hdr);
761 
762 	buf = p - headroom;
763 	len -= hdr_len;
764 	offset += hdr_padded_len;
765 	p += hdr_padded_len;
766 	tailroom = truesize - headroom  - hdr_padded_len - len;
767 
768 	shinfo_size = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
769 
770 	if (!NET_IP_ALIGN && len > GOOD_COPY_LEN && tailroom >= shinfo_size) {
771 		skb = virtnet_build_skb(buf, truesize, p - buf, len);
772 		if (unlikely(!skb))
773 			return NULL;
774 
775 		page = (struct page *)page->private;
776 		if (page)
777 			give_pages(rq, page);
778 		goto ok;
779 	}
780 
781 	/* copy small packet so we can reuse these pages for small data */
782 	skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
783 	if (unlikely(!skb))
784 		return NULL;
785 
786 	/* Copy all frame if it fits skb->head, otherwise
787 	 * we let virtio_net_hdr_to_skb() and GRO pull headers as needed.
788 	 */
789 	if (len <= skb_tailroom(skb))
790 		copy = len;
791 	else
792 		copy = ETH_HLEN;
793 	skb_put_data(skb, p, copy);
794 
795 	len -= copy;
796 	offset += copy;
797 
798 	if (vi->mergeable_rx_bufs) {
799 		if (len)
800 			skb_add_rx_frag(skb, 0, page, offset, len, truesize);
801 		else
802 			page_to_free = page;
803 		goto ok;
804 	}
805 
806 	/*
807 	 * Verify that we can indeed put this data into a skb.
808 	 * This is here to handle cases when the device erroneously
809 	 * tries to receive more than is possible. This is usually
810 	 * the case of a broken device.
811 	 */
812 	if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
813 		net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
814 		dev_kfree_skb(skb);
815 		return NULL;
816 	}
817 	BUG_ON(offset >= PAGE_SIZE);
818 	while (len) {
819 		unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
820 		skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
821 				frag_size, truesize);
822 		len -= frag_size;
823 		page = (struct page *)page->private;
824 		offset = 0;
825 	}
826 
827 	if (page)
828 		give_pages(rq, page);
829 
830 ok:
831 	hdr = skb_vnet_common_hdr(skb);
832 	memcpy(hdr, hdr_p, hdr_len);
833 	if (page_to_free)
834 		put_page(page_to_free);
835 
836 	return skb;
837 }
838 
839 static void virtnet_rq_unmap(struct receive_queue *rq, void *buf, u32 len)
840 {
841 	struct page *page = virt_to_head_page(buf);
842 	struct virtnet_rq_dma *dma;
843 	void *head;
844 	int offset;
845 
846 	head = page_address(page);
847 
848 	dma = head;
849 
850 	--dma->ref;
851 
852 	if (dma->need_sync && len) {
853 		offset = buf - (head + sizeof(*dma));
854 
855 		virtqueue_dma_sync_single_range_for_cpu(rq->vq, dma->addr,
856 							offset, len,
857 							DMA_FROM_DEVICE);
858 	}
859 
860 	if (dma->ref)
861 		return;
862 
863 	virtqueue_dma_unmap_single_attrs(rq->vq, dma->addr, dma->len,
864 					 DMA_FROM_DEVICE, DMA_ATTR_SKIP_CPU_SYNC);
865 	put_page(page);
866 }
867 
868 static void *virtnet_rq_get_buf(struct receive_queue *rq, u32 *len, void **ctx)
869 {
870 	void *buf;
871 
872 	buf = virtqueue_get_buf_ctx(rq->vq, len, ctx);
873 	if (buf)
874 		virtnet_rq_unmap(rq, buf, *len);
875 
876 	return buf;
877 }
878 
879 static void virtnet_rq_init_one_sg(struct receive_queue *rq, void *buf, u32 len)
880 {
881 	struct virtnet_rq_dma *dma;
882 	dma_addr_t addr;
883 	u32 offset;
884 	void *head;
885 
886 	head = page_address(rq->alloc_frag.page);
887 
888 	offset = buf - head;
889 
890 	dma = head;
891 
892 	addr = dma->addr - sizeof(*dma) + offset;
893 
894 	sg_init_table(rq->sg, 1);
895 	rq->sg[0].dma_address = addr;
896 	rq->sg[0].length = len;
897 }
898 
899 static void *virtnet_rq_alloc(struct receive_queue *rq, u32 size, gfp_t gfp)
900 {
901 	struct page_frag *alloc_frag = &rq->alloc_frag;
902 	struct virtnet_rq_dma *dma;
903 	void *buf, *head;
904 	dma_addr_t addr;
905 
906 	if (unlikely(!skb_page_frag_refill(size, alloc_frag, gfp)))
907 		return NULL;
908 
909 	head = page_address(alloc_frag->page);
910 
911 	dma = head;
912 
913 	/* new pages */
914 	if (!alloc_frag->offset) {
915 		if (rq->last_dma) {
916 			/* Now, the new page is allocated, the last dma
917 			 * will not be used. So the dma can be unmapped
918 			 * if the ref is 0.
919 			 */
920 			virtnet_rq_unmap(rq, rq->last_dma, 0);
921 			rq->last_dma = NULL;
922 		}
923 
924 		dma->len = alloc_frag->size - sizeof(*dma);
925 
926 		addr = virtqueue_dma_map_single_attrs(rq->vq, dma + 1,
927 						      dma->len, DMA_FROM_DEVICE, 0);
928 		if (virtqueue_dma_mapping_error(rq->vq, addr))
929 			return NULL;
930 
931 		dma->addr = addr;
932 		dma->need_sync = virtqueue_dma_need_sync(rq->vq, addr);
933 
934 		/* Add a reference to dma to prevent the entire dma from
935 		 * being released during error handling. This reference
936 		 * will be freed after the pages are no longer used.
937 		 */
938 		get_page(alloc_frag->page);
939 		dma->ref = 1;
940 		alloc_frag->offset = sizeof(*dma);
941 
942 		rq->last_dma = dma;
943 	}
944 
945 	++dma->ref;
946 
947 	buf = head + alloc_frag->offset;
948 
949 	get_page(alloc_frag->page);
950 	alloc_frag->offset += size;
951 
952 	return buf;
953 }
954 
955 static void virtnet_rq_set_premapped(struct virtnet_info *vi)
956 {
957 	int i;
958 
959 	/* disable for big mode */
960 	if (!vi->mergeable_rx_bufs && vi->big_packets)
961 		return;
962 
963 	for (i = 0; i < vi->max_queue_pairs; i++)
964 		/* error should never happen */
965 		BUG_ON(virtqueue_set_dma_premapped(vi->rq[i].vq));
966 }
967 
968 static void virtnet_rq_unmap_free_buf(struct virtqueue *vq, void *buf)
969 {
970 	struct virtnet_info *vi = vq->vdev->priv;
971 	struct receive_queue *rq;
972 	int i = vq2rxq(vq);
973 
974 	rq = &vi->rq[i];
975 
976 	if (!vi->big_packets || vi->mergeable_rx_bufs)
977 		virtnet_rq_unmap(rq, buf, 0);
978 
979 	virtnet_rq_free_buf(vi, rq, buf);
980 }
981 
982 static void free_old_xmit(struct send_queue *sq, struct netdev_queue *txq,
983 			  bool in_napi)
984 {
985 	struct virtnet_sq_free_stats stats = {0};
986 
987 	__free_old_xmit(sq, txq, in_napi, &stats);
988 
989 	/* Avoid overhead when no packets have been processed
990 	 * happens when called speculatively from start_xmit.
991 	 */
992 	if (!stats.packets && !stats.napi_packets)
993 		return;
994 
995 	u64_stats_update_begin(&sq->stats.syncp);
996 	u64_stats_add(&sq->stats.bytes, stats.bytes + stats.napi_bytes);
997 	u64_stats_add(&sq->stats.packets, stats.packets + stats.napi_packets);
998 	u64_stats_update_end(&sq->stats.syncp);
999 }
1000 
1001 static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
1002 {
1003 	if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
1004 		return false;
1005 	else if (q < vi->curr_queue_pairs)
1006 		return true;
1007 	else
1008 		return false;
1009 }
1010 
1011 static void check_sq_full_and_disable(struct virtnet_info *vi,
1012 				      struct net_device *dev,
1013 				      struct send_queue *sq)
1014 {
1015 	bool use_napi = sq->napi.weight;
1016 	int qnum;
1017 
1018 	qnum = sq - vi->sq;
1019 
1020 	/* If running out of space, stop queue to avoid getting packets that we
1021 	 * are then unable to transmit.
1022 	 * An alternative would be to force queuing layer to requeue the skb by
1023 	 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1024 	 * returned in a normal path of operation: it means that driver is not
1025 	 * maintaining the TX queue stop/start state properly, and causes
1026 	 * the stack to do a non-trivial amount of useless work.
1027 	 * Since most packets only take 1 or 2 ring slots, stopping the queue
1028 	 * early means 16 slots are typically wasted.
1029 	 */
1030 	if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
1031 		struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1032 
1033 		netif_tx_stop_queue(txq);
1034 		u64_stats_update_begin(&sq->stats.syncp);
1035 		u64_stats_inc(&sq->stats.stop);
1036 		u64_stats_update_end(&sq->stats.syncp);
1037 		if (use_napi) {
1038 			if (unlikely(!virtqueue_enable_cb_delayed(sq->vq)))
1039 				virtqueue_napi_schedule(&sq->napi, sq->vq);
1040 		} else if (unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
1041 			/* More just got used, free them then recheck. */
1042 			free_old_xmit(sq, txq, false);
1043 			if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
1044 				netif_start_subqueue(dev, qnum);
1045 				u64_stats_update_begin(&sq->stats.syncp);
1046 				u64_stats_inc(&sq->stats.wake);
1047 				u64_stats_update_end(&sq->stats.syncp);
1048 				virtqueue_disable_cb(sq->vq);
1049 			}
1050 		}
1051 	}
1052 }
1053 
1054 static int __virtnet_xdp_xmit_one(struct virtnet_info *vi,
1055 				   struct send_queue *sq,
1056 				   struct xdp_frame *xdpf)
1057 {
1058 	struct virtio_net_hdr_mrg_rxbuf *hdr;
1059 	struct skb_shared_info *shinfo;
1060 	u8 nr_frags = 0;
1061 	int err, i;
1062 
1063 	if (unlikely(xdpf->headroom < vi->hdr_len))
1064 		return -EOVERFLOW;
1065 
1066 	if (unlikely(xdp_frame_has_frags(xdpf))) {
1067 		shinfo = xdp_get_shared_info_from_frame(xdpf);
1068 		nr_frags = shinfo->nr_frags;
1069 	}
1070 
1071 	/* In wrapping function virtnet_xdp_xmit(), we need to free
1072 	 * up the pending old buffers, where we need to calculate the
1073 	 * position of skb_shared_info in xdp_get_frame_len() and
1074 	 * xdp_return_frame(), which will involve to xdpf->data and
1075 	 * xdpf->headroom. Therefore, we need to update the value of
1076 	 * headroom synchronously here.
1077 	 */
1078 	xdpf->headroom -= vi->hdr_len;
1079 	xdpf->data -= vi->hdr_len;
1080 	/* Zero header and leave csum up to XDP layers */
1081 	hdr = xdpf->data;
1082 	memset(hdr, 0, vi->hdr_len);
1083 	xdpf->len   += vi->hdr_len;
1084 
1085 	sg_init_table(sq->sg, nr_frags + 1);
1086 	sg_set_buf(sq->sg, xdpf->data, xdpf->len);
1087 	for (i = 0; i < nr_frags; i++) {
1088 		skb_frag_t *frag = &shinfo->frags[i];
1089 
1090 		sg_set_page(&sq->sg[i + 1], skb_frag_page(frag),
1091 			    skb_frag_size(frag), skb_frag_off(frag));
1092 	}
1093 
1094 	err = virtqueue_add_outbuf(sq->vq, sq->sg, nr_frags + 1,
1095 				   xdp_to_ptr(xdpf), GFP_ATOMIC);
1096 	if (unlikely(err))
1097 		return -ENOSPC; /* Caller handle free/refcnt */
1098 
1099 	return 0;
1100 }
1101 
1102 /* when vi->curr_queue_pairs > nr_cpu_ids, the txq/sq is only used for xdp tx on
1103  * the current cpu, so it does not need to be locked.
1104  *
1105  * Here we use marco instead of inline functions because we have to deal with
1106  * three issues at the same time: 1. the choice of sq. 2. judge and execute the
1107  * lock/unlock of txq 3. make sparse happy. It is difficult for two inline
1108  * functions to perfectly solve these three problems at the same time.
1109  */
1110 #define virtnet_xdp_get_sq(vi) ({                                       \
1111 	int cpu = smp_processor_id();                                   \
1112 	struct netdev_queue *txq;                                       \
1113 	typeof(vi) v = (vi);                                            \
1114 	unsigned int qp;                                                \
1115 									\
1116 	if (v->curr_queue_pairs > nr_cpu_ids) {                         \
1117 		qp = v->curr_queue_pairs - v->xdp_queue_pairs;          \
1118 		qp += cpu;                                              \
1119 		txq = netdev_get_tx_queue(v->dev, qp);                  \
1120 		__netif_tx_acquire(txq);                                \
1121 	} else {                                                        \
1122 		qp = cpu % v->curr_queue_pairs;                         \
1123 		txq = netdev_get_tx_queue(v->dev, qp);                  \
1124 		__netif_tx_lock(txq, cpu);                              \
1125 	}                                                               \
1126 	v->sq + qp;                                                     \
1127 })
1128 
1129 #define virtnet_xdp_put_sq(vi, q) {                                     \
1130 	struct netdev_queue *txq;                                       \
1131 	typeof(vi) v = (vi);                                            \
1132 									\
1133 	txq = netdev_get_tx_queue(v->dev, (q) - v->sq);                 \
1134 	if (v->curr_queue_pairs > nr_cpu_ids)                           \
1135 		__netif_tx_release(txq);                                \
1136 	else                                                            \
1137 		__netif_tx_unlock(txq);                                 \
1138 }
1139 
1140 static int virtnet_xdp_xmit(struct net_device *dev,
1141 			    int n, struct xdp_frame **frames, u32 flags)
1142 {
1143 	struct virtnet_info *vi = netdev_priv(dev);
1144 	struct virtnet_sq_free_stats stats = {0};
1145 	struct receive_queue *rq = vi->rq;
1146 	struct bpf_prog *xdp_prog;
1147 	struct send_queue *sq;
1148 	int nxmit = 0;
1149 	int kicks = 0;
1150 	int ret;
1151 	int i;
1152 
1153 	/* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this
1154 	 * indicate XDP resources have been successfully allocated.
1155 	 */
1156 	xdp_prog = rcu_access_pointer(rq->xdp_prog);
1157 	if (!xdp_prog)
1158 		return -ENXIO;
1159 
1160 	sq = virtnet_xdp_get_sq(vi);
1161 
1162 	if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) {
1163 		ret = -EINVAL;
1164 		goto out;
1165 	}
1166 
1167 	/* Free up any pending old buffers before queueing new ones. */
1168 	__free_old_xmit(sq, netdev_get_tx_queue(dev, sq - vi->sq),
1169 			false, &stats);
1170 
1171 	for (i = 0; i < n; i++) {
1172 		struct xdp_frame *xdpf = frames[i];
1173 
1174 		if (__virtnet_xdp_xmit_one(vi, sq, xdpf))
1175 			break;
1176 		nxmit++;
1177 	}
1178 	ret = nxmit;
1179 
1180 	if (!is_xdp_raw_buffer_queue(vi, sq - vi->sq))
1181 		check_sq_full_and_disable(vi, dev, sq);
1182 
1183 	if (flags & XDP_XMIT_FLUSH) {
1184 		if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq))
1185 			kicks = 1;
1186 	}
1187 out:
1188 	u64_stats_update_begin(&sq->stats.syncp);
1189 	u64_stats_add(&sq->stats.bytes, stats.bytes);
1190 	u64_stats_add(&sq->stats.packets, stats.packets);
1191 	u64_stats_add(&sq->stats.xdp_tx, n);
1192 	u64_stats_add(&sq->stats.xdp_tx_drops, n - nxmit);
1193 	u64_stats_add(&sq->stats.kicks, kicks);
1194 	u64_stats_update_end(&sq->stats.syncp);
1195 
1196 	virtnet_xdp_put_sq(vi, sq);
1197 	return ret;
1198 }
1199 
1200 static void put_xdp_frags(struct xdp_buff *xdp)
1201 {
1202 	struct skb_shared_info *shinfo;
1203 	struct page *xdp_page;
1204 	int i;
1205 
1206 	if (xdp_buff_has_frags(xdp)) {
1207 		shinfo = xdp_get_shared_info_from_buff(xdp);
1208 		for (i = 0; i < shinfo->nr_frags; i++) {
1209 			xdp_page = skb_frag_page(&shinfo->frags[i]);
1210 			put_page(xdp_page);
1211 		}
1212 	}
1213 }
1214 
1215 static int virtnet_xdp_handler(struct bpf_prog *xdp_prog, struct xdp_buff *xdp,
1216 			       struct net_device *dev,
1217 			       unsigned int *xdp_xmit,
1218 			       struct virtnet_rq_stats *stats)
1219 {
1220 	struct xdp_frame *xdpf;
1221 	int err;
1222 	u32 act;
1223 
1224 	act = bpf_prog_run_xdp(xdp_prog, xdp);
1225 	u64_stats_inc(&stats->xdp_packets);
1226 
1227 	switch (act) {
1228 	case XDP_PASS:
1229 		return act;
1230 
1231 	case XDP_TX:
1232 		u64_stats_inc(&stats->xdp_tx);
1233 		xdpf = xdp_convert_buff_to_frame(xdp);
1234 		if (unlikely(!xdpf)) {
1235 			netdev_dbg(dev, "convert buff to frame failed for xdp\n");
1236 			return XDP_DROP;
1237 		}
1238 
1239 		err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
1240 		if (unlikely(!err)) {
1241 			xdp_return_frame_rx_napi(xdpf);
1242 		} else if (unlikely(err < 0)) {
1243 			trace_xdp_exception(dev, xdp_prog, act);
1244 			return XDP_DROP;
1245 		}
1246 		*xdp_xmit |= VIRTIO_XDP_TX;
1247 		return act;
1248 
1249 	case XDP_REDIRECT:
1250 		u64_stats_inc(&stats->xdp_redirects);
1251 		err = xdp_do_redirect(dev, xdp, xdp_prog);
1252 		if (err)
1253 			return XDP_DROP;
1254 
1255 		*xdp_xmit |= VIRTIO_XDP_REDIR;
1256 		return act;
1257 
1258 	default:
1259 		bpf_warn_invalid_xdp_action(dev, xdp_prog, act);
1260 		fallthrough;
1261 	case XDP_ABORTED:
1262 		trace_xdp_exception(dev, xdp_prog, act);
1263 		fallthrough;
1264 	case XDP_DROP:
1265 		return XDP_DROP;
1266 	}
1267 }
1268 
1269 static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
1270 {
1271 	return vi->xdp_enabled ? VIRTIO_XDP_HEADROOM : 0;
1272 }
1273 
1274 /* We copy the packet for XDP in the following cases:
1275  *
1276  * 1) Packet is scattered across multiple rx buffers.
1277  * 2) Headroom space is insufficient.
1278  *
1279  * This is inefficient but it's a temporary condition that
1280  * we hit right after XDP is enabled and until queue is refilled
1281  * with large buffers with sufficient headroom - so it should affect
1282  * at most queue size packets.
1283  * Afterwards, the conditions to enable
1284  * XDP should preclude the underlying device from sending packets
1285  * across multiple buffers (num_buf > 1), and we make sure buffers
1286  * have enough headroom.
1287  */
1288 static struct page *xdp_linearize_page(struct receive_queue *rq,
1289 				       int *num_buf,
1290 				       struct page *p,
1291 				       int offset,
1292 				       int page_off,
1293 				       unsigned int *len)
1294 {
1295 	int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1296 	struct page *page;
1297 
1298 	if (page_off + *len + tailroom > PAGE_SIZE)
1299 		return NULL;
1300 
1301 	page = alloc_page(GFP_ATOMIC);
1302 	if (!page)
1303 		return NULL;
1304 
1305 	memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
1306 	page_off += *len;
1307 
1308 	while (--*num_buf) {
1309 		unsigned int buflen;
1310 		void *buf;
1311 		int off;
1312 
1313 		buf = virtnet_rq_get_buf(rq, &buflen, NULL);
1314 		if (unlikely(!buf))
1315 			goto err_buf;
1316 
1317 		p = virt_to_head_page(buf);
1318 		off = buf - page_address(p);
1319 
1320 		/* guard against a misconfigured or uncooperative backend that
1321 		 * is sending packet larger than the MTU.
1322 		 */
1323 		if ((page_off + buflen + tailroom) > PAGE_SIZE) {
1324 			put_page(p);
1325 			goto err_buf;
1326 		}
1327 
1328 		memcpy(page_address(page) + page_off,
1329 		       page_address(p) + off, buflen);
1330 		page_off += buflen;
1331 		put_page(p);
1332 	}
1333 
1334 	/* Headroom does not contribute to packet length */
1335 	*len = page_off - VIRTIO_XDP_HEADROOM;
1336 	return page;
1337 err_buf:
1338 	__free_pages(page, 0);
1339 	return NULL;
1340 }
1341 
1342 static struct sk_buff *receive_small_build_skb(struct virtnet_info *vi,
1343 					       unsigned int xdp_headroom,
1344 					       void *buf,
1345 					       unsigned int len)
1346 {
1347 	unsigned int header_offset;
1348 	unsigned int headroom;
1349 	unsigned int buflen;
1350 	struct sk_buff *skb;
1351 
1352 	header_offset = VIRTNET_RX_PAD + xdp_headroom;
1353 	headroom = vi->hdr_len + header_offset;
1354 	buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
1355 		SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1356 
1357 	skb = virtnet_build_skb(buf, buflen, headroom, len);
1358 	if (unlikely(!skb))
1359 		return NULL;
1360 
1361 	buf += header_offset;
1362 	memcpy(skb_vnet_common_hdr(skb), buf, vi->hdr_len);
1363 
1364 	return skb;
1365 }
1366 
1367 static struct sk_buff *receive_small_xdp(struct net_device *dev,
1368 					 struct virtnet_info *vi,
1369 					 struct receive_queue *rq,
1370 					 struct bpf_prog *xdp_prog,
1371 					 void *buf,
1372 					 unsigned int xdp_headroom,
1373 					 unsigned int len,
1374 					 unsigned int *xdp_xmit,
1375 					 struct virtnet_rq_stats *stats)
1376 {
1377 	unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
1378 	unsigned int headroom = vi->hdr_len + header_offset;
1379 	struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
1380 	struct page *page = virt_to_head_page(buf);
1381 	struct page *xdp_page;
1382 	unsigned int buflen;
1383 	struct xdp_buff xdp;
1384 	struct sk_buff *skb;
1385 	unsigned int metasize = 0;
1386 	u32 act;
1387 
1388 	if (unlikely(hdr->hdr.gso_type))
1389 		goto err_xdp;
1390 
1391 	/* Partially checksummed packets must be dropped. */
1392 	if (unlikely(hdr->hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM))
1393 		goto err_xdp;
1394 
1395 	buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
1396 		SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1397 
1398 	if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
1399 		int offset = buf - page_address(page) + header_offset;
1400 		unsigned int tlen = len + vi->hdr_len;
1401 		int num_buf = 1;
1402 
1403 		xdp_headroom = virtnet_get_headroom(vi);
1404 		header_offset = VIRTNET_RX_PAD + xdp_headroom;
1405 		headroom = vi->hdr_len + header_offset;
1406 		buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
1407 			SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1408 		xdp_page = xdp_linearize_page(rq, &num_buf, page,
1409 					      offset, header_offset,
1410 					      &tlen);
1411 		if (!xdp_page)
1412 			goto err_xdp;
1413 
1414 		buf = page_address(xdp_page);
1415 		put_page(page);
1416 		page = xdp_page;
1417 	}
1418 
1419 	xdp_init_buff(&xdp, buflen, &rq->xdp_rxq);
1420 	xdp_prepare_buff(&xdp, buf + VIRTNET_RX_PAD + vi->hdr_len,
1421 			 xdp_headroom, len, true);
1422 
1423 	act = virtnet_xdp_handler(xdp_prog, &xdp, dev, xdp_xmit, stats);
1424 
1425 	switch (act) {
1426 	case XDP_PASS:
1427 		/* Recalculate length in case bpf program changed it */
1428 		len = xdp.data_end - xdp.data;
1429 		metasize = xdp.data - xdp.data_meta;
1430 		break;
1431 
1432 	case XDP_TX:
1433 	case XDP_REDIRECT:
1434 		goto xdp_xmit;
1435 
1436 	default:
1437 		goto err_xdp;
1438 	}
1439 
1440 	skb = virtnet_build_skb(buf, buflen, xdp.data - buf, len);
1441 	if (unlikely(!skb))
1442 		goto err;
1443 
1444 	if (metasize)
1445 		skb_metadata_set(skb, metasize);
1446 
1447 	return skb;
1448 
1449 err_xdp:
1450 	u64_stats_inc(&stats->xdp_drops);
1451 err:
1452 	u64_stats_inc(&stats->drops);
1453 	put_page(page);
1454 xdp_xmit:
1455 	return NULL;
1456 }
1457 
1458 static struct sk_buff *receive_small(struct net_device *dev,
1459 				     struct virtnet_info *vi,
1460 				     struct receive_queue *rq,
1461 				     void *buf, void *ctx,
1462 				     unsigned int len,
1463 				     unsigned int *xdp_xmit,
1464 				     struct virtnet_rq_stats *stats)
1465 {
1466 	unsigned int xdp_headroom = (unsigned long)ctx;
1467 	struct page *page = virt_to_head_page(buf);
1468 	struct sk_buff *skb;
1469 
1470 	len -= vi->hdr_len;
1471 	u64_stats_add(&stats->bytes, len);
1472 
1473 	if (unlikely(len > GOOD_PACKET_LEN)) {
1474 		pr_debug("%s: rx error: len %u exceeds max size %d\n",
1475 			 dev->name, len, GOOD_PACKET_LEN);
1476 		DEV_STATS_INC(dev, rx_length_errors);
1477 		goto err;
1478 	}
1479 
1480 	if (unlikely(vi->xdp_enabled)) {
1481 		struct bpf_prog *xdp_prog;
1482 
1483 		rcu_read_lock();
1484 		xdp_prog = rcu_dereference(rq->xdp_prog);
1485 		if (xdp_prog) {
1486 			skb = receive_small_xdp(dev, vi, rq, xdp_prog, buf,
1487 						xdp_headroom, len, xdp_xmit,
1488 						stats);
1489 			rcu_read_unlock();
1490 			return skb;
1491 		}
1492 		rcu_read_unlock();
1493 	}
1494 
1495 	skb = receive_small_build_skb(vi, xdp_headroom, buf, len);
1496 	if (likely(skb))
1497 		return skb;
1498 
1499 err:
1500 	u64_stats_inc(&stats->drops);
1501 	put_page(page);
1502 	return NULL;
1503 }
1504 
1505 static struct sk_buff *receive_big(struct net_device *dev,
1506 				   struct virtnet_info *vi,
1507 				   struct receive_queue *rq,
1508 				   void *buf,
1509 				   unsigned int len,
1510 				   struct virtnet_rq_stats *stats)
1511 {
1512 	struct page *page = buf;
1513 	struct sk_buff *skb =
1514 		page_to_skb(vi, rq, page, 0, len, PAGE_SIZE, 0);
1515 
1516 	u64_stats_add(&stats->bytes, len - vi->hdr_len);
1517 	if (unlikely(!skb))
1518 		goto err;
1519 
1520 	return skb;
1521 
1522 err:
1523 	u64_stats_inc(&stats->drops);
1524 	give_pages(rq, page);
1525 	return NULL;
1526 }
1527 
1528 static void mergeable_buf_free(struct receive_queue *rq, int num_buf,
1529 			       struct net_device *dev,
1530 			       struct virtnet_rq_stats *stats)
1531 {
1532 	struct page *page;
1533 	void *buf;
1534 	int len;
1535 
1536 	while (num_buf-- > 1) {
1537 		buf = virtnet_rq_get_buf(rq, &len, NULL);
1538 		if (unlikely(!buf)) {
1539 			pr_debug("%s: rx error: %d buffers missing\n",
1540 				 dev->name, num_buf);
1541 			DEV_STATS_INC(dev, rx_length_errors);
1542 			break;
1543 		}
1544 		u64_stats_add(&stats->bytes, len);
1545 		page = virt_to_head_page(buf);
1546 		put_page(page);
1547 	}
1548 }
1549 
1550 /* Why not use xdp_build_skb_from_frame() ?
1551  * XDP core assumes that xdp frags are PAGE_SIZE in length, while in
1552  * virtio-net there are 2 points that do not match its requirements:
1553  *  1. The size of the prefilled buffer is not fixed before xdp is set.
1554  *  2. xdp_build_skb_from_frame() does more checks that we don't need,
1555  *     like eth_type_trans() (which virtio-net does in receive_buf()).
1556  */
1557 static struct sk_buff *build_skb_from_xdp_buff(struct net_device *dev,
1558 					       struct virtnet_info *vi,
1559 					       struct xdp_buff *xdp,
1560 					       unsigned int xdp_frags_truesz)
1561 {
1562 	struct skb_shared_info *sinfo = xdp_get_shared_info_from_buff(xdp);
1563 	unsigned int headroom, data_len;
1564 	struct sk_buff *skb;
1565 	int metasize;
1566 	u8 nr_frags;
1567 
1568 	if (unlikely(xdp->data_end > xdp_data_hard_end(xdp))) {
1569 		pr_debug("Error building skb as missing reserved tailroom for xdp");
1570 		return NULL;
1571 	}
1572 
1573 	if (unlikely(xdp_buff_has_frags(xdp)))
1574 		nr_frags = sinfo->nr_frags;
1575 
1576 	skb = build_skb(xdp->data_hard_start, xdp->frame_sz);
1577 	if (unlikely(!skb))
1578 		return NULL;
1579 
1580 	headroom = xdp->data - xdp->data_hard_start;
1581 	data_len = xdp->data_end - xdp->data;
1582 	skb_reserve(skb, headroom);
1583 	__skb_put(skb, data_len);
1584 
1585 	metasize = xdp->data - xdp->data_meta;
1586 	metasize = metasize > 0 ? metasize : 0;
1587 	if (metasize)
1588 		skb_metadata_set(skb, metasize);
1589 
1590 	if (unlikely(xdp_buff_has_frags(xdp)))
1591 		xdp_update_skb_shared_info(skb, nr_frags,
1592 					   sinfo->xdp_frags_size,
1593 					   xdp_frags_truesz,
1594 					   xdp_buff_is_frag_pfmemalloc(xdp));
1595 
1596 	return skb;
1597 }
1598 
1599 /* TODO: build xdp in big mode */
1600 static int virtnet_build_xdp_buff_mrg(struct net_device *dev,
1601 				      struct virtnet_info *vi,
1602 				      struct receive_queue *rq,
1603 				      struct xdp_buff *xdp,
1604 				      void *buf,
1605 				      unsigned int len,
1606 				      unsigned int frame_sz,
1607 				      int *num_buf,
1608 				      unsigned int *xdp_frags_truesize,
1609 				      struct virtnet_rq_stats *stats)
1610 {
1611 	struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
1612 	unsigned int headroom, tailroom, room;
1613 	unsigned int truesize, cur_frag_size;
1614 	struct skb_shared_info *shinfo;
1615 	unsigned int xdp_frags_truesz = 0;
1616 	struct page *page;
1617 	skb_frag_t *frag;
1618 	int offset;
1619 	void *ctx;
1620 
1621 	xdp_init_buff(xdp, frame_sz, &rq->xdp_rxq);
1622 	xdp_prepare_buff(xdp, buf - VIRTIO_XDP_HEADROOM,
1623 			 VIRTIO_XDP_HEADROOM + vi->hdr_len, len - vi->hdr_len, true);
1624 
1625 	if (!*num_buf)
1626 		return 0;
1627 
1628 	if (*num_buf > 1) {
1629 		/* If we want to build multi-buffer xdp, we need
1630 		 * to specify that the flags of xdp_buff have the
1631 		 * XDP_FLAGS_HAS_FRAG bit.
1632 		 */
1633 		if (!xdp_buff_has_frags(xdp))
1634 			xdp_buff_set_frags_flag(xdp);
1635 
1636 		shinfo = xdp_get_shared_info_from_buff(xdp);
1637 		shinfo->nr_frags = 0;
1638 		shinfo->xdp_frags_size = 0;
1639 	}
1640 
1641 	if (*num_buf > MAX_SKB_FRAGS + 1)
1642 		return -EINVAL;
1643 
1644 	while (--*num_buf > 0) {
1645 		buf = virtnet_rq_get_buf(rq, &len, &ctx);
1646 		if (unlikely(!buf)) {
1647 			pr_debug("%s: rx error: %d buffers out of %d missing\n",
1648 				 dev->name, *num_buf,
1649 				 virtio16_to_cpu(vi->vdev, hdr->num_buffers));
1650 			DEV_STATS_INC(dev, rx_length_errors);
1651 			goto err;
1652 		}
1653 
1654 		u64_stats_add(&stats->bytes, len);
1655 		page = virt_to_head_page(buf);
1656 		offset = buf - page_address(page);
1657 
1658 		truesize = mergeable_ctx_to_truesize(ctx);
1659 		headroom = mergeable_ctx_to_headroom(ctx);
1660 		tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1661 		room = SKB_DATA_ALIGN(headroom + tailroom);
1662 
1663 		cur_frag_size = truesize;
1664 		xdp_frags_truesz += cur_frag_size;
1665 		if (unlikely(len > truesize - room || cur_frag_size > PAGE_SIZE)) {
1666 			put_page(page);
1667 			pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
1668 				 dev->name, len, (unsigned long)(truesize - room));
1669 			DEV_STATS_INC(dev, rx_length_errors);
1670 			goto err;
1671 		}
1672 
1673 		frag = &shinfo->frags[shinfo->nr_frags++];
1674 		skb_frag_fill_page_desc(frag, page, offset, len);
1675 		if (page_is_pfmemalloc(page))
1676 			xdp_buff_set_frag_pfmemalloc(xdp);
1677 
1678 		shinfo->xdp_frags_size += len;
1679 	}
1680 
1681 	*xdp_frags_truesize = xdp_frags_truesz;
1682 	return 0;
1683 
1684 err:
1685 	put_xdp_frags(xdp);
1686 	return -EINVAL;
1687 }
1688 
1689 static void *mergeable_xdp_get_buf(struct virtnet_info *vi,
1690 				   struct receive_queue *rq,
1691 				   struct bpf_prog *xdp_prog,
1692 				   void *ctx,
1693 				   unsigned int *frame_sz,
1694 				   int *num_buf,
1695 				   struct page **page,
1696 				   int offset,
1697 				   unsigned int *len,
1698 				   struct virtio_net_hdr_mrg_rxbuf *hdr)
1699 {
1700 	unsigned int truesize = mergeable_ctx_to_truesize(ctx);
1701 	unsigned int headroom = mergeable_ctx_to_headroom(ctx);
1702 	struct page *xdp_page;
1703 	unsigned int xdp_room;
1704 
1705 	/* Transient failure which in theory could occur if
1706 	 * in-flight packets from before XDP was enabled reach
1707 	 * the receive path after XDP is loaded.
1708 	 */
1709 	if (unlikely(hdr->hdr.gso_type))
1710 		return NULL;
1711 
1712 	/* Partially checksummed packets must be dropped. */
1713 	if (unlikely(hdr->hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM))
1714 		return NULL;
1715 
1716 	/* Now XDP core assumes frag size is PAGE_SIZE, but buffers
1717 	 * with headroom may add hole in truesize, which
1718 	 * make their length exceed PAGE_SIZE. So we disabled the
1719 	 * hole mechanism for xdp. See add_recvbuf_mergeable().
1720 	 */
1721 	*frame_sz = truesize;
1722 
1723 	if (likely(headroom >= virtnet_get_headroom(vi) &&
1724 		   (*num_buf == 1 || xdp_prog->aux->xdp_has_frags))) {
1725 		return page_address(*page) + offset;
1726 	}
1727 
1728 	/* This happens when headroom is not enough because
1729 	 * of the buffer was prefilled before XDP is set.
1730 	 * This should only happen for the first several packets.
1731 	 * In fact, vq reset can be used here to help us clean up
1732 	 * the prefilled buffers, but many existing devices do not
1733 	 * support it, and we don't want to bother users who are
1734 	 * using xdp normally.
1735 	 */
1736 	if (!xdp_prog->aux->xdp_has_frags) {
1737 		/* linearize data for XDP */
1738 		xdp_page = xdp_linearize_page(rq, num_buf,
1739 					      *page, offset,
1740 					      VIRTIO_XDP_HEADROOM,
1741 					      len);
1742 		if (!xdp_page)
1743 			return NULL;
1744 	} else {
1745 		xdp_room = SKB_DATA_ALIGN(VIRTIO_XDP_HEADROOM +
1746 					  sizeof(struct skb_shared_info));
1747 		if (*len + xdp_room > PAGE_SIZE)
1748 			return NULL;
1749 
1750 		xdp_page = alloc_page(GFP_ATOMIC);
1751 		if (!xdp_page)
1752 			return NULL;
1753 
1754 		memcpy(page_address(xdp_page) + VIRTIO_XDP_HEADROOM,
1755 		       page_address(*page) + offset, *len);
1756 	}
1757 
1758 	*frame_sz = PAGE_SIZE;
1759 
1760 	put_page(*page);
1761 
1762 	*page = xdp_page;
1763 
1764 	return page_address(*page) + VIRTIO_XDP_HEADROOM;
1765 }
1766 
1767 static struct sk_buff *receive_mergeable_xdp(struct net_device *dev,
1768 					     struct virtnet_info *vi,
1769 					     struct receive_queue *rq,
1770 					     struct bpf_prog *xdp_prog,
1771 					     void *buf,
1772 					     void *ctx,
1773 					     unsigned int len,
1774 					     unsigned int *xdp_xmit,
1775 					     struct virtnet_rq_stats *stats)
1776 {
1777 	struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
1778 	int num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
1779 	struct page *page = virt_to_head_page(buf);
1780 	int offset = buf - page_address(page);
1781 	unsigned int xdp_frags_truesz = 0;
1782 	struct sk_buff *head_skb;
1783 	unsigned int frame_sz;
1784 	struct xdp_buff xdp;
1785 	void *data;
1786 	u32 act;
1787 	int err;
1788 
1789 	data = mergeable_xdp_get_buf(vi, rq, xdp_prog, ctx, &frame_sz, &num_buf, &page,
1790 				     offset, &len, hdr);
1791 	if (unlikely(!data))
1792 		goto err_xdp;
1793 
1794 	err = virtnet_build_xdp_buff_mrg(dev, vi, rq, &xdp, data, len, frame_sz,
1795 					 &num_buf, &xdp_frags_truesz, stats);
1796 	if (unlikely(err))
1797 		goto err_xdp;
1798 
1799 	act = virtnet_xdp_handler(xdp_prog, &xdp, dev, xdp_xmit, stats);
1800 
1801 	switch (act) {
1802 	case XDP_PASS:
1803 		head_skb = build_skb_from_xdp_buff(dev, vi, &xdp, xdp_frags_truesz);
1804 		if (unlikely(!head_skb))
1805 			break;
1806 		return head_skb;
1807 
1808 	case XDP_TX:
1809 	case XDP_REDIRECT:
1810 		return NULL;
1811 
1812 	default:
1813 		break;
1814 	}
1815 
1816 	put_xdp_frags(&xdp);
1817 
1818 err_xdp:
1819 	put_page(page);
1820 	mergeable_buf_free(rq, num_buf, dev, stats);
1821 
1822 	u64_stats_inc(&stats->xdp_drops);
1823 	u64_stats_inc(&stats->drops);
1824 	return NULL;
1825 }
1826 
1827 static struct sk_buff *receive_mergeable(struct net_device *dev,
1828 					 struct virtnet_info *vi,
1829 					 struct receive_queue *rq,
1830 					 void *buf,
1831 					 void *ctx,
1832 					 unsigned int len,
1833 					 unsigned int *xdp_xmit,
1834 					 struct virtnet_rq_stats *stats)
1835 {
1836 	struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
1837 	int num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
1838 	struct page *page = virt_to_head_page(buf);
1839 	int offset = buf - page_address(page);
1840 	struct sk_buff *head_skb, *curr_skb;
1841 	unsigned int truesize = mergeable_ctx_to_truesize(ctx);
1842 	unsigned int headroom = mergeable_ctx_to_headroom(ctx);
1843 	unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1844 	unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
1845 
1846 	head_skb = NULL;
1847 	u64_stats_add(&stats->bytes, len - vi->hdr_len);
1848 
1849 	if (unlikely(len > truesize - room)) {
1850 		pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
1851 			 dev->name, len, (unsigned long)(truesize - room));
1852 		DEV_STATS_INC(dev, rx_length_errors);
1853 		goto err_skb;
1854 	}
1855 
1856 	if (unlikely(vi->xdp_enabled)) {
1857 		struct bpf_prog *xdp_prog;
1858 
1859 		rcu_read_lock();
1860 		xdp_prog = rcu_dereference(rq->xdp_prog);
1861 		if (xdp_prog) {
1862 			head_skb = receive_mergeable_xdp(dev, vi, rq, xdp_prog, buf, ctx,
1863 							 len, xdp_xmit, stats);
1864 			rcu_read_unlock();
1865 			return head_skb;
1866 		}
1867 		rcu_read_unlock();
1868 	}
1869 
1870 	head_skb = page_to_skb(vi, rq, page, offset, len, truesize, headroom);
1871 	curr_skb = head_skb;
1872 
1873 	if (unlikely(!curr_skb))
1874 		goto err_skb;
1875 	while (--num_buf) {
1876 		int num_skb_frags;
1877 
1878 		buf = virtnet_rq_get_buf(rq, &len, &ctx);
1879 		if (unlikely(!buf)) {
1880 			pr_debug("%s: rx error: %d buffers out of %d missing\n",
1881 				 dev->name, num_buf,
1882 				 virtio16_to_cpu(vi->vdev,
1883 						 hdr->num_buffers));
1884 			DEV_STATS_INC(dev, rx_length_errors);
1885 			goto err_buf;
1886 		}
1887 
1888 		u64_stats_add(&stats->bytes, len);
1889 		page = virt_to_head_page(buf);
1890 
1891 		truesize = mergeable_ctx_to_truesize(ctx);
1892 		headroom = mergeable_ctx_to_headroom(ctx);
1893 		tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1894 		room = SKB_DATA_ALIGN(headroom + tailroom);
1895 		if (unlikely(len > truesize - room)) {
1896 			pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
1897 				 dev->name, len, (unsigned long)(truesize - room));
1898 			DEV_STATS_INC(dev, rx_length_errors);
1899 			goto err_skb;
1900 		}
1901 
1902 		num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
1903 		if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
1904 			struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
1905 
1906 			if (unlikely(!nskb))
1907 				goto err_skb;
1908 			if (curr_skb == head_skb)
1909 				skb_shinfo(curr_skb)->frag_list = nskb;
1910 			else
1911 				curr_skb->next = nskb;
1912 			curr_skb = nskb;
1913 			head_skb->truesize += nskb->truesize;
1914 			num_skb_frags = 0;
1915 		}
1916 		if (curr_skb != head_skb) {
1917 			head_skb->data_len += len;
1918 			head_skb->len += len;
1919 			head_skb->truesize += truesize;
1920 		}
1921 		offset = buf - page_address(page);
1922 		if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
1923 			put_page(page);
1924 			skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
1925 					     len, truesize);
1926 		} else {
1927 			skb_add_rx_frag(curr_skb, num_skb_frags, page,
1928 					offset, len, truesize);
1929 		}
1930 	}
1931 
1932 	ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
1933 	return head_skb;
1934 
1935 err_skb:
1936 	put_page(page);
1937 	mergeable_buf_free(rq, num_buf, dev, stats);
1938 
1939 err_buf:
1940 	u64_stats_inc(&stats->drops);
1941 	dev_kfree_skb(head_skb);
1942 	return NULL;
1943 }
1944 
1945 static void virtio_skb_set_hash(const struct virtio_net_hdr_v1_hash *hdr_hash,
1946 				struct sk_buff *skb)
1947 {
1948 	enum pkt_hash_types rss_hash_type;
1949 
1950 	if (!hdr_hash || !skb)
1951 		return;
1952 
1953 	switch (__le16_to_cpu(hdr_hash->hash_report)) {
1954 	case VIRTIO_NET_HASH_REPORT_TCPv4:
1955 	case VIRTIO_NET_HASH_REPORT_UDPv4:
1956 	case VIRTIO_NET_HASH_REPORT_TCPv6:
1957 	case VIRTIO_NET_HASH_REPORT_UDPv6:
1958 	case VIRTIO_NET_HASH_REPORT_TCPv6_EX:
1959 	case VIRTIO_NET_HASH_REPORT_UDPv6_EX:
1960 		rss_hash_type = PKT_HASH_TYPE_L4;
1961 		break;
1962 	case VIRTIO_NET_HASH_REPORT_IPv4:
1963 	case VIRTIO_NET_HASH_REPORT_IPv6:
1964 	case VIRTIO_NET_HASH_REPORT_IPv6_EX:
1965 		rss_hash_type = PKT_HASH_TYPE_L3;
1966 		break;
1967 	case VIRTIO_NET_HASH_REPORT_NONE:
1968 	default:
1969 		rss_hash_type = PKT_HASH_TYPE_NONE;
1970 	}
1971 	skb_set_hash(skb, __le32_to_cpu(hdr_hash->hash_value), rss_hash_type);
1972 }
1973 
1974 static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
1975 			void *buf, unsigned int len, void **ctx,
1976 			unsigned int *xdp_xmit,
1977 			struct virtnet_rq_stats *stats)
1978 {
1979 	struct net_device *dev = vi->dev;
1980 	struct sk_buff *skb;
1981 	struct virtio_net_common_hdr *hdr;
1982 	u8 flags;
1983 
1984 	if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
1985 		pr_debug("%s: short packet %i\n", dev->name, len);
1986 		DEV_STATS_INC(dev, rx_length_errors);
1987 		virtnet_rq_free_buf(vi, rq, buf);
1988 		return;
1989 	}
1990 
1991 	/* 1. Save the flags early, as the XDP program might overwrite them.
1992 	 * These flags ensure packets marked as VIRTIO_NET_HDR_F_DATA_VALID
1993 	 * stay valid after XDP processing.
1994 	 * 2. XDP doesn't work with partially checksummed packets (refer to
1995 	 * virtnet_xdp_set()), so packets marked as
1996 	 * VIRTIO_NET_HDR_F_NEEDS_CSUM get dropped during XDP processing.
1997 	 */
1998 	flags = ((struct virtio_net_common_hdr *)buf)->hdr.flags;
1999 
2000 	if (vi->mergeable_rx_bufs)
2001 		skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit,
2002 					stats);
2003 	else if (vi->big_packets)
2004 		skb = receive_big(dev, vi, rq, buf, len, stats);
2005 	else
2006 		skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit, stats);
2007 
2008 	if (unlikely(!skb))
2009 		return;
2010 
2011 	hdr = skb_vnet_common_hdr(skb);
2012 	if (dev->features & NETIF_F_RXHASH && vi->has_rss_hash_report)
2013 		virtio_skb_set_hash(&hdr->hash_v1_hdr, skb);
2014 
2015 	if (flags & VIRTIO_NET_HDR_F_DATA_VALID)
2016 		skb->ip_summed = CHECKSUM_UNNECESSARY;
2017 
2018 	if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
2019 				  virtio_is_little_endian(vi->vdev))) {
2020 		net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
2021 				     dev->name, hdr->hdr.gso_type,
2022 				     hdr->hdr.gso_size);
2023 		goto frame_err;
2024 	}
2025 
2026 	skb_record_rx_queue(skb, vq2rxq(rq->vq));
2027 	skb->protocol = eth_type_trans(skb, dev);
2028 	pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
2029 		 ntohs(skb->protocol), skb->len, skb->pkt_type);
2030 
2031 	napi_gro_receive(&rq->napi, skb);
2032 	return;
2033 
2034 frame_err:
2035 	DEV_STATS_INC(dev, rx_frame_errors);
2036 	dev_kfree_skb(skb);
2037 }
2038 
2039 /* Unlike mergeable buffers, all buffers are allocated to the
2040  * same size, except for the headroom. For this reason we do
2041  * not need to use  mergeable_len_to_ctx here - it is enough
2042  * to store the headroom as the context ignoring the truesize.
2043  */
2044 static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
2045 			     gfp_t gfp)
2046 {
2047 	char *buf;
2048 	unsigned int xdp_headroom = virtnet_get_headroom(vi);
2049 	void *ctx = (void *)(unsigned long)xdp_headroom;
2050 	int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
2051 	int err;
2052 
2053 	len = SKB_DATA_ALIGN(len) +
2054 	      SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
2055 
2056 	buf = virtnet_rq_alloc(rq, len, gfp);
2057 	if (unlikely(!buf))
2058 		return -ENOMEM;
2059 
2060 	virtnet_rq_init_one_sg(rq, buf + VIRTNET_RX_PAD + xdp_headroom,
2061 			       vi->hdr_len + GOOD_PACKET_LEN);
2062 
2063 	err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
2064 	if (err < 0) {
2065 		virtnet_rq_unmap(rq, buf, 0);
2066 		put_page(virt_to_head_page(buf));
2067 	}
2068 
2069 	return err;
2070 }
2071 
2072 static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
2073 			   gfp_t gfp)
2074 {
2075 	struct page *first, *list = NULL;
2076 	char *p;
2077 	int i, err, offset;
2078 
2079 	sg_init_table(rq->sg, vi->big_packets_num_skbfrags + 2);
2080 
2081 	/* page in rq->sg[vi->big_packets_num_skbfrags + 1] is list tail */
2082 	for (i = vi->big_packets_num_skbfrags + 1; i > 1; --i) {
2083 		first = get_a_page(rq, gfp);
2084 		if (!first) {
2085 			if (list)
2086 				give_pages(rq, list);
2087 			return -ENOMEM;
2088 		}
2089 		sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
2090 
2091 		/* chain new page in list head to match sg */
2092 		first->private = (unsigned long)list;
2093 		list = first;
2094 	}
2095 
2096 	first = get_a_page(rq, gfp);
2097 	if (!first) {
2098 		give_pages(rq, list);
2099 		return -ENOMEM;
2100 	}
2101 	p = page_address(first);
2102 
2103 	/* rq->sg[0], rq->sg[1] share the same page */
2104 	/* a separated rq->sg[0] for header - required in case !any_header_sg */
2105 	sg_set_buf(&rq->sg[0], p, vi->hdr_len);
2106 
2107 	/* rq->sg[1] for data packet, from offset */
2108 	offset = sizeof(struct padded_vnet_hdr);
2109 	sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
2110 
2111 	/* chain first in list head */
2112 	first->private = (unsigned long)list;
2113 	err = virtqueue_add_inbuf(rq->vq, rq->sg, vi->big_packets_num_skbfrags + 2,
2114 				  first, gfp);
2115 	if (err < 0)
2116 		give_pages(rq, first);
2117 
2118 	return err;
2119 }
2120 
2121 static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
2122 					  struct ewma_pkt_len *avg_pkt_len,
2123 					  unsigned int room)
2124 {
2125 	struct virtnet_info *vi = rq->vq->vdev->priv;
2126 	const size_t hdr_len = vi->hdr_len;
2127 	unsigned int len;
2128 
2129 	if (room)
2130 		return PAGE_SIZE - room;
2131 
2132 	len = hdr_len +	clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
2133 				rq->min_buf_len, PAGE_SIZE - hdr_len);
2134 
2135 	return ALIGN(len, L1_CACHE_BYTES);
2136 }
2137 
2138 static int add_recvbuf_mergeable(struct virtnet_info *vi,
2139 				 struct receive_queue *rq, gfp_t gfp)
2140 {
2141 	struct page_frag *alloc_frag = &rq->alloc_frag;
2142 	unsigned int headroom = virtnet_get_headroom(vi);
2143 	unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
2144 	unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
2145 	unsigned int len, hole;
2146 	void *ctx;
2147 	char *buf;
2148 	int err;
2149 
2150 	/* Extra tailroom is needed to satisfy XDP's assumption. This
2151 	 * means rx frags coalescing won't work, but consider we've
2152 	 * disabled GSO for XDP, it won't be a big issue.
2153 	 */
2154 	len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room);
2155 
2156 	buf = virtnet_rq_alloc(rq, len + room, gfp);
2157 	if (unlikely(!buf))
2158 		return -ENOMEM;
2159 
2160 	buf += headroom; /* advance address leaving hole at front of pkt */
2161 	hole = alloc_frag->size - alloc_frag->offset;
2162 	if (hole < len + room) {
2163 		/* To avoid internal fragmentation, if there is very likely not
2164 		 * enough space for another buffer, add the remaining space to
2165 		 * the current buffer.
2166 		 * XDP core assumes that frame_size of xdp_buff and the length
2167 		 * of the frag are PAGE_SIZE, so we disable the hole mechanism.
2168 		 */
2169 		if (!headroom)
2170 			len += hole;
2171 		alloc_frag->offset += hole;
2172 	}
2173 
2174 	virtnet_rq_init_one_sg(rq, buf, len);
2175 
2176 	ctx = mergeable_len_to_ctx(len + room, headroom);
2177 	err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
2178 	if (err < 0) {
2179 		virtnet_rq_unmap(rq, buf, 0);
2180 		put_page(virt_to_head_page(buf));
2181 	}
2182 
2183 	return err;
2184 }
2185 
2186 /*
2187  * Returns false if we couldn't fill entirely (OOM).
2188  *
2189  * Normally run in the receive path, but can also be run from ndo_open
2190  * before we're receiving packets, or from refill_work which is
2191  * careful to disable receiving (using napi_disable).
2192  */
2193 static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
2194 			  gfp_t gfp)
2195 {
2196 	int err;
2197 	bool oom;
2198 
2199 	do {
2200 		if (vi->mergeable_rx_bufs)
2201 			err = add_recvbuf_mergeable(vi, rq, gfp);
2202 		else if (vi->big_packets)
2203 			err = add_recvbuf_big(vi, rq, gfp);
2204 		else
2205 			err = add_recvbuf_small(vi, rq, gfp);
2206 
2207 		oom = err == -ENOMEM;
2208 		if (err)
2209 			break;
2210 	} while (rq->vq->num_free);
2211 	if (virtqueue_kick_prepare(rq->vq) && virtqueue_notify(rq->vq)) {
2212 		unsigned long flags;
2213 
2214 		flags = u64_stats_update_begin_irqsave(&rq->stats.syncp);
2215 		u64_stats_inc(&rq->stats.kicks);
2216 		u64_stats_update_end_irqrestore(&rq->stats.syncp, flags);
2217 	}
2218 
2219 	return !oom;
2220 }
2221 
2222 static void skb_recv_done(struct virtqueue *rvq)
2223 {
2224 	struct virtnet_info *vi = rvq->vdev->priv;
2225 	struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
2226 
2227 	rq->calls++;
2228 	virtqueue_napi_schedule(&rq->napi, rvq);
2229 }
2230 
2231 static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
2232 {
2233 	napi_enable(napi);
2234 
2235 	/* If all buffers were filled by other side before we napi_enabled, we
2236 	 * won't get another interrupt, so process any outstanding packets now.
2237 	 * Call local_bh_enable after to trigger softIRQ processing.
2238 	 */
2239 	local_bh_disable();
2240 	virtqueue_napi_schedule(napi, vq);
2241 	local_bh_enable();
2242 }
2243 
2244 static void virtnet_napi_tx_enable(struct virtnet_info *vi,
2245 				   struct virtqueue *vq,
2246 				   struct napi_struct *napi)
2247 {
2248 	if (!napi->weight)
2249 		return;
2250 
2251 	/* Tx napi touches cachelines on the cpu handling tx interrupts. Only
2252 	 * enable the feature if this is likely affine with the transmit path.
2253 	 */
2254 	if (!vi->affinity_hint_set) {
2255 		napi->weight = 0;
2256 		return;
2257 	}
2258 
2259 	return virtnet_napi_enable(vq, napi);
2260 }
2261 
2262 static void virtnet_napi_tx_disable(struct napi_struct *napi)
2263 {
2264 	if (napi->weight)
2265 		napi_disable(napi);
2266 }
2267 
2268 static void refill_work(struct work_struct *work)
2269 {
2270 	struct virtnet_info *vi =
2271 		container_of(work, struct virtnet_info, refill.work);
2272 	bool still_empty;
2273 	int i;
2274 
2275 	for (i = 0; i < vi->curr_queue_pairs; i++) {
2276 		struct receive_queue *rq = &vi->rq[i];
2277 
2278 		napi_disable(&rq->napi);
2279 		still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
2280 		virtnet_napi_enable(rq->vq, &rq->napi);
2281 
2282 		/* In theory, this can happen: if we don't get any buffers in
2283 		 * we will *never* try to fill again.
2284 		 */
2285 		if (still_empty)
2286 			schedule_delayed_work(&vi->refill, HZ/2);
2287 	}
2288 }
2289 
2290 static int virtnet_receive(struct receive_queue *rq, int budget,
2291 			   unsigned int *xdp_xmit)
2292 {
2293 	struct virtnet_info *vi = rq->vq->vdev->priv;
2294 	struct virtnet_rq_stats stats = {};
2295 	unsigned int len;
2296 	int packets = 0;
2297 	void *buf;
2298 	int i;
2299 
2300 	if (!vi->big_packets || vi->mergeable_rx_bufs) {
2301 		void *ctx;
2302 
2303 		while (packets < budget &&
2304 		       (buf = virtnet_rq_get_buf(rq, &len, &ctx))) {
2305 			receive_buf(vi, rq, buf, len, ctx, xdp_xmit, &stats);
2306 			packets++;
2307 		}
2308 	} else {
2309 		while (packets < budget &&
2310 		       (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
2311 			receive_buf(vi, rq, buf, len, NULL, xdp_xmit, &stats);
2312 			packets++;
2313 		}
2314 	}
2315 
2316 	if (rq->vq->num_free > min((unsigned int)budget, virtqueue_get_vring_size(rq->vq)) / 2) {
2317 		if (!try_fill_recv(vi, rq, GFP_ATOMIC)) {
2318 			spin_lock(&vi->refill_lock);
2319 			if (vi->refill_enabled)
2320 				schedule_delayed_work(&vi->refill, 0);
2321 			spin_unlock(&vi->refill_lock);
2322 		}
2323 	}
2324 
2325 	u64_stats_set(&stats.packets, packets);
2326 	u64_stats_update_begin(&rq->stats.syncp);
2327 	for (i = 0; i < ARRAY_SIZE(virtnet_rq_stats_desc); i++) {
2328 		size_t offset = virtnet_rq_stats_desc[i].offset;
2329 		u64_stats_t *item, *src;
2330 
2331 		item = (u64_stats_t *)((u8 *)&rq->stats + offset);
2332 		src = (u64_stats_t *)((u8 *)&stats + offset);
2333 		u64_stats_add(item, u64_stats_read(src));
2334 	}
2335 
2336 	u64_stats_add(&rq->stats.packets, u64_stats_read(&stats.packets));
2337 	u64_stats_add(&rq->stats.bytes, u64_stats_read(&stats.bytes));
2338 
2339 	u64_stats_update_end(&rq->stats.syncp);
2340 
2341 	return packets;
2342 }
2343 
2344 static void virtnet_poll_cleantx(struct receive_queue *rq)
2345 {
2346 	struct virtnet_info *vi = rq->vq->vdev->priv;
2347 	unsigned int index = vq2rxq(rq->vq);
2348 	struct send_queue *sq = &vi->sq[index];
2349 	struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
2350 
2351 	if (!sq->napi.weight || is_xdp_raw_buffer_queue(vi, index))
2352 		return;
2353 
2354 	if (__netif_tx_trylock(txq)) {
2355 		if (sq->reset) {
2356 			__netif_tx_unlock(txq);
2357 			return;
2358 		}
2359 
2360 		do {
2361 			virtqueue_disable_cb(sq->vq);
2362 			free_old_xmit(sq, txq, true);
2363 		} while (unlikely(!virtqueue_enable_cb_delayed(sq->vq)));
2364 
2365 		if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS) {
2366 			if (netif_tx_queue_stopped(txq)) {
2367 				u64_stats_update_begin(&sq->stats.syncp);
2368 				u64_stats_inc(&sq->stats.wake);
2369 				u64_stats_update_end(&sq->stats.syncp);
2370 			}
2371 			netif_tx_wake_queue(txq);
2372 		}
2373 
2374 		__netif_tx_unlock(txq);
2375 	}
2376 }
2377 
2378 static void virtnet_rx_dim_update(struct virtnet_info *vi, struct receive_queue *rq)
2379 {
2380 	struct dim_sample cur_sample = {};
2381 
2382 	if (!rq->packets_in_napi)
2383 		return;
2384 
2385 	/* Don't need protection when fetching stats, since fetcher and
2386 	 * updater of the stats are in same context
2387 	 */
2388 	dim_update_sample(rq->calls,
2389 			  u64_stats_read(&rq->stats.packets),
2390 			  u64_stats_read(&rq->stats.bytes),
2391 			  &cur_sample);
2392 
2393 	net_dim(&rq->dim, cur_sample);
2394 	rq->packets_in_napi = 0;
2395 }
2396 
2397 static int virtnet_poll(struct napi_struct *napi, int budget)
2398 {
2399 	struct receive_queue *rq =
2400 		container_of(napi, struct receive_queue, napi);
2401 	struct virtnet_info *vi = rq->vq->vdev->priv;
2402 	struct send_queue *sq;
2403 	unsigned int received;
2404 	unsigned int xdp_xmit = 0;
2405 	bool napi_complete;
2406 
2407 	virtnet_poll_cleantx(rq);
2408 
2409 	received = virtnet_receive(rq, budget, &xdp_xmit);
2410 	rq->packets_in_napi += received;
2411 
2412 	if (xdp_xmit & VIRTIO_XDP_REDIR)
2413 		xdp_do_flush();
2414 
2415 	/* Out of packets? */
2416 	if (received < budget) {
2417 		napi_complete = virtqueue_napi_complete(napi, rq->vq, received);
2418 		/* Intentionally not taking dim_lock here. This may result in a
2419 		 * spurious net_dim call. But if that happens virtnet_rx_dim_work
2420 		 * will not act on the scheduled work.
2421 		 */
2422 		if (napi_complete && rq->dim_enabled)
2423 			virtnet_rx_dim_update(vi, rq);
2424 	}
2425 
2426 	if (xdp_xmit & VIRTIO_XDP_TX) {
2427 		sq = virtnet_xdp_get_sq(vi);
2428 		if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
2429 			u64_stats_update_begin(&sq->stats.syncp);
2430 			u64_stats_inc(&sq->stats.kicks);
2431 			u64_stats_update_end(&sq->stats.syncp);
2432 		}
2433 		virtnet_xdp_put_sq(vi, sq);
2434 	}
2435 
2436 	return received;
2437 }
2438 
2439 static void virtnet_disable_queue_pair(struct virtnet_info *vi, int qp_index)
2440 {
2441 	virtnet_napi_tx_disable(&vi->sq[qp_index].napi);
2442 	napi_disable(&vi->rq[qp_index].napi);
2443 	xdp_rxq_info_unreg(&vi->rq[qp_index].xdp_rxq);
2444 }
2445 
2446 static int virtnet_enable_queue_pair(struct virtnet_info *vi, int qp_index)
2447 {
2448 	struct net_device *dev = vi->dev;
2449 	int err;
2450 
2451 	err = xdp_rxq_info_reg(&vi->rq[qp_index].xdp_rxq, dev, qp_index,
2452 			       vi->rq[qp_index].napi.napi_id);
2453 	if (err < 0)
2454 		return err;
2455 
2456 	err = xdp_rxq_info_reg_mem_model(&vi->rq[qp_index].xdp_rxq,
2457 					 MEM_TYPE_PAGE_SHARED, NULL);
2458 	if (err < 0)
2459 		goto err_xdp_reg_mem_model;
2460 
2461 	virtnet_napi_enable(vi->rq[qp_index].vq, &vi->rq[qp_index].napi);
2462 	netdev_tx_reset_queue(netdev_get_tx_queue(vi->dev, qp_index));
2463 	virtnet_napi_tx_enable(vi, vi->sq[qp_index].vq, &vi->sq[qp_index].napi);
2464 
2465 	return 0;
2466 
2467 err_xdp_reg_mem_model:
2468 	xdp_rxq_info_unreg(&vi->rq[qp_index].xdp_rxq);
2469 	return err;
2470 }
2471 
2472 static void virtnet_cancel_dim(struct virtnet_info *vi, struct dim *dim)
2473 {
2474 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL))
2475 		return;
2476 	net_dim_work_cancel(dim);
2477 }
2478 
2479 static int virtnet_open(struct net_device *dev)
2480 {
2481 	struct virtnet_info *vi = netdev_priv(dev);
2482 	int i, err;
2483 
2484 	enable_delayed_refill(vi);
2485 
2486 	for (i = 0; i < vi->max_queue_pairs; i++) {
2487 		if (i < vi->curr_queue_pairs)
2488 			/* Make sure we have some buffers: if oom use wq. */
2489 			if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
2490 				schedule_delayed_work(&vi->refill, 0);
2491 
2492 		err = virtnet_enable_queue_pair(vi, i);
2493 		if (err < 0)
2494 			goto err_enable_qp;
2495 	}
2496 
2497 	return 0;
2498 
2499 err_enable_qp:
2500 	disable_delayed_refill(vi);
2501 	cancel_delayed_work_sync(&vi->refill);
2502 
2503 	for (i--; i >= 0; i--) {
2504 		virtnet_disable_queue_pair(vi, i);
2505 		virtnet_cancel_dim(vi, &vi->rq[i].dim);
2506 	}
2507 
2508 	return err;
2509 }
2510 
2511 static int virtnet_poll_tx(struct napi_struct *napi, int budget)
2512 {
2513 	struct send_queue *sq = container_of(napi, struct send_queue, napi);
2514 	struct virtnet_info *vi = sq->vq->vdev->priv;
2515 	unsigned int index = vq2txq(sq->vq);
2516 	struct netdev_queue *txq;
2517 	int opaque;
2518 	bool done;
2519 
2520 	if (unlikely(is_xdp_raw_buffer_queue(vi, index))) {
2521 		/* We don't need to enable cb for XDP */
2522 		napi_complete_done(napi, 0);
2523 		return 0;
2524 	}
2525 
2526 	txq = netdev_get_tx_queue(vi->dev, index);
2527 	__netif_tx_lock(txq, raw_smp_processor_id());
2528 	virtqueue_disable_cb(sq->vq);
2529 	free_old_xmit(sq, txq, true);
2530 
2531 	if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS) {
2532 		if (netif_tx_queue_stopped(txq)) {
2533 			u64_stats_update_begin(&sq->stats.syncp);
2534 			u64_stats_inc(&sq->stats.wake);
2535 			u64_stats_update_end(&sq->stats.syncp);
2536 		}
2537 		netif_tx_wake_queue(txq);
2538 	}
2539 
2540 	opaque = virtqueue_enable_cb_prepare(sq->vq);
2541 
2542 	done = napi_complete_done(napi, 0);
2543 
2544 	if (!done)
2545 		virtqueue_disable_cb(sq->vq);
2546 
2547 	__netif_tx_unlock(txq);
2548 
2549 	if (done) {
2550 		if (unlikely(virtqueue_poll(sq->vq, opaque))) {
2551 			if (napi_schedule_prep(napi)) {
2552 				__netif_tx_lock(txq, raw_smp_processor_id());
2553 				virtqueue_disable_cb(sq->vq);
2554 				__netif_tx_unlock(txq);
2555 				__napi_schedule(napi);
2556 			}
2557 		}
2558 	}
2559 
2560 	return 0;
2561 }
2562 
2563 static int xmit_skb(struct send_queue *sq, struct sk_buff *skb, bool orphan)
2564 {
2565 	struct virtio_net_hdr_mrg_rxbuf *hdr;
2566 	const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
2567 	struct virtnet_info *vi = sq->vq->vdev->priv;
2568 	int num_sg;
2569 	unsigned hdr_len = vi->hdr_len;
2570 	bool can_push;
2571 
2572 	pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
2573 
2574 	can_push = vi->any_header_sg &&
2575 		!((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
2576 		!skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
2577 	/* Even if we can, don't push here yet as this would skew
2578 	 * csum_start offset below. */
2579 	if (can_push)
2580 		hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
2581 	else
2582 		hdr = &skb_vnet_common_hdr(skb)->mrg_hdr;
2583 
2584 	if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
2585 				    virtio_is_little_endian(vi->vdev), false,
2586 				    0))
2587 		return -EPROTO;
2588 
2589 	if (vi->mergeable_rx_bufs)
2590 		hdr->num_buffers = 0;
2591 
2592 	sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
2593 	if (can_push) {
2594 		__skb_push(skb, hdr_len);
2595 		num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
2596 		if (unlikely(num_sg < 0))
2597 			return num_sg;
2598 		/* Pull header back to avoid skew in tx bytes calculations. */
2599 		__skb_pull(skb, hdr_len);
2600 	} else {
2601 		sg_set_buf(sq->sg, hdr, hdr_len);
2602 		num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
2603 		if (unlikely(num_sg < 0))
2604 			return num_sg;
2605 		num_sg++;
2606 	}
2607 	return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg,
2608 				    skb_to_ptr(skb, orphan), GFP_ATOMIC);
2609 }
2610 
2611 static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
2612 {
2613 	struct virtnet_info *vi = netdev_priv(dev);
2614 	int qnum = skb_get_queue_mapping(skb);
2615 	struct send_queue *sq = &vi->sq[qnum];
2616 	int err;
2617 	struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
2618 	bool xmit_more = netdev_xmit_more();
2619 	bool use_napi = sq->napi.weight;
2620 	bool kick;
2621 
2622 	/* Free up any pending old buffers before queueing new ones. */
2623 	do {
2624 		if (use_napi)
2625 			virtqueue_disable_cb(sq->vq);
2626 
2627 		free_old_xmit(sq, txq, false);
2628 
2629 	} while (use_napi && !xmit_more &&
2630 	       unlikely(!virtqueue_enable_cb_delayed(sq->vq)));
2631 
2632 	/* timestamp packet in software */
2633 	skb_tx_timestamp(skb);
2634 
2635 	/* Try to transmit */
2636 	err = xmit_skb(sq, skb, !use_napi);
2637 
2638 	/* This should not happen! */
2639 	if (unlikely(err)) {
2640 		DEV_STATS_INC(dev, tx_fifo_errors);
2641 		if (net_ratelimit())
2642 			dev_warn(&dev->dev,
2643 				 "Unexpected TXQ (%d) queue failure: %d\n",
2644 				 qnum, err);
2645 		DEV_STATS_INC(dev, tx_dropped);
2646 		dev_kfree_skb_any(skb);
2647 		return NETDEV_TX_OK;
2648 	}
2649 
2650 	/* Don't wait up for transmitted skbs to be freed. */
2651 	if (!use_napi) {
2652 		skb_orphan(skb);
2653 		nf_reset_ct(skb);
2654 	}
2655 
2656 	check_sq_full_and_disable(vi, dev, sq);
2657 
2658 	kick = use_napi ? __netdev_tx_sent_queue(txq, skb->len, xmit_more) :
2659 			  !xmit_more || netif_xmit_stopped(txq);
2660 	if (kick) {
2661 		if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
2662 			u64_stats_update_begin(&sq->stats.syncp);
2663 			u64_stats_inc(&sq->stats.kicks);
2664 			u64_stats_update_end(&sq->stats.syncp);
2665 		}
2666 	}
2667 
2668 	return NETDEV_TX_OK;
2669 }
2670 
2671 static int virtnet_rx_resize(struct virtnet_info *vi,
2672 			     struct receive_queue *rq, u32 ring_num)
2673 {
2674 	bool running = netif_running(vi->dev);
2675 	int err, qindex;
2676 
2677 	qindex = rq - vi->rq;
2678 
2679 	if (running) {
2680 		napi_disable(&rq->napi);
2681 		virtnet_cancel_dim(vi, &rq->dim);
2682 	}
2683 
2684 	err = virtqueue_resize(rq->vq, ring_num, virtnet_rq_unmap_free_buf);
2685 	if (err)
2686 		netdev_err(vi->dev, "resize rx fail: rx queue index: %d err: %d\n", qindex, err);
2687 
2688 	if (!try_fill_recv(vi, rq, GFP_KERNEL))
2689 		schedule_delayed_work(&vi->refill, 0);
2690 
2691 	if (running)
2692 		virtnet_napi_enable(rq->vq, &rq->napi);
2693 	return err;
2694 }
2695 
2696 static int virtnet_tx_resize(struct virtnet_info *vi,
2697 			     struct send_queue *sq, u32 ring_num)
2698 {
2699 	bool running = netif_running(vi->dev);
2700 	struct netdev_queue *txq;
2701 	int err, qindex;
2702 
2703 	qindex = sq - vi->sq;
2704 
2705 	if (running)
2706 		virtnet_napi_tx_disable(&sq->napi);
2707 
2708 	txq = netdev_get_tx_queue(vi->dev, qindex);
2709 
2710 	/* 1. wait all ximt complete
2711 	 * 2. fix the race of netif_stop_subqueue() vs netif_start_subqueue()
2712 	 */
2713 	__netif_tx_lock_bh(txq);
2714 
2715 	/* Prevent rx poll from accessing sq. */
2716 	sq->reset = true;
2717 
2718 	/* Prevent the upper layer from trying to send packets. */
2719 	netif_stop_subqueue(vi->dev, qindex);
2720 
2721 	__netif_tx_unlock_bh(txq);
2722 
2723 	err = virtqueue_resize(sq->vq, ring_num, virtnet_sq_free_unused_buf);
2724 	if (err)
2725 		netdev_err(vi->dev, "resize tx fail: tx queue index: %d err: %d\n", qindex, err);
2726 
2727 	__netif_tx_lock_bh(txq);
2728 	sq->reset = false;
2729 	netif_tx_wake_queue(txq);
2730 	__netif_tx_unlock_bh(txq);
2731 
2732 	if (running)
2733 		virtnet_napi_tx_enable(vi, sq->vq, &sq->napi);
2734 	return err;
2735 }
2736 
2737 /*
2738  * Send command via the control virtqueue and check status.  Commands
2739  * supported by the hypervisor, as indicated by feature bits, should
2740  * never fail unless improperly formatted.
2741  */
2742 static bool virtnet_send_command_reply(struct virtnet_info *vi, u8 class, u8 cmd,
2743 				       struct scatterlist *out,
2744 				       struct scatterlist *in)
2745 {
2746 	struct scatterlist *sgs[5], hdr, stat;
2747 	u32 out_num = 0, tmp, in_num = 0;
2748 	bool ok;
2749 	int ret;
2750 
2751 	/* Caller should know better */
2752 	BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
2753 
2754 	mutex_lock(&vi->cvq_lock);
2755 	vi->ctrl->status = ~0;
2756 	vi->ctrl->hdr.class = class;
2757 	vi->ctrl->hdr.cmd = cmd;
2758 	/* Add header */
2759 	sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
2760 	sgs[out_num++] = &hdr;
2761 
2762 	if (out)
2763 		sgs[out_num++] = out;
2764 
2765 	/* Add return status. */
2766 	sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
2767 	sgs[out_num + in_num++] = &stat;
2768 
2769 	if (in)
2770 		sgs[out_num + in_num++] = in;
2771 
2772 	BUG_ON(out_num + in_num > ARRAY_SIZE(sgs));
2773 	ret = virtqueue_add_sgs(vi->cvq, sgs, out_num, in_num, vi, GFP_ATOMIC);
2774 	if (ret < 0) {
2775 		dev_warn(&vi->vdev->dev,
2776 			 "Failed to add sgs for command vq: %d\n.", ret);
2777 		mutex_unlock(&vi->cvq_lock);
2778 		return false;
2779 	}
2780 
2781 	if (unlikely(!virtqueue_kick(vi->cvq)))
2782 		goto unlock;
2783 
2784 	/* Spin for a response, the kick causes an ioport write, trapping
2785 	 * into the hypervisor, so the request should be handled immediately.
2786 	 */
2787 	while (!virtqueue_get_buf(vi->cvq, &tmp) &&
2788 	       !virtqueue_is_broken(vi->cvq)) {
2789 		cond_resched();
2790 		cpu_relax();
2791 	}
2792 
2793 unlock:
2794 	ok = vi->ctrl->status == VIRTIO_NET_OK;
2795 	mutex_unlock(&vi->cvq_lock);
2796 	return ok;
2797 }
2798 
2799 static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
2800 				 struct scatterlist *out)
2801 {
2802 	return virtnet_send_command_reply(vi, class, cmd, out, NULL);
2803 }
2804 
2805 static int virtnet_set_mac_address(struct net_device *dev, void *p)
2806 {
2807 	struct virtnet_info *vi = netdev_priv(dev);
2808 	struct virtio_device *vdev = vi->vdev;
2809 	int ret;
2810 	struct sockaddr *addr;
2811 	struct scatterlist sg;
2812 
2813 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
2814 		return -EOPNOTSUPP;
2815 
2816 	addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
2817 	if (!addr)
2818 		return -ENOMEM;
2819 
2820 	ret = eth_prepare_mac_addr_change(dev, addr);
2821 	if (ret)
2822 		goto out;
2823 
2824 	if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
2825 		sg_init_one(&sg, addr->sa_data, dev->addr_len);
2826 		if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
2827 					  VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
2828 			dev_warn(&vdev->dev,
2829 				 "Failed to set mac address by vq command.\n");
2830 			ret = -EINVAL;
2831 			goto out;
2832 		}
2833 	} else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
2834 		   !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
2835 		unsigned int i;
2836 
2837 		/* Naturally, this has an atomicity problem. */
2838 		for (i = 0; i < dev->addr_len; i++)
2839 			virtio_cwrite8(vdev,
2840 				       offsetof(struct virtio_net_config, mac) +
2841 				       i, addr->sa_data[i]);
2842 	}
2843 
2844 	eth_commit_mac_addr_change(dev, p);
2845 	ret = 0;
2846 
2847 out:
2848 	kfree(addr);
2849 	return ret;
2850 }
2851 
2852 static void virtnet_stats(struct net_device *dev,
2853 			  struct rtnl_link_stats64 *tot)
2854 {
2855 	struct virtnet_info *vi = netdev_priv(dev);
2856 	unsigned int start;
2857 	int i;
2858 
2859 	for (i = 0; i < vi->max_queue_pairs; i++) {
2860 		u64 tpackets, tbytes, terrors, rpackets, rbytes, rdrops;
2861 		struct receive_queue *rq = &vi->rq[i];
2862 		struct send_queue *sq = &vi->sq[i];
2863 
2864 		do {
2865 			start = u64_stats_fetch_begin(&sq->stats.syncp);
2866 			tpackets = u64_stats_read(&sq->stats.packets);
2867 			tbytes   = u64_stats_read(&sq->stats.bytes);
2868 			terrors  = u64_stats_read(&sq->stats.tx_timeouts);
2869 		} while (u64_stats_fetch_retry(&sq->stats.syncp, start));
2870 
2871 		do {
2872 			start = u64_stats_fetch_begin(&rq->stats.syncp);
2873 			rpackets = u64_stats_read(&rq->stats.packets);
2874 			rbytes   = u64_stats_read(&rq->stats.bytes);
2875 			rdrops   = u64_stats_read(&rq->stats.drops);
2876 		} while (u64_stats_fetch_retry(&rq->stats.syncp, start));
2877 
2878 		tot->rx_packets += rpackets;
2879 		tot->tx_packets += tpackets;
2880 		tot->rx_bytes   += rbytes;
2881 		tot->tx_bytes   += tbytes;
2882 		tot->rx_dropped += rdrops;
2883 		tot->tx_errors  += terrors;
2884 	}
2885 
2886 	tot->tx_dropped = DEV_STATS_READ(dev, tx_dropped);
2887 	tot->tx_fifo_errors = DEV_STATS_READ(dev, tx_fifo_errors);
2888 	tot->rx_length_errors = DEV_STATS_READ(dev, rx_length_errors);
2889 	tot->rx_frame_errors = DEV_STATS_READ(dev, rx_frame_errors);
2890 }
2891 
2892 static void virtnet_ack_link_announce(struct virtnet_info *vi)
2893 {
2894 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
2895 				  VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
2896 		dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
2897 }
2898 
2899 static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
2900 {
2901 	struct virtio_net_ctrl_mq *mq __free(kfree) = NULL;
2902 	struct scatterlist sg;
2903 	struct net_device *dev = vi->dev;
2904 
2905 	if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
2906 		return 0;
2907 
2908 	mq = kzalloc(sizeof(*mq), GFP_KERNEL);
2909 	if (!mq)
2910 		return -ENOMEM;
2911 
2912 	mq->virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
2913 	sg_init_one(&sg, mq, sizeof(*mq));
2914 
2915 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
2916 				  VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
2917 		dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
2918 			 queue_pairs);
2919 		return -EINVAL;
2920 	} else {
2921 		vi->curr_queue_pairs = queue_pairs;
2922 		/* virtnet_open() will refill when device is going to up. */
2923 		if (dev->flags & IFF_UP)
2924 			schedule_delayed_work(&vi->refill, 0);
2925 	}
2926 
2927 	return 0;
2928 }
2929 
2930 static int virtnet_close(struct net_device *dev)
2931 {
2932 	struct virtnet_info *vi = netdev_priv(dev);
2933 	int i;
2934 
2935 	/* Make sure NAPI doesn't schedule refill work */
2936 	disable_delayed_refill(vi);
2937 	/* Make sure refill_work doesn't re-enable napi! */
2938 	cancel_delayed_work_sync(&vi->refill);
2939 
2940 	for (i = 0; i < vi->max_queue_pairs; i++) {
2941 		virtnet_disable_queue_pair(vi, i);
2942 		virtnet_cancel_dim(vi, &vi->rq[i].dim);
2943 	}
2944 
2945 	return 0;
2946 }
2947 
2948 static void virtnet_rx_mode_work(struct work_struct *work)
2949 {
2950 	struct virtnet_info *vi =
2951 		container_of(work, struct virtnet_info, rx_mode_work);
2952 	u8 *promisc_allmulti  __free(kfree) = NULL;
2953 	struct net_device *dev = vi->dev;
2954 	struct scatterlist sg[2];
2955 	struct virtio_net_ctrl_mac *mac_data;
2956 	struct netdev_hw_addr *ha;
2957 	int uc_count;
2958 	int mc_count;
2959 	void *buf;
2960 	int i;
2961 
2962 	/* We can't dynamically set ndo_set_rx_mode, so return gracefully */
2963 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
2964 		return;
2965 
2966 	promisc_allmulti = kzalloc(sizeof(*promisc_allmulti), GFP_KERNEL);
2967 	if (!promisc_allmulti) {
2968 		dev_warn(&dev->dev, "Failed to set RX mode, no memory.\n");
2969 		return;
2970 	}
2971 
2972 	rtnl_lock();
2973 
2974 	*promisc_allmulti = !!(dev->flags & IFF_PROMISC);
2975 	sg_init_one(sg, promisc_allmulti, sizeof(*promisc_allmulti));
2976 
2977 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
2978 				  VIRTIO_NET_CTRL_RX_PROMISC, sg))
2979 		dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
2980 			 *promisc_allmulti ? "en" : "dis");
2981 
2982 	*promisc_allmulti = !!(dev->flags & IFF_ALLMULTI);
2983 	sg_init_one(sg, promisc_allmulti, sizeof(*promisc_allmulti));
2984 
2985 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
2986 				  VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
2987 		dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
2988 			 *promisc_allmulti ? "en" : "dis");
2989 
2990 	netif_addr_lock_bh(dev);
2991 
2992 	uc_count = netdev_uc_count(dev);
2993 	mc_count = netdev_mc_count(dev);
2994 	/* MAC filter - use one buffer for both lists */
2995 	buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
2996 		      (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
2997 	mac_data = buf;
2998 	if (!buf) {
2999 		netif_addr_unlock_bh(dev);
3000 		rtnl_unlock();
3001 		return;
3002 	}
3003 
3004 	sg_init_table(sg, 2);
3005 
3006 	/* Store the unicast list and count in the front of the buffer */
3007 	mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
3008 	i = 0;
3009 	netdev_for_each_uc_addr(ha, dev)
3010 		memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
3011 
3012 	sg_set_buf(&sg[0], mac_data,
3013 		   sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
3014 
3015 	/* multicast list and count fill the end */
3016 	mac_data = (void *)&mac_data->macs[uc_count][0];
3017 
3018 	mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
3019 	i = 0;
3020 	netdev_for_each_mc_addr(ha, dev)
3021 		memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
3022 
3023 	netif_addr_unlock_bh(dev);
3024 
3025 	sg_set_buf(&sg[1], mac_data,
3026 		   sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
3027 
3028 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
3029 				  VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
3030 		dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
3031 
3032 	rtnl_unlock();
3033 
3034 	kfree(buf);
3035 }
3036 
3037 static void virtnet_set_rx_mode(struct net_device *dev)
3038 {
3039 	struct virtnet_info *vi = netdev_priv(dev);
3040 
3041 	if (vi->rx_mode_work_enabled)
3042 		schedule_work(&vi->rx_mode_work);
3043 }
3044 
3045 static int virtnet_vlan_rx_add_vid(struct net_device *dev,
3046 				   __be16 proto, u16 vid)
3047 {
3048 	struct virtnet_info *vi = netdev_priv(dev);
3049 	__virtio16 *_vid __free(kfree) = NULL;
3050 	struct scatterlist sg;
3051 
3052 	_vid = kzalloc(sizeof(*_vid), GFP_KERNEL);
3053 	if (!_vid)
3054 		return -ENOMEM;
3055 
3056 	*_vid = cpu_to_virtio16(vi->vdev, vid);
3057 	sg_init_one(&sg, _vid, sizeof(*_vid));
3058 
3059 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
3060 				  VIRTIO_NET_CTRL_VLAN_ADD, &sg))
3061 		dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
3062 	return 0;
3063 }
3064 
3065 static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
3066 				    __be16 proto, u16 vid)
3067 {
3068 	struct virtnet_info *vi = netdev_priv(dev);
3069 	__virtio16 *_vid __free(kfree) = NULL;
3070 	struct scatterlist sg;
3071 
3072 	_vid = kzalloc(sizeof(*_vid), GFP_KERNEL);
3073 	if (!_vid)
3074 		return -ENOMEM;
3075 
3076 	*_vid = cpu_to_virtio16(vi->vdev, vid);
3077 	sg_init_one(&sg, _vid, sizeof(*_vid));
3078 
3079 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
3080 				  VIRTIO_NET_CTRL_VLAN_DEL, &sg))
3081 		dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
3082 	return 0;
3083 }
3084 
3085 static void virtnet_clean_affinity(struct virtnet_info *vi)
3086 {
3087 	int i;
3088 
3089 	if (vi->affinity_hint_set) {
3090 		for (i = 0; i < vi->max_queue_pairs; i++) {
3091 			virtqueue_set_affinity(vi->rq[i].vq, NULL);
3092 			virtqueue_set_affinity(vi->sq[i].vq, NULL);
3093 		}
3094 
3095 		vi->affinity_hint_set = false;
3096 	}
3097 }
3098 
3099 static void virtnet_set_affinity(struct virtnet_info *vi)
3100 {
3101 	cpumask_var_t mask;
3102 	int stragglers;
3103 	int group_size;
3104 	int i, j, cpu;
3105 	int num_cpu;
3106 	int stride;
3107 
3108 	if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) {
3109 		virtnet_clean_affinity(vi);
3110 		return;
3111 	}
3112 
3113 	num_cpu = num_online_cpus();
3114 	stride = max_t(int, num_cpu / vi->curr_queue_pairs, 1);
3115 	stragglers = num_cpu >= vi->curr_queue_pairs ?
3116 			num_cpu % vi->curr_queue_pairs :
3117 			0;
3118 	cpu = cpumask_first(cpu_online_mask);
3119 
3120 	for (i = 0; i < vi->curr_queue_pairs; i++) {
3121 		group_size = stride + (i < stragglers ? 1 : 0);
3122 
3123 		for (j = 0; j < group_size; j++) {
3124 			cpumask_set_cpu(cpu, mask);
3125 			cpu = cpumask_next_wrap(cpu, cpu_online_mask,
3126 						nr_cpu_ids, false);
3127 		}
3128 		virtqueue_set_affinity(vi->rq[i].vq, mask);
3129 		virtqueue_set_affinity(vi->sq[i].vq, mask);
3130 		__netif_set_xps_queue(vi->dev, cpumask_bits(mask), i, XPS_CPUS);
3131 		cpumask_clear(mask);
3132 	}
3133 
3134 	vi->affinity_hint_set = true;
3135 	free_cpumask_var(mask);
3136 }
3137 
3138 static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
3139 {
3140 	struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
3141 						   node);
3142 	virtnet_set_affinity(vi);
3143 	return 0;
3144 }
3145 
3146 static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
3147 {
3148 	struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
3149 						   node_dead);
3150 	virtnet_set_affinity(vi);
3151 	return 0;
3152 }
3153 
3154 static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
3155 {
3156 	struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
3157 						   node);
3158 
3159 	virtnet_clean_affinity(vi);
3160 	return 0;
3161 }
3162 
3163 static enum cpuhp_state virtionet_online;
3164 
3165 static int virtnet_cpu_notif_add(struct virtnet_info *vi)
3166 {
3167 	int ret;
3168 
3169 	ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
3170 	if (ret)
3171 		return ret;
3172 	ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
3173 					       &vi->node_dead);
3174 	if (!ret)
3175 		return ret;
3176 	cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
3177 	return ret;
3178 }
3179 
3180 static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
3181 {
3182 	cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
3183 	cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
3184 					    &vi->node_dead);
3185 }
3186 
3187 static int virtnet_send_ctrl_coal_vq_cmd(struct virtnet_info *vi,
3188 					 u16 vqn, u32 max_usecs, u32 max_packets)
3189 {
3190 	struct virtio_net_ctrl_coal_vq *coal_vq __free(kfree) = NULL;
3191 	struct scatterlist sgs;
3192 
3193 	coal_vq = kzalloc(sizeof(*coal_vq), GFP_KERNEL);
3194 	if (!coal_vq)
3195 		return -ENOMEM;
3196 
3197 	coal_vq->vqn = cpu_to_le16(vqn);
3198 	coal_vq->coal.max_usecs = cpu_to_le32(max_usecs);
3199 	coal_vq->coal.max_packets = cpu_to_le32(max_packets);
3200 	sg_init_one(&sgs, coal_vq, sizeof(*coal_vq));
3201 
3202 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL,
3203 				  VIRTIO_NET_CTRL_NOTF_COAL_VQ_SET,
3204 				  &sgs))
3205 		return -EINVAL;
3206 
3207 	return 0;
3208 }
3209 
3210 static int virtnet_send_rx_ctrl_coal_vq_cmd(struct virtnet_info *vi,
3211 					    u16 queue, u32 max_usecs,
3212 					    u32 max_packets)
3213 {
3214 	int err;
3215 
3216 	err = virtnet_send_ctrl_coal_vq_cmd(vi, rxq2vq(queue),
3217 					    max_usecs, max_packets);
3218 	if (err)
3219 		return err;
3220 
3221 	vi->rq[queue].intr_coal.max_usecs = max_usecs;
3222 	vi->rq[queue].intr_coal.max_packets = max_packets;
3223 
3224 	return 0;
3225 }
3226 
3227 static int virtnet_send_tx_ctrl_coal_vq_cmd(struct virtnet_info *vi,
3228 					    u16 queue, u32 max_usecs,
3229 					    u32 max_packets)
3230 {
3231 	int err;
3232 
3233 	err = virtnet_send_ctrl_coal_vq_cmd(vi, txq2vq(queue),
3234 					    max_usecs, max_packets);
3235 	if (err)
3236 		return err;
3237 
3238 	vi->sq[queue].intr_coal.max_usecs = max_usecs;
3239 	vi->sq[queue].intr_coal.max_packets = max_packets;
3240 
3241 	return 0;
3242 }
3243 
3244 static void virtnet_get_ringparam(struct net_device *dev,
3245 				  struct ethtool_ringparam *ring,
3246 				  struct kernel_ethtool_ringparam *kernel_ring,
3247 				  struct netlink_ext_ack *extack)
3248 {
3249 	struct virtnet_info *vi = netdev_priv(dev);
3250 
3251 	ring->rx_max_pending = vi->rq[0].vq->num_max;
3252 	ring->tx_max_pending = vi->sq[0].vq->num_max;
3253 	ring->rx_pending = virtqueue_get_vring_size(vi->rq[0].vq);
3254 	ring->tx_pending = virtqueue_get_vring_size(vi->sq[0].vq);
3255 }
3256 
3257 static int virtnet_set_ringparam(struct net_device *dev,
3258 				 struct ethtool_ringparam *ring,
3259 				 struct kernel_ethtool_ringparam *kernel_ring,
3260 				 struct netlink_ext_ack *extack)
3261 {
3262 	struct virtnet_info *vi = netdev_priv(dev);
3263 	u32 rx_pending, tx_pending;
3264 	struct receive_queue *rq;
3265 	struct send_queue *sq;
3266 	int i, err;
3267 
3268 	if (ring->rx_mini_pending || ring->rx_jumbo_pending)
3269 		return -EINVAL;
3270 
3271 	rx_pending = virtqueue_get_vring_size(vi->rq[0].vq);
3272 	tx_pending = virtqueue_get_vring_size(vi->sq[0].vq);
3273 
3274 	if (ring->rx_pending == rx_pending &&
3275 	    ring->tx_pending == tx_pending)
3276 		return 0;
3277 
3278 	if (ring->rx_pending > vi->rq[0].vq->num_max)
3279 		return -EINVAL;
3280 
3281 	if (ring->tx_pending > vi->sq[0].vq->num_max)
3282 		return -EINVAL;
3283 
3284 	for (i = 0; i < vi->max_queue_pairs; i++) {
3285 		rq = vi->rq + i;
3286 		sq = vi->sq + i;
3287 
3288 		if (ring->tx_pending != tx_pending) {
3289 			err = virtnet_tx_resize(vi, sq, ring->tx_pending);
3290 			if (err)
3291 				return err;
3292 
3293 			/* Upon disabling and re-enabling a transmit virtqueue, the device must
3294 			 * set the coalescing parameters of the virtqueue to those configured
3295 			 * through the VIRTIO_NET_CTRL_NOTF_COAL_TX_SET command, or, if the driver
3296 			 * did not set any TX coalescing parameters, to 0.
3297 			 */
3298 			err = virtnet_send_tx_ctrl_coal_vq_cmd(vi, i,
3299 							       vi->intr_coal_tx.max_usecs,
3300 							       vi->intr_coal_tx.max_packets);
3301 			if (err)
3302 				return err;
3303 		}
3304 
3305 		if (ring->rx_pending != rx_pending) {
3306 			err = virtnet_rx_resize(vi, rq, ring->rx_pending);
3307 			if (err)
3308 				return err;
3309 
3310 			/* The reason is same as the transmit virtqueue reset */
3311 			mutex_lock(&vi->rq[i].dim_lock);
3312 			err = virtnet_send_rx_ctrl_coal_vq_cmd(vi, i,
3313 							       vi->intr_coal_rx.max_usecs,
3314 							       vi->intr_coal_rx.max_packets);
3315 			mutex_unlock(&vi->rq[i].dim_lock);
3316 			if (err)
3317 				return err;
3318 		}
3319 	}
3320 
3321 	return 0;
3322 }
3323 
3324 static bool virtnet_commit_rss_command(struct virtnet_info *vi)
3325 {
3326 	struct net_device *dev = vi->dev;
3327 	struct scatterlist sgs[4];
3328 	unsigned int sg_buf_size;
3329 
3330 	/* prepare sgs */
3331 	sg_init_table(sgs, 4);
3332 
3333 	sg_buf_size = offsetof(struct virtio_net_ctrl_rss, indirection_table);
3334 	sg_set_buf(&sgs[0], &vi->rss, sg_buf_size);
3335 
3336 	sg_buf_size = sizeof(uint16_t) * (vi->rss.indirection_table_mask + 1);
3337 	sg_set_buf(&sgs[1], vi->rss.indirection_table, sg_buf_size);
3338 
3339 	sg_buf_size = offsetof(struct virtio_net_ctrl_rss, key)
3340 			- offsetof(struct virtio_net_ctrl_rss, max_tx_vq);
3341 	sg_set_buf(&sgs[2], &vi->rss.max_tx_vq, sg_buf_size);
3342 
3343 	sg_buf_size = vi->rss_key_size;
3344 	sg_set_buf(&sgs[3], vi->rss.key, sg_buf_size);
3345 
3346 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
3347 				  vi->has_rss ? VIRTIO_NET_CTRL_MQ_RSS_CONFIG
3348 				  : VIRTIO_NET_CTRL_MQ_HASH_CONFIG, sgs))
3349 		goto err;
3350 
3351 	return true;
3352 
3353 err:
3354 	dev_warn(&dev->dev, "VIRTIONET issue with committing RSS sgs\n");
3355 	return false;
3356 
3357 }
3358 
3359 static void virtnet_init_default_rss(struct virtnet_info *vi)
3360 {
3361 	u32 indir_val = 0;
3362 	int i = 0;
3363 
3364 	vi->rss.hash_types = vi->rss_hash_types_supported;
3365 	vi->rss_hash_types_saved = vi->rss_hash_types_supported;
3366 	vi->rss.indirection_table_mask = vi->rss_indir_table_size
3367 						? vi->rss_indir_table_size - 1 : 0;
3368 	vi->rss.unclassified_queue = 0;
3369 
3370 	for (; i < vi->rss_indir_table_size; ++i) {
3371 		indir_val = ethtool_rxfh_indir_default(i, vi->curr_queue_pairs);
3372 		vi->rss.indirection_table[i] = indir_val;
3373 	}
3374 
3375 	vi->rss.max_tx_vq = vi->has_rss ? vi->curr_queue_pairs : 0;
3376 	vi->rss.hash_key_length = vi->rss_key_size;
3377 
3378 	netdev_rss_key_fill(vi->rss.key, vi->rss_key_size);
3379 }
3380 
3381 static void virtnet_get_hashflow(const struct virtnet_info *vi, struct ethtool_rxnfc *info)
3382 {
3383 	info->data = 0;
3384 	switch (info->flow_type) {
3385 	case TCP_V4_FLOW:
3386 		if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_TCPv4) {
3387 			info->data = RXH_IP_SRC | RXH_IP_DST |
3388 						 RXH_L4_B_0_1 | RXH_L4_B_2_3;
3389 		} else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4) {
3390 			info->data = RXH_IP_SRC | RXH_IP_DST;
3391 		}
3392 		break;
3393 	case TCP_V6_FLOW:
3394 		if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_TCPv6) {
3395 			info->data = RXH_IP_SRC | RXH_IP_DST |
3396 						 RXH_L4_B_0_1 | RXH_L4_B_2_3;
3397 		} else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6) {
3398 			info->data = RXH_IP_SRC | RXH_IP_DST;
3399 		}
3400 		break;
3401 	case UDP_V4_FLOW:
3402 		if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_UDPv4) {
3403 			info->data = RXH_IP_SRC | RXH_IP_DST |
3404 						 RXH_L4_B_0_1 | RXH_L4_B_2_3;
3405 		} else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4) {
3406 			info->data = RXH_IP_SRC | RXH_IP_DST;
3407 		}
3408 		break;
3409 	case UDP_V6_FLOW:
3410 		if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_UDPv6) {
3411 			info->data = RXH_IP_SRC | RXH_IP_DST |
3412 						 RXH_L4_B_0_1 | RXH_L4_B_2_3;
3413 		} else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6) {
3414 			info->data = RXH_IP_SRC | RXH_IP_DST;
3415 		}
3416 		break;
3417 	case IPV4_FLOW:
3418 		if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4)
3419 			info->data = RXH_IP_SRC | RXH_IP_DST;
3420 
3421 		break;
3422 	case IPV6_FLOW:
3423 		if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6)
3424 			info->data = RXH_IP_SRC | RXH_IP_DST;
3425 
3426 		break;
3427 	default:
3428 		info->data = 0;
3429 		break;
3430 	}
3431 }
3432 
3433 static bool virtnet_set_hashflow(struct virtnet_info *vi, struct ethtool_rxnfc *info)
3434 {
3435 	u32 new_hashtypes = vi->rss_hash_types_saved;
3436 	bool is_disable = info->data & RXH_DISCARD;
3437 	bool is_l4 = info->data == (RXH_IP_SRC | RXH_IP_DST | RXH_L4_B_0_1 | RXH_L4_B_2_3);
3438 
3439 	/* supports only 'sd', 'sdfn' and 'r' */
3440 	if (!((info->data == (RXH_IP_SRC | RXH_IP_DST)) | is_l4 | is_disable))
3441 		return false;
3442 
3443 	switch (info->flow_type) {
3444 	case TCP_V4_FLOW:
3445 		new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv4 | VIRTIO_NET_RSS_HASH_TYPE_TCPv4);
3446 		if (!is_disable)
3447 			new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv4
3448 				| (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_TCPv4 : 0);
3449 		break;
3450 	case UDP_V4_FLOW:
3451 		new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv4 | VIRTIO_NET_RSS_HASH_TYPE_UDPv4);
3452 		if (!is_disable)
3453 			new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv4
3454 				| (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_UDPv4 : 0);
3455 		break;
3456 	case IPV4_FLOW:
3457 		new_hashtypes &= ~VIRTIO_NET_RSS_HASH_TYPE_IPv4;
3458 		if (!is_disable)
3459 			new_hashtypes = VIRTIO_NET_RSS_HASH_TYPE_IPv4;
3460 		break;
3461 	case TCP_V6_FLOW:
3462 		new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv6 | VIRTIO_NET_RSS_HASH_TYPE_TCPv6);
3463 		if (!is_disable)
3464 			new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv6
3465 				| (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_TCPv6 : 0);
3466 		break;
3467 	case UDP_V6_FLOW:
3468 		new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv6 | VIRTIO_NET_RSS_HASH_TYPE_UDPv6);
3469 		if (!is_disable)
3470 			new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv6
3471 				| (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_UDPv6 : 0);
3472 		break;
3473 	case IPV6_FLOW:
3474 		new_hashtypes &= ~VIRTIO_NET_RSS_HASH_TYPE_IPv6;
3475 		if (!is_disable)
3476 			new_hashtypes = VIRTIO_NET_RSS_HASH_TYPE_IPv6;
3477 		break;
3478 	default:
3479 		/* unsupported flow */
3480 		return false;
3481 	}
3482 
3483 	/* if unsupported hashtype was set */
3484 	if (new_hashtypes != (new_hashtypes & vi->rss_hash_types_supported))
3485 		return false;
3486 
3487 	if (new_hashtypes != vi->rss_hash_types_saved) {
3488 		vi->rss_hash_types_saved = new_hashtypes;
3489 		vi->rss.hash_types = vi->rss_hash_types_saved;
3490 		if (vi->dev->features & NETIF_F_RXHASH)
3491 			return virtnet_commit_rss_command(vi);
3492 	}
3493 
3494 	return true;
3495 }
3496 
3497 static void virtnet_get_drvinfo(struct net_device *dev,
3498 				struct ethtool_drvinfo *info)
3499 {
3500 	struct virtnet_info *vi = netdev_priv(dev);
3501 	struct virtio_device *vdev = vi->vdev;
3502 
3503 	strscpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
3504 	strscpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
3505 	strscpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
3506 
3507 }
3508 
3509 /* TODO: Eliminate OOO packets during switching */
3510 static int virtnet_set_channels(struct net_device *dev,
3511 				struct ethtool_channels *channels)
3512 {
3513 	struct virtnet_info *vi = netdev_priv(dev);
3514 	u16 queue_pairs = channels->combined_count;
3515 	int err;
3516 
3517 	/* We don't support separate rx/tx channels.
3518 	 * We don't allow setting 'other' channels.
3519 	 */
3520 	if (channels->rx_count || channels->tx_count || channels->other_count)
3521 		return -EINVAL;
3522 
3523 	if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
3524 		return -EINVAL;
3525 
3526 	/* For now we don't support modifying channels while XDP is loaded
3527 	 * also when XDP is loaded all RX queues have XDP programs so we only
3528 	 * need to check a single RX queue.
3529 	 */
3530 	if (vi->rq[0].xdp_prog)
3531 		return -EINVAL;
3532 
3533 	cpus_read_lock();
3534 	err = virtnet_set_queues(vi, queue_pairs);
3535 	if (err) {
3536 		cpus_read_unlock();
3537 		goto err;
3538 	}
3539 	virtnet_set_affinity(vi);
3540 	cpus_read_unlock();
3541 
3542 	netif_set_real_num_tx_queues(dev, queue_pairs);
3543 	netif_set_real_num_rx_queues(dev, queue_pairs);
3544  err:
3545 	return err;
3546 }
3547 
3548 static void virtnet_stats_sprintf(u8 **p, const char *fmt, const char *noq_fmt,
3549 				  int num, int qid, const struct virtnet_stat_desc *desc)
3550 {
3551 	int i;
3552 
3553 	if (qid < 0) {
3554 		for (i = 0; i < num; ++i)
3555 			ethtool_sprintf(p, noq_fmt, desc[i].desc);
3556 	} else {
3557 		for (i = 0; i < num; ++i)
3558 			ethtool_sprintf(p, fmt, qid, desc[i].desc);
3559 	}
3560 }
3561 
3562 /* qid == -1: for rx/tx queue total field */
3563 static void virtnet_get_stats_string(struct virtnet_info *vi, int type, int qid, u8 **data)
3564 {
3565 	const struct virtnet_stat_desc *desc;
3566 	const char *fmt, *noq_fmt;
3567 	u8 *p = *data;
3568 	u32 num;
3569 
3570 	if (type == VIRTNET_Q_TYPE_CQ && qid >= 0) {
3571 		noq_fmt = "cq_hw_%s";
3572 
3573 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_CVQ) {
3574 			desc = &virtnet_stats_cvq_desc[0];
3575 			num = ARRAY_SIZE(virtnet_stats_cvq_desc);
3576 
3577 			virtnet_stats_sprintf(&p, NULL, noq_fmt, num, -1, desc);
3578 		}
3579 	}
3580 
3581 	if (type == VIRTNET_Q_TYPE_RX) {
3582 		fmt = "rx%u_%s";
3583 		noq_fmt = "rx_%s";
3584 
3585 		desc = &virtnet_rq_stats_desc[0];
3586 		num = ARRAY_SIZE(virtnet_rq_stats_desc);
3587 
3588 		virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
3589 
3590 		fmt = "rx%u_hw_%s";
3591 		noq_fmt = "rx_hw_%s";
3592 
3593 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) {
3594 			desc = &virtnet_stats_rx_basic_desc[0];
3595 			num = ARRAY_SIZE(virtnet_stats_rx_basic_desc);
3596 
3597 			virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
3598 		}
3599 
3600 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) {
3601 			desc = &virtnet_stats_rx_csum_desc[0];
3602 			num = ARRAY_SIZE(virtnet_stats_rx_csum_desc);
3603 
3604 			virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
3605 		}
3606 
3607 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) {
3608 			desc = &virtnet_stats_rx_speed_desc[0];
3609 			num = ARRAY_SIZE(virtnet_stats_rx_speed_desc);
3610 
3611 			virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
3612 		}
3613 	}
3614 
3615 	if (type == VIRTNET_Q_TYPE_TX) {
3616 		fmt = "tx%u_%s";
3617 		noq_fmt = "tx_%s";
3618 
3619 		desc = &virtnet_sq_stats_desc[0];
3620 		num = ARRAY_SIZE(virtnet_sq_stats_desc);
3621 
3622 		virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
3623 
3624 		fmt = "tx%u_hw_%s";
3625 		noq_fmt = "tx_hw_%s";
3626 
3627 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) {
3628 			desc = &virtnet_stats_tx_basic_desc[0];
3629 			num = ARRAY_SIZE(virtnet_stats_tx_basic_desc);
3630 
3631 			virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
3632 		}
3633 
3634 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) {
3635 			desc = &virtnet_stats_tx_gso_desc[0];
3636 			num = ARRAY_SIZE(virtnet_stats_tx_gso_desc);
3637 
3638 			virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
3639 		}
3640 
3641 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) {
3642 			desc = &virtnet_stats_tx_speed_desc[0];
3643 			num = ARRAY_SIZE(virtnet_stats_tx_speed_desc);
3644 
3645 			virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
3646 		}
3647 	}
3648 
3649 	*data = p;
3650 }
3651 
3652 struct virtnet_stats_ctx {
3653 	/* The stats are write to qstats or ethtool -S */
3654 	bool to_qstat;
3655 
3656 	/* Used to calculate the offset inside the output buffer. */
3657 	u32 desc_num[3];
3658 
3659 	/* The actual supported stat types. */
3660 	u32 bitmap[3];
3661 
3662 	/* Used to calculate the reply buffer size. */
3663 	u32 size[3];
3664 
3665 	/* Record the output buffer. */
3666 	u64 *data;
3667 };
3668 
3669 static void virtnet_stats_ctx_init(struct virtnet_info *vi,
3670 				   struct virtnet_stats_ctx *ctx,
3671 				   u64 *data, bool to_qstat)
3672 {
3673 	u32 queue_type;
3674 
3675 	ctx->data = data;
3676 	ctx->to_qstat = to_qstat;
3677 
3678 	if (to_qstat) {
3679 		ctx->desc_num[VIRTNET_Q_TYPE_RX] = ARRAY_SIZE(virtnet_rq_stats_desc_qstat);
3680 		ctx->desc_num[VIRTNET_Q_TYPE_TX] = ARRAY_SIZE(virtnet_sq_stats_desc_qstat);
3681 
3682 		queue_type = VIRTNET_Q_TYPE_RX;
3683 
3684 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) {
3685 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_BASIC;
3686 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_basic_desc_qstat);
3687 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_basic);
3688 		}
3689 
3690 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) {
3691 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_CSUM;
3692 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_csum_desc_qstat);
3693 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_csum);
3694 		}
3695 
3696 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_GSO) {
3697 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_GSO;
3698 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_gso_desc_qstat);
3699 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_gso);
3700 		}
3701 
3702 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) {
3703 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_SPEED;
3704 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_speed_desc_qstat);
3705 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_speed);
3706 		}
3707 
3708 		queue_type = VIRTNET_Q_TYPE_TX;
3709 
3710 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) {
3711 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_BASIC;
3712 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_basic_desc_qstat);
3713 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_basic);
3714 		}
3715 
3716 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_CSUM) {
3717 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_CSUM;
3718 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_csum_desc_qstat);
3719 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_csum);
3720 		}
3721 
3722 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) {
3723 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_GSO;
3724 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_gso_desc_qstat);
3725 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_gso);
3726 		}
3727 
3728 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) {
3729 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_SPEED;
3730 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_speed_desc_qstat);
3731 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_speed);
3732 		}
3733 
3734 		return;
3735 	}
3736 
3737 	ctx->desc_num[VIRTNET_Q_TYPE_RX] = ARRAY_SIZE(virtnet_rq_stats_desc);
3738 	ctx->desc_num[VIRTNET_Q_TYPE_TX] = ARRAY_SIZE(virtnet_sq_stats_desc);
3739 
3740 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_CVQ) {
3741 		queue_type = VIRTNET_Q_TYPE_CQ;
3742 
3743 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_CVQ;
3744 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_cvq_desc);
3745 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_cvq);
3746 	}
3747 
3748 	queue_type = VIRTNET_Q_TYPE_RX;
3749 
3750 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) {
3751 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_BASIC;
3752 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_basic_desc);
3753 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_basic);
3754 	}
3755 
3756 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) {
3757 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_CSUM;
3758 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_csum_desc);
3759 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_csum);
3760 	}
3761 
3762 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) {
3763 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_SPEED;
3764 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_speed_desc);
3765 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_speed);
3766 	}
3767 
3768 	queue_type = VIRTNET_Q_TYPE_TX;
3769 
3770 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) {
3771 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_BASIC;
3772 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_basic_desc);
3773 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_basic);
3774 	}
3775 
3776 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) {
3777 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_GSO;
3778 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_gso_desc);
3779 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_gso);
3780 	}
3781 
3782 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) {
3783 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_SPEED;
3784 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_speed_desc);
3785 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_speed);
3786 	}
3787 }
3788 
3789 /* stats_sum_queue - Calculate the sum of the same fields in sq or rq.
3790  * @sum: the position to store the sum values
3791  * @num: field num
3792  * @q_value: the first queue fields
3793  * @q_num: number of the queues
3794  */
3795 static void stats_sum_queue(u64 *sum, u32 num, u64 *q_value, u32 q_num)
3796 {
3797 	u32 step = num;
3798 	int i, j;
3799 	u64 *p;
3800 
3801 	for (i = 0; i < num; ++i) {
3802 		p = sum + i;
3803 		*p = 0;
3804 
3805 		for (j = 0; j < q_num; ++j)
3806 			*p += *(q_value + i + j * step);
3807 	}
3808 }
3809 
3810 static void virtnet_fill_total_fields(struct virtnet_info *vi,
3811 				      struct virtnet_stats_ctx *ctx)
3812 {
3813 	u64 *data, *first_rx_q, *first_tx_q;
3814 	u32 num_cq, num_rx, num_tx;
3815 
3816 	num_cq = ctx->desc_num[VIRTNET_Q_TYPE_CQ];
3817 	num_rx = ctx->desc_num[VIRTNET_Q_TYPE_RX];
3818 	num_tx = ctx->desc_num[VIRTNET_Q_TYPE_TX];
3819 
3820 	first_rx_q = ctx->data + num_rx + num_tx + num_cq;
3821 	first_tx_q = first_rx_q + vi->curr_queue_pairs * num_rx;
3822 
3823 	data = ctx->data;
3824 
3825 	stats_sum_queue(data, num_rx, first_rx_q, vi->curr_queue_pairs);
3826 
3827 	data = ctx->data + num_rx;
3828 
3829 	stats_sum_queue(data, num_tx, first_tx_q, vi->curr_queue_pairs);
3830 }
3831 
3832 static void virtnet_fill_stats_qstat(struct virtnet_info *vi, u32 qid,
3833 				     struct virtnet_stats_ctx *ctx,
3834 				     const u8 *base, bool drv_stats, u8 reply_type)
3835 {
3836 	const struct virtnet_stat_desc *desc;
3837 	const u64_stats_t *v_stat;
3838 	u64 offset, bitmap;
3839 	const __le64 *v;
3840 	u32 queue_type;
3841 	int i, num;
3842 
3843 	queue_type = vq_type(vi, qid);
3844 	bitmap = ctx->bitmap[queue_type];
3845 
3846 	if (drv_stats) {
3847 		if (queue_type == VIRTNET_Q_TYPE_RX) {
3848 			desc = &virtnet_rq_stats_desc_qstat[0];
3849 			num = ARRAY_SIZE(virtnet_rq_stats_desc_qstat);
3850 		} else {
3851 			desc = &virtnet_sq_stats_desc_qstat[0];
3852 			num = ARRAY_SIZE(virtnet_sq_stats_desc_qstat);
3853 		}
3854 
3855 		for (i = 0; i < num; ++i) {
3856 			offset = desc[i].qstat_offset / sizeof(*ctx->data);
3857 			v_stat = (const u64_stats_t *)(base + desc[i].offset);
3858 			ctx->data[offset] = u64_stats_read(v_stat);
3859 		}
3860 		return;
3861 	}
3862 
3863 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_BASIC) {
3864 		desc = &virtnet_stats_rx_basic_desc_qstat[0];
3865 		num = ARRAY_SIZE(virtnet_stats_rx_basic_desc_qstat);
3866 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_BASIC)
3867 			goto found;
3868 	}
3869 
3870 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_CSUM) {
3871 		desc = &virtnet_stats_rx_csum_desc_qstat[0];
3872 		num = ARRAY_SIZE(virtnet_stats_rx_csum_desc_qstat);
3873 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_CSUM)
3874 			goto found;
3875 	}
3876 
3877 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_GSO) {
3878 		desc = &virtnet_stats_rx_gso_desc_qstat[0];
3879 		num = ARRAY_SIZE(virtnet_stats_rx_gso_desc_qstat);
3880 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_GSO)
3881 			goto found;
3882 	}
3883 
3884 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_SPEED) {
3885 		desc = &virtnet_stats_rx_speed_desc_qstat[0];
3886 		num = ARRAY_SIZE(virtnet_stats_rx_speed_desc_qstat);
3887 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_SPEED)
3888 			goto found;
3889 	}
3890 
3891 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_BASIC) {
3892 		desc = &virtnet_stats_tx_basic_desc_qstat[0];
3893 		num = ARRAY_SIZE(virtnet_stats_tx_basic_desc_qstat);
3894 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_BASIC)
3895 			goto found;
3896 	}
3897 
3898 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_CSUM) {
3899 		desc = &virtnet_stats_tx_csum_desc_qstat[0];
3900 		num = ARRAY_SIZE(virtnet_stats_tx_csum_desc_qstat);
3901 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_CSUM)
3902 			goto found;
3903 	}
3904 
3905 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_GSO) {
3906 		desc = &virtnet_stats_tx_gso_desc_qstat[0];
3907 		num = ARRAY_SIZE(virtnet_stats_tx_gso_desc_qstat);
3908 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_GSO)
3909 			goto found;
3910 	}
3911 
3912 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_SPEED) {
3913 		desc = &virtnet_stats_tx_speed_desc_qstat[0];
3914 		num = ARRAY_SIZE(virtnet_stats_tx_speed_desc_qstat);
3915 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_SPEED)
3916 			goto found;
3917 	}
3918 
3919 	return;
3920 
3921 found:
3922 	for (i = 0; i < num; ++i) {
3923 		offset = desc[i].qstat_offset / sizeof(*ctx->data);
3924 		v = (const __le64 *)(base + desc[i].offset);
3925 		ctx->data[offset] = le64_to_cpu(*v);
3926 	}
3927 }
3928 
3929 /* virtnet_fill_stats - copy the stats to qstats or ethtool -S
3930  * The stats source is the device or the driver.
3931  *
3932  * @vi: virtio net info
3933  * @qid: the vq id
3934  * @ctx: stats ctx (initiated by virtnet_stats_ctx_init())
3935  * @base: pointer to the device reply or the driver stats structure.
3936  * @drv_stats: designate the base type (device reply, driver stats)
3937  * @type: the type of the device reply (if drv_stats is true, this must be zero)
3938  */
3939 static void virtnet_fill_stats(struct virtnet_info *vi, u32 qid,
3940 			       struct virtnet_stats_ctx *ctx,
3941 			       const u8 *base, bool drv_stats, u8 reply_type)
3942 {
3943 	u32 queue_type, num_rx, num_tx, num_cq;
3944 	const struct virtnet_stat_desc *desc;
3945 	const u64_stats_t *v_stat;
3946 	u64 offset, bitmap;
3947 	const __le64 *v;
3948 	int i, num;
3949 
3950 	if (ctx->to_qstat)
3951 		return virtnet_fill_stats_qstat(vi, qid, ctx, base, drv_stats, reply_type);
3952 
3953 	num_cq = ctx->desc_num[VIRTNET_Q_TYPE_CQ];
3954 	num_rx = ctx->desc_num[VIRTNET_Q_TYPE_RX];
3955 	num_tx = ctx->desc_num[VIRTNET_Q_TYPE_TX];
3956 
3957 	queue_type = vq_type(vi, qid);
3958 	bitmap = ctx->bitmap[queue_type];
3959 
3960 	/* skip the total fields of pairs */
3961 	offset = num_rx + num_tx;
3962 
3963 	if (queue_type == VIRTNET_Q_TYPE_TX) {
3964 		offset += num_cq + num_rx * vi->curr_queue_pairs + num_tx * (qid / 2);
3965 
3966 		num = ARRAY_SIZE(virtnet_sq_stats_desc);
3967 		if (drv_stats) {
3968 			desc = &virtnet_sq_stats_desc[0];
3969 			goto drv_stats;
3970 		}
3971 
3972 		offset += num;
3973 
3974 	} else if (queue_type == VIRTNET_Q_TYPE_RX) {
3975 		offset += num_cq + num_rx * (qid / 2);
3976 
3977 		num = ARRAY_SIZE(virtnet_rq_stats_desc);
3978 		if (drv_stats) {
3979 			desc = &virtnet_rq_stats_desc[0];
3980 			goto drv_stats;
3981 		}
3982 
3983 		offset += num;
3984 	}
3985 
3986 	if (bitmap & VIRTIO_NET_STATS_TYPE_CVQ) {
3987 		desc = &virtnet_stats_cvq_desc[0];
3988 		num = ARRAY_SIZE(virtnet_stats_cvq_desc);
3989 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_CVQ)
3990 			goto found;
3991 
3992 		offset += num;
3993 	}
3994 
3995 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_BASIC) {
3996 		desc = &virtnet_stats_rx_basic_desc[0];
3997 		num = ARRAY_SIZE(virtnet_stats_rx_basic_desc);
3998 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_BASIC)
3999 			goto found;
4000 
4001 		offset += num;
4002 	}
4003 
4004 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_CSUM) {
4005 		desc = &virtnet_stats_rx_csum_desc[0];
4006 		num = ARRAY_SIZE(virtnet_stats_rx_csum_desc);
4007 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_CSUM)
4008 			goto found;
4009 
4010 		offset += num;
4011 	}
4012 
4013 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_SPEED) {
4014 		desc = &virtnet_stats_rx_speed_desc[0];
4015 		num = ARRAY_SIZE(virtnet_stats_rx_speed_desc);
4016 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_SPEED)
4017 			goto found;
4018 
4019 		offset += num;
4020 	}
4021 
4022 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_BASIC) {
4023 		desc = &virtnet_stats_tx_basic_desc[0];
4024 		num = ARRAY_SIZE(virtnet_stats_tx_basic_desc);
4025 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_BASIC)
4026 			goto found;
4027 
4028 		offset += num;
4029 	}
4030 
4031 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_GSO) {
4032 		desc = &virtnet_stats_tx_gso_desc[0];
4033 		num = ARRAY_SIZE(virtnet_stats_tx_gso_desc);
4034 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_GSO)
4035 			goto found;
4036 
4037 		offset += num;
4038 	}
4039 
4040 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_SPEED) {
4041 		desc = &virtnet_stats_tx_speed_desc[0];
4042 		num = ARRAY_SIZE(virtnet_stats_tx_speed_desc);
4043 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_SPEED)
4044 			goto found;
4045 
4046 		offset += num;
4047 	}
4048 
4049 	return;
4050 
4051 found:
4052 	for (i = 0; i < num; ++i) {
4053 		v = (const __le64 *)(base + desc[i].offset);
4054 		ctx->data[offset + i] = le64_to_cpu(*v);
4055 	}
4056 
4057 	return;
4058 
4059 drv_stats:
4060 	for (i = 0; i < num; ++i) {
4061 		v_stat = (const u64_stats_t *)(base + desc[i].offset);
4062 		ctx->data[offset + i] = u64_stats_read(v_stat);
4063 	}
4064 }
4065 
4066 static int __virtnet_get_hw_stats(struct virtnet_info *vi,
4067 				  struct virtnet_stats_ctx *ctx,
4068 				  struct virtio_net_ctrl_queue_stats *req,
4069 				  int req_size, void *reply, int res_size)
4070 {
4071 	struct virtio_net_stats_reply_hdr *hdr;
4072 	struct scatterlist sgs_in, sgs_out;
4073 	void *p;
4074 	u32 qid;
4075 	int ok;
4076 
4077 	sg_init_one(&sgs_out, req, req_size);
4078 	sg_init_one(&sgs_in, reply, res_size);
4079 
4080 	ok = virtnet_send_command_reply(vi, VIRTIO_NET_CTRL_STATS,
4081 					VIRTIO_NET_CTRL_STATS_GET,
4082 					&sgs_out, &sgs_in);
4083 
4084 	if (!ok)
4085 		return ok;
4086 
4087 	for (p = reply; p - reply < res_size; p += le16_to_cpu(hdr->size)) {
4088 		hdr = p;
4089 		qid = le16_to_cpu(hdr->vq_index);
4090 		virtnet_fill_stats(vi, qid, ctx, p, false, hdr->type);
4091 	}
4092 
4093 	return 0;
4094 }
4095 
4096 static void virtnet_make_stat_req(struct virtnet_info *vi,
4097 				  struct virtnet_stats_ctx *ctx,
4098 				  struct virtio_net_ctrl_queue_stats *req,
4099 				  int qid, int *idx)
4100 {
4101 	int qtype = vq_type(vi, qid);
4102 	u64 bitmap = ctx->bitmap[qtype];
4103 
4104 	if (!bitmap)
4105 		return;
4106 
4107 	req->stats[*idx].vq_index = cpu_to_le16(qid);
4108 	req->stats[*idx].types_bitmap[0] = cpu_to_le64(bitmap);
4109 	*idx += 1;
4110 }
4111 
4112 /* qid: -1: get stats of all vq.
4113  *     > 0: get the stats for the special vq. This must not be cvq.
4114  */
4115 static int virtnet_get_hw_stats(struct virtnet_info *vi,
4116 				struct virtnet_stats_ctx *ctx, int qid)
4117 {
4118 	int qnum, i, j, res_size, qtype, last_vq, first_vq;
4119 	struct virtio_net_ctrl_queue_stats *req;
4120 	bool enable_cvq;
4121 	void *reply;
4122 	int ok;
4123 
4124 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_DEVICE_STATS))
4125 		return 0;
4126 
4127 	if (qid == -1) {
4128 		last_vq = vi->curr_queue_pairs * 2 - 1;
4129 		first_vq = 0;
4130 		enable_cvq = true;
4131 	} else {
4132 		last_vq = qid;
4133 		first_vq = qid;
4134 		enable_cvq = false;
4135 	}
4136 
4137 	qnum = 0;
4138 	res_size = 0;
4139 	for (i = first_vq; i <= last_vq ; ++i) {
4140 		qtype = vq_type(vi, i);
4141 		if (ctx->bitmap[qtype]) {
4142 			++qnum;
4143 			res_size += ctx->size[qtype];
4144 		}
4145 	}
4146 
4147 	if (enable_cvq && ctx->bitmap[VIRTNET_Q_TYPE_CQ]) {
4148 		res_size += ctx->size[VIRTNET_Q_TYPE_CQ];
4149 		qnum += 1;
4150 	}
4151 
4152 	req = kcalloc(qnum, sizeof(*req), GFP_KERNEL);
4153 	if (!req)
4154 		return -ENOMEM;
4155 
4156 	reply = kmalloc(res_size, GFP_KERNEL);
4157 	if (!reply) {
4158 		kfree(req);
4159 		return -ENOMEM;
4160 	}
4161 
4162 	j = 0;
4163 	for (i = first_vq; i <= last_vq ; ++i)
4164 		virtnet_make_stat_req(vi, ctx, req, i, &j);
4165 
4166 	if (enable_cvq)
4167 		virtnet_make_stat_req(vi, ctx, req, vi->max_queue_pairs * 2, &j);
4168 
4169 	ok = __virtnet_get_hw_stats(vi, ctx, req, sizeof(*req) * j, reply, res_size);
4170 
4171 	kfree(req);
4172 	kfree(reply);
4173 
4174 	return ok;
4175 }
4176 
4177 static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
4178 {
4179 	struct virtnet_info *vi = netdev_priv(dev);
4180 	unsigned int i;
4181 	u8 *p = data;
4182 
4183 	switch (stringset) {
4184 	case ETH_SS_STATS:
4185 		/* Generate the total field names. */
4186 		virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_RX, -1, &p);
4187 		virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_TX, -1, &p);
4188 
4189 		virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_CQ, 0, &p);
4190 
4191 		for (i = 0; i < vi->curr_queue_pairs; ++i)
4192 			virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_RX, i, &p);
4193 
4194 		for (i = 0; i < vi->curr_queue_pairs; ++i)
4195 			virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_TX, i, &p);
4196 		break;
4197 	}
4198 }
4199 
4200 static int virtnet_get_sset_count(struct net_device *dev, int sset)
4201 {
4202 	struct virtnet_info *vi = netdev_priv(dev);
4203 	struct virtnet_stats_ctx ctx = {0};
4204 	u32 pair_count;
4205 
4206 	switch (sset) {
4207 	case ETH_SS_STATS:
4208 		virtnet_stats_ctx_init(vi, &ctx, NULL, false);
4209 
4210 		pair_count = ctx.desc_num[VIRTNET_Q_TYPE_RX] + ctx.desc_num[VIRTNET_Q_TYPE_TX];
4211 
4212 		return pair_count + ctx.desc_num[VIRTNET_Q_TYPE_CQ] +
4213 			vi->curr_queue_pairs * pair_count;
4214 	default:
4215 		return -EOPNOTSUPP;
4216 	}
4217 }
4218 
4219 static void virtnet_get_ethtool_stats(struct net_device *dev,
4220 				      struct ethtool_stats *stats, u64 *data)
4221 {
4222 	struct virtnet_info *vi = netdev_priv(dev);
4223 	struct virtnet_stats_ctx ctx = {0};
4224 	unsigned int start, i;
4225 	const u8 *stats_base;
4226 
4227 	virtnet_stats_ctx_init(vi, &ctx, data, false);
4228 	if (virtnet_get_hw_stats(vi, &ctx, -1))
4229 		dev_warn(&vi->dev->dev, "Failed to get hw stats.\n");
4230 
4231 	for (i = 0; i < vi->curr_queue_pairs; i++) {
4232 		struct receive_queue *rq = &vi->rq[i];
4233 		struct send_queue *sq = &vi->sq[i];
4234 
4235 		stats_base = (const u8 *)&rq->stats;
4236 		do {
4237 			start = u64_stats_fetch_begin(&rq->stats.syncp);
4238 			virtnet_fill_stats(vi, i * 2, &ctx, stats_base, true, 0);
4239 		} while (u64_stats_fetch_retry(&rq->stats.syncp, start));
4240 
4241 		stats_base = (const u8 *)&sq->stats;
4242 		do {
4243 			start = u64_stats_fetch_begin(&sq->stats.syncp);
4244 			virtnet_fill_stats(vi, i * 2 + 1, &ctx, stats_base, true, 0);
4245 		} while (u64_stats_fetch_retry(&sq->stats.syncp, start));
4246 	}
4247 
4248 	virtnet_fill_total_fields(vi, &ctx);
4249 }
4250 
4251 static void virtnet_get_channels(struct net_device *dev,
4252 				 struct ethtool_channels *channels)
4253 {
4254 	struct virtnet_info *vi = netdev_priv(dev);
4255 
4256 	channels->combined_count = vi->curr_queue_pairs;
4257 	channels->max_combined = vi->max_queue_pairs;
4258 	channels->max_other = 0;
4259 	channels->rx_count = 0;
4260 	channels->tx_count = 0;
4261 	channels->other_count = 0;
4262 }
4263 
4264 static int virtnet_set_link_ksettings(struct net_device *dev,
4265 				      const struct ethtool_link_ksettings *cmd)
4266 {
4267 	struct virtnet_info *vi = netdev_priv(dev);
4268 
4269 	return ethtool_virtdev_set_link_ksettings(dev, cmd,
4270 						  &vi->speed, &vi->duplex);
4271 }
4272 
4273 static int virtnet_get_link_ksettings(struct net_device *dev,
4274 				      struct ethtool_link_ksettings *cmd)
4275 {
4276 	struct virtnet_info *vi = netdev_priv(dev);
4277 
4278 	cmd->base.speed = vi->speed;
4279 	cmd->base.duplex = vi->duplex;
4280 	cmd->base.port = PORT_OTHER;
4281 
4282 	return 0;
4283 }
4284 
4285 static int virtnet_send_tx_notf_coal_cmds(struct virtnet_info *vi,
4286 					  struct ethtool_coalesce *ec)
4287 {
4288 	struct virtio_net_ctrl_coal_tx *coal_tx __free(kfree) = NULL;
4289 	struct scatterlist sgs_tx;
4290 	int i;
4291 
4292 	coal_tx = kzalloc(sizeof(*coal_tx), GFP_KERNEL);
4293 	if (!coal_tx)
4294 		return -ENOMEM;
4295 
4296 	coal_tx->tx_usecs = cpu_to_le32(ec->tx_coalesce_usecs);
4297 	coal_tx->tx_max_packets = cpu_to_le32(ec->tx_max_coalesced_frames);
4298 	sg_init_one(&sgs_tx, coal_tx, sizeof(*coal_tx));
4299 
4300 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL,
4301 				  VIRTIO_NET_CTRL_NOTF_COAL_TX_SET,
4302 				  &sgs_tx))
4303 		return -EINVAL;
4304 
4305 	vi->intr_coal_tx.max_usecs = ec->tx_coalesce_usecs;
4306 	vi->intr_coal_tx.max_packets = ec->tx_max_coalesced_frames;
4307 	for (i = 0; i < vi->max_queue_pairs; i++) {
4308 		vi->sq[i].intr_coal.max_usecs = ec->tx_coalesce_usecs;
4309 		vi->sq[i].intr_coal.max_packets = ec->tx_max_coalesced_frames;
4310 	}
4311 
4312 	return 0;
4313 }
4314 
4315 static int virtnet_send_rx_notf_coal_cmds(struct virtnet_info *vi,
4316 					  struct ethtool_coalesce *ec)
4317 {
4318 	struct virtio_net_ctrl_coal_rx *coal_rx __free(kfree) = NULL;
4319 	bool rx_ctrl_dim_on = !!ec->use_adaptive_rx_coalesce;
4320 	struct scatterlist sgs_rx;
4321 	int i;
4322 
4323 	if (rx_ctrl_dim_on && !virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL))
4324 		return -EOPNOTSUPP;
4325 
4326 	if (rx_ctrl_dim_on && (ec->rx_coalesce_usecs != vi->intr_coal_rx.max_usecs ||
4327 			       ec->rx_max_coalesced_frames != vi->intr_coal_rx.max_packets))
4328 		return -EINVAL;
4329 
4330 	if (rx_ctrl_dim_on && !vi->rx_dim_enabled) {
4331 		vi->rx_dim_enabled = true;
4332 		for (i = 0; i < vi->max_queue_pairs; i++) {
4333 			mutex_lock(&vi->rq[i].dim_lock);
4334 			vi->rq[i].dim_enabled = true;
4335 			mutex_unlock(&vi->rq[i].dim_lock);
4336 		}
4337 		return 0;
4338 	}
4339 
4340 	coal_rx = kzalloc(sizeof(*coal_rx), GFP_KERNEL);
4341 	if (!coal_rx)
4342 		return -ENOMEM;
4343 
4344 	if (!rx_ctrl_dim_on && vi->rx_dim_enabled) {
4345 		vi->rx_dim_enabled = false;
4346 		for (i = 0; i < vi->max_queue_pairs; i++) {
4347 			mutex_lock(&vi->rq[i].dim_lock);
4348 			vi->rq[i].dim_enabled = false;
4349 			mutex_unlock(&vi->rq[i].dim_lock);
4350 		}
4351 	}
4352 
4353 	/* Since the per-queue coalescing params can be set,
4354 	 * we need apply the global new params even if they
4355 	 * are not updated.
4356 	 */
4357 	coal_rx->rx_usecs = cpu_to_le32(ec->rx_coalesce_usecs);
4358 	coal_rx->rx_max_packets = cpu_to_le32(ec->rx_max_coalesced_frames);
4359 	sg_init_one(&sgs_rx, coal_rx, sizeof(*coal_rx));
4360 
4361 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL,
4362 				  VIRTIO_NET_CTRL_NOTF_COAL_RX_SET,
4363 				  &sgs_rx))
4364 		return -EINVAL;
4365 
4366 	vi->intr_coal_rx.max_usecs = ec->rx_coalesce_usecs;
4367 	vi->intr_coal_rx.max_packets = ec->rx_max_coalesced_frames;
4368 	for (i = 0; i < vi->max_queue_pairs; i++) {
4369 		mutex_lock(&vi->rq[i].dim_lock);
4370 		vi->rq[i].intr_coal.max_usecs = ec->rx_coalesce_usecs;
4371 		vi->rq[i].intr_coal.max_packets = ec->rx_max_coalesced_frames;
4372 		mutex_unlock(&vi->rq[i].dim_lock);
4373 	}
4374 
4375 	return 0;
4376 }
4377 
4378 static int virtnet_send_notf_coal_cmds(struct virtnet_info *vi,
4379 				       struct ethtool_coalesce *ec)
4380 {
4381 	int err;
4382 
4383 	err = virtnet_send_tx_notf_coal_cmds(vi, ec);
4384 	if (err)
4385 		return err;
4386 
4387 	err = virtnet_send_rx_notf_coal_cmds(vi, ec);
4388 	if (err)
4389 		return err;
4390 
4391 	return 0;
4392 }
4393 
4394 static int virtnet_send_rx_notf_coal_vq_cmds(struct virtnet_info *vi,
4395 					     struct ethtool_coalesce *ec,
4396 					     u16 queue)
4397 {
4398 	bool rx_ctrl_dim_on = !!ec->use_adaptive_rx_coalesce;
4399 	u32 max_usecs, max_packets;
4400 	bool cur_rx_dim;
4401 	int err;
4402 
4403 	mutex_lock(&vi->rq[queue].dim_lock);
4404 	cur_rx_dim = vi->rq[queue].dim_enabled;
4405 	max_usecs = vi->rq[queue].intr_coal.max_usecs;
4406 	max_packets = vi->rq[queue].intr_coal.max_packets;
4407 
4408 	if (rx_ctrl_dim_on && (ec->rx_coalesce_usecs != max_usecs ||
4409 			       ec->rx_max_coalesced_frames != max_packets)) {
4410 		mutex_unlock(&vi->rq[queue].dim_lock);
4411 		return -EINVAL;
4412 	}
4413 
4414 	if (rx_ctrl_dim_on && !cur_rx_dim) {
4415 		vi->rq[queue].dim_enabled = true;
4416 		mutex_unlock(&vi->rq[queue].dim_lock);
4417 		return 0;
4418 	}
4419 
4420 	if (!rx_ctrl_dim_on && cur_rx_dim)
4421 		vi->rq[queue].dim_enabled = false;
4422 
4423 	/* If no params are updated, userspace ethtool will
4424 	 * reject the modification.
4425 	 */
4426 	err = virtnet_send_rx_ctrl_coal_vq_cmd(vi, queue,
4427 					       ec->rx_coalesce_usecs,
4428 					       ec->rx_max_coalesced_frames);
4429 	mutex_unlock(&vi->rq[queue].dim_lock);
4430 	return err;
4431 }
4432 
4433 static int virtnet_send_notf_coal_vq_cmds(struct virtnet_info *vi,
4434 					  struct ethtool_coalesce *ec,
4435 					  u16 queue)
4436 {
4437 	int err;
4438 
4439 	err = virtnet_send_rx_notf_coal_vq_cmds(vi, ec, queue);
4440 	if (err)
4441 		return err;
4442 
4443 	err = virtnet_send_tx_ctrl_coal_vq_cmd(vi, queue,
4444 					       ec->tx_coalesce_usecs,
4445 					       ec->tx_max_coalesced_frames);
4446 	if (err)
4447 		return err;
4448 
4449 	return 0;
4450 }
4451 
4452 static void virtnet_rx_dim_work(struct work_struct *work)
4453 {
4454 	struct dim *dim = container_of(work, struct dim, work);
4455 	struct receive_queue *rq = container_of(dim,
4456 			struct receive_queue, dim);
4457 	struct virtnet_info *vi = rq->vq->vdev->priv;
4458 	struct net_device *dev = vi->dev;
4459 	struct dim_cq_moder update_moder;
4460 	int qnum, err;
4461 
4462 	qnum = rq - vi->rq;
4463 
4464 	mutex_lock(&rq->dim_lock);
4465 	if (!rq->dim_enabled)
4466 		goto out;
4467 
4468 	update_moder = net_dim_get_rx_irq_moder(dev, dim);
4469 	if (update_moder.usec != rq->intr_coal.max_usecs ||
4470 	    update_moder.pkts != rq->intr_coal.max_packets) {
4471 		err = virtnet_send_rx_ctrl_coal_vq_cmd(vi, qnum,
4472 						       update_moder.usec,
4473 						       update_moder.pkts);
4474 		if (err)
4475 			pr_debug("%s: Failed to send dim parameters on rxq%d\n",
4476 				 dev->name, qnum);
4477 	}
4478 out:
4479 	dim->state = DIM_START_MEASURE;
4480 	mutex_unlock(&rq->dim_lock);
4481 }
4482 
4483 static int virtnet_coal_params_supported(struct ethtool_coalesce *ec)
4484 {
4485 	/* usecs coalescing is supported only if VIRTIO_NET_F_NOTF_COAL
4486 	 * or VIRTIO_NET_F_VQ_NOTF_COAL feature is negotiated.
4487 	 */
4488 	if (ec->rx_coalesce_usecs || ec->tx_coalesce_usecs)
4489 		return -EOPNOTSUPP;
4490 
4491 	if (ec->tx_max_coalesced_frames > 1 ||
4492 	    ec->rx_max_coalesced_frames != 1)
4493 		return -EINVAL;
4494 
4495 	return 0;
4496 }
4497 
4498 static int virtnet_should_update_vq_weight(int dev_flags, int weight,
4499 					   int vq_weight, bool *should_update)
4500 {
4501 	if (weight ^ vq_weight) {
4502 		if (dev_flags & IFF_UP)
4503 			return -EBUSY;
4504 		*should_update = true;
4505 	}
4506 
4507 	return 0;
4508 }
4509 
4510 static int virtnet_set_coalesce(struct net_device *dev,
4511 				struct ethtool_coalesce *ec,
4512 				struct kernel_ethtool_coalesce *kernel_coal,
4513 				struct netlink_ext_ack *extack)
4514 {
4515 	struct virtnet_info *vi = netdev_priv(dev);
4516 	int ret, queue_number, napi_weight;
4517 	bool update_napi = false;
4518 
4519 	/* Can't change NAPI weight if the link is up */
4520 	napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0;
4521 	for (queue_number = 0; queue_number < vi->max_queue_pairs; queue_number++) {
4522 		ret = virtnet_should_update_vq_weight(dev->flags, napi_weight,
4523 						      vi->sq[queue_number].napi.weight,
4524 						      &update_napi);
4525 		if (ret)
4526 			return ret;
4527 
4528 		if (update_napi) {
4529 			/* All queues that belong to [queue_number, vi->max_queue_pairs] will be
4530 			 * updated for the sake of simplicity, which might not be necessary
4531 			 */
4532 			break;
4533 		}
4534 	}
4535 
4536 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL))
4537 		ret = virtnet_send_notf_coal_cmds(vi, ec);
4538 	else
4539 		ret = virtnet_coal_params_supported(ec);
4540 
4541 	if (ret)
4542 		return ret;
4543 
4544 	if (update_napi) {
4545 		for (; queue_number < vi->max_queue_pairs; queue_number++)
4546 			vi->sq[queue_number].napi.weight = napi_weight;
4547 	}
4548 
4549 	return ret;
4550 }
4551 
4552 static int virtnet_get_coalesce(struct net_device *dev,
4553 				struct ethtool_coalesce *ec,
4554 				struct kernel_ethtool_coalesce *kernel_coal,
4555 				struct netlink_ext_ack *extack)
4556 {
4557 	struct virtnet_info *vi = netdev_priv(dev);
4558 
4559 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL)) {
4560 		ec->rx_coalesce_usecs = vi->intr_coal_rx.max_usecs;
4561 		ec->tx_coalesce_usecs = vi->intr_coal_tx.max_usecs;
4562 		ec->tx_max_coalesced_frames = vi->intr_coal_tx.max_packets;
4563 		ec->rx_max_coalesced_frames = vi->intr_coal_rx.max_packets;
4564 		ec->use_adaptive_rx_coalesce = vi->rx_dim_enabled;
4565 	} else {
4566 		ec->rx_max_coalesced_frames = 1;
4567 
4568 		if (vi->sq[0].napi.weight)
4569 			ec->tx_max_coalesced_frames = 1;
4570 	}
4571 
4572 	return 0;
4573 }
4574 
4575 static int virtnet_set_per_queue_coalesce(struct net_device *dev,
4576 					  u32 queue,
4577 					  struct ethtool_coalesce *ec)
4578 {
4579 	struct virtnet_info *vi = netdev_priv(dev);
4580 	int ret, napi_weight;
4581 	bool update_napi = false;
4582 
4583 	if (queue >= vi->max_queue_pairs)
4584 		return -EINVAL;
4585 
4586 	/* Can't change NAPI weight if the link is up */
4587 	napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0;
4588 	ret = virtnet_should_update_vq_weight(dev->flags, napi_weight,
4589 					      vi->sq[queue].napi.weight,
4590 					      &update_napi);
4591 	if (ret)
4592 		return ret;
4593 
4594 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL))
4595 		ret = virtnet_send_notf_coal_vq_cmds(vi, ec, queue);
4596 	else
4597 		ret = virtnet_coal_params_supported(ec);
4598 
4599 	if (ret)
4600 		return ret;
4601 
4602 	if (update_napi)
4603 		vi->sq[queue].napi.weight = napi_weight;
4604 
4605 	return 0;
4606 }
4607 
4608 static int virtnet_get_per_queue_coalesce(struct net_device *dev,
4609 					  u32 queue,
4610 					  struct ethtool_coalesce *ec)
4611 {
4612 	struct virtnet_info *vi = netdev_priv(dev);
4613 
4614 	if (queue >= vi->max_queue_pairs)
4615 		return -EINVAL;
4616 
4617 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) {
4618 		mutex_lock(&vi->rq[queue].dim_lock);
4619 		ec->rx_coalesce_usecs = vi->rq[queue].intr_coal.max_usecs;
4620 		ec->tx_coalesce_usecs = vi->sq[queue].intr_coal.max_usecs;
4621 		ec->tx_max_coalesced_frames = vi->sq[queue].intr_coal.max_packets;
4622 		ec->rx_max_coalesced_frames = vi->rq[queue].intr_coal.max_packets;
4623 		ec->use_adaptive_rx_coalesce = vi->rq[queue].dim_enabled;
4624 		mutex_unlock(&vi->rq[queue].dim_lock);
4625 	} else {
4626 		ec->rx_max_coalesced_frames = 1;
4627 
4628 		if (vi->sq[queue].napi.weight)
4629 			ec->tx_max_coalesced_frames = 1;
4630 	}
4631 
4632 	return 0;
4633 }
4634 
4635 static void virtnet_init_settings(struct net_device *dev)
4636 {
4637 	struct virtnet_info *vi = netdev_priv(dev);
4638 
4639 	vi->speed = SPEED_UNKNOWN;
4640 	vi->duplex = DUPLEX_UNKNOWN;
4641 }
4642 
4643 static void virtnet_update_settings(struct virtnet_info *vi)
4644 {
4645 	u32 speed;
4646 	u8 duplex;
4647 
4648 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
4649 		return;
4650 
4651 	virtio_cread_le(vi->vdev, struct virtio_net_config, speed, &speed);
4652 
4653 	if (ethtool_validate_speed(speed))
4654 		vi->speed = speed;
4655 
4656 	virtio_cread_le(vi->vdev, struct virtio_net_config, duplex, &duplex);
4657 
4658 	if (ethtool_validate_duplex(duplex))
4659 		vi->duplex = duplex;
4660 }
4661 
4662 static u32 virtnet_get_rxfh_key_size(struct net_device *dev)
4663 {
4664 	return ((struct virtnet_info *)netdev_priv(dev))->rss_key_size;
4665 }
4666 
4667 static u32 virtnet_get_rxfh_indir_size(struct net_device *dev)
4668 {
4669 	return ((struct virtnet_info *)netdev_priv(dev))->rss_indir_table_size;
4670 }
4671 
4672 static int virtnet_get_rxfh(struct net_device *dev,
4673 			    struct ethtool_rxfh_param *rxfh)
4674 {
4675 	struct virtnet_info *vi = netdev_priv(dev);
4676 	int i;
4677 
4678 	if (rxfh->indir) {
4679 		for (i = 0; i < vi->rss_indir_table_size; ++i)
4680 			rxfh->indir[i] = vi->rss.indirection_table[i];
4681 	}
4682 
4683 	if (rxfh->key)
4684 		memcpy(rxfh->key, vi->rss.key, vi->rss_key_size);
4685 
4686 	rxfh->hfunc = ETH_RSS_HASH_TOP;
4687 
4688 	return 0;
4689 }
4690 
4691 static int virtnet_set_rxfh(struct net_device *dev,
4692 			    struct ethtool_rxfh_param *rxfh,
4693 			    struct netlink_ext_ack *extack)
4694 {
4695 	struct virtnet_info *vi = netdev_priv(dev);
4696 	bool update = false;
4697 	int i;
4698 
4699 	if (rxfh->hfunc != ETH_RSS_HASH_NO_CHANGE &&
4700 	    rxfh->hfunc != ETH_RSS_HASH_TOP)
4701 		return -EOPNOTSUPP;
4702 
4703 	if (rxfh->indir) {
4704 		if (!vi->has_rss)
4705 			return -EOPNOTSUPP;
4706 
4707 		for (i = 0; i < vi->rss_indir_table_size; ++i)
4708 			vi->rss.indirection_table[i] = rxfh->indir[i];
4709 		update = true;
4710 	}
4711 
4712 	if (rxfh->key) {
4713 		/* If either _F_HASH_REPORT or _F_RSS are negotiated, the
4714 		 * device provides hash calculation capabilities, that is,
4715 		 * hash_key is configured.
4716 		 */
4717 		if (!vi->has_rss && !vi->has_rss_hash_report)
4718 			return -EOPNOTSUPP;
4719 
4720 		memcpy(vi->rss.key, rxfh->key, vi->rss_key_size);
4721 		update = true;
4722 	}
4723 
4724 	if (update)
4725 		virtnet_commit_rss_command(vi);
4726 
4727 	return 0;
4728 }
4729 
4730 static int virtnet_get_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info, u32 *rule_locs)
4731 {
4732 	struct virtnet_info *vi = netdev_priv(dev);
4733 	int rc = 0;
4734 
4735 	switch (info->cmd) {
4736 	case ETHTOOL_GRXRINGS:
4737 		info->data = vi->curr_queue_pairs;
4738 		break;
4739 	case ETHTOOL_GRXFH:
4740 		virtnet_get_hashflow(vi, info);
4741 		break;
4742 	default:
4743 		rc = -EOPNOTSUPP;
4744 	}
4745 
4746 	return rc;
4747 }
4748 
4749 static int virtnet_set_rxnfc(struct net_device *dev, struct ethtool_rxnfc *info)
4750 {
4751 	struct virtnet_info *vi = netdev_priv(dev);
4752 	int rc = 0;
4753 
4754 	switch (info->cmd) {
4755 	case ETHTOOL_SRXFH:
4756 		if (!virtnet_set_hashflow(vi, info))
4757 			rc = -EINVAL;
4758 
4759 		break;
4760 	default:
4761 		rc = -EOPNOTSUPP;
4762 	}
4763 
4764 	return rc;
4765 }
4766 
4767 static const struct ethtool_ops virtnet_ethtool_ops = {
4768 	.supported_coalesce_params = ETHTOOL_COALESCE_MAX_FRAMES |
4769 		ETHTOOL_COALESCE_USECS | ETHTOOL_COALESCE_USE_ADAPTIVE_RX,
4770 	.get_drvinfo = virtnet_get_drvinfo,
4771 	.get_link = ethtool_op_get_link,
4772 	.get_ringparam = virtnet_get_ringparam,
4773 	.set_ringparam = virtnet_set_ringparam,
4774 	.get_strings = virtnet_get_strings,
4775 	.get_sset_count = virtnet_get_sset_count,
4776 	.get_ethtool_stats = virtnet_get_ethtool_stats,
4777 	.set_channels = virtnet_set_channels,
4778 	.get_channels = virtnet_get_channels,
4779 	.get_ts_info = ethtool_op_get_ts_info,
4780 	.get_link_ksettings = virtnet_get_link_ksettings,
4781 	.set_link_ksettings = virtnet_set_link_ksettings,
4782 	.set_coalesce = virtnet_set_coalesce,
4783 	.get_coalesce = virtnet_get_coalesce,
4784 	.set_per_queue_coalesce = virtnet_set_per_queue_coalesce,
4785 	.get_per_queue_coalesce = virtnet_get_per_queue_coalesce,
4786 	.get_rxfh_key_size = virtnet_get_rxfh_key_size,
4787 	.get_rxfh_indir_size = virtnet_get_rxfh_indir_size,
4788 	.get_rxfh = virtnet_get_rxfh,
4789 	.set_rxfh = virtnet_set_rxfh,
4790 	.get_rxnfc = virtnet_get_rxnfc,
4791 	.set_rxnfc = virtnet_set_rxnfc,
4792 };
4793 
4794 static void virtnet_get_queue_stats_rx(struct net_device *dev, int i,
4795 				       struct netdev_queue_stats_rx *stats)
4796 {
4797 	struct virtnet_info *vi = netdev_priv(dev);
4798 	struct receive_queue *rq = &vi->rq[i];
4799 	struct virtnet_stats_ctx ctx = {0};
4800 
4801 	virtnet_stats_ctx_init(vi, &ctx, (void *)stats, true);
4802 
4803 	virtnet_get_hw_stats(vi, &ctx, i * 2);
4804 	virtnet_fill_stats(vi, i * 2, &ctx, (void *)&rq->stats, true, 0);
4805 }
4806 
4807 static void virtnet_get_queue_stats_tx(struct net_device *dev, int i,
4808 				       struct netdev_queue_stats_tx *stats)
4809 {
4810 	struct virtnet_info *vi = netdev_priv(dev);
4811 	struct send_queue *sq = &vi->sq[i];
4812 	struct virtnet_stats_ctx ctx = {0};
4813 
4814 	virtnet_stats_ctx_init(vi, &ctx, (void *)stats, true);
4815 
4816 	virtnet_get_hw_stats(vi, &ctx, i * 2 + 1);
4817 	virtnet_fill_stats(vi, i * 2 + 1, &ctx, (void *)&sq->stats, true, 0);
4818 }
4819 
4820 static void virtnet_get_base_stats(struct net_device *dev,
4821 				   struct netdev_queue_stats_rx *rx,
4822 				   struct netdev_queue_stats_tx *tx)
4823 {
4824 	struct virtnet_info *vi = netdev_priv(dev);
4825 
4826 	/* The queue stats of the virtio-net will not be reset. So here we
4827 	 * return 0.
4828 	 */
4829 	rx->bytes = 0;
4830 	rx->packets = 0;
4831 
4832 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) {
4833 		rx->hw_drops = 0;
4834 		rx->hw_drop_overruns = 0;
4835 	}
4836 
4837 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) {
4838 		rx->csum_unnecessary = 0;
4839 		rx->csum_none = 0;
4840 		rx->csum_bad = 0;
4841 	}
4842 
4843 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_GSO) {
4844 		rx->hw_gro_packets = 0;
4845 		rx->hw_gro_bytes = 0;
4846 		rx->hw_gro_wire_packets = 0;
4847 		rx->hw_gro_wire_bytes = 0;
4848 	}
4849 
4850 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED)
4851 		rx->hw_drop_ratelimits = 0;
4852 
4853 	tx->bytes = 0;
4854 	tx->packets = 0;
4855 	tx->stop = 0;
4856 	tx->wake = 0;
4857 
4858 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) {
4859 		tx->hw_drops = 0;
4860 		tx->hw_drop_errors = 0;
4861 	}
4862 
4863 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_CSUM) {
4864 		tx->csum_none = 0;
4865 		tx->needs_csum = 0;
4866 	}
4867 
4868 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) {
4869 		tx->hw_gso_packets = 0;
4870 		tx->hw_gso_bytes = 0;
4871 		tx->hw_gso_wire_packets = 0;
4872 		tx->hw_gso_wire_bytes = 0;
4873 	}
4874 
4875 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED)
4876 		tx->hw_drop_ratelimits = 0;
4877 }
4878 
4879 static const struct netdev_stat_ops virtnet_stat_ops = {
4880 	.get_queue_stats_rx	= virtnet_get_queue_stats_rx,
4881 	.get_queue_stats_tx	= virtnet_get_queue_stats_tx,
4882 	.get_base_stats		= virtnet_get_base_stats,
4883 };
4884 
4885 static void virtnet_freeze_down(struct virtio_device *vdev)
4886 {
4887 	struct virtnet_info *vi = vdev->priv;
4888 
4889 	/* Make sure no work handler is accessing the device */
4890 	flush_work(&vi->config_work);
4891 	disable_rx_mode_work(vi);
4892 	flush_work(&vi->rx_mode_work);
4893 
4894 	netif_tx_lock_bh(vi->dev);
4895 	netif_device_detach(vi->dev);
4896 	netif_tx_unlock_bh(vi->dev);
4897 	if (netif_running(vi->dev))
4898 		virtnet_close(vi->dev);
4899 }
4900 
4901 static int init_vqs(struct virtnet_info *vi);
4902 
4903 static int virtnet_restore_up(struct virtio_device *vdev)
4904 {
4905 	struct virtnet_info *vi = vdev->priv;
4906 	int err;
4907 
4908 	err = init_vqs(vi);
4909 	if (err)
4910 		return err;
4911 
4912 	virtio_device_ready(vdev);
4913 
4914 	enable_delayed_refill(vi);
4915 	enable_rx_mode_work(vi);
4916 
4917 	if (netif_running(vi->dev)) {
4918 		err = virtnet_open(vi->dev);
4919 		if (err)
4920 			return err;
4921 	}
4922 
4923 	netif_tx_lock_bh(vi->dev);
4924 	netif_device_attach(vi->dev);
4925 	netif_tx_unlock_bh(vi->dev);
4926 	return err;
4927 }
4928 
4929 static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
4930 {
4931 	__virtio64 *_offloads __free(kfree) = NULL;
4932 	struct scatterlist sg;
4933 
4934 	_offloads = kzalloc(sizeof(*_offloads), GFP_KERNEL);
4935 	if (!_offloads)
4936 		return -ENOMEM;
4937 
4938 	*_offloads = cpu_to_virtio64(vi->vdev, offloads);
4939 
4940 	sg_init_one(&sg, _offloads, sizeof(*_offloads));
4941 
4942 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
4943 				  VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
4944 		dev_warn(&vi->dev->dev, "Fail to set guest offload.\n");
4945 		return -EINVAL;
4946 	}
4947 
4948 	return 0;
4949 }
4950 
4951 static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
4952 {
4953 	u64 offloads = 0;
4954 
4955 	if (!vi->guest_offloads)
4956 		return 0;
4957 
4958 	return virtnet_set_guest_offloads(vi, offloads);
4959 }
4960 
4961 static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
4962 {
4963 	u64 offloads = vi->guest_offloads;
4964 
4965 	if (!vi->guest_offloads)
4966 		return 0;
4967 
4968 	return virtnet_set_guest_offloads(vi, offloads);
4969 }
4970 
4971 static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
4972 			   struct netlink_ext_ack *extack)
4973 {
4974 	unsigned int room = SKB_DATA_ALIGN(VIRTIO_XDP_HEADROOM +
4975 					   sizeof(struct skb_shared_info));
4976 	unsigned int max_sz = PAGE_SIZE - room - ETH_HLEN;
4977 	struct virtnet_info *vi = netdev_priv(dev);
4978 	struct bpf_prog *old_prog;
4979 	u16 xdp_qp = 0, curr_qp;
4980 	int i, err;
4981 
4982 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
4983 	    && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
4984 	        virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
4985 	        virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
4986 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) ||
4987 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM) ||
4988 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO4) ||
4989 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO6))) {
4990 		NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing GRO_HW/CSUM, disable GRO_HW/CSUM first");
4991 		return -EOPNOTSUPP;
4992 	}
4993 
4994 	if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
4995 		NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
4996 		return -EINVAL;
4997 	}
4998 
4999 	if (prog && !prog->aux->xdp_has_frags && dev->mtu > max_sz) {
5000 		NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP without frags");
5001 		netdev_warn(dev, "single-buffer XDP requires MTU less than %u\n", max_sz);
5002 		return -EINVAL;
5003 	}
5004 
5005 	curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
5006 	if (prog)
5007 		xdp_qp = nr_cpu_ids;
5008 
5009 	/* XDP requires extra queues for XDP_TX */
5010 	if (curr_qp + xdp_qp > vi->max_queue_pairs) {
5011 		netdev_warn_once(dev, "XDP request %i queues but max is %i. XDP_TX and XDP_REDIRECT will operate in a slower locked tx mode.\n",
5012 				 curr_qp + xdp_qp, vi->max_queue_pairs);
5013 		xdp_qp = 0;
5014 	}
5015 
5016 	old_prog = rtnl_dereference(vi->rq[0].xdp_prog);
5017 	if (!prog && !old_prog)
5018 		return 0;
5019 
5020 	if (prog)
5021 		bpf_prog_add(prog, vi->max_queue_pairs - 1);
5022 
5023 	/* Make sure NAPI is not using any XDP TX queues for RX. */
5024 	if (netif_running(dev)) {
5025 		for (i = 0; i < vi->max_queue_pairs; i++) {
5026 			napi_disable(&vi->rq[i].napi);
5027 			virtnet_napi_tx_disable(&vi->sq[i].napi);
5028 		}
5029 	}
5030 
5031 	if (!prog) {
5032 		for (i = 0; i < vi->max_queue_pairs; i++) {
5033 			rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
5034 			if (i == 0)
5035 				virtnet_restore_guest_offloads(vi);
5036 		}
5037 		synchronize_net();
5038 	}
5039 
5040 	err = virtnet_set_queues(vi, curr_qp + xdp_qp);
5041 	if (err)
5042 		goto err;
5043 	netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
5044 	vi->xdp_queue_pairs = xdp_qp;
5045 
5046 	if (prog) {
5047 		vi->xdp_enabled = true;
5048 		for (i = 0; i < vi->max_queue_pairs; i++) {
5049 			rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
5050 			if (i == 0 && !old_prog)
5051 				virtnet_clear_guest_offloads(vi);
5052 		}
5053 		if (!old_prog)
5054 			xdp_features_set_redirect_target(dev, true);
5055 	} else {
5056 		xdp_features_clear_redirect_target(dev);
5057 		vi->xdp_enabled = false;
5058 	}
5059 
5060 	for (i = 0; i < vi->max_queue_pairs; i++) {
5061 		if (old_prog)
5062 			bpf_prog_put(old_prog);
5063 		if (netif_running(dev)) {
5064 			virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
5065 			virtnet_napi_tx_enable(vi, vi->sq[i].vq,
5066 					       &vi->sq[i].napi);
5067 		}
5068 	}
5069 
5070 	return 0;
5071 
5072 err:
5073 	if (!prog) {
5074 		virtnet_clear_guest_offloads(vi);
5075 		for (i = 0; i < vi->max_queue_pairs; i++)
5076 			rcu_assign_pointer(vi->rq[i].xdp_prog, old_prog);
5077 	}
5078 
5079 	if (netif_running(dev)) {
5080 		for (i = 0; i < vi->max_queue_pairs; i++) {
5081 			virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
5082 			virtnet_napi_tx_enable(vi, vi->sq[i].vq,
5083 					       &vi->sq[i].napi);
5084 		}
5085 	}
5086 	if (prog)
5087 		bpf_prog_sub(prog, vi->max_queue_pairs - 1);
5088 	return err;
5089 }
5090 
5091 static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
5092 {
5093 	switch (xdp->command) {
5094 	case XDP_SETUP_PROG:
5095 		return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
5096 	default:
5097 		return -EINVAL;
5098 	}
5099 }
5100 
5101 static int virtnet_get_phys_port_name(struct net_device *dev, char *buf,
5102 				      size_t len)
5103 {
5104 	struct virtnet_info *vi = netdev_priv(dev);
5105 	int ret;
5106 
5107 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
5108 		return -EOPNOTSUPP;
5109 
5110 	ret = snprintf(buf, len, "sby");
5111 	if (ret >= len)
5112 		return -EOPNOTSUPP;
5113 
5114 	return 0;
5115 }
5116 
5117 static int virtnet_set_features(struct net_device *dev,
5118 				netdev_features_t features)
5119 {
5120 	struct virtnet_info *vi = netdev_priv(dev);
5121 	u64 offloads;
5122 	int err;
5123 
5124 	if ((dev->features ^ features) & NETIF_F_GRO_HW) {
5125 		if (vi->xdp_enabled)
5126 			return -EBUSY;
5127 
5128 		if (features & NETIF_F_GRO_HW)
5129 			offloads = vi->guest_offloads_capable;
5130 		else
5131 			offloads = vi->guest_offloads_capable &
5132 				   ~GUEST_OFFLOAD_GRO_HW_MASK;
5133 
5134 		err = virtnet_set_guest_offloads(vi, offloads);
5135 		if (err)
5136 			return err;
5137 		vi->guest_offloads = offloads;
5138 	}
5139 
5140 	if ((dev->features ^ features) & NETIF_F_RXHASH) {
5141 		if (features & NETIF_F_RXHASH)
5142 			vi->rss.hash_types = vi->rss_hash_types_saved;
5143 		else
5144 			vi->rss.hash_types = VIRTIO_NET_HASH_REPORT_NONE;
5145 
5146 		if (!virtnet_commit_rss_command(vi))
5147 			return -EINVAL;
5148 	}
5149 
5150 	return 0;
5151 }
5152 
5153 static void virtnet_tx_timeout(struct net_device *dev, unsigned int txqueue)
5154 {
5155 	struct virtnet_info *priv = netdev_priv(dev);
5156 	struct send_queue *sq = &priv->sq[txqueue];
5157 	struct netdev_queue *txq = netdev_get_tx_queue(dev, txqueue);
5158 
5159 	u64_stats_update_begin(&sq->stats.syncp);
5160 	u64_stats_inc(&sq->stats.tx_timeouts);
5161 	u64_stats_update_end(&sq->stats.syncp);
5162 
5163 	netdev_err(dev, "TX timeout on queue: %u, sq: %s, vq: 0x%x, name: %s, %u usecs ago\n",
5164 		   txqueue, sq->name, sq->vq->index, sq->vq->name,
5165 		   jiffies_to_usecs(jiffies - READ_ONCE(txq->trans_start)));
5166 }
5167 
5168 static int virtnet_init_irq_moder(struct virtnet_info *vi)
5169 {
5170 	u8 profile_flags = 0, coal_flags = 0;
5171 	int ret, i;
5172 
5173 	profile_flags |= DIM_PROFILE_RX;
5174 	coal_flags |= DIM_COALESCE_USEC | DIM_COALESCE_PKTS;
5175 	ret = net_dim_init_irq_moder(vi->dev, profile_flags, coal_flags,
5176 				     DIM_CQ_PERIOD_MODE_START_FROM_EQE,
5177 				     0, virtnet_rx_dim_work, NULL);
5178 
5179 	if (ret)
5180 		return ret;
5181 
5182 	for (i = 0; i < vi->max_queue_pairs; i++)
5183 		net_dim_setting(vi->dev, &vi->rq[i].dim, false);
5184 
5185 	return 0;
5186 }
5187 
5188 static void virtnet_free_irq_moder(struct virtnet_info *vi)
5189 {
5190 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL))
5191 		return;
5192 
5193 	rtnl_lock();
5194 	net_dim_free_irq_moder(vi->dev);
5195 	rtnl_unlock();
5196 }
5197 
5198 static const struct net_device_ops virtnet_netdev = {
5199 	.ndo_open            = virtnet_open,
5200 	.ndo_stop   	     = virtnet_close,
5201 	.ndo_start_xmit      = start_xmit,
5202 	.ndo_validate_addr   = eth_validate_addr,
5203 	.ndo_set_mac_address = virtnet_set_mac_address,
5204 	.ndo_set_rx_mode     = virtnet_set_rx_mode,
5205 	.ndo_get_stats64     = virtnet_stats,
5206 	.ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
5207 	.ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
5208 	.ndo_bpf		= virtnet_xdp,
5209 	.ndo_xdp_xmit		= virtnet_xdp_xmit,
5210 	.ndo_features_check	= passthru_features_check,
5211 	.ndo_get_phys_port_name	= virtnet_get_phys_port_name,
5212 	.ndo_set_features	= virtnet_set_features,
5213 	.ndo_tx_timeout		= virtnet_tx_timeout,
5214 };
5215 
5216 static void virtnet_config_changed_work(struct work_struct *work)
5217 {
5218 	struct virtnet_info *vi =
5219 		container_of(work, struct virtnet_info, config_work);
5220 	u16 v;
5221 
5222 	if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
5223 				 struct virtio_net_config, status, &v) < 0)
5224 		return;
5225 
5226 	if (v & VIRTIO_NET_S_ANNOUNCE) {
5227 		netdev_notify_peers(vi->dev);
5228 		virtnet_ack_link_announce(vi);
5229 	}
5230 
5231 	/* Ignore unknown (future) status bits */
5232 	v &= VIRTIO_NET_S_LINK_UP;
5233 
5234 	if (vi->status == v)
5235 		return;
5236 
5237 	vi->status = v;
5238 
5239 	if (vi->status & VIRTIO_NET_S_LINK_UP) {
5240 		virtnet_update_settings(vi);
5241 		netif_carrier_on(vi->dev);
5242 		netif_tx_wake_all_queues(vi->dev);
5243 	} else {
5244 		netif_carrier_off(vi->dev);
5245 		netif_tx_stop_all_queues(vi->dev);
5246 	}
5247 }
5248 
5249 static void virtnet_config_changed(struct virtio_device *vdev)
5250 {
5251 	struct virtnet_info *vi = vdev->priv;
5252 
5253 	schedule_work(&vi->config_work);
5254 }
5255 
5256 static void virtnet_free_queues(struct virtnet_info *vi)
5257 {
5258 	int i;
5259 
5260 	for (i = 0; i < vi->max_queue_pairs; i++) {
5261 		__netif_napi_del(&vi->rq[i].napi);
5262 		__netif_napi_del(&vi->sq[i].napi);
5263 	}
5264 
5265 	/* We called __netif_napi_del(),
5266 	 * we need to respect an RCU grace period before freeing vi->rq
5267 	 */
5268 	synchronize_net();
5269 
5270 	kfree(vi->rq);
5271 	kfree(vi->sq);
5272 	kfree(vi->ctrl);
5273 }
5274 
5275 static void _free_receive_bufs(struct virtnet_info *vi)
5276 {
5277 	struct bpf_prog *old_prog;
5278 	int i;
5279 
5280 	for (i = 0; i < vi->max_queue_pairs; i++) {
5281 		while (vi->rq[i].pages)
5282 			__free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
5283 
5284 		old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
5285 		RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
5286 		if (old_prog)
5287 			bpf_prog_put(old_prog);
5288 	}
5289 }
5290 
5291 static void free_receive_bufs(struct virtnet_info *vi)
5292 {
5293 	rtnl_lock();
5294 	_free_receive_bufs(vi);
5295 	rtnl_unlock();
5296 }
5297 
5298 static void free_receive_page_frags(struct virtnet_info *vi)
5299 {
5300 	int i;
5301 	for (i = 0; i < vi->max_queue_pairs; i++)
5302 		if (vi->rq[i].alloc_frag.page) {
5303 			if (vi->rq[i].last_dma)
5304 				virtnet_rq_unmap(&vi->rq[i], vi->rq[i].last_dma, 0);
5305 			put_page(vi->rq[i].alloc_frag.page);
5306 		}
5307 }
5308 
5309 static void virtnet_sq_free_unused_buf(struct virtqueue *vq, void *buf)
5310 {
5311 	if (!is_xdp_frame(buf))
5312 		dev_kfree_skb(buf);
5313 	else
5314 		xdp_return_frame(ptr_to_xdp(buf));
5315 }
5316 
5317 static void free_unused_bufs(struct virtnet_info *vi)
5318 {
5319 	void *buf;
5320 	int i;
5321 
5322 	for (i = 0; i < vi->max_queue_pairs; i++) {
5323 		struct virtqueue *vq = vi->sq[i].vq;
5324 		while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
5325 			virtnet_sq_free_unused_buf(vq, buf);
5326 		cond_resched();
5327 	}
5328 
5329 	for (i = 0; i < vi->max_queue_pairs; i++) {
5330 		struct virtqueue *vq = vi->rq[i].vq;
5331 
5332 		while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
5333 			virtnet_rq_unmap_free_buf(vq, buf);
5334 		cond_resched();
5335 	}
5336 }
5337 
5338 static void virtnet_del_vqs(struct virtnet_info *vi)
5339 {
5340 	struct virtio_device *vdev = vi->vdev;
5341 
5342 	virtnet_clean_affinity(vi);
5343 
5344 	vdev->config->del_vqs(vdev);
5345 
5346 	virtnet_free_queues(vi);
5347 }
5348 
5349 /* How large should a single buffer be so a queue full of these can fit at
5350  * least one full packet?
5351  * Logic below assumes the mergeable buffer header is used.
5352  */
5353 static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
5354 {
5355 	const unsigned int hdr_len = vi->hdr_len;
5356 	unsigned int rq_size = virtqueue_get_vring_size(vq);
5357 	unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
5358 	unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
5359 	unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
5360 
5361 	return max(max(min_buf_len, hdr_len) - hdr_len,
5362 		   (unsigned int)GOOD_PACKET_LEN);
5363 }
5364 
5365 static int virtnet_find_vqs(struct virtnet_info *vi)
5366 {
5367 	vq_callback_t **callbacks;
5368 	struct virtqueue **vqs;
5369 	const char **names;
5370 	int ret = -ENOMEM;
5371 	int total_vqs;
5372 	bool *ctx;
5373 	u16 i;
5374 
5375 	/* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
5376 	 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
5377 	 * possible control vq.
5378 	 */
5379 	total_vqs = vi->max_queue_pairs * 2 +
5380 		    virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
5381 
5382 	/* Allocate space for find_vqs parameters */
5383 	vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL);
5384 	if (!vqs)
5385 		goto err_vq;
5386 	callbacks = kmalloc_array(total_vqs, sizeof(*callbacks), GFP_KERNEL);
5387 	if (!callbacks)
5388 		goto err_callback;
5389 	names = kmalloc_array(total_vqs, sizeof(*names), GFP_KERNEL);
5390 	if (!names)
5391 		goto err_names;
5392 	if (!vi->big_packets || vi->mergeable_rx_bufs) {
5393 		ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL);
5394 		if (!ctx)
5395 			goto err_ctx;
5396 	} else {
5397 		ctx = NULL;
5398 	}
5399 
5400 	/* Parameters for control virtqueue, if any */
5401 	if (vi->has_cvq) {
5402 		callbacks[total_vqs - 1] = NULL;
5403 		names[total_vqs - 1] = "control";
5404 	}
5405 
5406 	/* Allocate/initialize parameters for send/receive virtqueues */
5407 	for (i = 0; i < vi->max_queue_pairs; i++) {
5408 		callbacks[rxq2vq(i)] = skb_recv_done;
5409 		callbacks[txq2vq(i)] = skb_xmit_done;
5410 		sprintf(vi->rq[i].name, "input.%u", i);
5411 		sprintf(vi->sq[i].name, "output.%u", i);
5412 		names[rxq2vq(i)] = vi->rq[i].name;
5413 		names[txq2vq(i)] = vi->sq[i].name;
5414 		if (ctx)
5415 			ctx[rxq2vq(i)] = true;
5416 	}
5417 
5418 	ret = virtio_find_vqs_ctx(vi->vdev, total_vqs, vqs, callbacks,
5419 				  names, ctx, NULL);
5420 	if (ret)
5421 		goto err_find;
5422 
5423 	if (vi->has_cvq) {
5424 		vi->cvq = vqs[total_vqs - 1];
5425 		if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
5426 			vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
5427 	}
5428 
5429 	for (i = 0; i < vi->max_queue_pairs; i++) {
5430 		vi->rq[i].vq = vqs[rxq2vq(i)];
5431 		vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
5432 		vi->sq[i].vq = vqs[txq2vq(i)];
5433 	}
5434 
5435 	/* run here: ret == 0. */
5436 
5437 
5438 err_find:
5439 	kfree(ctx);
5440 err_ctx:
5441 	kfree(names);
5442 err_names:
5443 	kfree(callbacks);
5444 err_callback:
5445 	kfree(vqs);
5446 err_vq:
5447 	return ret;
5448 }
5449 
5450 static int virtnet_alloc_queues(struct virtnet_info *vi)
5451 {
5452 	int i;
5453 
5454 	if (vi->has_cvq) {
5455 		vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
5456 		if (!vi->ctrl)
5457 			goto err_ctrl;
5458 	} else {
5459 		vi->ctrl = NULL;
5460 	}
5461 	vi->sq = kcalloc(vi->max_queue_pairs, sizeof(*vi->sq), GFP_KERNEL);
5462 	if (!vi->sq)
5463 		goto err_sq;
5464 	vi->rq = kcalloc(vi->max_queue_pairs, sizeof(*vi->rq), GFP_KERNEL);
5465 	if (!vi->rq)
5466 		goto err_rq;
5467 
5468 	INIT_DELAYED_WORK(&vi->refill, refill_work);
5469 	for (i = 0; i < vi->max_queue_pairs; i++) {
5470 		vi->rq[i].pages = NULL;
5471 		netif_napi_add_weight(vi->dev, &vi->rq[i].napi, virtnet_poll,
5472 				      napi_weight);
5473 		netif_napi_add_tx_weight(vi->dev, &vi->sq[i].napi,
5474 					 virtnet_poll_tx,
5475 					 napi_tx ? napi_weight : 0);
5476 
5477 		sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
5478 		ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
5479 		sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
5480 
5481 		u64_stats_init(&vi->rq[i].stats.syncp);
5482 		u64_stats_init(&vi->sq[i].stats.syncp);
5483 		mutex_init(&vi->rq[i].dim_lock);
5484 	}
5485 
5486 	return 0;
5487 
5488 err_rq:
5489 	kfree(vi->sq);
5490 err_sq:
5491 	kfree(vi->ctrl);
5492 err_ctrl:
5493 	return -ENOMEM;
5494 }
5495 
5496 static int init_vqs(struct virtnet_info *vi)
5497 {
5498 	int ret;
5499 
5500 	/* Allocate send & receive queues */
5501 	ret = virtnet_alloc_queues(vi);
5502 	if (ret)
5503 		goto err;
5504 
5505 	ret = virtnet_find_vqs(vi);
5506 	if (ret)
5507 		goto err_free;
5508 
5509 	virtnet_rq_set_premapped(vi);
5510 
5511 	cpus_read_lock();
5512 	virtnet_set_affinity(vi);
5513 	cpus_read_unlock();
5514 
5515 	return 0;
5516 
5517 err_free:
5518 	virtnet_free_queues(vi);
5519 err:
5520 	return ret;
5521 }
5522 
5523 #ifdef CONFIG_SYSFS
5524 static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
5525 		char *buf)
5526 {
5527 	struct virtnet_info *vi = netdev_priv(queue->dev);
5528 	unsigned int queue_index = get_netdev_rx_queue_index(queue);
5529 	unsigned int headroom = virtnet_get_headroom(vi);
5530 	unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
5531 	struct ewma_pkt_len *avg;
5532 
5533 	BUG_ON(queue_index >= vi->max_queue_pairs);
5534 	avg = &vi->rq[queue_index].mrg_avg_pkt_len;
5535 	return sprintf(buf, "%u\n",
5536 		       get_mergeable_buf_len(&vi->rq[queue_index], avg,
5537 				       SKB_DATA_ALIGN(headroom + tailroom)));
5538 }
5539 
5540 static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
5541 	__ATTR_RO(mergeable_rx_buffer_size);
5542 
5543 static struct attribute *virtio_net_mrg_rx_attrs[] = {
5544 	&mergeable_rx_buffer_size_attribute.attr,
5545 	NULL
5546 };
5547 
5548 static const struct attribute_group virtio_net_mrg_rx_group = {
5549 	.name = "virtio_net",
5550 	.attrs = virtio_net_mrg_rx_attrs
5551 };
5552 #endif
5553 
5554 static bool virtnet_fail_on_feature(struct virtio_device *vdev,
5555 				    unsigned int fbit,
5556 				    const char *fname, const char *dname)
5557 {
5558 	if (!virtio_has_feature(vdev, fbit))
5559 		return false;
5560 
5561 	dev_err(&vdev->dev, "device advertises feature %s but not %s",
5562 		fname, dname);
5563 
5564 	return true;
5565 }
5566 
5567 #define VIRTNET_FAIL_ON(vdev, fbit, dbit)			\
5568 	virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
5569 
5570 static bool virtnet_validate_features(struct virtio_device *vdev)
5571 {
5572 	if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
5573 	    (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
5574 			     "VIRTIO_NET_F_CTRL_VQ") ||
5575 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
5576 			     "VIRTIO_NET_F_CTRL_VQ") ||
5577 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
5578 			     "VIRTIO_NET_F_CTRL_VQ") ||
5579 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
5580 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
5581 			     "VIRTIO_NET_F_CTRL_VQ") ||
5582 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_RSS,
5583 			     "VIRTIO_NET_F_CTRL_VQ") ||
5584 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_HASH_REPORT,
5585 			     "VIRTIO_NET_F_CTRL_VQ") ||
5586 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_NOTF_COAL,
5587 			     "VIRTIO_NET_F_CTRL_VQ") ||
5588 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_VQ_NOTF_COAL,
5589 			     "VIRTIO_NET_F_CTRL_VQ"))) {
5590 		return false;
5591 	}
5592 
5593 	return true;
5594 }
5595 
5596 #define MIN_MTU ETH_MIN_MTU
5597 #define MAX_MTU ETH_MAX_MTU
5598 
5599 static int virtnet_validate(struct virtio_device *vdev)
5600 {
5601 	if (!vdev->config->get) {
5602 		dev_err(&vdev->dev, "%s failure: config access disabled\n",
5603 			__func__);
5604 		return -EINVAL;
5605 	}
5606 
5607 	if (!virtnet_validate_features(vdev))
5608 		return -EINVAL;
5609 
5610 	if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
5611 		int mtu = virtio_cread16(vdev,
5612 					 offsetof(struct virtio_net_config,
5613 						  mtu));
5614 		if (mtu < MIN_MTU)
5615 			__virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
5616 	}
5617 
5618 	if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY) &&
5619 	    !virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) {
5620 		dev_warn(&vdev->dev, "device advertises feature VIRTIO_NET_F_STANDBY but not VIRTIO_NET_F_MAC, disabling standby");
5621 		__virtio_clear_bit(vdev, VIRTIO_NET_F_STANDBY);
5622 	}
5623 
5624 	return 0;
5625 }
5626 
5627 static bool virtnet_check_guest_gso(const struct virtnet_info *vi)
5628 {
5629 	return virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
5630 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
5631 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
5632 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) ||
5633 		(virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO4) &&
5634 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO6));
5635 }
5636 
5637 static void virtnet_set_big_packets(struct virtnet_info *vi, const int mtu)
5638 {
5639 	bool guest_gso = virtnet_check_guest_gso(vi);
5640 
5641 	/* If device can receive ANY guest GSO packets, regardless of mtu,
5642 	 * allocate packets of maximum size, otherwise limit it to only
5643 	 * mtu size worth only.
5644 	 */
5645 	if (mtu > ETH_DATA_LEN || guest_gso) {
5646 		vi->big_packets = true;
5647 		vi->big_packets_num_skbfrags = guest_gso ? MAX_SKB_FRAGS : DIV_ROUND_UP(mtu, PAGE_SIZE);
5648 	}
5649 }
5650 
5651 #define VIRTIO_NET_HASH_REPORT_MAX_TABLE      10
5652 static enum xdp_rss_hash_type
5653 virtnet_xdp_rss_type[VIRTIO_NET_HASH_REPORT_MAX_TABLE] = {
5654 	[VIRTIO_NET_HASH_REPORT_NONE] = XDP_RSS_TYPE_NONE,
5655 	[VIRTIO_NET_HASH_REPORT_IPv4] = XDP_RSS_TYPE_L3_IPV4,
5656 	[VIRTIO_NET_HASH_REPORT_TCPv4] = XDP_RSS_TYPE_L4_IPV4_TCP,
5657 	[VIRTIO_NET_HASH_REPORT_UDPv4] = XDP_RSS_TYPE_L4_IPV4_UDP,
5658 	[VIRTIO_NET_HASH_REPORT_IPv6] = XDP_RSS_TYPE_L3_IPV6,
5659 	[VIRTIO_NET_HASH_REPORT_TCPv6] = XDP_RSS_TYPE_L4_IPV6_TCP,
5660 	[VIRTIO_NET_HASH_REPORT_UDPv6] = XDP_RSS_TYPE_L4_IPV6_UDP,
5661 	[VIRTIO_NET_HASH_REPORT_IPv6_EX] = XDP_RSS_TYPE_L3_IPV6_EX,
5662 	[VIRTIO_NET_HASH_REPORT_TCPv6_EX] = XDP_RSS_TYPE_L4_IPV6_TCP_EX,
5663 	[VIRTIO_NET_HASH_REPORT_UDPv6_EX] = XDP_RSS_TYPE_L4_IPV6_UDP_EX
5664 };
5665 
5666 static int virtnet_xdp_rx_hash(const struct xdp_md *_ctx, u32 *hash,
5667 			       enum xdp_rss_hash_type *rss_type)
5668 {
5669 	const struct xdp_buff *xdp = (void *)_ctx;
5670 	struct virtio_net_hdr_v1_hash *hdr_hash;
5671 	struct virtnet_info *vi;
5672 	u16 hash_report;
5673 
5674 	if (!(xdp->rxq->dev->features & NETIF_F_RXHASH))
5675 		return -ENODATA;
5676 
5677 	vi = netdev_priv(xdp->rxq->dev);
5678 	hdr_hash = (struct virtio_net_hdr_v1_hash *)(xdp->data - vi->hdr_len);
5679 	hash_report = __le16_to_cpu(hdr_hash->hash_report);
5680 
5681 	if (hash_report >= VIRTIO_NET_HASH_REPORT_MAX_TABLE)
5682 		hash_report = VIRTIO_NET_HASH_REPORT_NONE;
5683 
5684 	*rss_type = virtnet_xdp_rss_type[hash_report];
5685 	*hash = __le32_to_cpu(hdr_hash->hash_value);
5686 	return 0;
5687 }
5688 
5689 static const struct xdp_metadata_ops virtnet_xdp_metadata_ops = {
5690 	.xmo_rx_hash			= virtnet_xdp_rx_hash,
5691 };
5692 
5693 static int virtnet_probe(struct virtio_device *vdev)
5694 {
5695 	int i, err = -ENOMEM;
5696 	struct net_device *dev;
5697 	struct virtnet_info *vi;
5698 	u16 max_queue_pairs;
5699 	int mtu = 0;
5700 
5701 	/* Find if host supports multiqueue/rss virtio_net device */
5702 	max_queue_pairs = 1;
5703 	if (virtio_has_feature(vdev, VIRTIO_NET_F_MQ) || virtio_has_feature(vdev, VIRTIO_NET_F_RSS))
5704 		max_queue_pairs =
5705 		     virtio_cread16(vdev, offsetof(struct virtio_net_config, max_virtqueue_pairs));
5706 
5707 	/* We need at least 2 queue's */
5708 	if (max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
5709 	    max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
5710 	    !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
5711 		max_queue_pairs = 1;
5712 
5713 	/* Allocate ourselves a network device with room for our info */
5714 	dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
5715 	if (!dev)
5716 		return -ENOMEM;
5717 
5718 	/* Set up network device as normal. */
5719 	dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE |
5720 			   IFF_TX_SKB_NO_LINEAR;
5721 	dev->netdev_ops = &virtnet_netdev;
5722 	dev->stat_ops = &virtnet_stat_ops;
5723 	dev->features = NETIF_F_HIGHDMA;
5724 
5725 	dev->ethtool_ops = &virtnet_ethtool_ops;
5726 	SET_NETDEV_DEV(dev, &vdev->dev);
5727 
5728 	/* Do we support "hardware" checksums? */
5729 	if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
5730 		/* This opens up the world of extra features. */
5731 		dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
5732 		if (csum)
5733 			dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
5734 
5735 		if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
5736 			dev->hw_features |= NETIF_F_TSO
5737 				| NETIF_F_TSO_ECN | NETIF_F_TSO6;
5738 		}
5739 		/* Individual feature bits: what can host handle? */
5740 		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
5741 			dev->hw_features |= NETIF_F_TSO;
5742 		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
5743 			dev->hw_features |= NETIF_F_TSO6;
5744 		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
5745 			dev->hw_features |= NETIF_F_TSO_ECN;
5746 		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_USO))
5747 			dev->hw_features |= NETIF_F_GSO_UDP_L4;
5748 
5749 		dev->features |= NETIF_F_GSO_ROBUST;
5750 
5751 		if (gso)
5752 			dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
5753 		/* (!csum && gso) case will be fixed by register_netdev() */
5754 	}
5755 
5756 	/* 1. With VIRTIO_NET_F_GUEST_CSUM negotiation, the driver doesn't
5757 	 * need to calculate checksums for partially checksummed packets,
5758 	 * as they're considered valid by the upper layer.
5759 	 * 2. Without VIRTIO_NET_F_GUEST_CSUM negotiation, the driver only
5760 	 * receives fully checksummed packets. The device may assist in
5761 	 * validating these packets' checksums, so the driver won't have to.
5762 	 */
5763 	dev->features |= NETIF_F_RXCSUM;
5764 
5765 	if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
5766 	    virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6))
5767 		dev->features |= NETIF_F_GRO_HW;
5768 	if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS))
5769 		dev->hw_features |= NETIF_F_GRO_HW;
5770 
5771 	dev->vlan_features = dev->features;
5772 	dev->xdp_features = NETDEV_XDP_ACT_BASIC | NETDEV_XDP_ACT_REDIRECT;
5773 
5774 	/* MTU range: 68 - 65535 */
5775 	dev->min_mtu = MIN_MTU;
5776 	dev->max_mtu = MAX_MTU;
5777 
5778 	/* Configuration may specify what MAC to use.  Otherwise random. */
5779 	if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) {
5780 		u8 addr[ETH_ALEN];
5781 
5782 		virtio_cread_bytes(vdev,
5783 				   offsetof(struct virtio_net_config, mac),
5784 				   addr, ETH_ALEN);
5785 		eth_hw_addr_set(dev, addr);
5786 	} else {
5787 		eth_hw_addr_random(dev);
5788 		dev_info(&vdev->dev, "Assigned random MAC address %pM\n",
5789 			 dev->dev_addr);
5790 	}
5791 
5792 	/* Set up our device-specific information */
5793 	vi = netdev_priv(dev);
5794 	vi->dev = dev;
5795 	vi->vdev = vdev;
5796 	vdev->priv = vi;
5797 
5798 	INIT_WORK(&vi->config_work, virtnet_config_changed_work);
5799 	INIT_WORK(&vi->rx_mode_work, virtnet_rx_mode_work);
5800 	spin_lock_init(&vi->refill_lock);
5801 
5802 	if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF)) {
5803 		vi->mergeable_rx_bufs = true;
5804 		dev->xdp_features |= NETDEV_XDP_ACT_RX_SG;
5805 	}
5806 
5807 	if (virtio_has_feature(vdev, VIRTIO_NET_F_HASH_REPORT))
5808 		vi->has_rss_hash_report = true;
5809 
5810 	if (virtio_has_feature(vdev, VIRTIO_NET_F_RSS)) {
5811 		vi->has_rss = true;
5812 
5813 		vi->rss_indir_table_size =
5814 			virtio_cread16(vdev, offsetof(struct virtio_net_config,
5815 				rss_max_indirection_table_length));
5816 	}
5817 
5818 	if (vi->has_rss || vi->has_rss_hash_report) {
5819 		vi->rss_key_size =
5820 			virtio_cread8(vdev, offsetof(struct virtio_net_config, rss_max_key_size));
5821 
5822 		vi->rss_hash_types_supported =
5823 		    virtio_cread32(vdev, offsetof(struct virtio_net_config, supported_hash_types));
5824 		vi->rss_hash_types_supported &=
5825 				~(VIRTIO_NET_RSS_HASH_TYPE_IP_EX |
5826 				  VIRTIO_NET_RSS_HASH_TYPE_TCP_EX |
5827 				  VIRTIO_NET_RSS_HASH_TYPE_UDP_EX);
5828 
5829 		dev->hw_features |= NETIF_F_RXHASH;
5830 		dev->xdp_metadata_ops = &virtnet_xdp_metadata_ops;
5831 	}
5832 
5833 	if (vi->has_rss_hash_report)
5834 		vi->hdr_len = sizeof(struct virtio_net_hdr_v1_hash);
5835 	else if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
5836 		 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
5837 		vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
5838 	else
5839 		vi->hdr_len = sizeof(struct virtio_net_hdr);
5840 
5841 	if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
5842 	    virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
5843 		vi->any_header_sg = true;
5844 
5845 	if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
5846 		vi->has_cvq = true;
5847 
5848 	mutex_init(&vi->cvq_lock);
5849 
5850 	if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
5851 		mtu = virtio_cread16(vdev,
5852 				     offsetof(struct virtio_net_config,
5853 					      mtu));
5854 		if (mtu < dev->min_mtu) {
5855 			/* Should never trigger: MTU was previously validated
5856 			 * in virtnet_validate.
5857 			 */
5858 			dev_err(&vdev->dev,
5859 				"device MTU appears to have changed it is now %d < %d",
5860 				mtu, dev->min_mtu);
5861 			err = -EINVAL;
5862 			goto free;
5863 		}
5864 
5865 		dev->mtu = mtu;
5866 		dev->max_mtu = mtu;
5867 	}
5868 
5869 	virtnet_set_big_packets(vi, mtu);
5870 
5871 	if (vi->any_header_sg)
5872 		dev->needed_headroom = vi->hdr_len;
5873 
5874 	/* Enable multiqueue by default */
5875 	if (num_online_cpus() >= max_queue_pairs)
5876 		vi->curr_queue_pairs = max_queue_pairs;
5877 	else
5878 		vi->curr_queue_pairs = num_online_cpus();
5879 	vi->max_queue_pairs = max_queue_pairs;
5880 
5881 	/* Allocate/initialize the rx/tx queues, and invoke find_vqs */
5882 	err = init_vqs(vi);
5883 	if (err)
5884 		goto free;
5885 
5886 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL)) {
5887 		vi->intr_coal_rx.max_usecs = 0;
5888 		vi->intr_coal_tx.max_usecs = 0;
5889 		vi->intr_coal_rx.max_packets = 0;
5890 
5891 		/* Keep the default values of the coalescing parameters
5892 		 * aligned with the default napi_tx state.
5893 		 */
5894 		if (vi->sq[0].napi.weight)
5895 			vi->intr_coal_tx.max_packets = 1;
5896 		else
5897 			vi->intr_coal_tx.max_packets = 0;
5898 	}
5899 
5900 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) {
5901 		/* The reason is the same as VIRTIO_NET_F_NOTF_COAL. */
5902 		for (i = 0; i < vi->max_queue_pairs; i++)
5903 			if (vi->sq[i].napi.weight)
5904 				vi->sq[i].intr_coal.max_packets = 1;
5905 
5906 		err = virtnet_init_irq_moder(vi);
5907 		if (err)
5908 			goto free;
5909 	}
5910 
5911 #ifdef CONFIG_SYSFS
5912 	if (vi->mergeable_rx_bufs)
5913 		dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
5914 #endif
5915 	netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
5916 	netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
5917 
5918 	virtnet_init_settings(dev);
5919 
5920 	if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
5921 		vi->failover = net_failover_create(vi->dev);
5922 		if (IS_ERR(vi->failover)) {
5923 			err = PTR_ERR(vi->failover);
5924 			goto free_vqs;
5925 		}
5926 	}
5927 
5928 	if (vi->has_rss || vi->has_rss_hash_report)
5929 		virtnet_init_default_rss(vi);
5930 
5931 	enable_rx_mode_work(vi);
5932 
5933 	/* serialize netdev register + virtio_device_ready() with ndo_open() */
5934 	rtnl_lock();
5935 
5936 	err = register_netdevice(dev);
5937 	if (err) {
5938 		pr_debug("virtio_net: registering device failed\n");
5939 		rtnl_unlock();
5940 		goto free_failover;
5941 	}
5942 
5943 	virtio_device_ready(vdev);
5944 
5945 	virtnet_set_queues(vi, vi->curr_queue_pairs);
5946 
5947 	/* a random MAC address has been assigned, notify the device.
5948 	 * We don't fail probe if VIRTIO_NET_F_CTRL_MAC_ADDR is not there
5949 	 * because many devices work fine without getting MAC explicitly
5950 	 */
5951 	if (!virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
5952 	    virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
5953 		struct scatterlist sg;
5954 
5955 		sg_init_one(&sg, dev->dev_addr, dev->addr_len);
5956 		if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
5957 					  VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
5958 			pr_debug("virtio_net: setting MAC address failed\n");
5959 			rtnl_unlock();
5960 			err = -EINVAL;
5961 			goto free_unregister_netdev;
5962 		}
5963 	}
5964 
5965 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_DEVICE_STATS)) {
5966 		struct virtio_net_stats_capabilities *stats_cap  __free(kfree) = NULL;
5967 		struct scatterlist sg;
5968 		__le64 v;
5969 
5970 		stats_cap = kzalloc(sizeof(*stats_cap), GFP_KERNEL);
5971 		if (!stats_cap) {
5972 			rtnl_unlock();
5973 			err = -ENOMEM;
5974 			goto free_unregister_netdev;
5975 		}
5976 
5977 		sg_init_one(&sg, stats_cap, sizeof(*stats_cap));
5978 
5979 		if (!virtnet_send_command_reply(vi, VIRTIO_NET_CTRL_STATS,
5980 						VIRTIO_NET_CTRL_STATS_QUERY,
5981 						NULL, &sg)) {
5982 			pr_debug("virtio_net: fail to get stats capability\n");
5983 			rtnl_unlock();
5984 			err = -EINVAL;
5985 			goto free_unregister_netdev;
5986 		}
5987 
5988 		v = stats_cap->supported_stats_types[0];
5989 		vi->device_stats_cap = le64_to_cpu(v);
5990 	}
5991 
5992 	rtnl_unlock();
5993 
5994 	err = virtnet_cpu_notif_add(vi);
5995 	if (err) {
5996 		pr_debug("virtio_net: registering cpu notifier failed\n");
5997 		goto free_unregister_netdev;
5998 	}
5999 
6000 	/* Assume link up if device can't report link status,
6001 	   otherwise get link status from config. */
6002 	netif_carrier_off(dev);
6003 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
6004 		schedule_work(&vi->config_work);
6005 	} else {
6006 		vi->status = VIRTIO_NET_S_LINK_UP;
6007 		virtnet_update_settings(vi);
6008 		netif_carrier_on(dev);
6009 	}
6010 
6011 	for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
6012 		if (virtio_has_feature(vi->vdev, guest_offloads[i]))
6013 			set_bit(guest_offloads[i], &vi->guest_offloads);
6014 	vi->guest_offloads_capable = vi->guest_offloads;
6015 
6016 	pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
6017 		 dev->name, max_queue_pairs);
6018 
6019 	return 0;
6020 
6021 free_unregister_netdev:
6022 	unregister_netdev(dev);
6023 free_failover:
6024 	net_failover_destroy(vi->failover);
6025 free_vqs:
6026 	virtio_reset_device(vdev);
6027 	cancel_delayed_work_sync(&vi->refill);
6028 	free_receive_page_frags(vi);
6029 	virtnet_del_vqs(vi);
6030 free:
6031 	free_netdev(dev);
6032 	return err;
6033 }
6034 
6035 static void remove_vq_common(struct virtnet_info *vi)
6036 {
6037 	virtio_reset_device(vi->vdev);
6038 
6039 	/* Free unused buffers in both send and recv, if any. */
6040 	free_unused_bufs(vi);
6041 
6042 	free_receive_bufs(vi);
6043 
6044 	free_receive_page_frags(vi);
6045 
6046 	virtnet_del_vqs(vi);
6047 }
6048 
6049 static void virtnet_remove(struct virtio_device *vdev)
6050 {
6051 	struct virtnet_info *vi = vdev->priv;
6052 
6053 	virtnet_cpu_notif_remove(vi);
6054 
6055 	/* Make sure no work handler is accessing the device. */
6056 	flush_work(&vi->config_work);
6057 	disable_rx_mode_work(vi);
6058 	flush_work(&vi->rx_mode_work);
6059 
6060 	virtnet_free_irq_moder(vi);
6061 
6062 	unregister_netdev(vi->dev);
6063 
6064 	net_failover_destroy(vi->failover);
6065 
6066 	remove_vq_common(vi);
6067 
6068 	free_netdev(vi->dev);
6069 }
6070 
6071 static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
6072 {
6073 	struct virtnet_info *vi = vdev->priv;
6074 
6075 	virtnet_cpu_notif_remove(vi);
6076 	virtnet_freeze_down(vdev);
6077 	remove_vq_common(vi);
6078 
6079 	return 0;
6080 }
6081 
6082 static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
6083 {
6084 	struct virtnet_info *vi = vdev->priv;
6085 	int err;
6086 
6087 	err = virtnet_restore_up(vdev);
6088 	if (err)
6089 		return err;
6090 	virtnet_set_queues(vi, vi->curr_queue_pairs);
6091 
6092 	err = virtnet_cpu_notif_add(vi);
6093 	if (err) {
6094 		virtnet_freeze_down(vdev);
6095 		remove_vq_common(vi);
6096 		return err;
6097 	}
6098 
6099 	return 0;
6100 }
6101 
6102 static struct virtio_device_id id_table[] = {
6103 	{ VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
6104 	{ 0 },
6105 };
6106 
6107 #define VIRTNET_FEATURES \
6108 	VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
6109 	VIRTIO_NET_F_MAC, \
6110 	VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
6111 	VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
6112 	VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
6113 	VIRTIO_NET_F_HOST_USO, VIRTIO_NET_F_GUEST_USO4, VIRTIO_NET_F_GUEST_USO6, \
6114 	VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
6115 	VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
6116 	VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
6117 	VIRTIO_NET_F_CTRL_MAC_ADDR, \
6118 	VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
6119 	VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY, \
6120 	VIRTIO_NET_F_RSS, VIRTIO_NET_F_HASH_REPORT, VIRTIO_NET_F_NOTF_COAL, \
6121 	VIRTIO_NET_F_VQ_NOTF_COAL, \
6122 	VIRTIO_NET_F_GUEST_HDRLEN, VIRTIO_NET_F_DEVICE_STATS
6123 
6124 static unsigned int features[] = {
6125 	VIRTNET_FEATURES,
6126 };
6127 
6128 static unsigned int features_legacy[] = {
6129 	VIRTNET_FEATURES,
6130 	VIRTIO_NET_F_GSO,
6131 	VIRTIO_F_ANY_LAYOUT,
6132 };
6133 
6134 static struct virtio_driver virtio_net_driver = {
6135 	.feature_table = features,
6136 	.feature_table_size = ARRAY_SIZE(features),
6137 	.feature_table_legacy = features_legacy,
6138 	.feature_table_size_legacy = ARRAY_SIZE(features_legacy),
6139 	.driver.name =	KBUILD_MODNAME,
6140 	.id_table =	id_table,
6141 	.validate =	virtnet_validate,
6142 	.probe =	virtnet_probe,
6143 	.remove =	virtnet_remove,
6144 	.config_changed = virtnet_config_changed,
6145 #ifdef CONFIG_PM_SLEEP
6146 	.freeze =	virtnet_freeze,
6147 	.restore =	virtnet_restore,
6148 #endif
6149 };
6150 
6151 static __init int virtio_net_driver_init(void)
6152 {
6153 	int ret;
6154 
6155 	ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
6156 				      virtnet_cpu_online,
6157 				      virtnet_cpu_down_prep);
6158 	if (ret < 0)
6159 		goto out;
6160 	virtionet_online = ret;
6161 	ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
6162 				      NULL, virtnet_cpu_dead);
6163 	if (ret)
6164 		goto err_dead;
6165 	ret = register_virtio_driver(&virtio_net_driver);
6166 	if (ret)
6167 		goto err_virtio;
6168 	return 0;
6169 err_virtio:
6170 	cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
6171 err_dead:
6172 	cpuhp_remove_multi_state(virtionet_online);
6173 out:
6174 	return ret;
6175 }
6176 module_init(virtio_net_driver_init);
6177 
6178 static __exit void virtio_net_driver_exit(void)
6179 {
6180 	unregister_virtio_driver(&virtio_net_driver);
6181 	cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
6182 	cpuhp_remove_multi_state(virtionet_online);
6183 }
6184 module_exit(virtio_net_driver_exit);
6185 
6186 MODULE_DEVICE_TABLE(virtio, id_table);
6187 MODULE_DESCRIPTION("Virtio network driver");
6188 MODULE_LICENSE("GPL");
6189