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