xref: /linux/drivers/net/virtio_net.c (revision 07e1a9408b6c2f9d0cfb757b67dabb52da7a32b2)
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 	if (budget)
3015 		virtqueue_disable_cb(rq->vq);
3016 
3017 	virtnet_poll_cleantx(rq, budget);
3018 
3019 	received = virtnet_receive(rq, budget, &xdp_xmit);
3020 	rq->packets_in_napi += received;
3021 
3022 	if (xdp_xmit & VIRTIO_XDP_REDIR)
3023 		xdp_do_flush();
3024 
3025 	/* Out of packets? */
3026 	if (received < budget) {
3027 		napi_complete = virtqueue_napi_complete(napi, rq->vq, received);
3028 		/* Intentionally not taking dim_lock here. This may result in a
3029 		 * spurious net_dim call. But if that happens virtnet_rx_dim_work
3030 		 * will not act on the scheduled work.
3031 		 */
3032 		if (napi_complete && rq->dim_enabled)
3033 			virtnet_rx_dim_update(vi, rq);
3034 	}
3035 
3036 	if (xdp_xmit & VIRTIO_XDP_TX) {
3037 		sq = virtnet_xdp_get_sq(vi);
3038 		if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
3039 			u64_stats_update_begin(&sq->stats.syncp);
3040 			u64_stats_inc(&sq->stats.kicks);
3041 			u64_stats_update_end(&sq->stats.syncp);
3042 		}
3043 		virtnet_xdp_put_sq(vi, sq);
3044 	}
3045 
3046 	return received;
3047 }
3048 
3049 static void virtnet_disable_queue_pair(struct virtnet_info *vi, int qp_index)
3050 {
3051 	virtnet_napi_tx_disable(&vi->sq[qp_index]);
3052 	virtnet_napi_disable(&vi->rq[qp_index]);
3053 	xdp_rxq_info_unreg(&vi->rq[qp_index].xdp_rxq);
3054 }
3055 
3056 static int virtnet_enable_queue_pair(struct virtnet_info *vi, int qp_index)
3057 {
3058 	struct net_device *dev = vi->dev;
3059 	int err;
3060 
3061 	err = xdp_rxq_info_reg(&vi->rq[qp_index].xdp_rxq, dev, qp_index,
3062 			       vi->rq[qp_index].napi.napi_id);
3063 	if (err < 0)
3064 		return err;
3065 
3066 	err = xdp_rxq_info_reg_mem_model(&vi->rq[qp_index].xdp_rxq,
3067 					 vi->rq[qp_index].page_pool ?
3068 						MEM_TYPE_PAGE_POOL :
3069 						MEM_TYPE_PAGE_SHARED,
3070 					 vi->rq[qp_index].page_pool);
3071 	if (err < 0)
3072 		goto err_xdp_reg_mem_model;
3073 
3074 	virtnet_napi_enable(&vi->rq[qp_index]);
3075 	virtnet_napi_tx_enable(&vi->sq[qp_index]);
3076 
3077 	return 0;
3078 
3079 err_xdp_reg_mem_model:
3080 	xdp_rxq_info_unreg(&vi->rq[qp_index].xdp_rxq);
3081 	return err;
3082 }
3083 
3084 static void virtnet_cancel_dim(struct virtnet_info *vi, struct dim *dim)
3085 {
3086 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL))
3087 		return;
3088 	net_dim_work_cancel(dim);
3089 }
3090 
3091 static void virtnet_update_settings(struct virtnet_info *vi)
3092 {
3093 	u32 speed;
3094 	u8 duplex;
3095 
3096 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
3097 		return;
3098 
3099 	virtio_cread_le(vi->vdev, struct virtio_net_config, speed, &speed);
3100 
3101 	if (ethtool_validate_speed(speed))
3102 		vi->speed = speed;
3103 
3104 	virtio_cread_le(vi->vdev, struct virtio_net_config, duplex, &duplex);
3105 
3106 	if (ethtool_validate_duplex(duplex))
3107 		vi->duplex = duplex;
3108 }
3109 
3110 static int virtnet_create_page_pools(struct virtnet_info *vi)
3111 {
3112 	int i, err;
3113 
3114 	if (vi->big_packets && !vi->mergeable_rx_bufs)
3115 		return 0;
3116 
3117 	for (i = 0; i < vi->max_queue_pairs; i++) {
3118 		struct receive_queue *rq = &vi->rq[i];
3119 		struct page_pool_params pp_params = { 0 };
3120 		struct device *dma_dev;
3121 
3122 		if (rq->page_pool)
3123 			continue;
3124 
3125 		if (rq->xsk_pool)
3126 			continue;
3127 
3128 		pp_params.order = 0;
3129 		pp_params.pool_size = virtqueue_get_vring_size(rq->vq);
3130 		pp_params.nid = dev_to_node(vi->vdev->dev.parent);
3131 		pp_params.netdev = vi->dev;
3132 		pp_params.napi = &rq->napi;
3133 
3134 		/* Use page_pool DMA mapping if backend supports DMA API.
3135 		 * DMA_SYNC_DEV is needed for non-coherent archs on recycle.
3136 		 */
3137 		dma_dev = virtqueue_dma_dev(rq->vq);
3138 		if (dma_dev) {
3139 			pp_params.dev = dma_dev;
3140 			pp_params.flags = PP_FLAG_DMA_MAP | PP_FLAG_DMA_SYNC_DEV;
3141 			pp_params.dma_dir = DMA_FROM_DEVICE;
3142 			pp_params.max_len = PAGE_SIZE;
3143 			pp_params.offset = 0;
3144 			rq->use_page_pool_dma = true;
3145 		} else {
3146 			/* No DMA API (e.g., VDUSE): page_pool for allocation only. */
3147 			pp_params.flags = 0;
3148 			rq->use_page_pool_dma = false;
3149 		}
3150 
3151 		rq->page_pool = page_pool_create(&pp_params);
3152 		if (IS_ERR(rq->page_pool)) {
3153 			err = PTR_ERR(rq->page_pool);
3154 			rq->page_pool = NULL;
3155 			goto err_cleanup;
3156 		}
3157 	}
3158 	return 0;
3159 
3160 err_cleanup:
3161 	while (--i >= 0) {
3162 		struct receive_queue *rq = &vi->rq[i];
3163 
3164 		if (rq->page_pool) {
3165 			page_pool_destroy(rq->page_pool);
3166 			rq->page_pool = NULL;
3167 		}
3168 	}
3169 	return err;
3170 }
3171 
3172 static void virtnet_destroy_page_pools(struct virtnet_info *vi)
3173 {
3174 	int i;
3175 
3176 	for (i = 0; i < vi->max_queue_pairs; i++) {
3177 		struct receive_queue *rq = &vi->rq[i];
3178 
3179 		if (rq->page_pool) {
3180 			page_pool_destroy(rq->page_pool);
3181 			rq->page_pool = NULL;
3182 		}
3183 	}
3184 }
3185 
3186 static int virtnet_open(struct net_device *dev)
3187 {
3188 	struct virtnet_info *vi = netdev_priv(dev);
3189 	int i, err;
3190 
3191 	for (i = 0; i < vi->max_queue_pairs; i++) {
3192 		if (i < vi->curr_queue_pairs)
3193 			/* Pre-fill rq agressively, to make sure we are ready to
3194 			 * get packets immediately.
3195 			 */
3196 			try_fill_recv(vi, &vi->rq[i], GFP_KERNEL);
3197 
3198 		err = virtnet_enable_queue_pair(vi, i);
3199 		if (err < 0)
3200 			goto err_enable_qp;
3201 	}
3202 
3203 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
3204 		if (vi->status & VIRTIO_NET_S_LINK_UP)
3205 			netif_carrier_on(vi->dev);
3206 		virtio_config_driver_enable(vi->vdev);
3207 	} else {
3208 		vi->status = VIRTIO_NET_S_LINK_UP;
3209 		netif_carrier_on(dev);
3210 	}
3211 
3212 	return 0;
3213 
3214 err_enable_qp:
3215 	for (i--; i >= 0; i--) {
3216 		virtnet_disable_queue_pair(vi, i);
3217 		virtnet_cancel_dim(vi, &vi->rq[i].dim);
3218 	}
3219 
3220 	return err;
3221 }
3222 
3223 static int virtnet_poll_tx(struct napi_struct *napi, int budget)
3224 {
3225 	struct send_queue *sq = container_of(napi, struct send_queue, napi);
3226 	struct virtnet_info *vi = sq->vq->vdev->priv;
3227 	unsigned int index = vq2txq(sq->vq);
3228 	struct netdev_queue *txq;
3229 	int opaque, xsk_done = 0;
3230 	bool done;
3231 
3232 	if (unlikely(is_xdp_raw_buffer_queue(vi, index))) {
3233 		/* We don't need to enable cb for XDP */
3234 		napi_complete_done(napi, 0);
3235 		return 0;
3236 	}
3237 
3238 	txq = netdev_get_tx_queue(vi->dev, index);
3239 	__netif_tx_lock(txq, raw_smp_processor_id());
3240 	virtqueue_disable_cb(sq->vq);
3241 
3242 	if (sq->xsk_pool)
3243 		xsk_done = virtnet_xsk_xmit(sq, sq->xsk_pool, budget);
3244 	else
3245 		free_old_xmit(sq, txq, !!budget);
3246 
3247 	if (sq->vq->num_free >= MAX_SKB_FRAGS + 2)
3248 		virtnet_tx_wake_queue(vi, sq);
3249 
3250 	if (xsk_done >= budget) {
3251 		__netif_tx_unlock(txq);
3252 		return budget;
3253 	}
3254 
3255 	opaque = virtqueue_enable_cb_prepare(sq->vq);
3256 
3257 	done = napi_complete_done(napi, 0);
3258 
3259 	if (!done)
3260 		virtqueue_disable_cb(sq->vq);
3261 
3262 	__netif_tx_unlock(txq);
3263 
3264 	if (done) {
3265 		if (unlikely(virtqueue_poll(sq->vq, opaque))) {
3266 			if (napi_schedule_prep(napi)) {
3267 				__netif_tx_lock(txq, raw_smp_processor_id());
3268 				virtqueue_disable_cb(sq->vq);
3269 				__netif_tx_unlock(txq);
3270 				__napi_schedule(napi);
3271 			}
3272 		}
3273 	}
3274 
3275 	return 0;
3276 }
3277 
3278 static int xmit_skb(struct send_queue *sq, struct sk_buff *skb, bool orphan)
3279 {
3280 	const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
3281 	struct virtnet_info *vi = sq->vq->vdev->priv;
3282 	struct virtio_net_hdr_v1_hash_tunnel *hdr;
3283 	int num_sg;
3284 	unsigned hdr_len = vi->hdr_len;
3285 	bool feature_hdrlen;
3286 	bool can_push;
3287 
3288 	feature_hdrlen = virtio_has_feature(vi->vdev,
3289 					    VIRTIO_NET_F_GUEST_HDRLEN);
3290 
3291 	pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
3292 
3293 	/* Make sure it's safe to cast between formats */
3294 	BUILD_BUG_ON(__alignof__(*hdr) != __alignof__(hdr->hash_hdr));
3295 	BUILD_BUG_ON(__alignof__(*hdr) != __alignof__(hdr->hash_hdr.hdr));
3296 
3297 	can_push = vi->any_header_sg &&
3298 		!((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
3299 		!skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
3300 	/* Even if we can, don't push here yet as this would skew
3301 	 * csum_start offset below. */
3302 	if (can_push)
3303 		hdr = (struct virtio_net_hdr_v1_hash_tunnel *)(skb->data -
3304 							       hdr_len);
3305 	else
3306 		hdr = &skb_vnet_common_hdr(skb)->tnl_hdr;
3307 
3308 	if (virtio_net_hdr_tnl_from_skb(skb, hdr, vi->tx_tnl,
3309 					virtio_is_little_endian(vi->vdev), 0,
3310 					false, feature_hdrlen))
3311 		return -EPROTO;
3312 
3313 	if (vi->mergeable_rx_bufs)
3314 		hdr->hash_hdr.hdr.num_buffers = 0;
3315 
3316 	sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
3317 	if (can_push) {
3318 		__skb_push(skb, hdr_len);
3319 		num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
3320 		if (unlikely(num_sg < 0))
3321 			return num_sg;
3322 		/* Pull header back to avoid skew in tx bytes calculations. */
3323 		__skb_pull(skb, hdr_len);
3324 	} else {
3325 		sg_set_buf(sq->sg, hdr, hdr_len);
3326 		num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
3327 		if (unlikely(num_sg < 0))
3328 			return num_sg;
3329 		num_sg++;
3330 	}
3331 
3332 	return virtnet_add_outbuf(sq, num_sg, skb,
3333 				  orphan ? VIRTNET_XMIT_TYPE_SKB_ORPHAN : VIRTNET_XMIT_TYPE_SKB);
3334 }
3335 
3336 static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
3337 {
3338 	struct virtnet_info *vi = netdev_priv(dev);
3339 	int qnum = skb_get_queue_mapping(skb);
3340 	struct send_queue *sq = &vi->sq[qnum];
3341 	int err;
3342 	struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
3343 	bool xmit_more = netdev_xmit_more();
3344 	bool use_napi = sq->napi.weight;
3345 	bool kick;
3346 
3347 	if (!use_napi)
3348 		free_old_xmit(sq, txq, false);
3349 	else
3350 		virtqueue_disable_cb(sq->vq);
3351 
3352 	if (!use_napi &&
3353 	    unlikely(skb_orphan_frags(skb, GFP_ATOMIC))) {
3354 		DEV_STATS_INC(dev, tx_dropped);
3355 		dev_kfree_skb_any(skb);
3356 		kick = !xmit_more || netif_xmit_stopped(txq);
3357 		goto kick_vq;
3358 	}
3359 
3360 	/* timestamp packet in software */
3361 	skb_tx_timestamp(skb);
3362 
3363 	/* Try to transmit */
3364 	err = xmit_skb(sq, skb, !use_napi);
3365 
3366 	/* This should not happen! */
3367 	if (unlikely(err)) {
3368 		DEV_STATS_INC(dev, tx_fifo_errors);
3369 		if (net_ratelimit())
3370 			dev_warn(&dev->dev,
3371 				 "Unexpected TXQ (%d) queue failure: %d\n",
3372 				 qnum, err);
3373 		DEV_STATS_INC(dev, tx_dropped);
3374 		dev_kfree_skb_any(skb);
3375 		return NETDEV_TX_OK;
3376 	}
3377 
3378 	/* Don't wait up for transmitted skbs to be freed. */
3379 	if (!use_napi) {
3380 		skb_orphan(skb);
3381 		skb_dst_drop(skb);
3382 		nf_reset_ct(skb);
3383 	}
3384 
3385 	if (use_napi)
3386 		tx_may_stop(vi, dev, sq);
3387 	else
3388 		check_sq_full_and_disable(vi, dev,sq);
3389 
3390 	kick = use_napi ? __netdev_tx_sent_queue(txq, skb->len, xmit_more) :
3391 			  !xmit_more || netif_xmit_stopped(txq);
3392 kick_vq:
3393 	if (kick) {
3394 		if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
3395 			u64_stats_update_begin(&sq->stats.syncp);
3396 			u64_stats_inc(&sq->stats.kicks);
3397 			u64_stats_update_end(&sq->stats.syncp);
3398 		}
3399 	}
3400 
3401 	if (use_napi && kick && unlikely(!virtqueue_enable_cb_delayed(sq->vq)))
3402 		virtqueue_napi_schedule(&sq->napi, sq->vq);
3403 
3404 	return NETDEV_TX_OK;
3405 }
3406 
3407 static void virtnet_rx_pause(struct virtnet_info *vi,
3408 			     struct receive_queue *rq)
3409 {
3410 	bool running = netif_running(vi->dev);
3411 
3412 	if (running) {
3413 		virtnet_napi_disable(rq);
3414 		virtnet_cancel_dim(vi, &rq->dim);
3415 	}
3416 }
3417 
3418 static void virtnet_rx_pause_all(struct virtnet_info *vi)
3419 {
3420 	int i;
3421 
3422 	for (i = 0; i < vi->max_queue_pairs; i++)
3423 		virtnet_rx_pause(vi, &vi->rq[i]);
3424 }
3425 
3426 static void virtnet_rx_resume(struct virtnet_info *vi,
3427 			      struct receive_queue *rq,
3428 			      bool refill)
3429 {
3430 	if (netif_running(vi->dev)) {
3431 		/* Pre-fill rq agressively, to make sure we are ready to get
3432 		 * packets immediately.
3433 		 */
3434 		if (refill)
3435 			try_fill_recv(vi, rq, GFP_KERNEL);
3436 
3437 		virtnet_napi_enable(rq);
3438 	}
3439 }
3440 
3441 static void virtnet_rx_resume_all(struct virtnet_info *vi)
3442 {
3443 	int i;
3444 
3445 	for (i = 0; i < vi->max_queue_pairs; i++) {
3446 		if (i < vi->curr_queue_pairs)
3447 			virtnet_rx_resume(vi, &vi->rq[i], true);
3448 		else
3449 			virtnet_rx_resume(vi, &vi->rq[i], false);
3450 	}
3451 }
3452 
3453 static int virtnet_rx_resize(struct virtnet_info *vi,
3454 			     struct receive_queue *rq, u32 ring_num)
3455 {
3456 	unsigned int old_ring_num = virtqueue_get_vring_size(rq->vq);
3457 	struct xdp_buff **tmp_xsk_buffs = NULL;
3458 	int err, qindex;
3459 
3460 	qindex = rq - vi->rq;
3461 
3462 	if (rq->xsk_pool && ring_num > old_ring_num) {
3463 		tmp_xsk_buffs = kvzalloc_objs(*tmp_xsk_buffs, ring_num);
3464 		if (!tmp_xsk_buffs)
3465 			return -ENOMEM;
3466 	}
3467 
3468 	virtnet_rx_pause(vi, rq);
3469 
3470 	err = virtqueue_resize(rq->vq, ring_num, virtnet_rq_unmap_free_buf, NULL);
3471 
3472 	/* virtqueue_resize may have changed the size even if err != 0 */
3473 	if (tmp_xsk_buffs && virtqueue_get_vring_size(rq->vq) > old_ring_num)
3474 		swap(rq->xsk_buffs, tmp_xsk_buffs);
3475 
3476 	if (err)
3477 		netdev_err(vi->dev, "resize rx fail: rx queue index: %d err: %d\n", qindex, err);
3478 
3479 	virtnet_rx_resume(vi, rq, true);
3480 	kvfree(tmp_xsk_buffs);
3481 	return err;
3482 }
3483 
3484 static void virtnet_tx_pause(struct virtnet_info *vi, struct send_queue *sq)
3485 {
3486 	bool running = netif_running(vi->dev);
3487 	struct netdev_queue *txq;
3488 	int qindex;
3489 
3490 	qindex = sq - vi->sq;
3491 
3492 	if (running)
3493 		virtnet_napi_tx_disable(sq);
3494 
3495 	txq = netdev_get_tx_queue(vi->dev, qindex);
3496 
3497 	/* 1. wait all ximt complete
3498 	 * 2. fix the race of netif_stop_subqueue() vs netif_start_subqueue()
3499 	 */
3500 	__netif_tx_lock_bh(txq);
3501 
3502 	/* Prevent rx poll from accessing sq. */
3503 	sq->reset = true;
3504 
3505 	/* Prevent the upper layer from trying to send packets. */
3506 	netif_stop_subqueue(vi->dev, qindex);
3507 	u64_stats_update_begin(&sq->stats.syncp);
3508 	u64_stats_inc(&sq->stats.stop);
3509 	u64_stats_update_end(&sq->stats.syncp);
3510 
3511 	__netif_tx_unlock_bh(txq);
3512 }
3513 
3514 static void virtnet_tx_resume(struct virtnet_info *vi, struct send_queue *sq)
3515 {
3516 	bool running = netif_running(vi->dev);
3517 	struct netdev_queue *txq;
3518 	int qindex;
3519 
3520 	qindex = sq - vi->sq;
3521 
3522 	txq = netdev_get_tx_queue(vi->dev, qindex);
3523 
3524 	__netif_tx_lock_bh(txq);
3525 	sq->reset = false;
3526 	virtnet_tx_wake_queue(vi, sq);
3527 	__netif_tx_unlock_bh(txq);
3528 
3529 	if (running)
3530 		virtnet_napi_tx_enable(sq);
3531 }
3532 
3533 static int virtnet_tx_resize(struct virtnet_info *vi, struct send_queue *sq,
3534 			     u32 ring_num)
3535 {
3536 	int qindex, err;
3537 
3538 	if (ring_num <= MAX_SKB_FRAGS + 2) {
3539 		netdev_err(vi->dev, "tx size (%d) cannot be smaller than %d\n",
3540 			   ring_num, MAX_SKB_FRAGS + 2);
3541 		return -EINVAL;
3542 	}
3543 
3544 	qindex = sq - vi->sq;
3545 
3546 	virtnet_tx_pause(vi, sq);
3547 
3548 	err = virtqueue_resize(sq->vq, ring_num, virtnet_sq_free_unused_buf,
3549 			       virtnet_sq_free_unused_buf_done);
3550 	if (err)
3551 		netdev_err(vi->dev, "resize tx fail: tx queue index: %d err: %d\n", qindex, err);
3552 
3553 	virtnet_tx_resume(vi, sq);
3554 
3555 	return err;
3556 }
3557 
3558 /*
3559  * Send command via the control virtqueue and check status.  Commands
3560  * supported by the hypervisor, as indicated by feature bits, should
3561  * never fail unless improperly formatted.
3562  */
3563 static bool virtnet_send_command_reply(struct virtnet_info *vi, u8 class, u8 cmd,
3564 				       struct scatterlist *out,
3565 				       struct scatterlist *in)
3566 {
3567 	struct scatterlist *sgs[5], hdr, stat;
3568 	u32 out_num = 0, tmp, in_num = 0;
3569 	bool ok;
3570 	int ret;
3571 
3572 	/* Caller should know better */
3573 	BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
3574 
3575 	mutex_lock(&vi->cvq_lock);
3576 	vi->ctrl->status = ~0;
3577 	vi->ctrl->hdr.class = class;
3578 	vi->ctrl->hdr.cmd = cmd;
3579 	/* Add header */
3580 	sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
3581 	sgs[out_num++] = &hdr;
3582 
3583 	if (out)
3584 		sgs[out_num++] = out;
3585 
3586 	/* Add return status. */
3587 	sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
3588 	sgs[out_num + in_num++] = &stat;
3589 
3590 	if (in)
3591 		sgs[out_num + in_num++] = in;
3592 
3593 	BUG_ON(out_num + in_num > ARRAY_SIZE(sgs));
3594 	ret = virtqueue_add_sgs(vi->cvq, sgs, out_num, in_num, vi, GFP_ATOMIC);
3595 	if (ret < 0) {
3596 		dev_warn(&vi->vdev->dev,
3597 			 "Failed to add sgs for command vq: %d\n.", ret);
3598 		mutex_unlock(&vi->cvq_lock);
3599 		return false;
3600 	}
3601 
3602 	if (unlikely(!virtqueue_kick(vi->cvq)))
3603 		goto unlock;
3604 
3605 	/* Spin for a response, the kick causes an ioport write, trapping
3606 	 * into the hypervisor, so the request should be handled immediately.
3607 	 */
3608 	while (!virtqueue_get_buf(vi->cvq, &tmp) &&
3609 	       !virtqueue_is_broken(vi->cvq)) {
3610 		cond_resched();
3611 		cpu_relax();
3612 	}
3613 
3614 unlock:
3615 	ok = vi->ctrl->status == VIRTIO_NET_OK;
3616 	mutex_unlock(&vi->cvq_lock);
3617 	return ok;
3618 }
3619 
3620 static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
3621 				 struct scatterlist *out)
3622 {
3623 	return virtnet_send_command_reply(vi, class, cmd, out, NULL);
3624 }
3625 
3626 static int virtnet_set_mac_address(struct net_device *dev, void *p)
3627 {
3628 	struct virtnet_info *vi = netdev_priv(dev);
3629 	struct virtio_device *vdev = vi->vdev;
3630 	int ret;
3631 	struct sockaddr *addr;
3632 	struct scatterlist sg;
3633 
3634 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
3635 		return -EOPNOTSUPP;
3636 
3637 	addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
3638 	if (!addr)
3639 		return -ENOMEM;
3640 
3641 	ret = eth_prepare_mac_addr_change(dev, addr);
3642 	if (ret)
3643 		goto out;
3644 
3645 	if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
3646 		sg_init_one(&sg, addr->sa_data, dev->addr_len);
3647 		if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
3648 					  VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
3649 			dev_warn(&vdev->dev,
3650 				 "Failed to set mac address by vq command.\n");
3651 			ret = -EINVAL;
3652 			goto out;
3653 		}
3654 	} else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
3655 		   !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
3656 		unsigned int i;
3657 
3658 		/* Naturally, this has an atomicity problem. */
3659 		for (i = 0; i < dev->addr_len; i++)
3660 			virtio_cwrite8(vdev,
3661 				       offsetof(struct virtio_net_config, mac) +
3662 				       i, addr->sa_data[i]);
3663 	}
3664 
3665 	eth_commit_mac_addr_change(dev, p);
3666 	ret = 0;
3667 
3668 out:
3669 	kfree(addr);
3670 	return ret;
3671 }
3672 
3673 static void virtnet_stats(struct net_device *dev,
3674 			  struct rtnl_link_stats64 *tot)
3675 {
3676 	struct virtnet_info *vi = netdev_priv(dev);
3677 	unsigned int start;
3678 	int i;
3679 
3680 	for (i = 0; i < vi->max_queue_pairs; i++) {
3681 		u64 tpackets, tbytes, terrors, rpackets, rbytes, rdrops;
3682 		struct receive_queue *rq = &vi->rq[i];
3683 		struct send_queue *sq = &vi->sq[i];
3684 
3685 		do {
3686 			start = u64_stats_fetch_begin(&sq->stats.syncp);
3687 			tpackets = u64_stats_read(&sq->stats.packets);
3688 			tbytes   = u64_stats_read(&sq->stats.bytes);
3689 			terrors  = u64_stats_read(&sq->stats.tx_timeouts);
3690 		} while (u64_stats_fetch_retry(&sq->stats.syncp, start));
3691 
3692 		do {
3693 			start = u64_stats_fetch_begin(&rq->stats.syncp);
3694 			rpackets = u64_stats_read(&rq->stats.packets);
3695 			rbytes   = u64_stats_read(&rq->stats.bytes);
3696 			rdrops   = u64_stats_read(&rq->stats.drops);
3697 		} while (u64_stats_fetch_retry(&rq->stats.syncp, start));
3698 
3699 		tot->rx_packets += rpackets;
3700 		tot->tx_packets += tpackets;
3701 		tot->rx_bytes   += rbytes;
3702 		tot->tx_bytes   += tbytes;
3703 		tot->rx_dropped += rdrops;
3704 		tot->tx_errors  += terrors;
3705 	}
3706 
3707 	tot->tx_dropped = DEV_STATS_READ(dev, tx_dropped);
3708 	tot->tx_fifo_errors = DEV_STATS_READ(dev, tx_fifo_errors);
3709 	tot->rx_length_errors = DEV_STATS_READ(dev, rx_length_errors);
3710 	tot->rx_frame_errors = DEV_STATS_READ(dev, rx_frame_errors);
3711 }
3712 
3713 static void virtnet_ack_link_announce(struct virtnet_info *vi)
3714 {
3715 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
3716 				  VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
3717 		dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
3718 }
3719 
3720 static bool virtnet_commit_rss_command(struct virtnet_info *vi);
3721 
3722 static void virtnet_rss_update_by_qpairs(struct virtnet_info *vi, u16 queue_pairs)
3723 {
3724 	u32 indir_val = 0;
3725 	int i = 0;
3726 
3727 	for (; i < vi->rss_indir_table_size; ++i) {
3728 		indir_val = ethtool_rxfh_indir_default(i, queue_pairs);
3729 		vi->rss_hdr->indirection_table[i] = cpu_to_le16(indir_val);
3730 	}
3731 	vi->rss_trailer.max_tx_vq = cpu_to_le16(queue_pairs);
3732 }
3733 
3734 static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
3735 {
3736 	struct virtio_net_ctrl_mq *mq __free(kfree) = NULL;
3737 	struct virtio_net_rss_config_hdr *old_rss_hdr;
3738 	struct virtio_net_rss_config_trailer old_rss_trailer;
3739 	struct net_device *dev = vi->dev;
3740 	struct scatterlist sg;
3741 
3742 	if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
3743 		return 0;
3744 
3745 	/* Firstly check if we need update rss. Do updating if both (1) rss enabled and
3746 	 * (2) no user configuration.
3747 	 *
3748 	 * During rss command processing, device updates queue_pairs using rss.max_tx_vq. That is,
3749 	 * the device updates queue_pairs together with rss, so we can skip the separate queue_pairs
3750 	 * update (VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET below) and return directly.
3751 	 */
3752 	if (vi->has_rss && !netif_is_rxfh_configured(dev)) {
3753 		old_rss_hdr = vi->rss_hdr;
3754 		old_rss_trailer = vi->rss_trailer;
3755 		vi->rss_hdr = devm_kzalloc(&vi->vdev->dev, virtnet_rss_hdr_size(vi), GFP_KERNEL);
3756 		if (!vi->rss_hdr) {
3757 			vi->rss_hdr = old_rss_hdr;
3758 			return -ENOMEM;
3759 		}
3760 
3761 		*vi->rss_hdr = *old_rss_hdr;
3762 		virtnet_rss_update_by_qpairs(vi, queue_pairs);
3763 
3764 		if (!virtnet_commit_rss_command(vi)) {
3765 			/* restore ctrl_rss if commit_rss_command failed */
3766 			devm_kfree(&vi->vdev->dev, vi->rss_hdr);
3767 			vi->rss_hdr = old_rss_hdr;
3768 			vi->rss_trailer = old_rss_trailer;
3769 
3770 			dev_warn(&dev->dev, "Fail to set num of queue pairs to %d, because committing RSS failed\n",
3771 				 queue_pairs);
3772 			return -EINVAL;
3773 		}
3774 		devm_kfree(&vi->vdev->dev, old_rss_hdr);
3775 		goto succ;
3776 	}
3777 
3778 	mq = kzalloc_obj(*mq);
3779 	if (!mq)
3780 		return -ENOMEM;
3781 
3782 	mq->virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
3783 	sg_init_one(&sg, mq, sizeof(*mq));
3784 
3785 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
3786 				  VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
3787 		dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
3788 			 queue_pairs);
3789 		return -EINVAL;
3790 	}
3791 
3792 	/* Keep max_tx_vq in sync so that a later RSS command does not
3793 	 * revert queue_pairs to a stale value.
3794 	 */
3795 	if (vi->has_rss)
3796 		vi->rss_trailer.max_tx_vq = cpu_to_le16(queue_pairs);
3797 succ:
3798 	vi->curr_queue_pairs = queue_pairs;
3799 	if (dev->flags & IFF_UP) {
3800 		local_bh_disable();
3801 		for (int i = 0; i < vi->curr_queue_pairs; ++i)
3802 			virtqueue_napi_schedule(&vi->rq[i].napi, vi->rq[i].vq);
3803 		local_bh_enable();
3804 	}
3805 
3806 	return 0;
3807 }
3808 
3809 static int virtnet_close(struct net_device *dev)
3810 {
3811 	struct virtnet_info *vi = netdev_priv(dev);
3812 	int i;
3813 
3814 	/* Prevent the config change callback from changing carrier
3815 	 * after close
3816 	 */
3817 	virtio_config_driver_disable(vi->vdev);
3818 	/* Stop getting status/speed updates: we don't care until next
3819 	 * open
3820 	 */
3821 	cancel_work_sync(&vi->config_work);
3822 
3823 	for (i = 0; i < vi->max_queue_pairs; i++) {
3824 		virtnet_disable_queue_pair(vi, i);
3825 		virtnet_cancel_dim(vi, &vi->rq[i].dim);
3826 	}
3827 
3828 	netif_carrier_off(dev);
3829 
3830 	return 0;
3831 }
3832 
3833 static void virtnet_rx_mode_work(struct work_struct *work)
3834 {
3835 	struct virtnet_info *vi =
3836 		container_of(work, struct virtnet_info, rx_mode_work);
3837 	u8 *promisc_allmulti  __free(kfree) = NULL;
3838 	struct net_device *dev = vi->dev;
3839 	struct scatterlist sg[2];
3840 	struct virtio_net_ctrl_mac *mac_data;
3841 	struct netdev_hw_addr *ha;
3842 	int uc_count;
3843 	int mc_count;
3844 	void *buf;
3845 	int i;
3846 
3847 	/* We can't dynamically set ndo_set_rx_mode, so return gracefully */
3848 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
3849 		return;
3850 
3851 	promisc_allmulti = kzalloc_obj(*promisc_allmulti);
3852 	if (!promisc_allmulti) {
3853 		dev_warn(&dev->dev, "Failed to set RX mode, no memory.\n");
3854 		return;
3855 	}
3856 
3857 	rtnl_lock();
3858 
3859 	*promisc_allmulti = !!(dev->flags & IFF_PROMISC);
3860 	sg_init_one(sg, promisc_allmulti, sizeof(*promisc_allmulti));
3861 
3862 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
3863 				  VIRTIO_NET_CTRL_RX_PROMISC, sg))
3864 		dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
3865 			 *promisc_allmulti ? "en" : "dis");
3866 
3867 	*promisc_allmulti = !!(dev->flags & IFF_ALLMULTI);
3868 	sg_init_one(sg, promisc_allmulti, sizeof(*promisc_allmulti));
3869 
3870 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
3871 				  VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
3872 		dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
3873 			 *promisc_allmulti ? "en" : "dis");
3874 
3875 	netif_addr_lock_bh(dev);
3876 
3877 	uc_count = netdev_uc_count(dev);
3878 	mc_count = netdev_mc_count(dev);
3879 	/* MAC filter - use one buffer for both lists */
3880 	buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
3881 		      (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
3882 	mac_data = buf;
3883 	if (!buf) {
3884 		netif_addr_unlock_bh(dev);
3885 		rtnl_unlock();
3886 		return;
3887 	}
3888 
3889 	sg_init_table(sg, 2);
3890 
3891 	/* Store the unicast list and count in the front of the buffer */
3892 	mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
3893 	i = 0;
3894 	netdev_for_each_uc_addr(ha, dev)
3895 		memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
3896 
3897 	sg_set_buf(&sg[0], mac_data,
3898 		   sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
3899 
3900 	/* multicast list and count fill the end */
3901 	mac_data = (void *)&mac_data->macs[uc_count][0];
3902 
3903 	mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
3904 	i = 0;
3905 	netdev_for_each_mc_addr(ha, dev)
3906 		memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
3907 
3908 	netif_addr_unlock_bh(dev);
3909 
3910 	sg_set_buf(&sg[1], mac_data,
3911 		   sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
3912 
3913 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
3914 				  VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
3915 		dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
3916 
3917 	rtnl_unlock();
3918 
3919 	kfree(buf);
3920 }
3921 
3922 static void virtnet_set_rx_mode(struct net_device *dev)
3923 {
3924 	struct virtnet_info *vi = netdev_priv(dev);
3925 
3926 	if (vi->rx_mode_work_enabled)
3927 		schedule_work(&vi->rx_mode_work);
3928 }
3929 
3930 static int virtnet_vlan_rx_add_vid(struct net_device *dev,
3931 				   __be16 proto, u16 vid)
3932 {
3933 	struct virtnet_info *vi = netdev_priv(dev);
3934 	__virtio16 *_vid __free(kfree) = NULL;
3935 	struct scatterlist sg;
3936 
3937 	_vid = kzalloc_obj(*_vid);
3938 	if (!_vid)
3939 		return -ENOMEM;
3940 
3941 	*_vid = cpu_to_virtio16(vi->vdev, vid);
3942 	sg_init_one(&sg, _vid, sizeof(*_vid));
3943 
3944 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
3945 				  VIRTIO_NET_CTRL_VLAN_ADD, &sg))
3946 		dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
3947 	return 0;
3948 }
3949 
3950 static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
3951 				    __be16 proto, u16 vid)
3952 {
3953 	struct virtnet_info *vi = netdev_priv(dev);
3954 	__virtio16 *_vid __free(kfree) = NULL;
3955 	struct scatterlist sg;
3956 
3957 	_vid = kzalloc_obj(*_vid);
3958 	if (!_vid)
3959 		return -ENOMEM;
3960 
3961 	*_vid = cpu_to_virtio16(vi->vdev, vid);
3962 	sg_init_one(&sg, _vid, sizeof(*_vid));
3963 
3964 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
3965 				  VIRTIO_NET_CTRL_VLAN_DEL, &sg))
3966 		dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
3967 	return 0;
3968 }
3969 
3970 static void virtnet_clean_affinity(struct virtnet_info *vi)
3971 {
3972 	int i;
3973 
3974 	if (vi->affinity_hint_set) {
3975 		for (i = 0; i < vi->max_queue_pairs; i++) {
3976 			virtqueue_set_affinity(vi->rq[i].vq, NULL);
3977 			virtqueue_set_affinity(vi->sq[i].vq, NULL);
3978 		}
3979 
3980 		vi->affinity_hint_set = false;
3981 	}
3982 }
3983 
3984 static void virtnet_set_affinity(struct virtnet_info *vi)
3985 {
3986 	cpumask_var_t mask;
3987 	int stragglers;
3988 	int group_size;
3989 	int i, start = 0, cpu;
3990 	int num_cpu;
3991 	int stride;
3992 
3993 	if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) {
3994 		virtnet_clean_affinity(vi);
3995 		return;
3996 	}
3997 
3998 	num_cpu = num_online_cpus();
3999 	stride = max_t(int, num_cpu / vi->curr_queue_pairs, 1);
4000 	stragglers = num_cpu >= vi->curr_queue_pairs ?
4001 			num_cpu % vi->curr_queue_pairs :
4002 			0;
4003 
4004 	for (i = 0; i < vi->curr_queue_pairs; i++) {
4005 		group_size = stride + (i < stragglers ? 1 : 0);
4006 
4007 		for_each_online_cpu_wrap(cpu, start) {
4008 			if (!group_size--) {
4009 				start = cpu;
4010 				break;
4011 			}
4012 			cpumask_set_cpu(cpu, mask);
4013 		}
4014 
4015 		virtqueue_set_affinity(vi->rq[i].vq, mask);
4016 		virtqueue_set_affinity(vi->sq[i].vq, mask);
4017 		__netif_set_xps_queue(vi->dev, cpumask_bits(mask), i, XPS_CPUS);
4018 		cpumask_clear(mask);
4019 	}
4020 
4021 	vi->affinity_hint_set = true;
4022 	free_cpumask_var(mask);
4023 }
4024 
4025 static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
4026 {
4027 	struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
4028 						   node);
4029 	virtnet_set_affinity(vi);
4030 	return 0;
4031 }
4032 
4033 static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
4034 {
4035 	struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
4036 						   node_dead);
4037 	virtnet_set_affinity(vi);
4038 	return 0;
4039 }
4040 
4041 static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
4042 {
4043 	struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
4044 						   node);
4045 
4046 	virtnet_clean_affinity(vi);
4047 	return 0;
4048 }
4049 
4050 static enum cpuhp_state virtionet_online;
4051 
4052 static int virtnet_cpu_notif_add(struct virtnet_info *vi)
4053 {
4054 	int ret;
4055 
4056 	ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
4057 	if (ret)
4058 		return ret;
4059 	ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
4060 					       &vi->node_dead);
4061 	if (!ret)
4062 		return ret;
4063 	cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
4064 	return ret;
4065 }
4066 
4067 static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
4068 {
4069 	cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
4070 	cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
4071 					    &vi->node_dead);
4072 }
4073 
4074 static int virtnet_send_ctrl_coal_vq_cmd(struct virtnet_info *vi,
4075 					 u16 vqn, u32 max_usecs, u32 max_packets)
4076 {
4077 	struct virtio_net_ctrl_coal_vq *coal_vq __free(kfree) = NULL;
4078 	struct scatterlist sgs;
4079 
4080 	coal_vq = kzalloc_obj(*coal_vq);
4081 	if (!coal_vq)
4082 		return -ENOMEM;
4083 
4084 	coal_vq->vqn = cpu_to_le16(vqn);
4085 	coal_vq->coal.max_usecs = cpu_to_le32(max_usecs);
4086 	coal_vq->coal.max_packets = cpu_to_le32(max_packets);
4087 	sg_init_one(&sgs, coal_vq, sizeof(*coal_vq));
4088 
4089 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL,
4090 				  VIRTIO_NET_CTRL_NOTF_COAL_VQ_SET,
4091 				  &sgs))
4092 		return -EINVAL;
4093 
4094 	return 0;
4095 }
4096 
4097 static int virtnet_send_rx_ctrl_coal_vq_cmd(struct virtnet_info *vi,
4098 					    u16 queue, u32 max_usecs,
4099 					    u32 max_packets)
4100 {
4101 	int err;
4102 
4103 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL))
4104 		return -EOPNOTSUPP;
4105 
4106 	err = virtnet_send_ctrl_coal_vq_cmd(vi, rxq2vq(queue),
4107 					    max_usecs, max_packets);
4108 	if (err)
4109 		return err;
4110 
4111 	vi->rq[queue].intr_coal.max_usecs = max_usecs;
4112 	vi->rq[queue].intr_coal.max_packets = max_packets;
4113 
4114 	return 0;
4115 }
4116 
4117 static int virtnet_send_tx_ctrl_coal_vq_cmd(struct virtnet_info *vi,
4118 					    u16 queue, u32 max_usecs,
4119 					    u32 max_packets)
4120 {
4121 	int err;
4122 
4123 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL))
4124 		return -EOPNOTSUPP;
4125 
4126 	err = virtnet_send_ctrl_coal_vq_cmd(vi, txq2vq(queue),
4127 					    max_usecs, max_packets);
4128 	if (err)
4129 		return err;
4130 
4131 	vi->sq[queue].intr_coal.max_usecs = max_usecs;
4132 	vi->sq[queue].intr_coal.max_packets = max_packets;
4133 
4134 	return 0;
4135 }
4136 
4137 static void virtnet_get_ringparam(struct net_device *dev,
4138 				  struct ethtool_ringparam *ring,
4139 				  struct kernel_ethtool_ringparam *kernel_ring,
4140 				  struct netlink_ext_ack *extack)
4141 {
4142 	struct virtnet_info *vi = netdev_priv(dev);
4143 
4144 	ring->rx_max_pending = vi->rq[0].vq->num_max;
4145 	ring->tx_max_pending = vi->sq[0].vq->num_max;
4146 	ring->rx_pending = virtqueue_get_vring_size(vi->rq[0].vq);
4147 	ring->tx_pending = virtqueue_get_vring_size(vi->sq[0].vq);
4148 }
4149 
4150 static int virtnet_set_ringparam(struct net_device *dev,
4151 				 struct ethtool_ringparam *ring,
4152 				 struct kernel_ethtool_ringparam *kernel_ring,
4153 				 struct netlink_ext_ack *extack)
4154 {
4155 	struct virtnet_info *vi = netdev_priv(dev);
4156 	u32 rx_pending, tx_pending;
4157 	struct receive_queue *rq;
4158 	struct send_queue *sq;
4159 	int i, err;
4160 
4161 	if (ring->rx_mini_pending || ring->rx_jumbo_pending)
4162 		return -EINVAL;
4163 
4164 	rx_pending = virtqueue_get_vring_size(vi->rq[0].vq);
4165 	tx_pending = virtqueue_get_vring_size(vi->sq[0].vq);
4166 
4167 	if (ring->rx_pending == rx_pending &&
4168 	    ring->tx_pending == tx_pending)
4169 		return 0;
4170 
4171 	if (ring->rx_pending > vi->rq[0].vq->num_max)
4172 		return -EINVAL;
4173 
4174 	if (ring->tx_pending > vi->sq[0].vq->num_max)
4175 		return -EINVAL;
4176 
4177 	for (i = 0; i < vi->max_queue_pairs; i++) {
4178 		rq = vi->rq + i;
4179 		sq = vi->sq + i;
4180 
4181 		if (ring->tx_pending != tx_pending) {
4182 			err = virtnet_tx_resize(vi, sq, ring->tx_pending);
4183 			if (err)
4184 				return err;
4185 
4186 			/* Upon disabling and re-enabling a transmit virtqueue, the device must
4187 			 * set the coalescing parameters of the virtqueue to those configured
4188 			 * through the VIRTIO_NET_CTRL_NOTF_COAL_TX_SET command, or, if the driver
4189 			 * did not set any TX coalescing parameters, to 0.
4190 			 */
4191 			err = virtnet_send_tx_ctrl_coal_vq_cmd(vi, i,
4192 							       vi->intr_coal_tx.max_usecs,
4193 							       vi->intr_coal_tx.max_packets);
4194 
4195 			/* Don't break the tx resize action if the vq coalescing is not
4196 			 * supported. The same is true for rx resize below.
4197 			 */
4198 			if (err && err != -EOPNOTSUPP)
4199 				return err;
4200 		}
4201 
4202 		if (ring->rx_pending != rx_pending) {
4203 			err = virtnet_rx_resize(vi, rq, ring->rx_pending);
4204 			if (err)
4205 				return err;
4206 
4207 			/* The reason is same as the transmit virtqueue reset */
4208 			mutex_lock(&vi->rq[i].dim_lock);
4209 			err = virtnet_send_rx_ctrl_coal_vq_cmd(vi, i,
4210 							       vi->intr_coal_rx.max_usecs,
4211 							       vi->intr_coal_rx.max_packets);
4212 			mutex_unlock(&vi->rq[i].dim_lock);
4213 			if (err && err != -EOPNOTSUPP)
4214 				return err;
4215 		}
4216 	}
4217 
4218 	return 0;
4219 }
4220 
4221 static bool virtnet_commit_rss_command(struct virtnet_info *vi)
4222 {
4223 	struct net_device *dev = vi->dev;
4224 	struct scatterlist sgs[2];
4225 
4226 	/* prepare sgs */
4227 	sg_init_table(sgs, 2);
4228 	sg_set_buf(&sgs[0], vi->rss_hdr, virtnet_rss_hdr_size(vi));
4229 	sg_set_buf(&sgs[1], &vi->rss_trailer, virtnet_rss_trailer_size(vi));
4230 
4231 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
4232 				  vi->has_rss ? VIRTIO_NET_CTRL_MQ_RSS_CONFIG
4233 				  : VIRTIO_NET_CTRL_MQ_HASH_CONFIG, sgs))
4234 		goto err;
4235 
4236 	return true;
4237 
4238 err:
4239 	dev_warn(&dev->dev, "VIRTIONET issue with committing RSS sgs\n");
4240 	return false;
4241 
4242 }
4243 
4244 static void virtnet_init_default_rss(struct virtnet_info *vi)
4245 {
4246 	vi->rss_hdr->hash_types = cpu_to_le32(vi->rss_hash_types_supported);
4247 	vi->rss_hash_types_saved = vi->rss_hash_types_supported;
4248 	vi->rss_hdr->indirection_table_mask = vi->rss_indir_table_size
4249 						? cpu_to_le16(vi->rss_indir_table_size - 1) : 0;
4250 	vi->rss_hdr->unclassified_queue = 0;
4251 
4252 	virtnet_rss_update_by_qpairs(vi, vi->curr_queue_pairs);
4253 
4254 	vi->rss_trailer.hash_key_length = vi->rss_key_size;
4255 
4256 	netdev_rss_key_fill(vi->rss_hash_key_data, vi->rss_key_size);
4257 }
4258 
4259 static int virtnet_get_hashflow(struct net_device *dev,
4260 				struct ethtool_rxfh_fields *info)
4261 {
4262 	struct virtnet_info *vi = netdev_priv(dev);
4263 
4264 	info->data = 0;
4265 	switch (info->flow_type) {
4266 	case TCP_V4_FLOW:
4267 		if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_TCPv4) {
4268 			info->data = RXH_IP_SRC | RXH_IP_DST |
4269 						 RXH_L4_B_0_1 | RXH_L4_B_2_3;
4270 		} else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4) {
4271 			info->data = RXH_IP_SRC | RXH_IP_DST;
4272 		}
4273 		break;
4274 	case TCP_V6_FLOW:
4275 		if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_TCPv6) {
4276 			info->data = RXH_IP_SRC | RXH_IP_DST |
4277 						 RXH_L4_B_0_1 | RXH_L4_B_2_3;
4278 		} else 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 	case UDP_V4_FLOW:
4283 		if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_UDPv4) {
4284 			info->data = RXH_IP_SRC | RXH_IP_DST |
4285 						 RXH_L4_B_0_1 | RXH_L4_B_2_3;
4286 		} else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4) {
4287 			info->data = RXH_IP_SRC | RXH_IP_DST;
4288 		}
4289 		break;
4290 	case UDP_V6_FLOW:
4291 		if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_UDPv6) {
4292 			info->data = RXH_IP_SRC | RXH_IP_DST |
4293 						 RXH_L4_B_0_1 | RXH_L4_B_2_3;
4294 		} else if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6) {
4295 			info->data = RXH_IP_SRC | RXH_IP_DST;
4296 		}
4297 		break;
4298 	case IPV4_FLOW:
4299 		if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv4)
4300 			info->data = RXH_IP_SRC | RXH_IP_DST;
4301 
4302 		break;
4303 	case IPV6_FLOW:
4304 		if (vi->rss_hash_types_saved & VIRTIO_NET_RSS_HASH_TYPE_IPv6)
4305 			info->data = RXH_IP_SRC | RXH_IP_DST;
4306 
4307 		break;
4308 	default:
4309 		info->data = 0;
4310 		break;
4311 	}
4312 
4313 	return 0;
4314 }
4315 
4316 static int virtnet_set_hashflow(struct net_device *dev,
4317 				const struct ethtool_rxfh_fields *info,
4318 				struct netlink_ext_ack *extack)
4319 {
4320 	struct virtnet_info *vi = netdev_priv(dev);
4321 	u32 new_hashtypes = vi->rss_hash_types_saved;
4322 	bool is_disable = info->data & RXH_DISCARD;
4323 	bool is_l4 = info->data == (RXH_IP_SRC | RXH_IP_DST | RXH_L4_B_0_1 | RXH_L4_B_2_3);
4324 
4325 	/* supports only 'sd', 'sdfn' and 'r' */
4326 	if (!((info->data == (RXH_IP_SRC | RXH_IP_DST)) | is_l4 | is_disable))
4327 		return -EINVAL;
4328 
4329 	switch (info->flow_type) {
4330 	case TCP_V4_FLOW:
4331 		new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv4 | VIRTIO_NET_RSS_HASH_TYPE_TCPv4);
4332 		if (!is_disable)
4333 			new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv4
4334 				| (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_TCPv4 : 0);
4335 		break;
4336 	case UDP_V4_FLOW:
4337 		new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv4 | VIRTIO_NET_RSS_HASH_TYPE_UDPv4);
4338 		if (!is_disable)
4339 			new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv4
4340 				| (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_UDPv4 : 0);
4341 		break;
4342 	case IPV4_FLOW:
4343 		new_hashtypes &= ~VIRTIO_NET_RSS_HASH_TYPE_IPv4;
4344 		if (!is_disable)
4345 			new_hashtypes = VIRTIO_NET_RSS_HASH_TYPE_IPv4;
4346 		break;
4347 	case TCP_V6_FLOW:
4348 		new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv6 | VIRTIO_NET_RSS_HASH_TYPE_TCPv6);
4349 		if (!is_disable)
4350 			new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv6
4351 				| (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_TCPv6 : 0);
4352 		break;
4353 	case UDP_V6_FLOW:
4354 		new_hashtypes &= ~(VIRTIO_NET_RSS_HASH_TYPE_IPv6 | VIRTIO_NET_RSS_HASH_TYPE_UDPv6);
4355 		if (!is_disable)
4356 			new_hashtypes |= VIRTIO_NET_RSS_HASH_TYPE_IPv6
4357 				| (is_l4 ? VIRTIO_NET_RSS_HASH_TYPE_UDPv6 : 0);
4358 		break;
4359 	case IPV6_FLOW:
4360 		new_hashtypes &= ~VIRTIO_NET_RSS_HASH_TYPE_IPv6;
4361 		if (!is_disable)
4362 			new_hashtypes = VIRTIO_NET_RSS_HASH_TYPE_IPv6;
4363 		break;
4364 	default:
4365 		/* unsupported flow */
4366 		return -EINVAL;
4367 	}
4368 
4369 	/* if unsupported hashtype was set */
4370 	if (new_hashtypes != (new_hashtypes & vi->rss_hash_types_supported))
4371 		return -EINVAL;
4372 
4373 	if (new_hashtypes != vi->rss_hash_types_saved) {
4374 		vi->rss_hash_types_saved = new_hashtypes;
4375 		vi->rss_hdr->hash_types = cpu_to_le32(vi->rss_hash_types_saved);
4376 		if (vi->dev->features & NETIF_F_RXHASH)
4377 			if (!virtnet_commit_rss_command(vi))
4378 				return -EINVAL;
4379 	}
4380 
4381 	return 0;
4382 }
4383 
4384 static void virtnet_get_drvinfo(struct net_device *dev,
4385 				struct ethtool_drvinfo *info)
4386 {
4387 	struct virtnet_info *vi = netdev_priv(dev);
4388 	struct virtio_device *vdev = vi->vdev;
4389 
4390 	strscpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
4391 	strscpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
4392 	strscpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
4393 
4394 }
4395 
4396 /* TODO: Eliminate OOO packets during switching */
4397 static int virtnet_set_channels(struct net_device *dev,
4398 				struct ethtool_channels *channels)
4399 {
4400 	struct virtnet_info *vi = netdev_priv(dev);
4401 	u16 queue_pairs = channels->combined_count;
4402 	int err;
4403 
4404 	/* We don't support separate rx/tx channels.
4405 	 * We don't allow setting 'other' channels.
4406 	 */
4407 	if (channels->rx_count || channels->tx_count || channels->other_count)
4408 		return -EINVAL;
4409 
4410 	if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
4411 		return -EINVAL;
4412 
4413 	/* For now we don't support modifying channels while XDP is loaded
4414 	 * also when XDP is loaded all RX queues have XDP programs so we only
4415 	 * need to check a single RX queue.
4416 	 */
4417 	if (vi->rq[0].xdp_prog)
4418 		return -EINVAL;
4419 
4420 	cpus_read_lock();
4421 	err = virtnet_set_queues(vi, queue_pairs);
4422 	if (err) {
4423 		cpus_read_unlock();
4424 		goto err;
4425 	}
4426 	virtnet_set_affinity(vi);
4427 	cpus_read_unlock();
4428 
4429 	netif_set_real_num_tx_queues(dev, queue_pairs);
4430 	netif_set_real_num_rx_queues(dev, queue_pairs);
4431  err:
4432 	return err;
4433 }
4434 
4435 static void virtnet_stats_sprintf(u8 **p, const char *fmt, const char *noq_fmt,
4436 				  int num, int qid, const struct virtnet_stat_desc *desc)
4437 {
4438 	int i;
4439 
4440 	if (qid < 0) {
4441 		for (i = 0; i < num; ++i)
4442 			ethtool_sprintf(p, noq_fmt, desc[i].desc);
4443 	} else {
4444 		for (i = 0; i < num; ++i)
4445 			ethtool_sprintf(p, fmt, qid, desc[i].desc);
4446 	}
4447 }
4448 
4449 /* qid == -1: for rx/tx queue total field */
4450 static void virtnet_get_stats_string(struct virtnet_info *vi, int type, int qid, u8 **data)
4451 {
4452 	const struct virtnet_stat_desc *desc;
4453 	const char *fmt, *noq_fmt;
4454 	u8 *p = *data;
4455 	u32 num;
4456 
4457 	if (type == VIRTNET_Q_TYPE_CQ && qid >= 0) {
4458 		noq_fmt = "cq_hw_%s";
4459 
4460 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_CVQ) {
4461 			desc = &virtnet_stats_cvq_desc[0];
4462 			num = ARRAY_SIZE(virtnet_stats_cvq_desc);
4463 
4464 			virtnet_stats_sprintf(&p, NULL, noq_fmt, num, -1, desc);
4465 		}
4466 	}
4467 
4468 	if (type == VIRTNET_Q_TYPE_RX) {
4469 		fmt = "rx%u_%s";
4470 		noq_fmt = "rx_%s";
4471 
4472 		desc = &virtnet_rq_stats_desc[0];
4473 		num = ARRAY_SIZE(virtnet_rq_stats_desc);
4474 
4475 		virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
4476 
4477 		fmt = "rx%u_hw_%s";
4478 		noq_fmt = "rx_hw_%s";
4479 
4480 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) {
4481 			desc = &virtnet_stats_rx_basic_desc[0];
4482 			num = ARRAY_SIZE(virtnet_stats_rx_basic_desc);
4483 
4484 			virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
4485 		}
4486 
4487 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) {
4488 			desc = &virtnet_stats_rx_csum_desc[0];
4489 			num = ARRAY_SIZE(virtnet_stats_rx_csum_desc);
4490 
4491 			virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
4492 		}
4493 
4494 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) {
4495 			desc = &virtnet_stats_rx_speed_desc[0];
4496 			num = ARRAY_SIZE(virtnet_stats_rx_speed_desc);
4497 
4498 			virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
4499 		}
4500 	}
4501 
4502 	if (type == VIRTNET_Q_TYPE_TX) {
4503 		fmt = "tx%u_%s";
4504 		noq_fmt = "tx_%s";
4505 
4506 		desc = &virtnet_sq_stats_desc[0];
4507 		num = ARRAY_SIZE(virtnet_sq_stats_desc);
4508 
4509 		virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
4510 
4511 		fmt = "tx%u_hw_%s";
4512 		noq_fmt = "tx_hw_%s";
4513 
4514 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) {
4515 			desc = &virtnet_stats_tx_basic_desc[0];
4516 			num = ARRAY_SIZE(virtnet_stats_tx_basic_desc);
4517 
4518 			virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
4519 		}
4520 
4521 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) {
4522 			desc = &virtnet_stats_tx_gso_desc[0];
4523 			num = ARRAY_SIZE(virtnet_stats_tx_gso_desc);
4524 
4525 			virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
4526 		}
4527 
4528 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) {
4529 			desc = &virtnet_stats_tx_speed_desc[0];
4530 			num = ARRAY_SIZE(virtnet_stats_tx_speed_desc);
4531 
4532 			virtnet_stats_sprintf(&p, fmt, noq_fmt, num, qid, desc);
4533 		}
4534 	}
4535 
4536 	*data = p;
4537 }
4538 
4539 struct virtnet_stats_ctx {
4540 	/* The stats are write to qstats or ethtool -S */
4541 	bool to_qstat;
4542 
4543 	/* Used to calculate the offset inside the output buffer. */
4544 	u32 desc_num[3];
4545 
4546 	/* The actual supported stat types. */
4547 	u64 bitmap[3];
4548 
4549 	/* Used to calculate the reply buffer size. */
4550 	u32 size[3];
4551 
4552 	/* Record the output buffer. */
4553 	u64 *data;
4554 };
4555 
4556 static void virtnet_stats_ctx_init(struct virtnet_info *vi,
4557 				   struct virtnet_stats_ctx *ctx,
4558 				   u64 *data, bool to_qstat)
4559 {
4560 	u32 queue_type;
4561 
4562 	ctx->data = data;
4563 	ctx->to_qstat = to_qstat;
4564 
4565 	if (to_qstat) {
4566 		ctx->desc_num[VIRTNET_Q_TYPE_RX] = ARRAY_SIZE(virtnet_rq_stats_desc_qstat);
4567 		ctx->desc_num[VIRTNET_Q_TYPE_TX] = ARRAY_SIZE(virtnet_sq_stats_desc_qstat);
4568 
4569 		queue_type = VIRTNET_Q_TYPE_RX;
4570 
4571 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) {
4572 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_BASIC;
4573 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_basic_desc_qstat);
4574 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_basic);
4575 		}
4576 
4577 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) {
4578 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_CSUM;
4579 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_csum_desc_qstat);
4580 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_csum);
4581 		}
4582 
4583 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_GSO) {
4584 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_GSO;
4585 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_gso_desc_qstat);
4586 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_gso);
4587 		}
4588 
4589 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) {
4590 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_SPEED;
4591 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_speed_desc_qstat);
4592 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_speed);
4593 		}
4594 
4595 		queue_type = VIRTNET_Q_TYPE_TX;
4596 
4597 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) {
4598 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_BASIC;
4599 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_basic_desc_qstat);
4600 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_basic);
4601 		}
4602 
4603 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_CSUM) {
4604 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_CSUM;
4605 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_csum_desc_qstat);
4606 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_csum);
4607 		}
4608 
4609 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) {
4610 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_GSO;
4611 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_gso_desc_qstat);
4612 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_gso);
4613 		}
4614 
4615 		if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) {
4616 			ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_SPEED;
4617 			ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_speed_desc_qstat);
4618 			ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_speed);
4619 		}
4620 
4621 		return;
4622 	}
4623 
4624 	ctx->desc_num[VIRTNET_Q_TYPE_RX] = ARRAY_SIZE(virtnet_rq_stats_desc);
4625 	ctx->desc_num[VIRTNET_Q_TYPE_TX] = ARRAY_SIZE(virtnet_sq_stats_desc);
4626 
4627 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_CVQ) {
4628 		queue_type = VIRTNET_Q_TYPE_CQ;
4629 
4630 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_CVQ;
4631 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_cvq_desc);
4632 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_cvq);
4633 	}
4634 
4635 	queue_type = VIRTNET_Q_TYPE_RX;
4636 
4637 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) {
4638 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_BASIC;
4639 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_basic_desc);
4640 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_basic);
4641 	}
4642 
4643 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) {
4644 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_CSUM;
4645 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_csum_desc);
4646 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_csum);
4647 	}
4648 
4649 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED) {
4650 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_RX_SPEED;
4651 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_rx_speed_desc);
4652 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_rx_speed);
4653 	}
4654 
4655 	queue_type = VIRTNET_Q_TYPE_TX;
4656 
4657 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) {
4658 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_BASIC;
4659 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_basic_desc);
4660 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_basic);
4661 	}
4662 
4663 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) {
4664 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_GSO;
4665 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_gso_desc);
4666 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_gso);
4667 	}
4668 
4669 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED) {
4670 		ctx->bitmap[queue_type]   |= VIRTIO_NET_STATS_TYPE_TX_SPEED;
4671 		ctx->desc_num[queue_type] += ARRAY_SIZE(virtnet_stats_tx_speed_desc);
4672 		ctx->size[queue_type]     += sizeof(struct virtio_net_stats_tx_speed);
4673 	}
4674 }
4675 
4676 /* stats_sum_queue - Calculate the sum of the same fields in sq or rq.
4677  * @sum: the position to store the sum values
4678  * @num: field num
4679  * @q_value: the first queue fields
4680  * @q_num: number of the queues
4681  */
4682 static void stats_sum_queue(u64 *sum, u32 num, u64 *q_value, u32 q_num)
4683 {
4684 	u32 step = num;
4685 	int i, j;
4686 	u64 *p;
4687 
4688 	for (i = 0; i < num; ++i) {
4689 		p = sum + i;
4690 		*p = 0;
4691 
4692 		for (j = 0; j < q_num; ++j)
4693 			*p += *(q_value + i + j * step);
4694 	}
4695 }
4696 
4697 static void virtnet_fill_total_fields(struct virtnet_info *vi,
4698 				      struct virtnet_stats_ctx *ctx)
4699 {
4700 	u64 *data, *first_rx_q, *first_tx_q;
4701 	u32 num_cq, num_rx, num_tx;
4702 
4703 	num_cq = ctx->desc_num[VIRTNET_Q_TYPE_CQ];
4704 	num_rx = ctx->desc_num[VIRTNET_Q_TYPE_RX];
4705 	num_tx = ctx->desc_num[VIRTNET_Q_TYPE_TX];
4706 
4707 	first_rx_q = ctx->data + num_rx + num_tx + num_cq;
4708 	first_tx_q = first_rx_q + vi->curr_queue_pairs * num_rx;
4709 
4710 	data = ctx->data;
4711 
4712 	stats_sum_queue(data, num_rx, first_rx_q, vi->curr_queue_pairs);
4713 
4714 	data = ctx->data + num_rx;
4715 
4716 	stats_sum_queue(data, num_tx, first_tx_q, vi->curr_queue_pairs);
4717 }
4718 
4719 static void virtnet_fill_stats_qstat(struct virtnet_info *vi, u32 qid,
4720 				     struct virtnet_stats_ctx *ctx,
4721 				     const u8 *base, bool drv_stats, u8 reply_type)
4722 {
4723 	const struct virtnet_stat_desc *desc;
4724 	const u64_stats_t *v_stat;
4725 	u64 offset, bitmap;
4726 	const __le64 *v;
4727 	u32 queue_type;
4728 	int i, num;
4729 
4730 	queue_type = vq_type(vi, qid);
4731 	bitmap = ctx->bitmap[queue_type];
4732 
4733 	if (drv_stats) {
4734 		if (queue_type == VIRTNET_Q_TYPE_RX) {
4735 			desc = &virtnet_rq_stats_desc_qstat[0];
4736 			num = ARRAY_SIZE(virtnet_rq_stats_desc_qstat);
4737 		} else {
4738 			desc = &virtnet_sq_stats_desc_qstat[0];
4739 			num = ARRAY_SIZE(virtnet_sq_stats_desc_qstat);
4740 		}
4741 
4742 		for (i = 0; i < num; ++i) {
4743 			offset = desc[i].qstat_offset / sizeof(*ctx->data);
4744 			v_stat = (const u64_stats_t *)(base + desc[i].offset);
4745 			ctx->data[offset] = u64_stats_read(v_stat);
4746 		}
4747 		return;
4748 	}
4749 
4750 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_BASIC) {
4751 		desc = &virtnet_stats_rx_basic_desc_qstat[0];
4752 		num = ARRAY_SIZE(virtnet_stats_rx_basic_desc_qstat);
4753 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_BASIC)
4754 			goto found;
4755 	}
4756 
4757 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_CSUM) {
4758 		desc = &virtnet_stats_rx_csum_desc_qstat[0];
4759 		num = ARRAY_SIZE(virtnet_stats_rx_csum_desc_qstat);
4760 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_CSUM)
4761 			goto found;
4762 	}
4763 
4764 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_GSO) {
4765 		desc = &virtnet_stats_rx_gso_desc_qstat[0];
4766 		num = ARRAY_SIZE(virtnet_stats_rx_gso_desc_qstat);
4767 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_GSO)
4768 			goto found;
4769 	}
4770 
4771 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_SPEED) {
4772 		desc = &virtnet_stats_rx_speed_desc_qstat[0];
4773 		num = ARRAY_SIZE(virtnet_stats_rx_speed_desc_qstat);
4774 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_SPEED)
4775 			goto found;
4776 	}
4777 
4778 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_BASIC) {
4779 		desc = &virtnet_stats_tx_basic_desc_qstat[0];
4780 		num = ARRAY_SIZE(virtnet_stats_tx_basic_desc_qstat);
4781 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_BASIC)
4782 			goto found;
4783 	}
4784 
4785 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_CSUM) {
4786 		desc = &virtnet_stats_tx_csum_desc_qstat[0];
4787 		num = ARRAY_SIZE(virtnet_stats_tx_csum_desc_qstat);
4788 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_CSUM)
4789 			goto found;
4790 	}
4791 
4792 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_GSO) {
4793 		desc = &virtnet_stats_tx_gso_desc_qstat[0];
4794 		num = ARRAY_SIZE(virtnet_stats_tx_gso_desc_qstat);
4795 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_GSO)
4796 			goto found;
4797 	}
4798 
4799 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_SPEED) {
4800 		desc = &virtnet_stats_tx_speed_desc_qstat[0];
4801 		num = ARRAY_SIZE(virtnet_stats_tx_speed_desc_qstat);
4802 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_SPEED)
4803 			goto found;
4804 	}
4805 
4806 	return;
4807 
4808 found:
4809 	for (i = 0; i < num; ++i) {
4810 		offset = desc[i].qstat_offset / sizeof(*ctx->data);
4811 		v = (const __le64 *)(base + desc[i].offset);
4812 		ctx->data[offset] = le64_to_cpu(*v);
4813 	}
4814 }
4815 
4816 /* virtnet_fill_stats - copy the stats to qstats or ethtool -S
4817  * The stats source is the device or the driver.
4818  *
4819  * @vi: virtio net info
4820  * @qid: the vq id
4821  * @ctx: stats ctx (initiated by virtnet_stats_ctx_init())
4822  * @base: pointer to the device reply or the driver stats structure.
4823  * @drv_stats: designate the base type (device reply, driver stats)
4824  * @type: the type of the device reply (if drv_stats is true, this must be zero)
4825  */
4826 static void virtnet_fill_stats(struct virtnet_info *vi, u32 qid,
4827 			       struct virtnet_stats_ctx *ctx,
4828 			       const u8 *base, bool drv_stats, u8 reply_type)
4829 {
4830 	u32 queue_type, num_rx, num_tx, num_cq;
4831 	const struct virtnet_stat_desc *desc;
4832 	const u64_stats_t *v_stat;
4833 	u64 offset, bitmap;
4834 	const __le64 *v;
4835 	int i, num;
4836 
4837 	if (ctx->to_qstat)
4838 		return virtnet_fill_stats_qstat(vi, qid, ctx, base, drv_stats, reply_type);
4839 
4840 	num_cq = ctx->desc_num[VIRTNET_Q_TYPE_CQ];
4841 	num_rx = ctx->desc_num[VIRTNET_Q_TYPE_RX];
4842 	num_tx = ctx->desc_num[VIRTNET_Q_TYPE_TX];
4843 
4844 	queue_type = vq_type(vi, qid);
4845 	bitmap = ctx->bitmap[queue_type];
4846 
4847 	/* skip the total fields of pairs */
4848 	offset = num_rx + num_tx;
4849 
4850 	if (queue_type == VIRTNET_Q_TYPE_TX) {
4851 		offset += num_cq + num_rx * vi->curr_queue_pairs + num_tx * (qid / 2);
4852 
4853 		num = ARRAY_SIZE(virtnet_sq_stats_desc);
4854 		if (drv_stats) {
4855 			desc = &virtnet_sq_stats_desc[0];
4856 			goto drv_stats;
4857 		}
4858 
4859 		offset += num;
4860 
4861 	} else if (queue_type == VIRTNET_Q_TYPE_RX) {
4862 		offset += num_cq + num_rx * (qid / 2);
4863 
4864 		num = ARRAY_SIZE(virtnet_rq_stats_desc);
4865 		if (drv_stats) {
4866 			desc = &virtnet_rq_stats_desc[0];
4867 			goto drv_stats;
4868 		}
4869 
4870 		offset += num;
4871 	}
4872 
4873 	if (bitmap & VIRTIO_NET_STATS_TYPE_CVQ) {
4874 		desc = &virtnet_stats_cvq_desc[0];
4875 		num = ARRAY_SIZE(virtnet_stats_cvq_desc);
4876 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_CVQ)
4877 			goto found;
4878 
4879 		offset += num;
4880 	}
4881 
4882 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_BASIC) {
4883 		desc = &virtnet_stats_rx_basic_desc[0];
4884 		num = ARRAY_SIZE(virtnet_stats_rx_basic_desc);
4885 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_BASIC)
4886 			goto found;
4887 
4888 		offset += num;
4889 	}
4890 
4891 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_CSUM) {
4892 		desc = &virtnet_stats_rx_csum_desc[0];
4893 		num = ARRAY_SIZE(virtnet_stats_rx_csum_desc);
4894 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_CSUM)
4895 			goto found;
4896 
4897 		offset += num;
4898 	}
4899 
4900 	if (bitmap & VIRTIO_NET_STATS_TYPE_RX_SPEED) {
4901 		desc = &virtnet_stats_rx_speed_desc[0];
4902 		num = ARRAY_SIZE(virtnet_stats_rx_speed_desc);
4903 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_RX_SPEED)
4904 			goto found;
4905 
4906 		offset += num;
4907 	}
4908 
4909 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_BASIC) {
4910 		desc = &virtnet_stats_tx_basic_desc[0];
4911 		num = ARRAY_SIZE(virtnet_stats_tx_basic_desc);
4912 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_BASIC)
4913 			goto found;
4914 
4915 		offset += num;
4916 	}
4917 
4918 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_GSO) {
4919 		desc = &virtnet_stats_tx_gso_desc[0];
4920 		num = ARRAY_SIZE(virtnet_stats_tx_gso_desc);
4921 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_GSO)
4922 			goto found;
4923 
4924 		offset += num;
4925 	}
4926 
4927 	if (bitmap & VIRTIO_NET_STATS_TYPE_TX_SPEED) {
4928 		desc = &virtnet_stats_tx_speed_desc[0];
4929 		num = ARRAY_SIZE(virtnet_stats_tx_speed_desc);
4930 		if (reply_type == VIRTIO_NET_STATS_TYPE_REPLY_TX_SPEED)
4931 			goto found;
4932 
4933 		offset += num;
4934 	}
4935 
4936 	return;
4937 
4938 found:
4939 	for (i = 0; i < num; ++i) {
4940 		v = (const __le64 *)(base + desc[i].offset);
4941 		ctx->data[offset + i] = le64_to_cpu(*v);
4942 	}
4943 
4944 	return;
4945 
4946 drv_stats:
4947 	for (i = 0; i < num; ++i) {
4948 		v_stat = (const u64_stats_t *)(base + desc[i].offset);
4949 		ctx->data[offset + i] = u64_stats_read(v_stat);
4950 	}
4951 }
4952 
4953 static int __virtnet_get_hw_stats(struct virtnet_info *vi,
4954 				  struct virtnet_stats_ctx *ctx,
4955 				  struct virtio_net_ctrl_queue_stats *req,
4956 				  int req_size, void *reply, int res_size)
4957 {
4958 	struct virtio_net_stats_reply_hdr *hdr;
4959 	struct scatterlist sgs_in, sgs_out;
4960 	void *p;
4961 	u32 qid;
4962 	int ok;
4963 
4964 	sg_init_one(&sgs_out, req, req_size);
4965 	sg_init_one(&sgs_in, reply, res_size);
4966 
4967 	ok = virtnet_send_command_reply(vi, VIRTIO_NET_CTRL_STATS,
4968 					VIRTIO_NET_CTRL_STATS_GET,
4969 					&sgs_out, &sgs_in);
4970 
4971 	if (!ok)
4972 		return ok;
4973 
4974 	for (p = reply; p - reply < res_size; p += le16_to_cpu(hdr->size)) {
4975 		hdr = p;
4976 		qid = le16_to_cpu(hdr->vq_index);
4977 		virtnet_fill_stats(vi, qid, ctx, p, false, hdr->type);
4978 	}
4979 
4980 	return 0;
4981 }
4982 
4983 static void virtnet_make_stat_req(struct virtnet_info *vi,
4984 				  struct virtnet_stats_ctx *ctx,
4985 				  struct virtio_net_ctrl_queue_stats *req,
4986 				  int qid, int *idx)
4987 {
4988 	int qtype = vq_type(vi, qid);
4989 	u64 bitmap = ctx->bitmap[qtype];
4990 
4991 	if (!bitmap)
4992 		return;
4993 
4994 	req->stats[*idx].vq_index = cpu_to_le16(qid);
4995 	req->stats[*idx].types_bitmap[0] = cpu_to_le64(bitmap);
4996 	*idx += 1;
4997 }
4998 
4999 /* qid: -1: get stats of all vq.
5000  *     > 0: get the stats for the special vq. This must not be cvq.
5001  */
5002 static int virtnet_get_hw_stats(struct virtnet_info *vi,
5003 				struct virtnet_stats_ctx *ctx, int qid)
5004 {
5005 	int qnum, i, j, res_size, qtype, last_vq, first_vq;
5006 	struct virtio_net_ctrl_queue_stats *req;
5007 	bool enable_cvq;
5008 	void *reply;
5009 	int ok;
5010 
5011 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_DEVICE_STATS))
5012 		return 0;
5013 
5014 	if (qid == -1) {
5015 		last_vq = vi->curr_queue_pairs * 2 - 1;
5016 		first_vq = 0;
5017 		enable_cvq = true;
5018 	} else {
5019 		last_vq = qid;
5020 		first_vq = qid;
5021 		enable_cvq = false;
5022 	}
5023 
5024 	qnum = 0;
5025 	res_size = 0;
5026 	for (i = first_vq; i <= last_vq ; ++i) {
5027 		qtype = vq_type(vi, i);
5028 		if (ctx->bitmap[qtype]) {
5029 			++qnum;
5030 			res_size += ctx->size[qtype];
5031 		}
5032 	}
5033 
5034 	if (enable_cvq && ctx->bitmap[VIRTNET_Q_TYPE_CQ]) {
5035 		res_size += ctx->size[VIRTNET_Q_TYPE_CQ];
5036 		qnum += 1;
5037 	}
5038 
5039 	req = kzalloc_objs(*req, qnum);
5040 	if (!req)
5041 		return -ENOMEM;
5042 
5043 	reply = kmalloc(res_size, GFP_KERNEL);
5044 	if (!reply) {
5045 		kfree(req);
5046 		return -ENOMEM;
5047 	}
5048 
5049 	j = 0;
5050 	for (i = first_vq; i <= last_vq ; ++i)
5051 		virtnet_make_stat_req(vi, ctx, req, i, &j);
5052 
5053 	if (enable_cvq)
5054 		virtnet_make_stat_req(vi, ctx, req, vi->max_queue_pairs * 2, &j);
5055 
5056 	ok = __virtnet_get_hw_stats(vi, ctx, req, sizeof(*req) * j, reply, res_size);
5057 
5058 	kfree(req);
5059 	kfree(reply);
5060 
5061 	return ok;
5062 }
5063 
5064 static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
5065 {
5066 	struct virtnet_info *vi = netdev_priv(dev);
5067 	unsigned int i;
5068 	u8 *p = data;
5069 
5070 	switch (stringset) {
5071 	case ETH_SS_STATS:
5072 		/* Generate the total field names. */
5073 		virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_RX, -1, &p);
5074 		virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_TX, -1, &p);
5075 
5076 		virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_CQ, 0, &p);
5077 
5078 		for (i = 0; i < vi->curr_queue_pairs; ++i)
5079 			virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_RX, i, &p);
5080 
5081 		for (i = 0; i < vi->curr_queue_pairs; ++i)
5082 			virtnet_get_stats_string(vi, VIRTNET_Q_TYPE_TX, i, &p);
5083 		break;
5084 	}
5085 }
5086 
5087 static int virtnet_get_sset_count(struct net_device *dev, int sset)
5088 {
5089 	struct virtnet_info *vi = netdev_priv(dev);
5090 	struct virtnet_stats_ctx ctx = {0};
5091 	u32 pair_count;
5092 
5093 	switch (sset) {
5094 	case ETH_SS_STATS:
5095 		virtnet_stats_ctx_init(vi, &ctx, NULL, false);
5096 
5097 		pair_count = ctx.desc_num[VIRTNET_Q_TYPE_RX] + ctx.desc_num[VIRTNET_Q_TYPE_TX];
5098 
5099 		return pair_count + ctx.desc_num[VIRTNET_Q_TYPE_CQ] +
5100 			vi->curr_queue_pairs * pair_count;
5101 	default:
5102 		return -EOPNOTSUPP;
5103 	}
5104 }
5105 
5106 static void virtnet_get_ethtool_stats(struct net_device *dev,
5107 				      struct ethtool_stats *stats, u64 *data)
5108 {
5109 	struct virtnet_info *vi = netdev_priv(dev);
5110 	struct virtnet_stats_ctx ctx = {0};
5111 	unsigned int start, i;
5112 	const u8 *stats_base;
5113 
5114 	virtnet_stats_ctx_init(vi, &ctx, data, false);
5115 	if (virtnet_get_hw_stats(vi, &ctx, -1))
5116 		dev_warn(&vi->dev->dev, "Failed to get hw stats.\n");
5117 
5118 	for (i = 0; i < vi->curr_queue_pairs; i++) {
5119 		struct receive_queue *rq = &vi->rq[i];
5120 		struct send_queue *sq = &vi->sq[i];
5121 
5122 		stats_base = (const u8 *)&rq->stats;
5123 		do {
5124 			start = u64_stats_fetch_begin(&rq->stats.syncp);
5125 			virtnet_fill_stats(vi, i * 2, &ctx, stats_base, true, 0);
5126 		} while (u64_stats_fetch_retry(&rq->stats.syncp, start));
5127 
5128 		stats_base = (const u8 *)&sq->stats;
5129 		do {
5130 			start = u64_stats_fetch_begin(&sq->stats.syncp);
5131 			virtnet_fill_stats(vi, i * 2 + 1, &ctx, stats_base, true, 0);
5132 		} while (u64_stats_fetch_retry(&sq->stats.syncp, start));
5133 	}
5134 
5135 	virtnet_fill_total_fields(vi, &ctx);
5136 }
5137 
5138 static void virtnet_get_channels(struct net_device *dev,
5139 				 struct ethtool_channels *channels)
5140 {
5141 	struct virtnet_info *vi = netdev_priv(dev);
5142 
5143 	channels->combined_count = vi->curr_queue_pairs;
5144 	channels->max_combined = vi->max_queue_pairs;
5145 	channels->max_other = 0;
5146 	channels->rx_count = 0;
5147 	channels->tx_count = 0;
5148 	channels->other_count = 0;
5149 }
5150 
5151 static int virtnet_set_link_ksettings(struct net_device *dev,
5152 				      const struct ethtool_link_ksettings *cmd)
5153 {
5154 	struct virtnet_info *vi = netdev_priv(dev);
5155 
5156 	return ethtool_virtdev_set_link_ksettings(dev, cmd,
5157 						  &vi->speed, &vi->duplex);
5158 }
5159 
5160 static int virtnet_get_link_ksettings(struct net_device *dev,
5161 				      struct ethtool_link_ksettings *cmd)
5162 {
5163 	struct virtnet_info *vi = netdev_priv(dev);
5164 
5165 	cmd->base.speed = vi->speed;
5166 	cmd->base.duplex = vi->duplex;
5167 	cmd->base.port = PORT_OTHER;
5168 
5169 	return 0;
5170 }
5171 
5172 static int virtnet_send_tx_notf_coal_cmds(struct virtnet_info *vi,
5173 					  struct ethtool_coalesce *ec)
5174 {
5175 	struct virtio_net_ctrl_coal_tx *coal_tx __free(kfree) = NULL;
5176 	struct scatterlist sgs_tx;
5177 	int i;
5178 
5179 	coal_tx = kzalloc_obj(*coal_tx);
5180 	if (!coal_tx)
5181 		return -ENOMEM;
5182 
5183 	coal_tx->tx_usecs = cpu_to_le32(ec->tx_coalesce_usecs);
5184 	coal_tx->tx_max_packets = cpu_to_le32(ec->tx_max_coalesced_frames);
5185 	sg_init_one(&sgs_tx, coal_tx, sizeof(*coal_tx));
5186 
5187 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL,
5188 				  VIRTIO_NET_CTRL_NOTF_COAL_TX_SET,
5189 				  &sgs_tx))
5190 		return -EINVAL;
5191 
5192 	vi->intr_coal_tx.max_usecs = ec->tx_coalesce_usecs;
5193 	vi->intr_coal_tx.max_packets = ec->tx_max_coalesced_frames;
5194 	for (i = 0; i < vi->max_queue_pairs; i++) {
5195 		vi->sq[i].intr_coal.max_usecs = ec->tx_coalesce_usecs;
5196 		vi->sq[i].intr_coal.max_packets = ec->tx_max_coalesced_frames;
5197 	}
5198 
5199 	return 0;
5200 }
5201 
5202 static int virtnet_send_rx_notf_coal_cmds(struct virtnet_info *vi,
5203 					  struct ethtool_coalesce *ec)
5204 {
5205 	struct virtio_net_ctrl_coal_rx *coal_rx __free(kfree) = NULL;
5206 	bool rx_ctrl_dim_on = !!ec->use_adaptive_rx_coalesce;
5207 	struct scatterlist sgs_rx;
5208 	int i;
5209 
5210 	if (rx_ctrl_dim_on && !virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL))
5211 		return -EOPNOTSUPP;
5212 
5213 	if (rx_ctrl_dim_on && (ec->rx_coalesce_usecs != vi->intr_coal_rx.max_usecs ||
5214 			       ec->rx_max_coalesced_frames != vi->intr_coal_rx.max_packets))
5215 		return -EINVAL;
5216 
5217 	if (rx_ctrl_dim_on && !vi->rx_dim_enabled) {
5218 		vi->rx_dim_enabled = true;
5219 		for (i = 0; i < vi->max_queue_pairs; i++) {
5220 			mutex_lock(&vi->rq[i].dim_lock);
5221 			vi->rq[i].dim_enabled = true;
5222 			mutex_unlock(&vi->rq[i].dim_lock);
5223 		}
5224 		return 0;
5225 	}
5226 
5227 	coal_rx = kzalloc_obj(*coal_rx);
5228 	if (!coal_rx)
5229 		return -ENOMEM;
5230 
5231 	if (!rx_ctrl_dim_on && vi->rx_dim_enabled) {
5232 		vi->rx_dim_enabled = false;
5233 		for (i = 0; i < vi->max_queue_pairs; i++) {
5234 			mutex_lock(&vi->rq[i].dim_lock);
5235 			vi->rq[i].dim_enabled = false;
5236 			mutex_unlock(&vi->rq[i].dim_lock);
5237 		}
5238 	}
5239 
5240 	/* Since the per-queue coalescing params can be set,
5241 	 * we need apply the global new params even if they
5242 	 * are not updated.
5243 	 */
5244 	coal_rx->rx_usecs = cpu_to_le32(ec->rx_coalesce_usecs);
5245 	coal_rx->rx_max_packets = cpu_to_le32(ec->rx_max_coalesced_frames);
5246 	sg_init_one(&sgs_rx, coal_rx, sizeof(*coal_rx));
5247 
5248 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_NOTF_COAL,
5249 				  VIRTIO_NET_CTRL_NOTF_COAL_RX_SET,
5250 				  &sgs_rx))
5251 		return -EINVAL;
5252 
5253 	vi->intr_coal_rx.max_usecs = ec->rx_coalesce_usecs;
5254 	vi->intr_coal_rx.max_packets = ec->rx_max_coalesced_frames;
5255 	for (i = 0; i < vi->max_queue_pairs; i++) {
5256 		mutex_lock(&vi->rq[i].dim_lock);
5257 		vi->rq[i].intr_coal.max_usecs = ec->rx_coalesce_usecs;
5258 		vi->rq[i].intr_coal.max_packets = ec->rx_max_coalesced_frames;
5259 		mutex_unlock(&vi->rq[i].dim_lock);
5260 	}
5261 
5262 	return 0;
5263 }
5264 
5265 static int virtnet_send_notf_coal_cmds(struct virtnet_info *vi,
5266 				       struct ethtool_coalesce *ec)
5267 {
5268 	int err;
5269 
5270 	err = virtnet_send_tx_notf_coal_cmds(vi, ec);
5271 	if (err)
5272 		return err;
5273 
5274 	err = virtnet_send_rx_notf_coal_cmds(vi, ec);
5275 	if (err)
5276 		return err;
5277 
5278 	return 0;
5279 }
5280 
5281 static int virtnet_send_rx_notf_coal_vq_cmds(struct virtnet_info *vi,
5282 					     struct ethtool_coalesce *ec,
5283 					     u16 queue)
5284 {
5285 	bool rx_ctrl_dim_on = !!ec->use_adaptive_rx_coalesce;
5286 	u32 max_usecs, max_packets;
5287 	bool cur_rx_dim;
5288 	int err;
5289 
5290 	mutex_lock(&vi->rq[queue].dim_lock);
5291 	cur_rx_dim = vi->rq[queue].dim_enabled;
5292 	max_usecs = vi->rq[queue].intr_coal.max_usecs;
5293 	max_packets = vi->rq[queue].intr_coal.max_packets;
5294 
5295 	if (rx_ctrl_dim_on && (ec->rx_coalesce_usecs != max_usecs ||
5296 			       ec->rx_max_coalesced_frames != max_packets)) {
5297 		mutex_unlock(&vi->rq[queue].dim_lock);
5298 		return -EINVAL;
5299 	}
5300 
5301 	if (rx_ctrl_dim_on && !cur_rx_dim) {
5302 		vi->rq[queue].dim_enabled = true;
5303 		mutex_unlock(&vi->rq[queue].dim_lock);
5304 		return 0;
5305 	}
5306 
5307 	if (!rx_ctrl_dim_on && cur_rx_dim)
5308 		vi->rq[queue].dim_enabled = false;
5309 
5310 	/* If no params are updated, userspace ethtool will
5311 	 * reject the modification.
5312 	 */
5313 	err = virtnet_send_rx_ctrl_coal_vq_cmd(vi, queue,
5314 					       ec->rx_coalesce_usecs,
5315 					       ec->rx_max_coalesced_frames);
5316 	mutex_unlock(&vi->rq[queue].dim_lock);
5317 	return err;
5318 }
5319 
5320 static int virtnet_send_notf_coal_vq_cmds(struct virtnet_info *vi,
5321 					  struct ethtool_coalesce *ec,
5322 					  u16 queue)
5323 {
5324 	int err;
5325 
5326 	err = virtnet_send_rx_notf_coal_vq_cmds(vi, ec, queue);
5327 	if (err)
5328 		return err;
5329 
5330 	err = virtnet_send_tx_ctrl_coal_vq_cmd(vi, queue,
5331 					       ec->tx_coalesce_usecs,
5332 					       ec->tx_max_coalesced_frames);
5333 	if (err)
5334 		return err;
5335 
5336 	return 0;
5337 }
5338 
5339 static void virtnet_rx_dim_work(struct work_struct *work)
5340 {
5341 	struct dim *dim = container_of(work, struct dim, work);
5342 	struct receive_queue *rq = container_of(dim,
5343 			struct receive_queue, dim);
5344 	struct virtnet_info *vi = rq->vq->vdev->priv;
5345 	struct net_device *dev = vi->dev;
5346 	struct dim_cq_moder update_moder;
5347 	int qnum, err;
5348 
5349 	qnum = rq - vi->rq;
5350 
5351 	mutex_lock(&rq->dim_lock);
5352 	if (!rq->dim_enabled)
5353 		goto out;
5354 
5355 	update_moder = net_dim_get_rx_irq_moder(dev, dim);
5356 	if (update_moder.usec != rq->intr_coal.max_usecs ||
5357 	    update_moder.pkts != rq->intr_coal.max_packets) {
5358 		err = virtnet_send_rx_ctrl_coal_vq_cmd(vi, qnum,
5359 						       update_moder.usec,
5360 						       update_moder.pkts);
5361 		if (err)
5362 			pr_debug("%s: Failed to send dim parameters on rxq%d\n",
5363 				 dev->name, qnum);
5364 	}
5365 out:
5366 	dim->state = DIM_START_MEASURE;
5367 	mutex_unlock(&rq->dim_lock);
5368 }
5369 
5370 static int virtnet_coal_params_supported(struct ethtool_coalesce *ec)
5371 {
5372 	/* usecs coalescing is supported only if VIRTIO_NET_F_NOTF_COAL
5373 	 * or VIRTIO_NET_F_VQ_NOTF_COAL feature is negotiated.
5374 	 */
5375 	if (ec->rx_coalesce_usecs || ec->tx_coalesce_usecs)
5376 		return -EOPNOTSUPP;
5377 
5378 	if (ec->tx_max_coalesced_frames > 1 ||
5379 	    ec->rx_max_coalesced_frames != 1)
5380 		return -EINVAL;
5381 
5382 	return 0;
5383 }
5384 
5385 static int virtnet_should_update_vq_weight(int dev_flags, int weight,
5386 					   int vq_weight, bool *should_update)
5387 {
5388 	if (weight ^ vq_weight) {
5389 		if (dev_flags & IFF_UP)
5390 			return -EBUSY;
5391 		*should_update = true;
5392 	}
5393 
5394 	return 0;
5395 }
5396 
5397 static int virtnet_set_coalesce(struct net_device *dev,
5398 				struct ethtool_coalesce *ec,
5399 				struct kernel_ethtool_coalesce *kernel_coal,
5400 				struct netlink_ext_ack *extack)
5401 {
5402 	struct virtnet_info *vi = netdev_priv(dev);
5403 	int ret, queue_number, napi_weight, i;
5404 	bool update_napi = false;
5405 
5406 	/* Can't change NAPI weight if the link is up */
5407 	napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0;
5408 	for (queue_number = 0; queue_number < vi->max_queue_pairs; queue_number++) {
5409 		ret = virtnet_should_update_vq_weight(dev->flags, napi_weight,
5410 						      vi->sq[queue_number].napi.weight,
5411 						      &update_napi);
5412 		if (ret)
5413 			return ret;
5414 
5415 		if (update_napi) {
5416 			/* All queues that belong to [queue_number, vi->max_queue_pairs] will be
5417 			 * updated for the sake of simplicity, which might not be necessary
5418 			 */
5419 			break;
5420 		}
5421 	}
5422 
5423 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL))
5424 		ret = virtnet_send_notf_coal_cmds(vi, ec);
5425 	else
5426 		ret = virtnet_coal_params_supported(ec);
5427 
5428 	if (ret)
5429 		return ret;
5430 
5431 	if (update_napi) {
5432 		/* xsk xmit depends on the tx napi. So if xsk is active,
5433 		 * prevent modifications to tx napi.
5434 		 */
5435 		for (i = queue_number; i < vi->max_queue_pairs; i++) {
5436 			if (vi->sq[i].xsk_pool)
5437 				return -EBUSY;
5438 		}
5439 
5440 		for (; queue_number < vi->max_queue_pairs; queue_number++)
5441 			vi->sq[queue_number].napi.weight = napi_weight;
5442 	}
5443 
5444 	return ret;
5445 }
5446 
5447 static int virtnet_get_coalesce(struct net_device *dev,
5448 				struct ethtool_coalesce *ec,
5449 				struct kernel_ethtool_coalesce *kernel_coal,
5450 				struct netlink_ext_ack *extack)
5451 {
5452 	struct virtnet_info *vi = netdev_priv(dev);
5453 
5454 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL)) {
5455 		ec->rx_coalesce_usecs = vi->intr_coal_rx.max_usecs;
5456 		ec->tx_coalesce_usecs = vi->intr_coal_tx.max_usecs;
5457 		ec->tx_max_coalesced_frames = vi->intr_coal_tx.max_packets;
5458 		ec->rx_max_coalesced_frames = vi->intr_coal_rx.max_packets;
5459 		ec->use_adaptive_rx_coalesce = vi->rx_dim_enabled;
5460 	} else {
5461 		ec->rx_max_coalesced_frames = 1;
5462 
5463 		if (vi->sq[0].napi.weight)
5464 			ec->tx_max_coalesced_frames = 1;
5465 	}
5466 
5467 	return 0;
5468 }
5469 
5470 static int virtnet_set_per_queue_coalesce(struct net_device *dev,
5471 					  u32 queue,
5472 					  struct ethtool_coalesce *ec)
5473 {
5474 	struct virtnet_info *vi = netdev_priv(dev);
5475 	int ret, napi_weight;
5476 	bool update_napi = false;
5477 
5478 	if (queue >= vi->max_queue_pairs)
5479 		return -EINVAL;
5480 
5481 	/* Can't change NAPI weight if the link is up */
5482 	napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0;
5483 	ret = virtnet_should_update_vq_weight(dev->flags, napi_weight,
5484 					      vi->sq[queue].napi.weight,
5485 					      &update_napi);
5486 	if (ret)
5487 		return ret;
5488 
5489 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL))
5490 		ret = virtnet_send_notf_coal_vq_cmds(vi, ec, queue);
5491 	else
5492 		ret = virtnet_coal_params_supported(ec);
5493 
5494 	if (ret)
5495 		return ret;
5496 
5497 	if (update_napi)
5498 		vi->sq[queue].napi.weight = napi_weight;
5499 
5500 	return 0;
5501 }
5502 
5503 static int virtnet_get_per_queue_coalesce(struct net_device *dev,
5504 					  u32 queue,
5505 					  struct ethtool_coalesce *ec)
5506 {
5507 	struct virtnet_info *vi = netdev_priv(dev);
5508 
5509 	if (queue >= vi->max_queue_pairs)
5510 		return -EINVAL;
5511 
5512 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) {
5513 		mutex_lock(&vi->rq[queue].dim_lock);
5514 		ec->rx_coalesce_usecs = vi->rq[queue].intr_coal.max_usecs;
5515 		ec->tx_coalesce_usecs = vi->sq[queue].intr_coal.max_usecs;
5516 		ec->tx_max_coalesced_frames = vi->sq[queue].intr_coal.max_packets;
5517 		ec->rx_max_coalesced_frames = vi->rq[queue].intr_coal.max_packets;
5518 		ec->use_adaptive_rx_coalesce = vi->rq[queue].dim_enabled;
5519 		mutex_unlock(&vi->rq[queue].dim_lock);
5520 	} else {
5521 		ec->rx_max_coalesced_frames = 1;
5522 
5523 		if (vi->sq[queue].napi.weight)
5524 			ec->tx_max_coalesced_frames = 1;
5525 	}
5526 
5527 	return 0;
5528 }
5529 
5530 static void virtnet_init_settings(struct net_device *dev)
5531 {
5532 	struct virtnet_info *vi = netdev_priv(dev);
5533 
5534 	vi->speed = SPEED_UNKNOWN;
5535 	vi->duplex = DUPLEX_UNKNOWN;
5536 }
5537 
5538 static u32 virtnet_get_rxfh_key_size(struct net_device *dev)
5539 {
5540 	return ((struct virtnet_info *)netdev_priv(dev))->rss_key_size;
5541 }
5542 
5543 static u32 virtnet_get_rxfh_indir_size(struct net_device *dev)
5544 {
5545 	return ((struct virtnet_info *)netdev_priv(dev))->rss_indir_table_size;
5546 }
5547 
5548 static int virtnet_get_rxfh(struct net_device *dev,
5549 			    struct ethtool_rxfh_param *rxfh)
5550 {
5551 	struct virtnet_info *vi = netdev_priv(dev);
5552 	int i;
5553 
5554 	if (rxfh->indir) {
5555 		for (i = 0; i < vi->rss_indir_table_size; ++i)
5556 			rxfh->indir[i] = le16_to_cpu(vi->rss_hdr->indirection_table[i]);
5557 	}
5558 
5559 	if (rxfh->key)
5560 		memcpy(rxfh->key, vi->rss_hash_key_data, vi->rss_key_size);
5561 
5562 	rxfh->hfunc = ETH_RSS_HASH_TOP;
5563 
5564 	return 0;
5565 }
5566 
5567 static int virtnet_set_rxfh(struct net_device *dev,
5568 			    struct ethtool_rxfh_param *rxfh,
5569 			    struct netlink_ext_ack *extack)
5570 {
5571 	struct virtnet_info *vi = netdev_priv(dev);
5572 	bool update = false;
5573 	int i;
5574 
5575 	if (rxfh->hfunc != ETH_RSS_HASH_NO_CHANGE &&
5576 	    rxfh->hfunc != ETH_RSS_HASH_TOP)
5577 		return -EOPNOTSUPP;
5578 
5579 	if (rxfh->indir) {
5580 		if (!vi->has_rss)
5581 			return -EOPNOTSUPP;
5582 
5583 		for (i = 0; i < vi->rss_indir_table_size; ++i)
5584 			vi->rss_hdr->indirection_table[i] = cpu_to_le16(rxfh->indir[i]);
5585 		update = true;
5586 	}
5587 
5588 	if (rxfh->key) {
5589 		/* If either _F_HASH_REPORT or _F_RSS are negotiated, the
5590 		 * device provides hash calculation capabilities, that is,
5591 		 * hash_key is configured.
5592 		 */
5593 		if (!vi->has_rss && !vi->has_rss_hash_report)
5594 			return -EOPNOTSUPP;
5595 
5596 		memcpy(vi->rss_hash_key_data, rxfh->key, vi->rss_key_size);
5597 		update = true;
5598 	}
5599 
5600 	if (update)
5601 		virtnet_commit_rss_command(vi);
5602 
5603 	return 0;
5604 }
5605 
5606 static u32 virtnet_get_rx_ring_count(struct net_device *dev)
5607 {
5608 	struct virtnet_info *vi = netdev_priv(dev);
5609 
5610 	return vi->curr_queue_pairs;
5611 }
5612 
5613 static const struct ethtool_ops virtnet_ethtool_ops = {
5614 	.supported_coalesce_params = ETHTOOL_COALESCE_MAX_FRAMES |
5615 		ETHTOOL_COALESCE_USECS | ETHTOOL_COALESCE_USE_ADAPTIVE_RX,
5616 	.get_drvinfo = virtnet_get_drvinfo,
5617 	.get_link = ethtool_op_get_link,
5618 	.get_ringparam = virtnet_get_ringparam,
5619 	.set_ringparam = virtnet_set_ringparam,
5620 	.get_strings = virtnet_get_strings,
5621 	.get_sset_count = virtnet_get_sset_count,
5622 	.get_ethtool_stats = virtnet_get_ethtool_stats,
5623 	.set_channels = virtnet_set_channels,
5624 	.get_channels = virtnet_get_channels,
5625 	.get_ts_info = ethtool_op_get_ts_info,
5626 	.get_link_ksettings = virtnet_get_link_ksettings,
5627 	.set_link_ksettings = virtnet_set_link_ksettings,
5628 	.set_coalesce = virtnet_set_coalesce,
5629 	.get_coalesce = virtnet_get_coalesce,
5630 	.set_per_queue_coalesce = virtnet_set_per_queue_coalesce,
5631 	.get_per_queue_coalesce = virtnet_get_per_queue_coalesce,
5632 	.get_rxfh_key_size = virtnet_get_rxfh_key_size,
5633 	.get_rxfh_indir_size = virtnet_get_rxfh_indir_size,
5634 	.get_rxfh = virtnet_get_rxfh,
5635 	.set_rxfh = virtnet_set_rxfh,
5636 	.get_rxfh_fields = virtnet_get_hashflow,
5637 	.set_rxfh_fields = virtnet_set_hashflow,
5638 	.get_rx_ring_count = virtnet_get_rx_ring_count,
5639 };
5640 
5641 static void virtnet_get_queue_stats_rx(struct net_device *dev, int i,
5642 				       struct netdev_queue_stats_rx *stats)
5643 {
5644 	struct virtnet_info *vi = netdev_priv(dev);
5645 	struct receive_queue *rq = &vi->rq[i];
5646 	struct virtnet_stats_ctx ctx = {0};
5647 
5648 	virtnet_stats_ctx_init(vi, &ctx, (void *)stats, true);
5649 
5650 	virtnet_get_hw_stats(vi, &ctx, i * 2);
5651 	virtnet_fill_stats(vi, i * 2, &ctx, (void *)&rq->stats, true, 0);
5652 }
5653 
5654 static void virtnet_get_queue_stats_tx(struct net_device *dev, int i,
5655 				       struct netdev_queue_stats_tx *stats)
5656 {
5657 	struct virtnet_info *vi = netdev_priv(dev);
5658 	struct send_queue *sq = &vi->sq[i];
5659 	struct virtnet_stats_ctx ctx = {0};
5660 
5661 	virtnet_stats_ctx_init(vi, &ctx, (void *)stats, true);
5662 
5663 	virtnet_get_hw_stats(vi, &ctx, i * 2 + 1);
5664 	virtnet_fill_stats(vi, i * 2 + 1, &ctx, (void *)&sq->stats, true, 0);
5665 }
5666 
5667 static void virtnet_get_base_stats(struct net_device *dev,
5668 				   struct netdev_queue_stats_rx *rx,
5669 				   struct netdev_queue_stats_tx *tx)
5670 {
5671 	struct virtnet_info *vi = netdev_priv(dev);
5672 
5673 	/* The queue stats of the virtio-net will not be reset. So here we
5674 	 * return 0.
5675 	 */
5676 	rx->bytes = 0;
5677 	rx->packets = 0;
5678 
5679 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_BASIC) {
5680 		rx->hw_drops = 0;
5681 		rx->hw_drop_overruns = 0;
5682 	}
5683 
5684 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_CSUM) {
5685 		rx->csum_unnecessary = 0;
5686 		rx->csum_none = 0;
5687 		rx->csum_bad = 0;
5688 	}
5689 
5690 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_GSO) {
5691 		rx->hw_gro_packets = 0;
5692 		rx->hw_gro_bytes = 0;
5693 		rx->hw_gro_wire_packets = 0;
5694 		rx->hw_gro_wire_bytes = 0;
5695 	}
5696 
5697 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_RX_SPEED)
5698 		rx->hw_drop_ratelimits = 0;
5699 
5700 	tx->bytes = 0;
5701 	tx->packets = 0;
5702 	tx->stop = 0;
5703 	tx->wake = 0;
5704 
5705 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_BASIC) {
5706 		tx->hw_drops = 0;
5707 		tx->hw_drop_errors = 0;
5708 	}
5709 
5710 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_CSUM) {
5711 		tx->csum_none = 0;
5712 		tx->needs_csum = 0;
5713 	}
5714 
5715 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_GSO) {
5716 		tx->hw_gso_packets = 0;
5717 		tx->hw_gso_bytes = 0;
5718 		tx->hw_gso_wire_packets = 0;
5719 		tx->hw_gso_wire_bytes = 0;
5720 	}
5721 
5722 	if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED)
5723 		tx->hw_drop_ratelimits = 0;
5724 
5725 	netdev_stat_queue_sum(dev,
5726 			      dev->real_num_rx_queues, vi->max_queue_pairs, rx,
5727 			      dev->real_num_tx_queues, vi->max_queue_pairs, tx);
5728 }
5729 
5730 static const struct netdev_stat_ops virtnet_stat_ops = {
5731 	.get_queue_stats_rx	= virtnet_get_queue_stats_rx,
5732 	.get_queue_stats_tx	= virtnet_get_queue_stats_tx,
5733 	.get_base_stats		= virtnet_get_base_stats,
5734 };
5735 
5736 static void virtnet_freeze_down(struct virtio_device *vdev)
5737 {
5738 	struct virtnet_info *vi = vdev->priv;
5739 
5740 	/* Make sure no work handler is accessing the device */
5741 	flush_work(&vi->config_work);
5742 	disable_rx_mode_work(vi);
5743 	flush_work(&vi->rx_mode_work);
5744 
5745 	if (netif_running(vi->dev)) {
5746 		rtnl_lock();
5747 		virtnet_close(vi->dev);
5748 		rtnl_unlock();
5749 	}
5750 
5751 	netif_tx_lock_bh(vi->dev);
5752 	netif_device_detach(vi->dev);
5753 	netif_tx_unlock_bh(vi->dev);
5754 }
5755 
5756 static int init_vqs(struct virtnet_info *vi);
5757 
5758 static int virtnet_restore_up(struct virtio_device *vdev)
5759 {
5760 	struct virtnet_info *vi = vdev->priv;
5761 	int err;
5762 
5763 	err = init_vqs(vi);
5764 	if (err)
5765 		return err;
5766 
5767 	err = virtnet_create_page_pools(vi);
5768 	if (err)
5769 		goto err_del_vqs;
5770 
5771 	virtio_device_ready(vdev);
5772 
5773 	enable_rx_mode_work(vi);
5774 
5775 	if (netif_running(vi->dev)) {
5776 		rtnl_lock();
5777 		err = virtnet_open(vi->dev);
5778 		rtnl_unlock();
5779 		if (err)
5780 			goto err_destroy_pools;
5781 	}
5782 
5783 	netif_tx_lock_bh(vi->dev);
5784 	netif_device_attach(vi->dev);
5785 	netif_tx_unlock_bh(vi->dev);
5786 	return 0;
5787 
5788 err_destroy_pools:
5789 	virtio_reset_device(vdev);
5790 	free_unused_bufs(vi);
5791 	virtnet_destroy_page_pools(vi);
5792 	virtnet_del_vqs(vi);
5793 	return err;
5794 
5795 err_del_vqs:
5796 	virtio_reset_device(vdev);
5797 	virtnet_del_vqs(vi);
5798 	return err;
5799 }
5800 
5801 static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
5802 {
5803 	__virtio64 *_offloads __free(kfree) = NULL;
5804 	struct scatterlist sg;
5805 
5806 	_offloads = kzalloc_obj(*_offloads);
5807 	if (!_offloads)
5808 		return -ENOMEM;
5809 
5810 	*_offloads = cpu_to_virtio64(vi->vdev, offloads);
5811 
5812 	sg_init_one(&sg, _offloads, sizeof(*_offloads));
5813 
5814 	if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
5815 				  VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
5816 		dev_warn(&vi->dev->dev, "Fail to set guest offload.\n");
5817 		return -EINVAL;
5818 	}
5819 
5820 	return 0;
5821 }
5822 
5823 static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
5824 {
5825 	u64 offloads = 0;
5826 
5827 	if (!vi->guest_offloads)
5828 		return 0;
5829 
5830 	return virtnet_set_guest_offloads(vi, offloads);
5831 }
5832 
5833 static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
5834 {
5835 	u64 offloads = vi->guest_offloads;
5836 
5837 	if (!vi->guest_offloads)
5838 		return 0;
5839 
5840 	return virtnet_set_guest_offloads(vi, offloads);
5841 }
5842 
5843 static int virtnet_rq_bind_xsk_pool(struct virtnet_info *vi, struct receive_queue *rq,
5844 				    struct xsk_buff_pool *pool)
5845 {
5846 	int err, qindex;
5847 
5848 	qindex = rq - vi->rq;
5849 
5850 	if (pool) {
5851 		err = xdp_rxq_info_reg(&rq->xsk_rxq_info, vi->dev, qindex, rq->napi.napi_id);
5852 		if (err < 0)
5853 			return err;
5854 
5855 		err = xdp_rxq_info_reg_mem_model(&rq->xsk_rxq_info,
5856 						 MEM_TYPE_XSK_BUFF_POOL, NULL);
5857 		if (err < 0)
5858 			goto unreg;
5859 
5860 		xsk_pool_set_rxq_info(pool, &rq->xsk_rxq_info);
5861 	}
5862 
5863 	virtnet_rx_pause(vi, rq);
5864 
5865 	err = virtqueue_reset(rq->vq, virtnet_rq_unmap_free_buf, NULL);
5866 	if (err) {
5867 		netdev_err(vi->dev, "reset rx fail: rx queue index: %d err: %d\n", qindex, err);
5868 
5869 		pool = NULL;
5870 	}
5871 
5872 	rq->xsk_pool = pool;
5873 
5874 	virtnet_rx_resume(vi, rq, true);
5875 
5876 	if (pool)
5877 		return 0;
5878 
5879 unreg:
5880 	xdp_rxq_info_unreg(&rq->xsk_rxq_info);
5881 	return err;
5882 }
5883 
5884 static int virtnet_sq_bind_xsk_pool(struct virtnet_info *vi,
5885 				    struct send_queue *sq,
5886 				    struct xsk_buff_pool *pool)
5887 {
5888 	int err, qindex;
5889 
5890 	qindex = sq - vi->sq;
5891 
5892 	virtnet_tx_pause(vi, sq);
5893 
5894 	err = virtqueue_reset(sq->vq, virtnet_sq_free_unused_buf,
5895 			      virtnet_sq_free_unused_buf_done);
5896 	if (err) {
5897 		netdev_err(vi->dev, "reset tx fail: tx queue index: %d err: %d\n", qindex, err);
5898 		pool = NULL;
5899 	}
5900 
5901 	sq->xsk_pool = pool;
5902 
5903 	virtnet_tx_resume(vi, sq);
5904 
5905 	return err;
5906 }
5907 
5908 static int virtnet_xsk_pool_enable(struct net_device *dev,
5909 				   struct xsk_buff_pool *pool,
5910 				   u16 qid)
5911 {
5912 	struct virtnet_info *vi = netdev_priv(dev);
5913 	struct receive_queue *rq;
5914 	struct device *dma_dev;
5915 	struct send_queue *sq;
5916 	dma_addr_t hdr_dma;
5917 	int err, size;
5918 
5919 	if (vi->hdr_len > xsk_pool_get_headroom(pool))
5920 		return -EINVAL;
5921 
5922 	/* In big_packets mode, xdp cannot work, so there is no need to
5923 	 * initialize xsk of rq.
5924 	 */
5925 	if (!vi->rq[qid].page_pool)
5926 		return -ENOENT;
5927 
5928 	if (qid >= vi->curr_queue_pairs)
5929 		return -EINVAL;
5930 
5931 	sq = &vi->sq[qid];
5932 	rq = &vi->rq[qid];
5933 
5934 	/* xsk assumes that tx and rx must have the same dma device. The af-xdp
5935 	 * may use one buffer to receive from the rx and reuse this buffer to
5936 	 * send by the tx. So the dma dev of sq and rq must be the same one.
5937 	 *
5938 	 * But vq->dma_dev allows every vq has the respective dma dev. So I
5939 	 * check the dma dev of vq and sq is the same dev.
5940 	 */
5941 	if (virtqueue_dma_dev(rq->vq) != virtqueue_dma_dev(sq->vq))
5942 		return -EINVAL;
5943 
5944 	dma_dev = virtqueue_dma_dev(rq->vq);
5945 	if (!dma_dev)
5946 		return -EINVAL;
5947 
5948 	size = virtqueue_get_vring_size(rq->vq);
5949 
5950 	rq->xsk_buffs = kvzalloc_objs(*rq->xsk_buffs, size);
5951 	if (!rq->xsk_buffs)
5952 		return -ENOMEM;
5953 
5954 	hdr_dma = virtqueue_map_single_attrs(sq->vq, &xsk_hdr, vi->hdr_len,
5955 					     DMA_TO_DEVICE, 0);
5956 	if (virtqueue_map_mapping_error(sq->vq, hdr_dma)) {
5957 		err = -ENOMEM;
5958 		goto err_free_buffs;
5959 	}
5960 
5961 	err = xsk_pool_dma_map(pool, dma_dev, 0);
5962 	if (err)
5963 		goto err_xsk_map;
5964 
5965 	err = virtnet_rq_bind_xsk_pool(vi, rq, pool);
5966 	if (err)
5967 		goto err_rq;
5968 
5969 	err = virtnet_sq_bind_xsk_pool(vi, sq, pool);
5970 	if (err)
5971 		goto err_sq;
5972 
5973 	/* Now, we do not support tx offload(such as tx csum), so all the tx
5974 	 * virtnet hdr is zero. So all the tx packets can share a single hdr.
5975 	 */
5976 	sq->xsk_hdr_dma_addr = hdr_dma;
5977 
5978 	return 0;
5979 
5980 err_sq:
5981 	virtnet_rq_bind_xsk_pool(vi, rq, NULL);
5982 err_rq:
5983 	xsk_pool_dma_unmap(pool, 0);
5984 err_xsk_map:
5985 	virtqueue_unmap_single_attrs(rq->vq, hdr_dma, vi->hdr_len,
5986 				     DMA_TO_DEVICE, 0);
5987 err_free_buffs:
5988 	kvfree(rq->xsk_buffs);
5989 	return err;
5990 }
5991 
5992 static int virtnet_xsk_pool_disable(struct net_device *dev, u16 qid)
5993 {
5994 	struct virtnet_info *vi = netdev_priv(dev);
5995 	struct xsk_buff_pool *pool;
5996 	struct receive_queue *rq;
5997 	struct send_queue *sq;
5998 	int err;
5999 
6000 	if (qid >= vi->curr_queue_pairs)
6001 		return -EINVAL;
6002 
6003 	sq = &vi->sq[qid];
6004 	rq = &vi->rq[qid];
6005 
6006 	pool = rq->xsk_pool;
6007 
6008 	err = virtnet_rq_bind_xsk_pool(vi, rq, NULL);
6009 	err |= virtnet_sq_bind_xsk_pool(vi, sq, NULL);
6010 
6011 	xsk_pool_dma_unmap(pool, 0);
6012 
6013 	virtqueue_unmap_single_attrs(sq->vq, sq->xsk_hdr_dma_addr,
6014 				     vi->hdr_len, DMA_TO_DEVICE, 0);
6015 	kvfree(rq->xsk_buffs);
6016 
6017 	return err;
6018 }
6019 
6020 static int virtnet_xsk_pool_setup(struct net_device *dev, struct netdev_bpf *xdp)
6021 {
6022 	if (xdp->xsk.pool)
6023 		return virtnet_xsk_pool_enable(dev, xdp->xsk.pool,
6024 					       xdp->xsk.queue_id);
6025 	else
6026 		return virtnet_xsk_pool_disable(dev, xdp->xsk.queue_id);
6027 }
6028 
6029 static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
6030 			   struct netlink_ext_ack *extack)
6031 {
6032 	unsigned int room = SKB_DATA_ALIGN(XDP_PACKET_HEADROOM +
6033 					   sizeof(struct skb_shared_info));
6034 	unsigned int max_sz = PAGE_SIZE - room - ETH_HLEN;
6035 	struct virtnet_info *vi = netdev_priv(dev);
6036 	struct bpf_prog *old_prog;
6037 	u16 xdp_qp = 0, curr_qp;
6038 	int i, err;
6039 
6040 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
6041 	    && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
6042 	        virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
6043 	        virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
6044 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) ||
6045 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM) ||
6046 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO4) ||
6047 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO6))) {
6048 		NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing GRO_HW/CSUM, disable GRO_HW/CSUM first");
6049 		return -EOPNOTSUPP;
6050 	}
6051 
6052 	if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
6053 		NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
6054 		return -EINVAL;
6055 	}
6056 
6057 	if (prog && !prog->aux->xdp_has_frags && dev->mtu > max_sz) {
6058 		NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP without frags");
6059 		netdev_warn(dev, "single-buffer XDP requires MTU less than %u\n", max_sz);
6060 		return -EINVAL;
6061 	}
6062 
6063 	curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
6064 	if (prog)
6065 		xdp_qp = nr_cpu_ids;
6066 
6067 	/* XDP requires extra queues for XDP_TX */
6068 	if (curr_qp + xdp_qp > vi->max_queue_pairs) {
6069 		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",
6070 				 curr_qp + xdp_qp, vi->max_queue_pairs);
6071 		xdp_qp = 0;
6072 	}
6073 
6074 	old_prog = rtnl_dereference(vi->rq[0].xdp_prog);
6075 	if (!prog && !old_prog)
6076 		return 0;
6077 
6078 	if (prog)
6079 		bpf_prog_add(prog, vi->max_queue_pairs - 1);
6080 
6081 	virtnet_rx_pause_all(vi);
6082 
6083 	/* Make sure NAPI is not using any XDP TX queues for RX. */
6084 	if (netif_running(dev)) {
6085 		for (i = 0; i < vi->max_queue_pairs; i++)
6086 			virtnet_napi_tx_disable(&vi->sq[i]);
6087 	}
6088 
6089 	if (!prog) {
6090 		for (i = 0; i < vi->max_queue_pairs; i++) {
6091 			rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
6092 			if (i == 0)
6093 				virtnet_restore_guest_offloads(vi);
6094 		}
6095 		synchronize_net();
6096 	}
6097 
6098 	err = virtnet_set_queues(vi, curr_qp + xdp_qp);
6099 	if (err)
6100 		goto err;
6101 	netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
6102 	vi->xdp_queue_pairs = xdp_qp;
6103 
6104 	if (prog) {
6105 		vi->xdp_enabled = true;
6106 		for (i = 0; i < vi->max_queue_pairs; i++) {
6107 			rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
6108 			if (i == 0 && !old_prog)
6109 				virtnet_clear_guest_offloads(vi);
6110 		}
6111 		if (!old_prog)
6112 			xdp_features_set_redirect_target(dev, true);
6113 	} else {
6114 		xdp_features_clear_redirect_target(dev);
6115 		vi->xdp_enabled = false;
6116 	}
6117 
6118 	virtnet_rx_resume_all(vi);
6119 	for (i = 0; i < vi->max_queue_pairs; i++) {
6120 		if (old_prog)
6121 			bpf_prog_put(old_prog);
6122 		if (netif_running(dev))
6123 			virtnet_napi_tx_enable(&vi->sq[i]);
6124 	}
6125 
6126 	return 0;
6127 
6128 err:
6129 	if (!prog) {
6130 		virtnet_clear_guest_offloads(vi);
6131 		for (i = 0; i < vi->max_queue_pairs; i++)
6132 			rcu_assign_pointer(vi->rq[i].xdp_prog, old_prog);
6133 	}
6134 
6135 	virtnet_rx_resume_all(vi);
6136 	if (netif_running(dev)) {
6137 		for (i = 0; i < vi->max_queue_pairs; i++)
6138 			virtnet_napi_tx_enable(&vi->sq[i]);
6139 	}
6140 	if (prog)
6141 		bpf_prog_sub(prog, vi->max_queue_pairs - 1);
6142 	return err;
6143 }
6144 
6145 static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
6146 {
6147 	switch (xdp->command) {
6148 	case XDP_SETUP_PROG:
6149 		return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
6150 	case XDP_SETUP_XSK_POOL:
6151 		return virtnet_xsk_pool_setup(dev, xdp);
6152 	default:
6153 		return -EINVAL;
6154 	}
6155 }
6156 
6157 static int virtnet_get_phys_port_name(struct net_device *dev, char *buf,
6158 				      size_t len)
6159 {
6160 	struct virtnet_info *vi = netdev_priv(dev);
6161 	int ret;
6162 
6163 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
6164 		return -EOPNOTSUPP;
6165 
6166 	ret = snprintf(buf, len, "sby");
6167 	if (ret >= len)
6168 		return -EOPNOTSUPP;
6169 
6170 	return 0;
6171 }
6172 
6173 static int virtnet_set_features(struct net_device *dev,
6174 				netdev_features_t features)
6175 {
6176 	struct virtnet_info *vi = netdev_priv(dev);
6177 	u64 offloads;
6178 	int err;
6179 
6180 	if ((dev->features ^ features) & NETIF_F_GRO_HW) {
6181 		if (vi->xdp_enabled)
6182 			return -EBUSY;
6183 
6184 		if (features & NETIF_F_GRO_HW)
6185 			offloads = vi->guest_offloads_capable;
6186 		else
6187 			offloads = vi->guest_offloads_capable &
6188 				   ~GUEST_OFFLOAD_GRO_HW_MASK;
6189 
6190 		err = virtnet_set_guest_offloads(vi, offloads);
6191 		if (err)
6192 			return err;
6193 		vi->guest_offloads = offloads;
6194 	}
6195 
6196 	if ((dev->features ^ features) & NETIF_F_RXHASH) {
6197 		if (features & NETIF_F_RXHASH)
6198 			vi->rss_hdr->hash_types = cpu_to_le32(vi->rss_hash_types_saved);
6199 		else
6200 			vi->rss_hdr->hash_types = cpu_to_le32(VIRTIO_NET_HASH_REPORT_NONE);
6201 
6202 		if (!virtnet_commit_rss_command(vi))
6203 			return -EINVAL;
6204 	}
6205 
6206 	return 0;
6207 }
6208 
6209 static void virtnet_tx_timeout(struct net_device *dev, unsigned int txqueue)
6210 {
6211 	struct virtnet_info *priv = netdev_priv(dev);
6212 	struct send_queue *sq = &priv->sq[txqueue];
6213 	struct netdev_queue *txq = netdev_get_tx_queue(dev, txqueue);
6214 
6215 	u64_stats_update_begin(&sq->stats.syncp);
6216 	u64_stats_inc(&sq->stats.tx_timeouts);
6217 	u64_stats_update_end(&sq->stats.syncp);
6218 
6219 	netdev_err(dev, "TX timeout on queue: %u, sq: %s, vq: 0x%x, name: %s, %u usecs ago\n",
6220 		   txqueue, sq->name, sq->vq->index, sq->vq->name,
6221 		   jiffies_to_usecs(jiffies - READ_ONCE(txq->trans_start)));
6222 }
6223 
6224 static int virtnet_init_irq_moder(struct virtnet_info *vi)
6225 {
6226 	u8 profile_flags = 0, coal_flags = 0;
6227 	int ret, i;
6228 
6229 	profile_flags |= DIM_PROFILE_RX;
6230 	coal_flags |= DIM_COALESCE_USEC | DIM_COALESCE_PKTS;
6231 	ret = net_dim_init_irq_moder(vi->dev, profile_flags, coal_flags,
6232 				     DIM_CQ_PERIOD_MODE_START_FROM_EQE,
6233 				     0, virtnet_rx_dim_work, NULL);
6234 
6235 	if (ret)
6236 		return ret;
6237 
6238 	for (i = 0; i < vi->max_queue_pairs; i++)
6239 		net_dim_setting(vi->dev, &vi->rq[i].dim, false);
6240 
6241 	return 0;
6242 }
6243 
6244 static void virtnet_free_irq_moder(struct virtnet_info *vi)
6245 {
6246 	if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL))
6247 		return;
6248 
6249 	rtnl_lock();
6250 	net_dim_free_irq_moder(vi->dev);
6251 	rtnl_unlock();
6252 }
6253 
6254 static netdev_features_t virtnet_features_check(struct sk_buff *skb,
6255 						struct net_device *dev,
6256 						netdev_features_t features)
6257 {
6258 	/* Inner csum offload is only available for GSO packets. */
6259 	if (skb->encapsulation &&
6260 	    (!skb_is_gso(skb) || netif_needs_gso(skb, features)))
6261 		return features & ~NETIF_F_CSUM_MASK;
6262 
6263 	/* Passthru. */
6264 	return features;
6265 }
6266 
6267 static const struct net_device_ops virtnet_netdev = {
6268 	.ndo_open            = virtnet_open,
6269 	.ndo_stop   	     = virtnet_close,
6270 	.ndo_start_xmit      = start_xmit,
6271 	.ndo_validate_addr   = eth_validate_addr,
6272 	.ndo_set_mac_address = virtnet_set_mac_address,
6273 	.ndo_set_rx_mode     = virtnet_set_rx_mode,
6274 	.ndo_get_stats64     = virtnet_stats,
6275 	.ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
6276 	.ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
6277 	.ndo_bpf		= virtnet_xdp,
6278 	.ndo_xdp_xmit		= virtnet_xdp_xmit,
6279 	.ndo_xsk_wakeup         = virtnet_xsk_wakeup,
6280 	.ndo_features_check	= virtnet_features_check,
6281 	.ndo_get_phys_port_name	= virtnet_get_phys_port_name,
6282 	.ndo_set_features	= virtnet_set_features,
6283 	.ndo_tx_timeout		= virtnet_tx_timeout,
6284 };
6285 
6286 static void virtnet_config_changed_work(struct work_struct *work)
6287 {
6288 	struct virtnet_info *vi =
6289 		container_of(work, struct virtnet_info, config_work);
6290 	u16 v;
6291 
6292 	if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
6293 				 struct virtio_net_config, status, &v) < 0)
6294 		return;
6295 
6296 	if (v & VIRTIO_NET_S_ANNOUNCE) {
6297 		netdev_notify_peers(vi->dev);
6298 		virtnet_ack_link_announce(vi);
6299 	}
6300 
6301 	/* Ignore unknown (future) status bits */
6302 	v &= VIRTIO_NET_S_LINK_UP;
6303 
6304 	if (vi->status == v)
6305 		return;
6306 
6307 	vi->status = v;
6308 
6309 	if (vi->status & VIRTIO_NET_S_LINK_UP) {
6310 		virtnet_update_settings(vi);
6311 		netif_carrier_on(vi->dev);
6312 		netif_tx_wake_all_queues(vi->dev);
6313 	} else {
6314 		netif_carrier_off(vi->dev);
6315 		netif_tx_stop_all_queues(vi->dev);
6316 	}
6317 }
6318 
6319 static void virtnet_config_changed(struct virtio_device *vdev)
6320 {
6321 	struct virtnet_info *vi = vdev->priv;
6322 
6323 	schedule_work(&vi->config_work);
6324 }
6325 
6326 static void virtnet_free_queues(struct virtnet_info *vi)
6327 {
6328 	int i;
6329 
6330 	for (i = 0; i < vi->max_queue_pairs; i++) {
6331 		__netif_napi_del(&vi->rq[i].napi);
6332 		__netif_napi_del(&vi->sq[i].napi);
6333 	}
6334 
6335 	/* We called __netif_napi_del(),
6336 	 * we need to respect an RCU grace period before freeing vi->rq
6337 	 */
6338 	synchronize_net();
6339 
6340 	kfree(vi->rq);
6341 	kfree(vi->sq);
6342 	kfree(vi->ctrl);
6343 }
6344 
6345 static void _free_receive_bufs(struct virtnet_info *vi)
6346 {
6347 	struct bpf_prog *old_prog;
6348 	int i;
6349 
6350 	for (i = 0; i < vi->max_queue_pairs; i++) {
6351 		while (vi->rq[i].pages)
6352 			__free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
6353 
6354 		old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
6355 		RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
6356 		if (old_prog)
6357 			bpf_prog_put(old_prog);
6358 	}
6359 }
6360 
6361 static void free_receive_bufs(struct virtnet_info *vi)
6362 {
6363 	rtnl_lock();
6364 	_free_receive_bufs(vi);
6365 	rtnl_unlock();
6366 }
6367 
6368 static void virtnet_sq_free_unused_buf(struct virtqueue *vq, void *buf)
6369 {
6370 	struct virtnet_info *vi = vq->vdev->priv;
6371 	struct send_queue *sq;
6372 	int i = vq2txq(vq);
6373 
6374 	sq = &vi->sq[i];
6375 
6376 	switch (virtnet_xmit_ptr_unpack(&buf)) {
6377 	case VIRTNET_XMIT_TYPE_SKB:
6378 	case VIRTNET_XMIT_TYPE_SKB_ORPHAN:
6379 		dev_kfree_skb(buf);
6380 		break;
6381 
6382 	case VIRTNET_XMIT_TYPE_XDP:
6383 		xdp_return_frame(buf);
6384 		break;
6385 
6386 	case VIRTNET_XMIT_TYPE_XSK:
6387 		xsk_tx_completed(sq->xsk_pool, 1);
6388 		break;
6389 	}
6390 }
6391 
6392 static void virtnet_sq_free_unused_buf_done(struct virtqueue *vq)
6393 {
6394 	struct virtnet_info *vi = vq->vdev->priv;
6395 	int i = vq2txq(vq);
6396 
6397 	netdev_tx_reset_queue(netdev_get_tx_queue(vi->dev, i));
6398 }
6399 
6400 static void free_unused_bufs(struct virtnet_info *vi)
6401 {
6402 	void *buf;
6403 	int i;
6404 
6405 	for (i = 0; i < vi->max_queue_pairs; i++) {
6406 		struct virtqueue *vq = vi->sq[i].vq;
6407 		while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
6408 			virtnet_sq_free_unused_buf(vq, buf);
6409 		cond_resched();
6410 	}
6411 
6412 	for (i = 0; i < vi->max_queue_pairs; i++) {
6413 		struct virtqueue *vq = vi->rq[i].vq;
6414 
6415 		while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
6416 			virtnet_rq_unmap_free_buf(vq, buf);
6417 		cond_resched();
6418 	}
6419 }
6420 
6421 static void virtnet_del_vqs(struct virtnet_info *vi)
6422 {
6423 	struct virtio_device *vdev = vi->vdev;
6424 
6425 	virtnet_clean_affinity(vi);
6426 
6427 	vdev->config->del_vqs(vdev);
6428 
6429 	virtnet_free_queues(vi);
6430 }
6431 
6432 /* How large should a single buffer be so a queue full of these can fit at
6433  * least one full packet?
6434  * Logic below assumes the mergeable buffer header is used.
6435  */
6436 static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
6437 {
6438 	const unsigned int hdr_len = vi->hdr_len;
6439 	unsigned int rq_size = virtqueue_get_vring_size(vq);
6440 	unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
6441 	unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
6442 	unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
6443 
6444 	return max(max(min_buf_len, hdr_len) - hdr_len,
6445 		   (unsigned int)GOOD_PACKET_LEN);
6446 }
6447 
6448 static int virtnet_find_vqs(struct virtnet_info *vi)
6449 {
6450 	struct virtqueue_info *vqs_info;
6451 	struct virtqueue **vqs;
6452 	int ret = -ENOMEM;
6453 	int total_vqs;
6454 	bool *ctx;
6455 	u16 i;
6456 
6457 	/* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
6458 	 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
6459 	 * possible control vq.
6460 	 */
6461 	total_vqs = vi->max_queue_pairs * 2 +
6462 		    virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
6463 
6464 	/* Allocate space for find_vqs parameters */
6465 	vqs = kzalloc_objs(*vqs, total_vqs);
6466 	if (!vqs)
6467 		goto err_vq;
6468 	vqs_info = kzalloc_objs(*vqs_info, total_vqs);
6469 	if (!vqs_info)
6470 		goto err_vqs_info;
6471 	if (vi->mergeable_rx_bufs || !vi->big_packets) {
6472 		ctx = kzalloc_objs(*ctx, total_vqs);
6473 		if (!ctx)
6474 			goto err_ctx;
6475 	} else {
6476 		ctx = NULL;
6477 	}
6478 
6479 	/* Parameters for control virtqueue, if any */
6480 	if (vi->has_cvq) {
6481 		vqs_info[total_vqs - 1].name = "control";
6482 	}
6483 
6484 	/* Allocate/initialize parameters for send/receive virtqueues */
6485 	for (i = 0; i < vi->max_queue_pairs; i++) {
6486 		vqs_info[rxq2vq(i)].callback = skb_recv_done;
6487 		vqs_info[txq2vq(i)].callback = skb_xmit_done;
6488 		sprintf(vi->rq[i].name, "input.%u", i);
6489 		sprintf(vi->sq[i].name, "output.%u", i);
6490 		vqs_info[rxq2vq(i)].name = vi->rq[i].name;
6491 		vqs_info[txq2vq(i)].name = vi->sq[i].name;
6492 		if (ctx)
6493 			vqs_info[rxq2vq(i)].ctx = true;
6494 	}
6495 
6496 	ret = virtio_find_vqs(vi->vdev, total_vqs, vqs, vqs_info, NULL);
6497 	if (ret)
6498 		goto err_find;
6499 
6500 	if (vi->has_cvq) {
6501 		vi->cvq = vqs[total_vqs - 1];
6502 		if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
6503 			vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
6504 	}
6505 
6506 	for (i = 0; i < vi->max_queue_pairs; i++) {
6507 		vi->rq[i].vq = vqs[rxq2vq(i)];
6508 		vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
6509 		vi->sq[i].vq = vqs[txq2vq(i)];
6510 	}
6511 	/* run here: ret == 0. */
6512 
6513 err_find:
6514 	kfree(ctx);
6515 err_ctx:
6516 	kfree(vqs_info);
6517 err_vqs_info:
6518 	kfree(vqs);
6519 err_vq:
6520 	return ret;
6521 }
6522 
6523 static int virtnet_alloc_queues(struct virtnet_info *vi)
6524 {
6525 	int i;
6526 
6527 	if (vi->has_cvq) {
6528 		vi->ctrl = kzalloc_obj(*vi->ctrl);
6529 		if (!vi->ctrl)
6530 			goto err_ctrl;
6531 	} else {
6532 		vi->ctrl = NULL;
6533 	}
6534 	vi->sq = kzalloc_objs(*vi->sq, vi->max_queue_pairs);
6535 	if (!vi->sq)
6536 		goto err_sq;
6537 	vi->rq = kzalloc_objs(*vi->rq, vi->max_queue_pairs);
6538 	if (!vi->rq)
6539 		goto err_rq;
6540 
6541 	for (i = 0; i < vi->max_queue_pairs; i++) {
6542 		vi->rq[i].pages = NULL;
6543 		netif_napi_add_config(vi->dev, &vi->rq[i].napi, virtnet_poll,
6544 				      i);
6545 		vi->rq[i].napi.weight = napi_weight;
6546 		netif_napi_add_tx_weight(vi->dev, &vi->sq[i].napi,
6547 					 virtnet_poll_tx,
6548 					 napi_tx ? napi_weight : 0);
6549 
6550 		sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
6551 		ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
6552 		sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
6553 
6554 		u64_stats_init(&vi->rq[i].stats.syncp);
6555 		u64_stats_init(&vi->sq[i].stats.syncp);
6556 		mutex_init(&vi->rq[i].dim_lock);
6557 	}
6558 
6559 	return 0;
6560 
6561 err_rq:
6562 	kfree(vi->sq);
6563 err_sq:
6564 	kfree(vi->ctrl);
6565 err_ctrl:
6566 	return -ENOMEM;
6567 }
6568 
6569 static int init_vqs(struct virtnet_info *vi)
6570 {
6571 	int ret;
6572 
6573 	/* Allocate send & receive queues */
6574 	ret = virtnet_alloc_queues(vi);
6575 	if (ret)
6576 		goto err;
6577 
6578 	ret = virtnet_find_vqs(vi);
6579 	if (ret)
6580 		goto err_free;
6581 
6582 	cpus_read_lock();
6583 	virtnet_set_affinity(vi);
6584 	cpus_read_unlock();
6585 
6586 	return 0;
6587 
6588 err_free:
6589 	virtnet_free_queues(vi);
6590 err:
6591 	return ret;
6592 }
6593 
6594 #ifdef CONFIG_SYSFS
6595 static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
6596 		char *buf)
6597 {
6598 	struct virtnet_info *vi = netdev_priv(queue->dev);
6599 	unsigned int queue_index = get_netdev_rx_queue_index(queue);
6600 	unsigned int headroom = virtnet_get_headroom(vi);
6601 	unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
6602 	struct ewma_pkt_len *avg;
6603 
6604 	BUG_ON(queue_index >= vi->max_queue_pairs);
6605 	avg = &vi->rq[queue_index].mrg_avg_pkt_len;
6606 	return sprintf(buf, "%u\n",
6607 		       get_mergeable_buf_len(&vi->rq[queue_index], avg,
6608 				       SKB_DATA_ALIGN(headroom + tailroom)));
6609 }
6610 
6611 static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
6612 	__ATTR_RO(mergeable_rx_buffer_size);
6613 
6614 static struct attribute *virtio_net_mrg_rx_attrs[] = {
6615 	&mergeable_rx_buffer_size_attribute.attr,
6616 	NULL
6617 };
6618 
6619 static const struct attribute_group virtio_net_mrg_rx_group = {
6620 	.name = "virtio_net",
6621 	.attrs = virtio_net_mrg_rx_attrs
6622 };
6623 #endif
6624 
6625 static bool virtnet_fail_on_feature(struct virtio_device *vdev,
6626 				    unsigned int fbit,
6627 				    const char *fname, const char *dname)
6628 {
6629 	if (!virtio_has_feature(vdev, fbit))
6630 		return false;
6631 
6632 	dev_err(&vdev->dev, "device advertises feature %s but not %s",
6633 		fname, dname);
6634 
6635 	return true;
6636 }
6637 
6638 #define VIRTNET_FAIL_ON(vdev, fbit, dbit)			\
6639 	virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
6640 
6641 static bool virtnet_validate_features(struct virtio_device *vdev)
6642 {
6643 	if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
6644 	    (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
6645 			     "VIRTIO_NET_F_CTRL_VQ") ||
6646 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
6647 			     "VIRTIO_NET_F_CTRL_VQ") ||
6648 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
6649 			     "VIRTIO_NET_F_CTRL_VQ") ||
6650 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
6651 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
6652 			     "VIRTIO_NET_F_CTRL_VQ") ||
6653 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_RSS,
6654 			     "VIRTIO_NET_F_CTRL_VQ") ||
6655 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_HASH_REPORT,
6656 			     "VIRTIO_NET_F_CTRL_VQ") ||
6657 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_NOTF_COAL,
6658 			     "VIRTIO_NET_F_CTRL_VQ") ||
6659 	     VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_VQ_NOTF_COAL,
6660 			     "VIRTIO_NET_F_CTRL_VQ"))) {
6661 		return false;
6662 	}
6663 
6664 	return true;
6665 }
6666 
6667 #define MIN_MTU ETH_MIN_MTU
6668 #define MAX_MTU ETH_MAX_MTU
6669 
6670 static int virtnet_validate(struct virtio_device *vdev)
6671 {
6672 	if (!vdev->config->get) {
6673 		dev_err(&vdev->dev, "%s failure: config access disabled\n",
6674 			__func__);
6675 		return -EINVAL;
6676 	}
6677 
6678 	if (!virtnet_validate_features(vdev))
6679 		return -EINVAL;
6680 
6681 	if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
6682 		int mtu = virtio_cread16(vdev,
6683 					 offsetof(struct virtio_net_config,
6684 						  mtu));
6685 		if (mtu < MIN_MTU)
6686 			__virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
6687 	}
6688 
6689 	if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY) &&
6690 	    !virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) {
6691 		dev_warn(&vdev->dev, "device advertises feature VIRTIO_NET_F_STANDBY but not VIRTIO_NET_F_MAC, disabling standby");
6692 		__virtio_clear_bit(vdev, VIRTIO_NET_F_STANDBY);
6693 	}
6694 
6695 	return 0;
6696 }
6697 
6698 static bool virtnet_check_guest_gso(const struct virtnet_info *vi)
6699 {
6700 	return virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
6701 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
6702 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
6703 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) ||
6704 		(virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO4) &&
6705 		virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_USO6));
6706 }
6707 
6708 static void virtnet_set_big_packets(struct virtnet_info *vi, const int mtu)
6709 {
6710 	bool guest_gso = virtnet_check_guest_gso(vi);
6711 
6712 	/* If device can receive ANY guest GSO packets, regardless of mtu,
6713 	 * allocate packets of maximum size, otherwise limit it to only
6714 	 * mtu size worth only.
6715 	 */
6716 	if (mtu > ETH_DATA_LEN || guest_gso) {
6717 		vi->big_packets = true;
6718 		vi->big_packets_num_skbfrags = guest_gso ? MAX_SKB_FRAGS : DIV_ROUND_UP(mtu, PAGE_SIZE);
6719 	}
6720 }
6721 
6722 #define VIRTIO_NET_HASH_REPORT_MAX_TABLE      10
6723 static enum xdp_rss_hash_type
6724 virtnet_xdp_rss_type[VIRTIO_NET_HASH_REPORT_MAX_TABLE] = {
6725 	[VIRTIO_NET_HASH_REPORT_NONE] = XDP_RSS_TYPE_NONE,
6726 	[VIRTIO_NET_HASH_REPORT_IPv4] = XDP_RSS_TYPE_L3_IPV4,
6727 	[VIRTIO_NET_HASH_REPORT_TCPv4] = XDP_RSS_TYPE_L4_IPV4_TCP,
6728 	[VIRTIO_NET_HASH_REPORT_UDPv4] = XDP_RSS_TYPE_L4_IPV4_UDP,
6729 	[VIRTIO_NET_HASH_REPORT_IPv6] = XDP_RSS_TYPE_L3_IPV6,
6730 	[VIRTIO_NET_HASH_REPORT_TCPv6] = XDP_RSS_TYPE_L4_IPV6_TCP,
6731 	[VIRTIO_NET_HASH_REPORT_UDPv6] = XDP_RSS_TYPE_L4_IPV6_UDP,
6732 	[VIRTIO_NET_HASH_REPORT_IPv6_EX] = XDP_RSS_TYPE_L3_IPV6_EX,
6733 	[VIRTIO_NET_HASH_REPORT_TCPv6_EX] = XDP_RSS_TYPE_L4_IPV6_TCP_EX,
6734 	[VIRTIO_NET_HASH_REPORT_UDPv6_EX] = XDP_RSS_TYPE_L4_IPV6_UDP_EX
6735 };
6736 
6737 static int virtnet_xdp_rx_hash(const struct xdp_md *_ctx, u32 *hash,
6738 			       enum xdp_rss_hash_type *rss_type)
6739 {
6740 	const struct xdp_buff *xdp = (void *)_ctx;
6741 	struct virtio_net_hdr_v1_hash *hdr_hash;
6742 	struct virtnet_info *vi;
6743 	u16 hash_report;
6744 
6745 	if (!(xdp->rxq->dev->features & NETIF_F_RXHASH))
6746 		return -ENODATA;
6747 
6748 	vi = netdev_priv(xdp->rxq->dev);
6749 	hdr_hash = (struct virtio_net_hdr_v1_hash *)(xdp->data - vi->hdr_len);
6750 	hash_report = __le16_to_cpu(hdr_hash->hash_report);
6751 
6752 	if (hash_report >= VIRTIO_NET_HASH_REPORT_MAX_TABLE)
6753 		hash_report = VIRTIO_NET_HASH_REPORT_NONE;
6754 
6755 	*rss_type = virtnet_xdp_rss_type[hash_report];
6756 	*hash = virtio_net_hash_value(hdr_hash);
6757 	return 0;
6758 }
6759 
6760 static const struct xdp_metadata_ops virtnet_xdp_metadata_ops = {
6761 	.xmo_rx_hash			= virtnet_xdp_rx_hash,
6762 };
6763 
6764 static int virtnet_probe(struct virtio_device *vdev)
6765 {
6766 	int i, err = -ENOMEM;
6767 	struct net_device *dev;
6768 	struct virtnet_info *vi;
6769 	u16 max_queue_pairs;
6770 	int mtu = 0;
6771 	u16 key_sz;
6772 
6773 	/* Find if host supports multiqueue/rss virtio_net device */
6774 	max_queue_pairs = 1;
6775 	if (virtio_has_feature(vdev, VIRTIO_NET_F_MQ) || virtio_has_feature(vdev, VIRTIO_NET_F_RSS))
6776 		max_queue_pairs =
6777 		     virtio_cread16(vdev, offsetof(struct virtio_net_config, max_virtqueue_pairs));
6778 
6779 	/* We need at least 2 queue's */
6780 	if (max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
6781 	    max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
6782 	    !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
6783 		max_queue_pairs = 1;
6784 
6785 	/* Allocate ourselves a network device with room for our info */
6786 	dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
6787 	if (!dev)
6788 		return -ENOMEM;
6789 
6790 	/* Set up network device as normal. */
6791 	dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE |
6792 			   IFF_TX_SKB_NO_LINEAR;
6793 	dev->netdev_ops = &virtnet_netdev;
6794 	dev->stat_ops = &virtnet_stat_ops;
6795 	dev->features = NETIF_F_HIGHDMA;
6796 
6797 	dev->ethtool_ops = &virtnet_ethtool_ops;
6798 	SET_NETDEV_DEV(dev, &vdev->dev);
6799 
6800 	/* Do we support "hardware" checksums? */
6801 	if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
6802 		/* This opens up the world of extra features. */
6803 		dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
6804 		if (csum)
6805 			dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
6806 
6807 		if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
6808 			dev->hw_features |= NETIF_F_TSO
6809 				| NETIF_F_TSO_ECN | NETIF_F_TSO6;
6810 		}
6811 		/* Individual feature bits: what can host handle? */
6812 		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
6813 			dev->hw_features |= NETIF_F_TSO;
6814 		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
6815 			dev->hw_features |= NETIF_F_TSO6;
6816 		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
6817 			dev->hw_features |= NETIF_F_TSO_ECN;
6818 		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_USO))
6819 			dev->hw_features |= NETIF_F_GSO_UDP_L4;
6820 
6821 		if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO)) {
6822 			dev->hw_features |= NETIF_F_GSO_UDP_TUNNEL;
6823 			dev->hw_enc_features = dev->hw_features;
6824 		}
6825 		if (dev->hw_features & NETIF_F_GSO_UDP_TUNNEL &&
6826 		    virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO_CSUM)) {
6827 			dev->hw_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM;
6828 			dev->hw_enc_features |= NETIF_F_GSO_UDP_TUNNEL_CSUM;
6829 		}
6830 
6831 		dev->features |= NETIF_F_GSO_ROBUST;
6832 
6833 		if (gso)
6834 			dev->features |= dev->hw_features;
6835 		/* (!csum && gso) case will be fixed by register_netdev() */
6836 	}
6837 
6838 	/* 1. With VIRTIO_NET_F_GUEST_CSUM negotiation, the driver doesn't
6839 	 * need to calculate checksums for partially checksummed packets,
6840 	 * as they're considered valid by the upper layer.
6841 	 * 2. Without VIRTIO_NET_F_GUEST_CSUM negotiation, the driver only
6842 	 * receives fully checksummed packets. The device may assist in
6843 	 * validating these packets' checksums, so the driver won't have to.
6844 	 */
6845 	dev->features |= NETIF_F_RXCSUM;
6846 
6847 	if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
6848 	    virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6))
6849 		dev->features |= NETIF_F_GRO_HW;
6850 
6851 	dev->vlan_features = dev->features;
6852 	dev->xdp_features = NETDEV_XDP_ACT_BASIC | NETDEV_XDP_ACT_REDIRECT |
6853 		NETDEV_XDP_ACT_XSK_ZEROCOPY;
6854 
6855 	/* MTU range: 68 - 65535 */
6856 	dev->min_mtu = MIN_MTU;
6857 	dev->max_mtu = MAX_MTU;
6858 
6859 	/* Configuration may specify what MAC to use.  Otherwise random. */
6860 	if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) {
6861 		u8 addr[ETH_ALEN];
6862 
6863 		virtio_cread_bytes(vdev,
6864 				   offsetof(struct virtio_net_config, mac),
6865 				   addr, ETH_ALEN);
6866 		eth_hw_addr_set(dev, addr);
6867 	} else {
6868 		eth_hw_addr_random(dev);
6869 		dev_info(&vdev->dev, "Assigned random MAC address %pM\n",
6870 			 dev->dev_addr);
6871 	}
6872 
6873 	/* Set up our device-specific information */
6874 	vi = netdev_priv(dev);
6875 	vi->dev = dev;
6876 	vi->vdev = vdev;
6877 	vdev->priv = vi;
6878 
6879 	INIT_WORK(&vi->config_work, virtnet_config_changed_work);
6880 	INIT_WORK(&vi->rx_mode_work, virtnet_rx_mode_work);
6881 
6882 	if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF)) {
6883 		vi->mergeable_rx_bufs = true;
6884 		dev->xdp_features |= NETDEV_XDP_ACT_RX_SG;
6885 	}
6886 
6887 	if (virtio_has_feature(vdev, VIRTIO_NET_F_HASH_REPORT))
6888 		vi->has_rss_hash_report = true;
6889 
6890 	if (virtio_has_feature(vdev, VIRTIO_NET_F_RSS)) {
6891 		vi->has_rss = true;
6892 
6893 		vi->rss_indir_table_size =
6894 			virtio_cread16(vdev, offsetof(struct virtio_net_config,
6895 				rss_max_indirection_table_length));
6896 	}
6897 	vi->rss_hdr = devm_kzalloc(&vdev->dev, virtnet_rss_hdr_size(vi), GFP_KERNEL);
6898 	if (!vi->rss_hdr) {
6899 		err = -ENOMEM;
6900 		goto free;
6901 	}
6902 
6903 	if (vi->has_rss || vi->has_rss_hash_report) {
6904 		key_sz = virtio_cread8(vdev, offsetof(struct virtio_net_config, rss_max_key_size));
6905 
6906 		vi->rss_key_size = min_t(u16, key_sz, NETDEV_RSS_KEY_LEN);
6907 		if (key_sz > vi->rss_key_size)
6908 			dev_warn(&vdev->dev,
6909 				 "rss_max_key_size=%u exceeds driver limit %u, clamping\n",
6910 				 key_sz, vi->rss_key_size);
6911 
6912 		vi->rss_hash_types_supported =
6913 		    virtio_cread32(vdev, offsetof(struct virtio_net_config, supported_hash_types));
6914 		vi->rss_hash_types_supported &=
6915 				~(VIRTIO_NET_RSS_HASH_TYPE_IP_EX |
6916 				  VIRTIO_NET_RSS_HASH_TYPE_TCP_EX |
6917 				  VIRTIO_NET_RSS_HASH_TYPE_UDP_EX);
6918 
6919 		dev->hw_features |= NETIF_F_RXHASH;
6920 		dev->xdp_metadata_ops = &virtnet_xdp_metadata_ops;
6921 	}
6922 
6923 	if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO) ||
6924 	    virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO))
6925 		vi->hdr_len = sizeof(struct virtio_net_hdr_v1_hash_tunnel);
6926 	else if (vi->has_rss_hash_report)
6927 		vi->hdr_len = sizeof(struct virtio_net_hdr_v1_hash);
6928 	else if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
6929 		 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
6930 		vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
6931 	else
6932 		vi->hdr_len = sizeof(struct virtio_net_hdr);
6933 
6934 	if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO_CSUM))
6935 		vi->rx_tnl_csum = true;
6936 	if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO))
6937 		vi->rx_tnl = true;
6938 	if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO))
6939 		vi->tx_tnl = true;
6940 
6941 	if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
6942 	    virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
6943 		vi->any_header_sg = true;
6944 
6945 	if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
6946 		vi->has_cvq = true;
6947 
6948 	mutex_init(&vi->cvq_lock);
6949 
6950 	if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
6951 		mtu = virtio_cread16(vdev,
6952 				     offsetof(struct virtio_net_config,
6953 					      mtu));
6954 		if (mtu < dev->min_mtu) {
6955 			/* Should never trigger: MTU was previously validated
6956 			 * in virtnet_validate.
6957 			 */
6958 			dev_err(&vdev->dev,
6959 				"device MTU appears to have changed it is now %d < %d",
6960 				mtu, dev->min_mtu);
6961 			err = -EINVAL;
6962 			goto free;
6963 		}
6964 
6965 		dev->mtu = mtu;
6966 		dev->max_mtu = mtu;
6967 	}
6968 
6969 	virtnet_set_big_packets(vi, mtu);
6970 
6971 	if (vi->any_header_sg)
6972 		dev->needed_headroom = vi->hdr_len;
6973 
6974 	/* Enable multiqueue by default */
6975 	if (num_online_cpus() >= max_queue_pairs)
6976 		vi->curr_queue_pairs = max_queue_pairs;
6977 	else
6978 		vi->curr_queue_pairs = num_online_cpus();
6979 	vi->max_queue_pairs = max_queue_pairs;
6980 
6981 	/* Allocate/initialize the rx/tx queues, and invoke find_vqs */
6982 	err = init_vqs(vi);
6983 	if (err)
6984 		goto free;
6985 
6986 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_NOTF_COAL)) {
6987 		vi->intr_coal_rx.max_usecs = 0;
6988 		vi->intr_coal_tx.max_usecs = 0;
6989 		vi->intr_coal_rx.max_packets = 0;
6990 
6991 		/* Keep the default values of the coalescing parameters
6992 		 * aligned with the default napi_tx state.
6993 		 */
6994 		if (vi->sq[0].napi.weight)
6995 			vi->intr_coal_tx.max_packets = 1;
6996 		else
6997 			vi->intr_coal_tx.max_packets = 0;
6998 	}
6999 
7000 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_VQ_NOTF_COAL)) {
7001 		/* The reason is the same as VIRTIO_NET_F_NOTF_COAL. */
7002 		for (i = 0; i < vi->max_queue_pairs; i++)
7003 			if (vi->sq[i].napi.weight)
7004 				vi->sq[i].intr_coal.max_packets = 1;
7005 
7006 		err = virtnet_init_irq_moder(vi);
7007 		if (err)
7008 			goto free;
7009 	}
7010 
7011 	/* Create page pools for receive queues.
7012 	 * Page pools are created at probe time so they can be used
7013 	 * with premapped DMA addresses throughout the device lifetime.
7014 	 */
7015 	err = virtnet_create_page_pools(vi);
7016 	if (err)
7017 		goto free_irq_moder;
7018 
7019 #ifdef CONFIG_SYSFS
7020 	if (vi->mergeable_rx_bufs)
7021 		dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
7022 #endif
7023 	netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
7024 	netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
7025 
7026 	virtnet_init_settings(dev);
7027 
7028 	if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
7029 		vi->failover = net_failover_create(vi->dev);
7030 		if (IS_ERR(vi->failover)) {
7031 			err = PTR_ERR(vi->failover);
7032 			goto free_page_pools;
7033 		}
7034 	}
7035 
7036 	if (vi->has_rss || vi->has_rss_hash_report)
7037 		virtnet_init_default_rss(vi);
7038 
7039 	enable_rx_mode_work(vi);
7040 
7041 	for (i = 0; i < ARRAY_SIZE(guest_offloads); i++) {
7042 		unsigned int fbit;
7043 
7044 		fbit = virtio_offload_to_feature(guest_offloads[i]);
7045 		if (virtio_has_feature(vi->vdev, fbit))
7046 			set_bit(guest_offloads[i], &vi->guest_offloads);
7047 	}
7048 	vi->guest_offloads_capable = vi->guest_offloads;
7049 
7050 	if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS) &&
7051 	    (vi->guest_offloads_capable & GUEST_OFFLOAD_GRO_HW_MASK))
7052 		dev->hw_features |= NETIF_F_GRO_HW;
7053 
7054 	/* serialize netdev register + virtio_device_ready() with ndo_open() */
7055 	rtnl_lock();
7056 
7057 	err = register_netdevice(dev);
7058 	if (err) {
7059 		pr_debug("virtio_net: registering device failed\n");
7060 		rtnl_unlock();
7061 		goto free_failover;
7062 	}
7063 
7064 	/* Disable config change notification until ndo_open. */
7065 	virtio_config_driver_disable(vi->vdev);
7066 
7067 	virtio_device_ready(vdev);
7068 
7069 	if (vi->has_rss || vi->has_rss_hash_report) {
7070 		if (!virtnet_commit_rss_command(vi)) {
7071 			dev_warn(&vdev->dev, "RSS disabled because committing failed.\n");
7072 			dev->hw_features &= ~NETIF_F_RXHASH;
7073 			vi->has_rss_hash_report = false;
7074 			vi->has_rss = false;
7075 		}
7076 	}
7077 
7078 	virtnet_set_queues(vi, vi->curr_queue_pairs);
7079 
7080 	/* a random MAC address has been assigned, notify the device.
7081 	 * We don't fail probe if VIRTIO_NET_F_CTRL_MAC_ADDR is not there
7082 	 * because many devices work fine without getting MAC explicitly
7083 	 */
7084 	if (!virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
7085 	    virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
7086 		struct scatterlist sg;
7087 
7088 		sg_init_one(&sg, dev->dev_addr, dev->addr_len);
7089 		if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
7090 					  VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
7091 			pr_debug("virtio_net: setting MAC address failed\n");
7092 			rtnl_unlock();
7093 			err = -EINVAL;
7094 			goto free_unregister_netdev;
7095 		}
7096 	}
7097 
7098 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_DEVICE_STATS)) {
7099 		struct virtio_net_stats_capabilities *stats_cap  __free(kfree) = NULL;
7100 		struct scatterlist sg;
7101 		__le64 v;
7102 
7103 		stats_cap = kzalloc_obj(*stats_cap);
7104 		if (!stats_cap) {
7105 			rtnl_unlock();
7106 			err = -ENOMEM;
7107 			goto free_unregister_netdev;
7108 		}
7109 
7110 		sg_init_one(&sg, stats_cap, sizeof(*stats_cap));
7111 
7112 		if (!virtnet_send_command_reply(vi, VIRTIO_NET_CTRL_STATS,
7113 						VIRTIO_NET_CTRL_STATS_QUERY,
7114 						NULL, &sg)) {
7115 			pr_debug("virtio_net: fail to get stats capability\n");
7116 			rtnl_unlock();
7117 			err = -EINVAL;
7118 			goto free_unregister_netdev;
7119 		}
7120 
7121 		v = stats_cap->supported_stats_types[0];
7122 		vi->device_stats_cap = le64_to_cpu(v);
7123 	}
7124 
7125 	/* Assume link up if device can't report link status,
7126 	   otherwise get link status from config. */
7127 	netif_carrier_off(dev);
7128 	if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
7129 		virtio_config_changed(vi->vdev);
7130 	} else {
7131 		vi->status = VIRTIO_NET_S_LINK_UP;
7132 		virtnet_update_settings(vi);
7133 		netif_carrier_on(dev);
7134 	}
7135 
7136 	rtnl_unlock();
7137 
7138 	err = virtnet_cpu_notif_add(vi);
7139 	if (err) {
7140 		pr_debug("virtio_net: registering cpu notifier failed\n");
7141 		goto free_unregister_netdev;
7142 	}
7143 
7144 	pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
7145 		 dev->name, max_queue_pairs);
7146 
7147 	return 0;
7148 
7149 free_unregister_netdev:
7150 	unregister_netdev(dev);
7151 free_failover:
7152 	net_failover_destroy(vi->failover);
7153 free_page_pools:
7154 	virtnet_destroy_page_pools(vi);
7155 free_irq_moder:
7156 	virtnet_free_irq_moder(vi);
7157 	virtio_reset_device(vdev);
7158 	virtnet_del_vqs(vi);
7159 free:
7160 	free_netdev(dev);
7161 	return err;
7162 }
7163 
7164 static void remove_vq_common(struct virtnet_info *vi)
7165 {
7166 	int i;
7167 
7168 	virtio_reset_device(vi->vdev);
7169 
7170 	/* Free unused buffers in both send and recv, if any. */
7171 	free_unused_bufs(vi);
7172 
7173 	/*
7174 	 * Rule of thumb is netdev_tx_reset_queue() should follow any
7175 	 * skb freeing not followed by netdev_tx_completed_queue()
7176 	 */
7177 	for (i = 0; i < vi->max_queue_pairs; i++)
7178 		netdev_tx_reset_queue(netdev_get_tx_queue(vi->dev, i));
7179 
7180 	free_receive_bufs(vi);
7181 
7182 	virtnet_destroy_page_pools(vi);
7183 
7184 	virtnet_del_vqs(vi);
7185 }
7186 
7187 static void virtnet_remove(struct virtio_device *vdev)
7188 {
7189 	struct virtnet_info *vi = vdev->priv;
7190 
7191 	virtnet_cpu_notif_remove(vi);
7192 
7193 	/* Make sure no work handler is accessing the device. */
7194 	flush_work(&vi->config_work);
7195 	disable_rx_mode_work(vi);
7196 	flush_work(&vi->rx_mode_work);
7197 
7198 	virtnet_free_irq_moder(vi);
7199 
7200 	unregister_netdev(vi->dev);
7201 
7202 	net_failover_destroy(vi->failover);
7203 
7204 	remove_vq_common(vi);
7205 
7206 	free_netdev(vi->dev);
7207 }
7208 
7209 static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
7210 {
7211 	struct virtnet_info *vi = vdev->priv;
7212 
7213 	virtnet_cpu_notif_remove(vi);
7214 	virtnet_freeze_down(vdev);
7215 	remove_vq_common(vi);
7216 
7217 	return 0;
7218 }
7219 
7220 static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
7221 {
7222 	struct virtnet_info *vi = vdev->priv;
7223 	int err;
7224 
7225 	err = virtnet_restore_up(vdev);
7226 	if (err)
7227 		return err;
7228 	virtnet_set_queues(vi, vi->curr_queue_pairs);
7229 
7230 	err = virtnet_cpu_notif_add(vi);
7231 	if (err) {
7232 		virtnet_freeze_down(vdev);
7233 		remove_vq_common(vi);
7234 		return err;
7235 	}
7236 
7237 	return 0;
7238 }
7239 
7240 static struct virtio_device_id id_table[] = {
7241 	{ VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
7242 	{ 0 },
7243 };
7244 
7245 #define VIRTNET_FEATURES \
7246 	VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
7247 	VIRTIO_NET_F_MAC, \
7248 	VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
7249 	VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
7250 	VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
7251 	VIRTIO_NET_F_HOST_USO, VIRTIO_NET_F_GUEST_USO4, VIRTIO_NET_F_GUEST_USO6, \
7252 	VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
7253 	VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
7254 	VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
7255 	VIRTIO_NET_F_CTRL_MAC_ADDR, \
7256 	VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
7257 	VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY, \
7258 	VIRTIO_NET_F_RSS, VIRTIO_NET_F_HASH_REPORT, VIRTIO_NET_F_NOTF_COAL, \
7259 	VIRTIO_NET_F_VQ_NOTF_COAL, \
7260 	VIRTIO_NET_F_GUEST_HDRLEN, VIRTIO_NET_F_DEVICE_STATS
7261 
7262 static unsigned int features[] = {
7263 	VIRTNET_FEATURES,
7264 	VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO,
7265 	VIRTIO_NET_F_GUEST_UDP_TUNNEL_GSO_CSUM,
7266 	VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO,
7267 	VIRTIO_NET_F_HOST_UDP_TUNNEL_GSO_CSUM,
7268 };
7269 
7270 static unsigned int features_legacy[] = {
7271 	VIRTNET_FEATURES,
7272 	VIRTIO_NET_F_GSO,
7273 	VIRTIO_F_ANY_LAYOUT,
7274 };
7275 
7276 static struct virtio_driver virtio_net_driver = {
7277 	.feature_table = features,
7278 	.feature_table_size = ARRAY_SIZE(features),
7279 	.feature_table_legacy = features_legacy,
7280 	.feature_table_size_legacy = ARRAY_SIZE(features_legacy),
7281 	.driver.name =	KBUILD_MODNAME,
7282 	.id_table =	id_table,
7283 	.validate =	virtnet_validate,
7284 	.probe =	virtnet_probe,
7285 	.remove =	virtnet_remove,
7286 	.config_changed = virtnet_config_changed,
7287 #ifdef CONFIG_PM_SLEEP
7288 	.freeze =	virtnet_freeze,
7289 	.restore =	virtnet_restore,
7290 #endif
7291 };
7292 
7293 static __init int virtio_net_driver_init(void)
7294 {
7295 	int ret;
7296 
7297 	ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
7298 				      virtnet_cpu_online,
7299 				      virtnet_cpu_down_prep);
7300 	if (ret < 0)
7301 		goto out;
7302 	virtionet_online = ret;
7303 	ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
7304 				      NULL, virtnet_cpu_dead);
7305 	if (ret)
7306 		goto err_dead;
7307 	ret = register_virtio_driver(&virtio_net_driver);
7308 	if (ret)
7309 		goto err_virtio;
7310 	return 0;
7311 err_virtio:
7312 	cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
7313 err_dead:
7314 	cpuhp_remove_multi_state(virtionet_online);
7315 out:
7316 	return ret;
7317 }
7318 module_init(virtio_net_driver_init);
7319 
7320 static __exit void virtio_net_driver_exit(void)
7321 {
7322 	unregister_virtio_driver(&virtio_net_driver);
7323 	cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
7324 	cpuhp_remove_multi_state(virtionet_online);
7325 }
7326 module_exit(virtio_net_driver_exit);
7327 
7328 MODULE_DEVICE_TABLE(virtio, id_table);
7329 MODULE_DESCRIPTION("Virtio network driver");
7330 MODULE_LICENSE("GPL");
7331