blob: 7145c83c6c8c155076d814cb64782fbb5dbb22d6 [file] [log] [blame]
Thomas Gleixner1ccea772019-05-19 15:51:43 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Rusty Russell48925e32009-09-24 09:59:20 -06002/* A network driver using virtio.
Rusty Russell296f96f2007-10-22 11:03:37 +10003 *
4 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
Rusty Russell296f96f2007-10-22 11:03:37 +10005 */
6//#define DEBUG
7#include <linux/netdevice.h>
8#include <linux/etherdevice.h>
Herbert Xua9ea3fc2008-04-18 11:21:42 +08009#include <linux/ethtool.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100010#include <linux/module.h>
11#include <linux/virtio.h>
12#include <linux/virtio_net.h>
John Fastabendf600b692016-12-15 12:13:24 -080013#include <linux/bpf.h>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010014#include <linux/bpf_trace.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100015#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080016#include <linux/if_vlan.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090017#include <linux/slab.h>
Wanlong Gao8de4b2f2013-01-24 23:51:31 +000018#include <linux/cpu.h>
Michael Daltonab7db912014-01-16 22:23:27 -080019#include <linux/average.h>
Jason Wang186b3c92017-09-19 17:42:43 +080020#include <linux/filter.h>
Caleb Raitto2ca653d2018-08-09 17:28:40 -070021#include <linux/kernel.h>
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +020022#include <net/route.h>
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +010023#include <net/xdp.h>
Sridhar Samudralaba5e4422018-05-24 09:55:17 -070024#include <net/net_failover.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100025
Amerigo Wangd34710e2013-05-09 19:50:51 +000026static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020027module_param(napi_weight, int, 0444);
28
Willem de Bruijn31c03ae2019-06-13 12:24:57 -040029static bool csum = true, gso = true, napi_tx = true;
Rusty Russell34a48572008-02-04 23:50:02 -050030module_param(csum, bool, 0444);
31module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040032module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050033
Rusty Russell296f96f2007-10-22 11:03:37 +100034/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080035#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080036#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100037
Jason Wangf6b10202017-02-21 16:46:28 +080038#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
39
John Fastabend2de2f7f2017-02-02 19:16:29 -080040/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
41#define VIRTIO_XDP_HEADROOM 256
42
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +020043/* Separating two types of XDP xmit */
44#define VIRTIO_XDP_TX BIT(0)
45#define VIRTIO_XDP_REDIR BIT(1)
46
Toshiaki Makita50504712019-01-29 09:45:59 +090047#define VIRTIO_XDP_FLAG BIT(0)
48
Johannes Berg5377d7582015-08-19 09:48:40 +020049/* RX packet size EWMA. The average packet size is used to determine the packet
50 * buffer size when refilling RX rings. As the entire RX ring may be refilled
51 * at once, the weight is chosen so that the EWMA will be insensitive to short-
52 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080053 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010054DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080055
Rick Jones66846042011-11-14 14:17:08 +000056#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000057
Colin Ian King7acd4322017-08-12 22:45:53 +010058static const unsigned long guest_offloads[] = {
59 VIRTIO_NET_F_GUEST_TSO4,
60 VIRTIO_NET_F_GUEST_TSO6,
61 VIRTIO_NET_F_GUEST_ECN,
Jason Wange59ff2c2018-11-22 14:36:30 +080062 VIRTIO_NET_F_GUEST_UFO,
63 VIRTIO_NET_F_GUEST_CSUM
Colin Ian King7acd4322017-08-12 22:45:53 +010064};
Jason Wang3f935222017-07-19 16:54:49 +080065
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090066struct virtnet_stat_desc {
67 char desc[ETH_GSTRING_LEN];
68 size_t offset;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000069};
70
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090071struct virtnet_sq_stats {
72 struct u64_stats_sync syncp;
73 u64 packets;
74 u64 bytes;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090075 u64 xdp_tx;
76 u64 xdp_tx_drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +090077 u64 kicks;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090078};
79
Jason Wangd46eeea2018-07-31 17:43:39 +080080struct virtnet_rq_stats {
81 struct u64_stats_sync syncp;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090082 u64 packets;
83 u64 bytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +090084 u64 drops;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090085 u64 xdp_packets;
86 u64 xdp_tx;
87 u64 xdp_redirects;
88 u64 xdp_drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +090089 u64 kicks;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090090};
91
92#define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
Jason Wangd46eeea2018-07-31 17:43:39 +080093#define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090094
95static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090096 { "packets", VIRTNET_SQ_STAT(packets) },
97 { "bytes", VIRTNET_SQ_STAT(bytes) },
98 { "xdp_tx", VIRTNET_SQ_STAT(xdp_tx) },
99 { "xdp_tx_drops", VIRTNET_SQ_STAT(xdp_tx_drops) },
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900100 { "kicks", VIRTNET_SQ_STAT(kicks) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900101};
102
103static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900104 { "packets", VIRTNET_RQ_STAT(packets) },
105 { "bytes", VIRTNET_RQ_STAT(bytes) },
106 { "drops", VIRTNET_RQ_STAT(drops) },
107 { "xdp_packets", VIRTNET_RQ_STAT(xdp_packets) },
108 { "xdp_tx", VIRTNET_RQ_STAT(xdp_tx) },
109 { "xdp_redirects", VIRTNET_RQ_STAT(xdp_redirects) },
110 { "xdp_drops", VIRTNET_RQ_STAT(xdp_drops) },
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900111 { "kicks", VIRTNET_RQ_STAT(kicks) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900112};
113
114#define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
115#define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
116
Jason Wange9d74172012-12-07 07:04:55 +0000117/* Internal representation of a send virtqueue */
118struct send_queue {
119 /* Virtqueue associated with this send _queue */
120 struct virtqueue *vq;
121
122 /* TX: fragments + linear part + virtio header */
123 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000124
125 /* Name of the send queue: output.$index */
126 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400127
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900128 struct virtnet_sq_stats stats;
129
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400130 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +0000131};
132
133/* Internal representation of a receive virtqueue */
134struct receive_queue {
135 /* Virtqueue associated with this receive_queue */
136 struct virtqueue *vq;
137
Rusty Russell296f96f2007-10-22 11:03:37 +1000138 struct napi_struct napi;
139
John Fastabendf600b692016-12-15 12:13:24 -0800140 struct bpf_prog __rcu *xdp_prog;
141
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900142 struct virtnet_rq_stats stats;
143
Jason Wange9d74172012-12-07 07:04:55 +0000144 /* Chain pages by the private ptr. */
145 struct page *pages;
146
Michael Daltonab7db912014-01-16 22:23:27 -0800147 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200148 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800149
Michael Daltonfb518792014-01-16 22:23:26 -0800150 /* Page frag for packet buffer allocation. */
151 struct page_frag alloc_frag;
152
Jason Wange9d74172012-12-07 07:04:55 +0000153 /* RX: fragments + linear part + virtio header */
154 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000155
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200156 /* Min single buffer size for mergeable buffers case. */
157 unsigned int min_buf_len;
158
Jason Wang986a4f42012-12-07 07:04:56 +0000159 /* Name of this receive queue: input.$index */
160 char name[40];
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100161
162 struct xdp_rxq_info xdp_rxq;
Jason Wange9d74172012-12-07 07:04:55 +0000163};
164
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300165/* Control VQ buffers: protected by the rtnl lock */
166struct control_buf {
167 struct virtio_net_ctrl_hdr hdr;
168 virtio_net_ctrl_ack status;
169 struct virtio_net_ctrl_mq mq;
170 u8 promisc;
171 u8 allmulti;
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +0300172 __virtio16 vid;
Michael S. Tsirkinf4ee7032018-04-19 08:30:50 +0300173 __virtio64 offloads;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300174};
175
Jason Wange9d74172012-12-07 07:04:55 +0000176struct virtnet_info {
177 struct virtio_device *vdev;
178 struct virtqueue *cvq;
179 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000180 struct send_queue *sq;
181 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000182 unsigned int status;
183
Jason Wang986a4f42012-12-07 07:04:56 +0000184 /* Max # of queue pairs supported by the device */
185 u16 max_queue_pairs;
186
187 /* # of queue pairs currently used by the driver */
188 u16 curr_queue_pairs;
189
John Fastabend672aafd2016-12-15 12:13:49 -0800190 /* # of XDP queue pairs currently used by the driver */
191 u16 xdp_queue_pairs;
192
Herbert Xu97402b92008-04-18 11:24:27 +0800193 /* I like... big packets and I cannot lie! */
194 bool big_packets;
195
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800196 /* Host will merge rx buffers for big packets (shake it! shake it!) */
197 bool mergeable_rx_bufs;
198
Jason Wang986a4f42012-12-07 07:04:56 +0000199 /* Has control virtqueue */
200 bool has_cvq;
201
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930202 /* Host can handle any s/g split between our header and packet data */
203 bool any_header_sg;
204
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300205 /* Packet virtio header size */
206 u8 hdr_len;
207
Rusty Russell3161e452009-08-26 12:22:32 -0700208 /* Work struct for refilling if we run low on memory. */
209 struct delayed_work refill;
210
Jason Wang586d17c2012-04-11 20:43:52 +0000211 /* Work struct for config space updates */
212 struct work_struct config_work;
213
Jason Wang986a4f42012-12-07 07:04:56 +0000214 /* Does the affinity hint is set for virtqueues? */
215 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000216
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200217 /* CPU hotplug instances for online & dead */
218 struct hlist_node node;
219 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200220
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300221 struct control_buf *ctrl;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100222
223 /* Ethtool settings */
224 u8 duplex;
225 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800226
227 unsigned long guest_offloads;
Willem de Bruijna02e8962018-12-20 17:14:54 -0500228 unsigned long guest_offloads_capable;
Sridhar Samudralaba5e4422018-05-24 09:55:17 -0700229
230 /* failover when STANDBY feature enabled */
231 struct failover *failover;
Rusty Russell296f96f2007-10-22 11:03:37 +1000232};
233
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000234struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300235 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000236 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300237 * hdr is in a separate sg buffer, and data sg buffer shares same page
238 * with this header sg. This padding makes next sg 16 byte aligned
239 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000240 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300241 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000242};
243
Toshiaki Makita50504712019-01-29 09:45:59 +0900244static bool is_xdp_frame(void *ptr)
245{
246 return (unsigned long)ptr & VIRTIO_XDP_FLAG;
247}
248
249static void *xdp_to_ptr(struct xdp_frame *ptr)
250{
251 return (void *)((unsigned long)ptr | VIRTIO_XDP_FLAG);
252}
253
254static struct xdp_frame *ptr_to_xdp(void *ptr)
255{
256 return (struct xdp_frame *)((unsigned long)ptr & ~VIRTIO_XDP_FLAG);
257}
258
Jason Wang986a4f42012-12-07 07:04:56 +0000259/* Converting between virtqueue no. and kernel tx/rx queue no.
260 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
261 */
262static int vq2txq(struct virtqueue *vq)
263{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000264 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000265}
266
267static int txq2vq(int txq)
268{
269 return txq * 2 + 1;
270}
271
272static int vq2rxq(struct virtqueue *vq)
273{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000274 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000275}
276
277static int rxq2vq(int rxq)
278{
279 return rxq * 2;
280}
281
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300282static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000283{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300284 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000285}
286
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000287/*
288 * private is used to chain pages for big packets, put the whole
289 * most recent used list in the beginning for reuse
290 */
Jason Wange9d74172012-12-07 07:04:55 +0000291static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500292{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000293 struct page *end;
294
Jason Wange9d74172012-12-07 07:04:55 +0000295 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000296 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000297 end->private = (unsigned long)rq->pages;
298 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500299}
300
Jason Wange9d74172012-12-07 07:04:55 +0000301static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500302{
Jason Wange9d74172012-12-07 07:04:55 +0000303 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500304
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000305 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000306 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000307 /* clear private here, it is used to chain pages */
308 p->private = 0;
309 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500310 p = alloc_page(gfp_mask);
311 return p;
312}
313
Willem de Bruijne4e84522017-04-24 13:49:26 -0400314static void virtqueue_napi_schedule(struct napi_struct *napi,
315 struct virtqueue *vq)
316{
317 if (napi_schedule_prep(napi)) {
318 virtqueue_disable_cb(vq);
319 __napi_schedule(napi);
320 }
321}
322
323static void virtqueue_napi_complete(struct napi_struct *napi,
324 struct virtqueue *vq, int processed)
325{
326 int opaque;
327
328 opaque = virtqueue_enable_cb_prepare(vq);
Toshiaki Makitafdaa7672017-12-07 13:15:15 +0900329 if (napi_complete_done(napi, processed)) {
330 if (unlikely(virtqueue_poll(vq, opaque)))
331 virtqueue_napi_schedule(napi, vq);
332 } else {
333 virtqueue_disable_cb(vq);
334 }
Willem de Bruijne4e84522017-04-24 13:49:26 -0400335}
336
Jason Wange9d74172012-12-07 07:04:55 +0000337static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000338{
Jason Wange9d74172012-12-07 07:04:55 +0000339 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400340 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000341
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500342 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000343 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000344
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400345 if (napi->weight)
346 virtqueue_napi_schedule(napi, vq);
347 else
348 /* We were probably waiting for more output buffers. */
349 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000350}
351
Jason Wang28b39bc2017-07-19 16:54:46 +0800352#define MRG_CTX_HEADER_SHIFT 22
353static void *mergeable_len_to_ctx(unsigned int truesize,
354 unsigned int headroom)
355{
356 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
357}
358
359static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
360{
361 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
362}
363
364static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
365{
366 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
367}
368
Mike Waychison34646452012-01-04 12:52:32 +0000369/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300370static struct sk_buff *page_to_skb(struct virtnet_info *vi,
371 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700372 struct page *page, unsigned int offset,
Jason Wang436c9452018-11-29 13:53:16 +0800373 unsigned int len, unsigned int truesize,
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900374 bool hdr_valid, unsigned int metasize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000375{
376 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300377 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700378 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000379 char *p;
380
Michael Dalton2613af02013-10-28 15:44:18 -0700381 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000382
383 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100384 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000385 if (unlikely(!skb))
386 return NULL;
387
388 hdr = skb_vnet_hdr(skb);
389
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300390 hdr_len = vi->hdr_len;
391 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700392 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300393 else
Michael Dalton2613af02013-10-28 15:44:18 -0700394 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000395
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900396 /* hdr_valid means no XDP, so we can copy the vnet header */
Jason Wang436c9452018-11-29 13:53:16 +0800397 if (hdr_valid)
398 memcpy(hdr, p, hdr_len);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000399
400 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700401 offset += hdr_padded_len;
402 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000403
404 copy = len;
405 if (copy > skb_tailroom(skb))
406 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200407 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000408
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900409 if (metasize) {
410 __skb_pull(skb, metasize);
411 skb_metadata_set(skb, metasize);
412 }
413
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000414 len -= copy;
415 offset += copy;
416
Michael Dalton2613af02013-10-28 15:44:18 -0700417 if (vi->mergeable_rx_bufs) {
418 if (len)
419 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
420 else
421 put_page(page);
422 return skb;
423 }
424
Sasha Levine878d782011-09-28 04:40:54 +0000425 /*
426 * Verify that we can indeed put this data into a skb.
427 * This is here to handle cases when the device erroneously
428 * tries to receive more than is possible. This is usually
429 * the case of a broken device.
430 */
431 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000432 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000433 dev_kfree_skb(skb);
434 return NULL;
435 }
Michael Dalton2613af02013-10-28 15:44:18 -0700436 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000437 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700438 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
439 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
440 frag_size, truesize);
441 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000442 page = (struct page *)page->private;
443 offset = 0;
444 }
445
446 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000447 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000448
449 return skb;
450}
451
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200452static int __virtnet_xdp_xmit_one(struct virtnet_info *vi,
453 struct send_queue *sq,
454 struct xdp_frame *xdpf)
John Fastabend56434a02016-12-15 12:14:13 -0800455{
John Fastabend56434a02016-12-15 12:14:13 -0800456 struct virtio_net_hdr_mrg_rxbuf *hdr;
John Fastabend56434a02016-12-15 12:14:13 -0800457 int err;
458
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200459 if (unlikely(xdpf->headroom < vi->hdr_len))
460 return -EOVERFLOW;
461
462 /* Make room for virtqueue hdr (also change xdpf->headroom?) */
463 xdpf->data -= vi->hdr_len;
Jason Wangf6b10202017-02-21 16:46:28 +0800464 /* Zero header and leave csum up to XDP layers */
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200465 hdr = xdpf->data;
Jason Wangf6b10202017-02-21 16:46:28 +0800466 memset(hdr, 0, vi->hdr_len);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200467 xdpf->len += vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800468
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200469 sg_init_one(sq->sg, xdpf->data, xdpf->len);
Jason Wangbb91acc2016-12-23 22:37:32 +0800470
Toshiaki Makita50504712019-01-29 09:45:59 +0900471 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp_to_ptr(xdpf),
472 GFP_ATOMIC);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100473 if (unlikely(err))
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200474 return -ENOSPC; /* Caller handle free/refcnt */
John Fastabend56434a02016-12-15 12:14:13 -0800475
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200476 return 0;
John Fastabend56434a02016-12-15 12:14:13 -0800477}
478
Toshiaki Makita2a435652018-07-23 23:36:07 +0900479static struct send_queue *virtnet_xdp_sq(struct virtnet_info *vi)
480{
481 unsigned int qp;
482
483 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
484 return &vi->sq[qp];
485}
486
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200487static int virtnet_xdp_xmit(struct net_device *dev,
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +0200488 int n, struct xdp_frame **frames, u32 flags)
Jason Wang186b3c92017-09-19 17:42:43 +0800489{
490 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100491 struct receive_queue *rq = vi->rq;
492 struct bpf_prog *xdp_prog;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200493 struct send_queue *sq;
494 unsigned int len;
Toshiaki Makita546f28972019-01-31 20:40:30 +0900495 int packets = 0;
496 int bytes = 0;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200497 int drops = 0;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900498 int kicks = 0;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900499 int ret, err;
Toshiaki Makita50504712019-01-29 09:45:59 +0900500 void *ptr;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200501 int i;
502
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100503 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this
504 * indicate XDP resources have been successfully allocated.
505 */
John Fastabend9719c6b2020-01-26 16:14:01 -0800506 xdp_prog = rcu_access_pointer(rq->xdp_prog);
Toshiaki Makita1667c082019-01-29 09:45:56 +0900507 if (!xdp_prog)
508 return -ENXIO;
509
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000510 sq = virtnet_xdp_sq(vi);
511
512 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) {
Jason Wang186b3c92017-09-19 17:42:43 +0800513 ret = -EINVAL;
514 drops = n;
515 goto out;
516 }
517
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200518 /* Free up any pending old buffers before queueing new ones. */
Toshiaki Makita50504712019-01-29 09:45:59 +0900519 while ((ptr = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Toshiaki Makita546f28972019-01-31 20:40:30 +0900520 if (likely(is_xdp_frame(ptr))) {
521 struct xdp_frame *frame = ptr_to_xdp(ptr);
522
523 bytes += frame->len;
524 xdp_return_frame(frame);
525 } else {
526 struct sk_buff *skb = ptr;
527
528 bytes += skb->len;
529 napi_consume_skb(skb, false);
530 }
531 packets++;
Toshiaki Makita50504712019-01-29 09:45:59 +0900532 }
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200533
534 for (i = 0; i < n; i++) {
535 struct xdp_frame *xdpf = frames[i];
536
537 err = __virtnet_xdp_xmit_one(vi, sq, xdpf);
538 if (err) {
539 xdp_return_frame_rx_napi(xdpf);
540 drops++;
541 }
542 }
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900543 ret = n - drops;
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200544
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900545 if (flags & XDP_XMIT_FLUSH) {
546 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq))
547 kicks = 1;
548 }
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900549out:
550 u64_stats_update_begin(&sq->stats.syncp);
Toshiaki Makita546f28972019-01-31 20:40:30 +0900551 sq->stats.bytes += bytes;
552 sq->stats.packets += packets;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900553 sq->stats.xdp_tx += n;
554 sq->stats.xdp_tx_drops += drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900555 sq->stats.kicks += kicks;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900556 u64_stats_update_end(&sq->stats.syncp);
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200557
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900558 return ret;
Jason Wang186b3c92017-09-19 17:42:43 +0800559}
560
Jason Wangf6b10202017-02-21 16:46:28 +0800561static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
562{
563 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
564}
565
Jason Wang4941d472017-07-19 16:54:48 +0800566/* We copy the packet for XDP in the following cases:
567 *
568 * 1) Packet is scattered across multiple rx buffers.
569 * 2) Headroom space is insufficient.
570 *
571 * This is inefficient but it's a temporary condition that
572 * we hit right after XDP is enabled and until queue is refilled
573 * with large buffers with sufficient headroom - so it should affect
574 * at most queue size packets.
575 * Afterwards, the conditions to enable
576 * XDP should preclude the underlying device from sending packets
577 * across multiple buffers (num_buf > 1), and we make sure buffers
578 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800579 */
580static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800581 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800582 struct page *p,
583 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800584 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800585 unsigned int *len)
586{
587 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800588
589 if (!page)
590 return NULL;
591
592 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
593 page_off += *len;
594
Jason Wang56a86f82016-12-23 22:37:26 +0800595 while (--*num_buf) {
Jason Wang3cc81a92018-03-02 17:29:14 +0800596 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
John Fastabend72979a62016-12-15 12:14:36 -0800597 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800598 void *buf;
599 int off;
600
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200601 buf = virtqueue_get_buf(rq->vq, &buflen);
602 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800603 goto err_buf;
604
John Fastabend72979a62016-12-15 12:14:36 -0800605 p = virt_to_head_page(buf);
606 off = buf - page_address(p);
607
Jason Wang56a86f82016-12-23 22:37:26 +0800608 /* guard against a misconfigured or uncooperative backend that
609 * is sending packet larger than the MTU.
610 */
Jason Wang3cc81a92018-03-02 17:29:14 +0800611 if ((page_off + buflen + tailroom) > PAGE_SIZE) {
Jason Wang56a86f82016-12-23 22:37:26 +0800612 put_page(p);
613 goto err_buf;
614 }
615
John Fastabend72979a62016-12-15 12:14:36 -0800616 memcpy(page_address(page) + page_off,
617 page_address(p) + off, buflen);
618 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800619 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800620 }
621
John Fastabend2de2f7f2017-02-02 19:16:29 -0800622 /* Headroom does not contribute to packet length */
623 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800624 return page;
625err_buf:
626 __free_pages(page, 0);
627 return NULL;
628}
629
Jason Wang4941d472017-07-19 16:54:48 +0800630static struct sk_buff *receive_small(struct net_device *dev,
631 struct virtnet_info *vi,
632 struct receive_queue *rq,
633 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800634 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900635 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800636 struct virtnet_rq_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800637{
638 struct sk_buff *skb;
639 struct bpf_prog *xdp_prog;
640 unsigned int xdp_headroom = (unsigned long)ctx;
641 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
642 unsigned int headroom = vi->hdr_len + header_offset;
643 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
644 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
645 struct page *page = virt_to_head_page(buf);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100646 unsigned int delta = 0;
Jason Wang4941d472017-07-19 16:54:48 +0800647 struct page *xdp_page;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100648 int err;
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900649 unsigned int metasize = 0;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100650
Jason Wang4941d472017-07-19 16:54:48 +0800651 len -= vi->hdr_len;
Jason Wangd46eeea2018-07-31 17:43:39 +0800652 stats->bytes += len;
Jason Wang4941d472017-07-19 16:54:48 +0800653
654 rcu_read_lock();
655 xdp_prog = rcu_dereference(rq->xdp_prog);
656 if (xdp_prog) {
657 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200658 struct xdp_frame *xdpf;
Jason Wang4941d472017-07-19 16:54:48 +0800659 struct xdp_buff xdp;
660 void *orig_data;
661 u32 act;
662
Jesper Dangaard Brouer95dbe9e2018-02-20 14:32:10 +0100663 if (unlikely(hdr->hdr.gso_type))
Jason Wang4941d472017-07-19 16:54:48 +0800664 goto err_xdp;
665
666 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
667 int offset = buf - page_address(page) + header_offset;
668 unsigned int tlen = len + vi->hdr_len;
669 u16 num_buf = 1;
670
671 xdp_headroom = virtnet_get_headroom(vi);
672 header_offset = VIRTNET_RX_PAD + xdp_headroom;
673 headroom = vi->hdr_len + header_offset;
674 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
675 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
676 xdp_page = xdp_linearize_page(rq, &num_buf, page,
677 offset, header_offset,
678 &tlen);
679 if (!xdp_page)
680 goto err_xdp;
681
682 buf = page_address(xdp_page);
683 put_page(page);
684 page = xdp_page;
685 }
686
687 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
688 xdp.data = xdp.data_hard_start + xdp_headroom;
689 xdp.data_end = xdp.data + len;
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900690 xdp.data_meta = xdp.data;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100691 xdp.rxq = &rq->xdp_rxq;
Jesper Dangaard Brouer9ce61462020-05-14 12:50:44 +0200692 xdp.frame_sz = buflen;
Jason Wang4941d472017-07-19 16:54:48 +0800693 orig_data = xdp.data;
694 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Jason Wangd46eeea2018-07-31 17:43:39 +0800695 stats->xdp_packets++;
Jason Wang4941d472017-07-19 16:54:48 +0800696
697 switch (act) {
698 case XDP_PASS:
699 /* Recalculate length in case bpf program changed it */
700 delta = orig_data - xdp.data;
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700701 len = xdp.data_end - xdp.data;
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900702 metasize = xdp.data - xdp.data_meta;
Jason Wang4941d472017-07-19 16:54:48 +0800703 break;
704 case XDP_TX:
Jason Wangd46eeea2018-07-31 17:43:39 +0800705 stats->xdp_tx++;
Lorenzo Bianconi1b698fa2020-05-28 22:47:29 +0200706 xdpf = xdp_convert_buff_to_frame(&xdp);
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200707 if (unlikely(!xdpf))
708 goto err_xdp;
Jason Wangca9e83b2018-07-31 17:43:38 +0800709 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
710 if (unlikely(err < 0)) {
Jason Wang4941d472017-07-19 16:54:48 +0800711 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100712 goto err_xdp;
713 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200714 *xdp_xmit |= VIRTIO_XDP_TX;
Jason Wang186b3c92017-09-19 17:42:43 +0800715 rcu_read_unlock();
716 goto xdp_xmit;
717 case XDP_REDIRECT:
Jason Wangd46eeea2018-07-31 17:43:39 +0800718 stats->xdp_redirects++;
Jason Wang186b3c92017-09-19 17:42:43 +0800719 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100720 if (err)
721 goto err_xdp;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200722 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang4941d472017-07-19 16:54:48 +0800723 rcu_read_unlock();
724 goto xdp_xmit;
725 default:
726 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500727 fallthrough;
Jason Wang4941d472017-07-19 16:54:48 +0800728 case XDP_ABORTED:
729 trace_xdp_exception(vi->dev, xdp_prog, act);
730 case XDP_DROP:
731 goto err_xdp;
732 }
733 }
734 rcu_read_unlock();
735
736 skb = build_skb(buf, buflen);
737 if (!skb) {
738 put_page(page);
739 goto err;
740 }
741 skb_reserve(skb, headroom - delta);
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700742 skb_put(skb, len);
Yuya Kusakabef1d48842020-02-25 12:32:11 +0900743 if (!xdp_prog) {
Jason Wang4941d472017-07-19 16:54:48 +0800744 buf += header_offset;
745 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
Yuya Kusakabef1d48842020-02-25 12:32:11 +0900746 } /* keep zeroed vnet hdr since XDP is loaded */
Jason Wang4941d472017-07-19 16:54:48 +0800747
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900748 if (metasize)
749 skb_metadata_set(skb, metasize);
750
Jason Wang4941d472017-07-19 16:54:48 +0800751err:
752 return skb;
753
754err_xdp:
755 rcu_read_unlock();
Jason Wangd46eeea2018-07-31 17:43:39 +0800756 stats->xdp_drops++;
757 stats->drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800758 put_page(page);
759xdp_xmit:
760 return NULL;
761}
762
763static struct sk_buff *receive_big(struct net_device *dev,
764 struct virtnet_info *vi,
765 struct receive_queue *rq,
766 void *buf,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900767 unsigned int len,
Jason Wangd46eeea2018-07-31 17:43:39 +0800768 struct virtnet_rq_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800769{
770 struct page *page = buf;
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900771 struct sk_buff *skb =
772 page_to_skb(vi, rq, page, 0, len, PAGE_SIZE, true, 0);
Jason Wang4941d472017-07-19 16:54:48 +0800773
Jason Wangd46eeea2018-07-31 17:43:39 +0800774 stats->bytes += len - vi->hdr_len;
Jason Wang4941d472017-07-19 16:54:48 +0800775 if (unlikely(!skb))
776 goto err;
777
778 return skb;
779
780err:
Jason Wangd46eeea2018-07-31 17:43:39 +0800781 stats->drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800782 give_pages(rq, page);
783 return NULL;
784}
785
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200786static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200787 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200788 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200789 void *buf,
790 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800791 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900792 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800793 struct virtnet_rq_stats *stats)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000794{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300795 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
796 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200797 struct page *page = virt_to_head_page(buf);
798 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800799 struct sk_buff *head_skb, *curr_skb;
800 struct bpf_prog *xdp_prog;
Jesper Dangaard Brouer9ce61462020-05-14 12:50:44 +0200801 unsigned int truesize = mergeable_ctx_to_truesize(ctx);
Jason Wang4941d472017-07-19 16:54:48 +0800802 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900803 unsigned int metasize = 0;
Jesper Dangaard Brouer9ce61462020-05-14 12:50:44 +0200804 unsigned int frame_sz;
805 int err;
Michael Daltonab7db912014-01-16 22:23:27 -0800806
John Fastabend56434a02016-12-15 12:14:13 -0800807 head_skb = NULL;
Jason Wangd46eeea2018-07-31 17:43:39 +0800808 stats->bytes += len - vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800809
John Fastabendf600b692016-12-15 12:13:24 -0800810 rcu_read_lock();
811 xdp_prog = rcu_dereference(rq->xdp_prog);
812 if (xdp_prog) {
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200813 struct xdp_frame *xdpf;
John Fastabend72979a62016-12-15 12:14:36 -0800814 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800815 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800816 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800817 u32 act;
818
Jason Wang3d62b2a2018-05-22 11:44:31 +0800819 /* Transient failure which in theory could occur if
820 * in-flight packets from before XDP was enabled reach
821 * the receive path after XDP is loaded.
822 */
823 if (unlikely(hdr->hdr.gso_type))
824 goto err_xdp;
825
Jesper Dangaard Brouer9ce61462020-05-14 12:50:44 +0200826 /* Buffers with headroom use PAGE_SIZE as alloc size,
827 * see add_recvbuf_mergeable() + get_mergeable_buf_len()
828 */
829 frame_sz = headroom ? PAGE_SIZE : truesize;
830
Jason Wang3cc81a92018-03-02 17:29:14 +0800831 /* This happens when rx buffer size is underestimated
832 * or headroom is not enough because of the buffer
833 * was refilled before XDP is set. This should only
834 * happen for the first several packets, so we don't
835 * care much about its performance.
836 */
Jason Wang4941d472017-07-19 16:54:48 +0800837 if (unlikely(num_buf > 1 ||
838 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800839 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800840 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800841 page, offset,
842 VIRTIO_XDP_HEADROOM,
843 &len);
Jesper Dangaard Brouer9ce61462020-05-14 12:50:44 +0200844 frame_sz = PAGE_SIZE;
845
John Fastabend72979a62016-12-15 12:14:36 -0800846 if (!xdp_page)
847 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800848 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800849 } else {
850 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800851 }
852
John Fastabend2de2f7f2017-02-02 19:16:29 -0800853 /* Allow consuming headroom but reserve enough space to push
854 * the descriptor on if we get an XDP_TX return code.
855 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800856 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800857 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800858 xdp.data = data + vi->hdr_len;
859 xdp.data_end = xdp.data + (len - vi->hdr_len);
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900860 xdp.data_meta = xdp.data;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100861 xdp.rxq = &rq->xdp_rxq;
Jesper Dangaard Brouer9ce61462020-05-14 12:50:44 +0200862 xdp.frame_sz = frame_sz - vi->hdr_len;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100863
John Fastabend0354e4d2017-02-02 19:15:01 -0800864 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Jason Wangd46eeea2018-07-31 17:43:39 +0800865 stats->xdp_packets++;
John Fastabend0354e4d2017-02-02 19:15:01 -0800866
John Fastabend56434a02016-12-15 12:14:13 -0800867 switch (act) {
868 case XDP_PASS:
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900869 metasize = xdp.data - xdp.data_meta;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800870
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900871 /* recalculate offset to account for any header
872 * adjustments and minus the metasize to copy the
873 * metadata in page_to_skb(). Note other cases do not
874 * build an skb and avoid using offset
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700875 */
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900876 offset = xdp.data - page_address(xdp_page) -
877 vi->hdr_len - metasize;
878
879 /* recalculate len if xdp.data, xdp.data_end or
880 * xdp.data_meta were adjusted
881 */
882 len = xdp.data_end - xdp.data + vi->hdr_len + metasize;
Jason Wang1830f892016-12-23 22:37:27 +0800883 /* We can only create skb based on xdp_page. */
884 if (unlikely(xdp_page != page)) {
885 rcu_read_unlock();
886 put_page(page);
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900887 head_skb = page_to_skb(vi, rq, xdp_page, offset,
888 len, PAGE_SIZE, false,
889 metasize);
Jason Wang1830f892016-12-23 22:37:27 +0800890 return head_skb;
891 }
John Fastabend56434a02016-12-15 12:14:13 -0800892 break;
893 case XDP_TX:
Jason Wangd46eeea2018-07-31 17:43:39 +0800894 stats->xdp_tx++;
Lorenzo Bianconi1b698fa2020-05-28 22:47:29 +0200895 xdpf = xdp_convert_buff_to_frame(&xdp);
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200896 if (unlikely(!xdpf))
897 goto err_xdp;
Jason Wangca9e83b2018-07-31 17:43:38 +0800898 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
899 if (unlikely(err < 0)) {
John Fastabend0354e4d2017-02-02 19:15:01 -0800900 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100901 if (unlikely(xdp_page != page))
902 put_page(xdp_page);
903 goto err_xdp;
904 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200905 *xdp_xmit |= VIRTIO_XDP_TX;
John Fastabend72979a62016-12-15 12:14:36 -0800906 if (unlikely(xdp_page != page))
Jason Wang5d458a12018-05-22 11:44:29 +0800907 put_page(page);
John Fastabend56434a02016-12-15 12:14:13 -0800908 rcu_read_unlock();
909 goto xdp_xmit;
Jason Wang3cc81a92018-03-02 17:29:14 +0800910 case XDP_REDIRECT:
Jason Wangd46eeea2018-07-31 17:43:39 +0800911 stats->xdp_redirects++;
Jason Wang3cc81a92018-03-02 17:29:14 +0800912 err = xdp_do_redirect(dev, &xdp, xdp_prog);
913 if (err) {
914 if (unlikely(xdp_page != page))
915 put_page(xdp_page);
916 goto err_xdp;
917 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200918 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang3cc81a92018-03-02 17:29:14 +0800919 if (unlikely(xdp_page != page))
Jason Wang68904182018-05-22 11:44:28 +0800920 put_page(page);
Jason Wang3cc81a92018-03-02 17:29:14 +0800921 rcu_read_unlock();
922 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800923 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800924 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500925 fallthrough;
John Fastabend0354e4d2017-02-02 19:15:01 -0800926 case XDP_ABORTED:
927 trace_xdp_exception(vi->dev, xdp_prog, act);
Gustavo A. R. Silvadf561f662020-08-23 17:36:59 -0500928 fallthrough;
John Fastabend0354e4d2017-02-02 19:15:01 -0800929 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800930 if (unlikely(xdp_page != page))
931 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800932 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800933 }
John Fastabendf600b692016-12-15 12:13:24 -0800934 }
935 rcu_read_unlock();
936
Jason Wang28b39bc2017-07-19 16:54:46 +0800937 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300938 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200939 dev->name, len, (unsigned long)ctx);
940 dev->stats.rx_length_errors++;
941 goto err_skb;
942 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800943
Yuya Kusakabe503d5392020-02-25 12:32:12 +0900944 head_skb = page_to_skb(vi, rq, page, offset, len, truesize, !xdp_prog,
945 metasize);
John Fastabendf600b692016-12-15 12:13:24 -0800946 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000947
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200948 if (unlikely(!curr_skb))
949 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000950 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200951 int num_skb_frags;
952
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200953 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Yunjian Wang03e9f8a2017-12-04 14:02:19 +0800954 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200955 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200956 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300957 virtio16_to_cpu(vi->vdev,
958 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200959 dev->stats.rx_length_errors++;
960 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000961 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200962
Jason Wangd46eeea2018-07-31 17:43:39 +0800963 stats->bytes += len;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200964 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800965
966 truesize = mergeable_ctx_to_truesize(ctx);
967 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300968 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200969 dev->name, len, (unsigned long)ctx);
970 dev->stats.rx_length_errors++;
971 goto err_skb;
972 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200973
974 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700975 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
976 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200977
978 if (unlikely(!nskb))
979 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700980 if (curr_skb == head_skb)
981 skb_shinfo(curr_skb)->frag_list = nskb;
982 else
983 curr_skb->next = nskb;
984 curr_skb = nskb;
985 head_skb->truesize += nskb->truesize;
986 num_skb_frags = 0;
987 }
988 if (curr_skb != head_skb) {
989 head_skb->data_len += len;
990 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800991 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700992 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200993 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800994 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
995 put_page(page);
996 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800997 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800998 } else {
999 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -08001000 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +08001001 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001002 }
1003
Johannes Berg5377d7582015-08-19 09:48:40 +02001004 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001005 return head_skb;
1006
John Fastabendf600b692016-12-15 12:13:24 -08001007err_xdp:
1008 rcu_read_unlock();
Jason Wangd46eeea2018-07-31 17:43:39 +08001009 stats->xdp_drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001010err_skb:
1011 put_page(page);
Jason Wang850e0882018-05-22 11:44:30 +08001012 while (num_buf-- > 1) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001013 buf = virtqueue_get_buf(rq->vq, &len);
1014 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001015 pr_debug("%s: rx error: %d buffers missing\n",
1016 dev->name, num_buf);
1017 dev->stats.rx_length_errors++;
1018 break;
1019 }
Jason Wangd46eeea2018-07-31 17:43:39 +08001020 stats->bytes += len;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001021 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001022 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001023 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001024err_buf:
Jason Wangd46eeea2018-07-31 17:43:39 +08001025 stats->drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001026 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -08001027xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +02001028 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001029}
1030
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001031static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
1032 void *buf, unsigned int len, void **ctx,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001033 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +08001034 struct virtnet_rq_stats *stats)
Rusty Russell296f96f2007-10-22 11:03:37 +10001035{
Jason Wange9d74172012-12-07 07:04:55 +00001036 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001037 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001038 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001039
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +03001040 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10001041 pr_debug("%s: short packet %i\n", dev->name, len);
1042 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -08001043 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001044 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08001045 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -08001046 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001047 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08001048 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08001049 }
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001050 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001051 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001052
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001053 if (vi->mergeable_rx_bufs)
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001054 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001055 stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001056 else if (vi->big_packets)
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001057 skb = receive_big(dev, vi, rq, buf, len, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001058 else
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001059 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001060
1061 if (unlikely(!skb))
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001062 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001063
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001064 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001065
Mike Rapoporte858fae2016-06-08 16:09:21 +03001066 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +00001067 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +10001068
Mike Rapoporte858fae2016-06-08 16:09:21 +03001069 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
1070 virtio_is_little_endian(vi->vdev))) {
1071 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
1072 dev->name, hdr->hdr.gso_type,
1073 hdr->hdr.gso_size);
1074 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001075 }
1076
Willem de Bruijn133bbb12019-01-17 20:08:53 -05001077 skb_record_rx_queue(skb, vq2rxq(rq->vq));
Mike Rapoportd1dc06d2016-06-14 08:29:38 +03001078 skb->protocol = eth_type_trans(skb, dev);
1079 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
1080 ntohs(skb->protocol), skb->len, skb->pkt_type);
1081
Eric Dumazet0fbd0502015-07-31 18:25:17 +02001082 napi_gro_receive(&rq->napi, skb);
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001083 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001084
1085frame_err:
1086 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +10001087 dev_kfree_skb(skb);
1088}
1089
Jason Wang192f68c2017-07-19 16:54:47 +08001090/* Unlike mergeable buffers, all buffers are allocated to the
1091 * same size, except for the headroom. For this reason we do
1092 * not need to use mergeable_len_to_ctx here - it is enough
1093 * to store the headroom as the context ignoring the truesize.
1094 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001095static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
1096 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +10001097{
Jason Wangf6b10202017-02-21 16:46:28 +08001098 struct page_frag *alloc_frag = &rq->alloc_frag;
1099 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001100 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +08001101 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +08001102 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001103 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001104
Jason Wangf6b10202017-02-21 16:46:28 +08001105 len = SKB_DATA_ALIGN(len) +
1106 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1107 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001108 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001109
Jason Wangf6b10202017-02-21 16:46:28 +08001110 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1111 get_page(alloc_frag->page);
1112 alloc_frag->offset += len;
1113 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
1114 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +08001115 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001116 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +08001117 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001118 return err;
1119}
1120
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001121static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
1122 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001123{
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001124 struct page *first, *list = NULL;
1125 char *p;
1126 int i, err, offset;
1127
Rusty Russella5835442014-09-11 10:17:36 +09301128 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
1129
Jason Wange9d74172012-12-07 07:04:55 +00001130 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001131 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +00001132 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001133 if (!first) {
1134 if (list)
Jason Wange9d74172012-12-07 07:04:55 +00001135 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001136 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -07001137 }
Jason Wange9d74172012-12-07 07:04:55 +00001138 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +10001139
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001140 /* chain new page in list head to match sg */
1141 first->private = (unsigned long)list;
1142 list = first;
1143 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001144
Jason Wange9d74172012-12-07 07:04:55 +00001145 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001146 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +00001147 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001148 return -ENOMEM;
1149 }
1150 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +08001151
Jason Wange9d74172012-12-07 07:04:55 +00001152 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001153 /* a separated rq->sg[0] for header - required in case !any_header_sg */
1154 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +08001155
Jason Wange9d74172012-12-07 07:04:55 +00001156 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001157 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +00001158 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +08001159
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001160 /* chain first in list head */
1161 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301162 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
1163 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001164 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +00001165 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +08001166
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001167 return err;
1168}
Herbert Xu97402b92008-04-18 11:24:27 +08001169
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02001170static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
Jason Wang3cc81a92018-03-02 17:29:14 +08001171 struct ewma_pkt_len *avg_pkt_len,
1172 unsigned int room)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001173{
Michael Daltonab7db912014-01-16 22:23:27 -08001174 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001175 unsigned int len;
1176
Jason Wang3cc81a92018-03-02 17:29:14 +08001177 if (room)
1178 return PAGE_SIZE - room;
1179
1180 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03001181 rq->min_buf_len, PAGE_SIZE - hdr_len);
Jason Wang3cc81a92018-03-02 17:29:14 +08001182
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +02001183 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001184}
1185
John Fastabend2de2f7f2017-02-02 19:16:29 -08001186static int add_recvbuf_mergeable(struct virtnet_info *vi,
1187 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -08001188{
Michael Daltonfb518792014-01-16 22:23:26 -08001189 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001190 unsigned int headroom = virtnet_get_headroom(vi);
Jason Wang3cc81a92018-03-02 17:29:14 +08001191 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1192 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
Michael Daltonfb518792014-01-16 22:23:26 -08001193 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001194 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001195 int err;
Michael Daltonfb518792014-01-16 22:23:26 -08001196 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +10001197
Jason Wang3cc81a92018-03-02 17:29:14 +08001198 /* Extra tailroom is needed to satisfy XDP's assumption. This
1199 * means rx frags coalescing won't work, but consider we've
1200 * disabled GSO for XDP, it won't be a big issue.
1201 */
1202 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room);
1203 if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001204 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -08001205
Michael Daltonfb518792014-01-16 22:23:26 -08001206 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001207 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -08001208 get_page(alloc_frag->page);
Jason Wang3cc81a92018-03-02 17:29:14 +08001209 alloc_frag->offset += len + room;
Michael Daltonfb518792014-01-16 22:23:26 -08001210 hole = alloc_frag->size - alloc_frag->offset;
Jason Wang3cc81a92018-03-02 17:29:14 +08001211 if (hole < len + room) {
Michael Daltonab7db912014-01-16 22:23:27 -08001212 /* To avoid internal fragmentation, if there is very likely not
1213 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001214 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001215 */
Michael Daltonfb518792014-01-16 22:23:26 -08001216 len += hole;
1217 alloc_frag->offset += hole;
1218 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001219
Michael Daltonfb518792014-01-16 22:23:26 -08001220 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001221 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001222 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001223 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001224 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001225
1226 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001227}
1228
Rusty Russellb2baed62011-12-29 00:42:38 +00001229/*
1230 * Returns false if we couldn't fill entirely (OOM).
1231 *
1232 * Normally run in the receive path, but can also be run from ndo_open
1233 * before we're receiving packets, or from refill_work which is
1234 * careful to disable receiving (using napi_disable).
1235 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001236static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1237 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001238{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001239 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001240 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001241
Amit Shah0aea51c2009-08-26 14:58:28 +05301242 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001243 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001244 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001245 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001246 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001247 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001248 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001249
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001250 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301251 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001252 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001253 } while (rq->vq->num_free);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001254 if (virtqueue_kick_prepare(rq->vq) && virtqueue_notify(rq->vq)) {
Michael S. Tsirkin01c32592020-05-07 03:25:56 -04001255 unsigned long flags;
1256
1257 flags = u64_stats_update_begin_irqsave(&rq->stats.syncp);
Jason Wangd46eeea2018-07-31 17:43:39 +08001258 rq->stats.kicks++;
Michael S. Tsirkin01c32592020-05-07 03:25:56 -04001259 u64_stats_update_end_irqrestore(&rq->stats.syncp, flags);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001260 }
1261
Rusty Russell3161e452009-08-26 12:22:32 -07001262 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001263}
1264
Rusty Russell18445c42008-02-04 23:49:57 -05001265static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001266{
1267 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001268 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001269
Willem de Bruijne4e84522017-04-24 13:49:26 -04001270 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001271}
1272
Willem de Bruijne4e84522017-04-24 13:49:26 -04001273static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001274{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001275 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001276
1277 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001278 * won't get another interrupt, so process any outstanding packets now.
1279 * Call local_bh_enable after to trigger softIRQ processing.
1280 */
1281 local_bh_disable();
1282 virtqueue_napi_schedule(napi, vq);
1283 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001284}
1285
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001286static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1287 struct virtqueue *vq,
1288 struct napi_struct *napi)
1289{
1290 if (!napi->weight)
1291 return;
1292
1293 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1294 * enable the feature if this is likely affine with the transmit path.
1295 */
1296 if (!vi->affinity_hint_set) {
1297 napi->weight = 0;
1298 return;
1299 }
1300
1301 return virtnet_napi_enable(vq, napi);
1302}
1303
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001304static void virtnet_napi_tx_disable(struct napi_struct *napi)
1305{
1306 if (napi->weight)
1307 napi_disable(napi);
1308}
1309
Rusty Russell3161e452009-08-26 12:22:32 -07001310static void refill_work(struct work_struct *work)
1311{
Jason Wange9d74172012-12-07 07:04:55 +00001312 struct virtnet_info *vi =
1313 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001314 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001315 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001316
Sasha Levin55257d72013-04-29 12:00:08 +09301317 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001318 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001319
Jason Wang986a4f42012-12-07 07:04:56 +00001320 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001321 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001322 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001323
1324 /* In theory, this can happen: if we don't get any buffers in
1325 * we will *never* try to fill again.
1326 */
1327 if (still_empty)
1328 schedule_delayed_work(&vi->refill, HZ/2);
1329 }
Rusty Russell3161e452009-08-26 12:22:32 -07001330}
1331
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001332static int virtnet_receive(struct receive_queue *rq, int budget,
1333 unsigned int *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001334{
Jason Wange9d74172012-12-07 07:04:55 +00001335 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wangd46eeea2018-07-31 17:43:39 +08001336 struct virtnet_rq_stats stats = {};
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001337 unsigned int len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001338 void *buf;
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001339 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001340
Jason Wang192f68c2017-07-19 16:54:47 +08001341 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001342 void *ctx;
1343
Jason Wangd46eeea2018-07-31 17:43:39 +08001344 while (stats.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001345 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001346 receive_buf(vi, rq, buf, len, ctx, xdp_xmit, &stats);
Jason Wangd46eeea2018-07-31 17:43:39 +08001347 stats.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001348 }
1349 } else {
Jason Wangd46eeea2018-07-31 17:43:39 +08001350 while (stats.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001351 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001352 receive_buf(vi, rq, buf, len, NULL, xdp_xmit, &stats);
Jason Wangd46eeea2018-07-31 17:43:39 +08001353 stats.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001354 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001355 }
1356
? jiang718be6b2019-08-20 02:51:23 +00001357 if (rq->vq->num_free > min((unsigned int)budget, virtqueue_get_vring_size(rq->vq)) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001358 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001359 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001360 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001361
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001362 u64_stats_update_begin(&rq->stats.syncp);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001363 for (i = 0; i < VIRTNET_RQ_STATS_LEN; i++) {
1364 size_t offset = virtnet_rq_stats_desc[i].offset;
1365 u64 *item;
1366
Jason Wangd46eeea2018-07-31 17:43:39 +08001367 item = (u64 *)((u8 *)&rq->stats + offset);
1368 *item += *(u64 *)((u8 *)&stats + offset);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001369 }
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001370 u64_stats_update_end(&rq->stats.syncp);
Jason Wang61845d22017-02-17 11:33:09 +08001371
Jason Wangd46eeea2018-07-31 17:43:39 +08001372 return stats.packets;
Jason Wang2ffa7592014-07-23 16:33:54 +08001373}
1374
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001375static void free_old_xmit_skbs(struct send_queue *sq, bool in_napi)
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001376{
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001377 unsigned int len;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001378 unsigned int packets = 0;
1379 unsigned int bytes = 0;
Toshiaki Makita50504712019-01-29 09:45:59 +09001380 void *ptr;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001381
Toshiaki Makita50504712019-01-29 09:45:59 +09001382 while ((ptr = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1383 if (likely(!is_xdp_frame(ptr))) {
1384 struct sk_buff *skb = ptr;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001385
Toshiaki Makita50504712019-01-29 09:45:59 +09001386 pr_debug("Sent skb %p\n", skb);
1387
1388 bytes += skb->len;
1389 napi_consume_skb(skb, in_napi);
1390 } else {
1391 struct xdp_frame *frame = ptr_to_xdp(ptr);
1392
1393 bytes += frame->len;
1394 xdp_return_frame(frame);
1395 }
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001396 packets++;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001397 }
1398
1399 /* Avoid overhead when no packets have been processed
1400 * happens when called speculatively from start_xmit.
1401 */
1402 if (!packets)
1403 return;
1404
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001405 u64_stats_update_begin(&sq->stats.syncp);
1406 sq->stats.bytes += bytes;
1407 sq->stats.packets += packets;
1408 u64_stats_update_end(&sq->stats.syncp);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001409}
1410
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001411static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
1412{
1413 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
1414 return false;
1415 else if (q < vi->curr_queue_pairs)
1416 return true;
1417 else
1418 return false;
1419}
1420
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001421static void virtnet_poll_cleantx(struct receive_queue *rq)
1422{
1423 struct virtnet_info *vi = rq->vq->vdev->priv;
1424 unsigned int index = vq2rxq(rq->vq);
1425 struct send_queue *sq = &vi->sq[index];
1426 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1427
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001428 if (!sq->napi.weight || is_xdp_raw_buffer_queue(vi, index))
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001429 return;
1430
1431 if (__netif_tx_trylock(txq)) {
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001432 free_old_xmit_skbs(sq, true);
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001433 __netif_tx_unlock(txq);
1434 }
1435
1436 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1437 netif_tx_wake_queue(txq);
1438}
1439
Jason Wang2ffa7592014-07-23 16:33:54 +08001440static int virtnet_poll(struct napi_struct *napi, int budget)
1441{
1442 struct receive_queue *rq =
1443 container_of(napi, struct receive_queue, napi);
Jason Wang9267c432018-04-13 14:58:25 +08001444 struct virtnet_info *vi = rq->vq->vdev->priv;
1445 struct send_queue *sq;
Toshiaki Makita2a435652018-07-23 23:36:07 +09001446 unsigned int received;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001447 unsigned int xdp_xmit = 0;
Jason Wang2ffa7592014-07-23 16:33:54 +08001448
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001449 virtnet_poll_cleantx(rq);
1450
Jason Wang186b3c92017-09-19 17:42:43 +08001451 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001452
Rusty Russell8329d982007-11-19 11:20:43 -05001453 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001454 if (received < budget)
1455 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001456
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001457 if (xdp_xmit & VIRTIO_XDP_REDIR)
Toke Høiland-Jørgensen1d233882020-01-16 16:14:45 +01001458 xdp_do_flush();
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001459
1460 if (xdp_xmit & VIRTIO_XDP_TX) {
Toshiaki Makita2a435652018-07-23 23:36:07 +09001461 sq = virtnet_xdp_sq(vi);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001462 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1463 u64_stats_update_begin(&sq->stats.syncp);
1464 sq->stats.kicks++;
1465 u64_stats_update_end(&sq->stats.syncp);
1466 }
Jason Wang9267c432018-04-13 14:58:25 +08001467 }
Jason Wang186b3c92017-09-19 17:42:43 +08001468
Rusty Russell296f96f2007-10-22 11:03:37 +10001469 return received;
1470}
1471
Jason Wang986a4f42012-12-07 07:04:56 +00001472static int virtnet_open(struct net_device *dev)
1473{
1474 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001475 int i, err;
Jason Wang986a4f42012-12-07 07:04:56 +00001476
Jason Wange4166622013-05-21 20:03:58 +00001477 for (i = 0; i < vi->max_queue_pairs; i++) {
1478 if (i < vi->curr_queue_pairs)
1479 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001480 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001481 schedule_delayed_work(&vi->refill, 0);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001482
1483 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i);
1484 if (err < 0)
1485 return err;
1486
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +02001487 err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq,
1488 MEM_TYPE_PAGE_SHARED, NULL);
1489 if (err < 0) {
1490 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
1491 return err;
1492 }
1493
Willem de Bruijne4e84522017-04-24 13:49:26 -04001494 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001495 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001496 }
1497
1498 return 0;
1499}
1500
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001501static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1502{
1503 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1504 struct virtnet_info *vi = sq->vq->vdev->priv;
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001505 unsigned int index = vq2txq(sq->vq);
1506 struct netdev_queue *txq;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001507
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001508 if (unlikely(is_xdp_raw_buffer_queue(vi, index))) {
1509 /* We don't need to enable cb for XDP */
1510 napi_complete_done(napi, 0);
1511 return 0;
1512 }
1513
1514 txq = netdev_get_tx_queue(vi->dev, index);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001515 __netif_tx_lock(txq, raw_smp_processor_id());
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001516 free_old_xmit_skbs(sq, true);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001517 __netif_tx_unlock(txq);
1518
1519 virtqueue_napi_complete(napi, sq->vq, 0);
1520
1521 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1522 netif_tx_wake_queue(txq);
1523
1524 return 0;
1525}
1526
Jason Wange9d74172012-12-07 07:04:55 +00001527static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001528{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001529 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001530 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001531 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001532 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001533 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301534 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001535
Johannes Berge1749612008-10-27 15:59:26 -07001536 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301537
1538 can_push = vi->any_header_sg &&
1539 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1540 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1541 /* Even if we can, don't push here yet as this would skew
1542 * csum_start offset below. */
1543 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001544 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301545 else
1546 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001547
Mike Rapoporte858fae2016-06-08 16:09:21 +03001548 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Willem de Bruijnfd3a8862018-06-06 11:23:01 -04001549 virtio_is_little_endian(vi->vdev), false,
1550 0))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001551 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001552
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001553 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001554 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001555
Jason Wang547c8902015-08-27 14:53:06 +08001556 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301557 if (can_push) {
1558 __skb_push(skb, hdr_len);
1559 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001560 if (unlikely(num_sg < 0))
1561 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301562 /* Pull header back to avoid skew in tx bytes calculations. */
1563 __skb_pull(skb, hdr_len);
1564 } else {
1565 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001566 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1567 if (unlikely(num_sg < 0))
1568 return num_sg;
1569 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301570 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301571 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001572}
1573
Stephen Hemminger424efe92009-08-31 19:50:51 +00001574static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001575{
1576 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001577 int qnum = skb_get_queue_mapping(skb);
1578 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301579 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001580 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
Florian Westphal6b16f9e2019-04-01 16:42:14 +02001581 bool kick = !netdev_xmit_more();
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001582 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001583
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001584 /* Free up any pending old buffers before queueing new ones. */
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001585 free_old_xmit_skbs(sq, false);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001586
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001587 if (use_napi && kick)
1588 virtqueue_enable_cb_delayed(sq->vq);
1589
Jacob Keller074c3582014-06-25 02:37:13 +00001590 /* timestamp packet in software */
1591 skb_tx_timestamp(skb);
1592
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001593 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001594 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001595
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301596 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001597 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301598 dev->stats.tx_fifo_errors++;
1599 if (net_ratelimit())
1600 dev_warn(&dev->dev,
Yuval Shaia7934b482019-04-03 12:10:13 +03001601 "Unexpected TXQ (%d) queue failure: %d\n",
1602 qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001603 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001604 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001605 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001606 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001607
Rusty Russell48925e32009-09-24 09:59:20 -06001608 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001609 if (!use_napi) {
1610 skb_orphan(skb);
Florian Westphal895b5c92019-09-29 20:54:03 +02001611 nf_reset_ct(skb);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001612 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001613
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001614 /* If running out of space, stop queue to avoid getting packets that we
1615 * are then unable to transmit.
1616 * An alternative would be to force queuing layer to requeue the skb by
1617 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1618 * returned in a normal path of operation: it means that driver is not
1619 * maintaining the TX queue stop/start state properly, and causes
1620 * the stack to do a non-trivial amount of useless work.
1621 * Since most packets only take 1 or 2 ring slots, stopping the queue
1622 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001623 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001624 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001625 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001626 if (!use_napi &&
1627 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001628 /* More just got used, free them then recheck. */
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001629 free_old_xmit_skbs(sq, false);
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001630 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001631 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001632 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001633 }
1634 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001635 }
Rusty Russell48925e32009-09-24 09:59:20 -06001636
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001637 if (kick || netif_xmit_stopped(txq)) {
1638 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1639 u64_stats_update_begin(&sq->stats.syncp);
1640 sq->stats.kicks++;
1641 u64_stats_update_end(&sq->stats.syncp);
1642 }
1643 }
David S. Miller0b725a22014-08-25 15:51:53 -07001644
Rusty Russell48925e32009-09-24 09:59:20 -06001645 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001646}
1647
Amos Kong40cbfc32013-01-21 01:17:21 +00001648/*
1649 * Send command via the control virtqueue and check status. Commands
1650 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001651 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001652 */
1653static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001654 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001655{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301656 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001657 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001658
1659 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301660 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001661
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001662 vi->ctrl->status = ~0;
1663 vi->ctrl->hdr.class = class;
1664 vi->ctrl->hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301665 /* Add header */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001666 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301667 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001668
Rusty Russellf7bc9592013-03-20 15:44:28 +10301669 if (out)
1670 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001671
Rusty Russellf7bc9592013-03-20 15:44:28 +10301672 /* Add return status. */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001673 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001674 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001675
stephen hemmingerd24bae32013-12-09 16:17:40 -08001676 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301677 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001678
Heinz Graalfs67975902013-10-29 09:40:02 +10301679 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001680 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001681
1682 /* Spin for a response, the kick causes an ioport write, trapping
1683 * into the hypervisor, so the request should be handled immediately.
1684 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301685 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1686 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001687 cpu_relax();
1688
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001689 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001690}
1691
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001692static int virtnet_set_mac_address(struct net_device *dev, void *p)
1693{
1694 struct virtnet_info *vi = netdev_priv(dev);
1695 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001696 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001697 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001698 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001699
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07001700 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
1701 return -EOPNOTSUPP;
1702
Shyam Saini801822d2016-12-24 00:44:58 +05301703 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001704 if (!addr)
1705 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001706
1707 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001708 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001709 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001710
Amos Kong7e58d5a2013-01-21 01:17:23 +00001711 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1712 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1713 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001714 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001715 dev_warn(&vdev->dev,
1716 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001717 ret = -EINVAL;
1718 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001719 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001720 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1721 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301722 unsigned int i;
1723
1724 /* Naturally, this has an atomicity problem. */
1725 for (i = 0; i < dev->addr_len; i++)
1726 virtio_cwrite8(vdev,
1727 offsetof(struct virtio_net_config, mac) +
1728 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001729 }
1730
1731 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001732 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001733
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001734out:
1735 kfree(addr);
1736 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001737}
1738
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001739static void virtnet_stats(struct net_device *dev,
1740 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001741{
1742 struct virtnet_info *vi = netdev_priv(dev);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001743 unsigned int start;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001744 int i;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001745
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001746 for (i = 0; i < vi->max_queue_pairs; i++) {
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001747 u64 tpackets, tbytes, rpackets, rbytes, rdrops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001748 struct receive_queue *rq = &vi->rq[i];
1749 struct send_queue *sq = &vi->sq[i];
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001750
1751 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001752 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1753 tpackets = sq->stats.packets;
1754 tbytes = sq->stats.bytes;
1755 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001756
1757 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001758 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
Jason Wangd46eeea2018-07-31 17:43:39 +08001759 rpackets = rq->stats.packets;
1760 rbytes = rq->stats.bytes;
1761 rdrops = rq->stats.drops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001762 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001763
1764 tot->rx_packets += rpackets;
1765 tot->tx_packets += tpackets;
1766 tot->rx_bytes += rbytes;
1767 tot->tx_bytes += tbytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001768 tot->rx_dropped += rdrops;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001769 }
1770
1771 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001772 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001773 tot->rx_length_errors = dev->stats.rx_length_errors;
1774 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001775}
1776
Jason Wang586d17c2012-04-11 20:43:52 +00001777static void virtnet_ack_link_announce(struct virtnet_info *vi)
1778{
1779 rtnl_lock();
1780 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001781 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001782 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1783 rtnl_unlock();
1784}
1785
John Fastabend473153292017-02-02 19:14:32 -08001786static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001787{
1788 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001789 struct net_device *dev = vi->dev;
1790
1791 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1792 return 0;
1793
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001794 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1795 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001796
1797 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001798 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001799 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1800 queue_pairs);
1801 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301802 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001803 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001804 /* virtnet_open() will refill when device is going to up. */
1805 if (dev->flags & IFF_UP)
1806 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301807 }
Jason Wang986a4f42012-12-07 07:04:56 +00001808
1809 return 0;
1810}
1811
John Fastabend473153292017-02-02 19:14:32 -08001812static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1813{
1814 int err;
1815
1816 rtnl_lock();
1817 err = _virtnet_set_queues(vi, queue_pairs);
1818 rtnl_unlock();
1819 return err;
1820}
1821
Rusty Russell296f96f2007-10-22 11:03:37 +10001822static int virtnet_close(struct net_device *dev)
1823{
1824 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001825 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001826
Rusty Russellb2baed62011-12-29 00:42:38 +00001827 /* Make sure refill_work doesn't re-enable napi! */
1828 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001829
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001830 for (i = 0; i < vi->max_queue_pairs; i++) {
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001831 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
Jason Wang986a4f42012-12-07 07:04:56 +00001832 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001833 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001834 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001835
Rusty Russell296f96f2007-10-22 11:03:37 +10001836 return 0;
1837}
1838
Alex Williamson2af76982009-02-04 09:02:40 +00001839static void virtnet_set_rx_mode(struct net_device *dev)
1840{
1841 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001842 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001843 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001844 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001845 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001846 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001847 void *buf;
1848 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001849
stephen hemminger788a8b62013-12-09 16:18:45 -08001850 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001851 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1852 return;
1853
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001854 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0);
1855 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001856
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001857 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001858
1859 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001860 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001861 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001862 vi->ctrl->promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001863
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001864 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001865
1866 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001867 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001868 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001869 vi->ctrl->allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001870
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001871 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001872 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001873 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001874 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1875 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1876 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001877 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001878 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001879
Alex Williamson23e258e2009-05-01 17:27:56 +00001880 sg_init_table(sg, 2);
1881
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001882 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001883 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001884 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001885 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001886 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001887
1888 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001889 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001890
1891 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001892 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001893
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001894 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001895 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001896 netdev_for_each_mc_addr(ha, dev)
1897 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001898
1899 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001900 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001901
1902 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001903 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001904 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001905
1906 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001907}
1908
Patrick McHardy80d5c362013-04-19 02:04:28 +00001909static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1910 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001911{
1912 struct virtnet_info *vi = netdev_priv(dev);
1913 struct scatterlist sg;
1914
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001915 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001916 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001917
1918 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001919 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001920 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001921 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001922}
1923
Patrick McHardy80d5c362013-04-19 02:04:28 +00001924static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1925 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001926{
1927 struct virtnet_info *vi = netdev_priv(dev);
1928 struct scatterlist sg;
1929
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001930 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001931 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001932
1933 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001934 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001935 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001936 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001937}
1938
Peter Xu310974f2019-03-18 14:56:06 +08001939static void virtnet_clean_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001940{
1941 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001942
1943 if (vi->affinity_hint_set) {
1944 for (i = 0; i < vi->max_queue_pairs; i++) {
Caleb Raitto19e226e2018-08-09 18:18:28 -07001945 virtqueue_set_affinity(vi->rq[i].vq, NULL);
1946 virtqueue_set_affinity(vi->sq[i].vq, NULL);
Wanlong Gao8898c212013-01-24 23:51:30 +00001947 }
1948
1949 vi->affinity_hint_set = false;
1950 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001951}
1952
1953static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001954{
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001955 cpumask_var_t mask;
1956 int stragglers;
1957 int group_size;
1958 int i, j, cpu;
1959 int num_cpu;
1960 int stride;
Jason Wang986a4f42012-12-07 07:04:56 +00001961
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001962 if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) {
Peter Xu310974f2019-03-18 14:56:06 +08001963 virtnet_clean_affinity(vi);
Wanlong Gao8898c212013-01-24 23:51:30 +00001964 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001965 }
1966
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001967 num_cpu = num_online_cpus();
1968 stride = max_t(int, num_cpu / vi->curr_queue_pairs, 1);
1969 stragglers = num_cpu >= vi->curr_queue_pairs ?
1970 num_cpu % vi->curr_queue_pairs :
1971 0;
1972 cpu = cpumask_next(-1, cpu_online_mask);
Andrei Vagin4d99f662018-08-08 20:07:35 -07001973
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001974 for (i = 0; i < vi->curr_queue_pairs; i++) {
1975 group_size = stride + (i < stragglers ? 1 : 0);
1976
1977 for (j = 0; j < group_size; j++) {
1978 cpumask_set_cpu(cpu, mask);
1979 cpu = cpumask_next_wrap(cpu, cpu_online_mask,
1980 nr_cpu_ids, false);
1981 }
1982 virtqueue_set_affinity(vi->rq[i].vq, mask);
1983 virtqueue_set_affinity(vi->sq[i].vq, mask);
1984 __netif_set_xps_queue(vi->dev, cpumask_bits(mask), i, false);
1985 cpumask_clear(mask);
Jason Wang986a4f42012-12-07 07:04:56 +00001986 }
1987
Wanlong Gao8898c212013-01-24 23:51:30 +00001988 vi->affinity_hint_set = true;
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001989 free_cpumask_var(mask);
Jason Wang986a4f42012-12-07 07:04:56 +00001990}
1991
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001992static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001993{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001994 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1995 node);
1996 virtnet_set_affinity(vi);
1997 return 0;
1998}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001999
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002000static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
2001{
2002 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
2003 node_dead);
2004 virtnet_set_affinity(vi);
2005 return 0;
2006}
Jason Wang3ab098d2013-10-15 11:18:58 +08002007
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002008static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
2009{
2010 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
2011 node);
2012
Peter Xu310974f2019-03-18 14:56:06 +08002013 virtnet_clean_affinity(vi);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002014 return 0;
2015}
2016
2017static enum cpuhp_state virtionet_online;
2018
2019static int virtnet_cpu_notif_add(struct virtnet_info *vi)
2020{
2021 int ret;
2022
2023 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
2024 if (ret)
2025 return ret;
2026 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
2027 &vi->node_dead);
2028 if (!ret)
2029 return ret;
2030 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
2031 return ret;
2032}
2033
2034static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
2035{
2036 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
2037 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
2038 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002039}
2040
Rick Jones8f9f4662011-10-19 08:10:59 +00002041static void virtnet_get_ringparam(struct net_device *dev,
2042 struct ethtool_ringparam *ring)
2043{
2044 struct virtnet_info *vi = netdev_priv(dev);
2045
Jason Wang986a4f42012-12-07 07:04:56 +00002046 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
2047 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00002048 ring->rx_pending = ring->rx_max_pending;
2049 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00002050}
2051
Rick Jones66846042011-11-14 14:17:08 +00002052
2053static void virtnet_get_drvinfo(struct net_device *dev,
2054 struct ethtool_drvinfo *info)
2055{
2056 struct virtnet_info *vi = netdev_priv(dev);
2057 struct virtio_device *vdev = vi->vdev;
2058
2059 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
2060 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
2061 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
2062
2063}
2064
Jason Wangd73bcd22012-12-07 07:04:57 +00002065/* TODO: Eliminate OOO packets during switching */
2066static int virtnet_set_channels(struct net_device *dev,
2067 struct ethtool_channels *channels)
2068{
2069 struct virtnet_info *vi = netdev_priv(dev);
2070 u16 queue_pairs = channels->combined_count;
2071 int err;
2072
2073 /* We don't support separate rx/tx channels.
2074 * We don't allow setting 'other' channels.
2075 */
2076 if (channels->rx_count || channels->tx_count || channels->other_count)
2077 return -EINVAL;
2078
Amos Kongc18e9cd2014-04-18 13:45:41 +08002079 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00002080 return -EINVAL;
2081
John Fastabendf600b692016-12-15 12:13:24 -08002082 /* For now we don't support modifying channels while XDP is loaded
2083 * also when XDP is loaded all RX queues have XDP programs so we only
2084 * need to check a single RX queue.
2085 */
2086 if (vi->rq[0].xdp_prog)
2087 return -EINVAL;
2088
Wanlong Gao47be2472013-01-24 23:51:29 +00002089 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08002090 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00002091 if (!err) {
2092 netif_set_real_num_tx_queues(dev, queue_pairs);
2093 netif_set_real_num_rx_queues(dev, queue_pairs);
2094
Wanlong Gao8898c212013-01-24 23:51:30 +00002095 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00002096 }
Wanlong Gao47be2472013-01-24 23:51:29 +00002097 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00002098
2099 return err;
2100}
2101
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002102static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2103{
2104 struct virtnet_info *vi = netdev_priv(dev);
2105 char *p = (char *)data;
2106 unsigned int i, j;
2107
2108 switch (stringset) {
2109 case ETH_SS_STATS:
2110 for (i = 0; i < vi->curr_queue_pairs; i++) {
2111 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2112 snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s",
2113 i, virtnet_rq_stats_desc[j].desc);
2114 p += ETH_GSTRING_LEN;
2115 }
2116 }
2117
2118 for (i = 0; i < vi->curr_queue_pairs; i++) {
2119 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2120 snprintf(p, ETH_GSTRING_LEN, "tx_queue_%u_%s",
2121 i, virtnet_sq_stats_desc[j].desc);
2122 p += ETH_GSTRING_LEN;
2123 }
2124 }
2125 break;
2126 }
2127}
2128
2129static int virtnet_get_sset_count(struct net_device *dev, int sset)
2130{
2131 struct virtnet_info *vi = netdev_priv(dev);
2132
2133 switch (sset) {
2134 case ETH_SS_STATS:
2135 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN +
2136 VIRTNET_SQ_STATS_LEN);
2137 default:
2138 return -EOPNOTSUPP;
2139 }
2140}
2141
2142static void virtnet_get_ethtool_stats(struct net_device *dev,
2143 struct ethtool_stats *stats, u64 *data)
2144{
2145 struct virtnet_info *vi = netdev_priv(dev);
2146 unsigned int idx = 0, start, i, j;
2147 const u8 *stats_base;
2148 size_t offset;
2149
2150 for (i = 0; i < vi->curr_queue_pairs; i++) {
2151 struct receive_queue *rq = &vi->rq[i];
2152
Jason Wangd46eeea2018-07-31 17:43:39 +08002153 stats_base = (u8 *)&rq->stats;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002154 do {
2155 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
2156 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2157 offset = virtnet_rq_stats_desc[j].offset;
2158 data[idx + j] = *(u64 *)(stats_base + offset);
2159 }
2160 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
2161 idx += VIRTNET_RQ_STATS_LEN;
2162 }
2163
2164 for (i = 0; i < vi->curr_queue_pairs; i++) {
2165 struct send_queue *sq = &vi->sq[i];
2166
2167 stats_base = (u8 *)&sq->stats;
2168 do {
2169 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
2170 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2171 offset = virtnet_sq_stats_desc[j].offset;
2172 data[idx + j] = *(u64 *)(stats_base + offset);
2173 }
2174 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
2175 idx += VIRTNET_SQ_STATS_LEN;
2176 }
2177}
2178
Jason Wangd73bcd22012-12-07 07:04:57 +00002179static void virtnet_get_channels(struct net_device *dev,
2180 struct ethtool_channels *channels)
2181{
2182 struct virtnet_info *vi = netdev_priv(dev);
2183
2184 channels->combined_count = vi->curr_queue_pairs;
2185 channels->max_combined = vi->max_queue_pairs;
2186 channels->max_other = 0;
2187 channels->rx_count = 0;
2188 channels->tx_count = 0;
2189 channels->other_count = 0;
2190}
2191
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002192static int virtnet_set_link_ksettings(struct net_device *dev,
2193 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002194{
2195 struct virtnet_info *vi = netdev_priv(dev);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002196
Cris Forno9aedc6e22020-02-28 14:12:05 -06002197 return ethtool_virtdev_set_link_ksettings(dev, cmd,
2198 &vi->speed, &vi->duplex);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002199}
2200
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002201static int virtnet_get_link_ksettings(struct net_device *dev,
2202 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002203{
2204 struct virtnet_info *vi = netdev_priv(dev);
2205
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002206 cmd->base.speed = vi->speed;
2207 cmd->base.duplex = vi->duplex;
2208 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002209
2210 return 0;
2211}
2212
Jason Wang0c465be2018-10-09 10:06:26 +08002213static int virtnet_set_coalesce(struct net_device *dev,
2214 struct ethtool_coalesce *ec)
2215{
Jason Wang0c465be2018-10-09 10:06:26 +08002216 struct virtnet_info *vi = netdev_priv(dev);
2217 int i, napi_weight;
2218
Jakub Kicinskia51e5202020-03-04 21:15:42 -08002219 if (ec->tx_max_coalesced_frames > 1 ||
2220 ec->rx_max_coalesced_frames != 1)
Jason Wang0c465be2018-10-09 10:06:26 +08002221 return -EINVAL;
2222
Jason Wang0c465be2018-10-09 10:06:26 +08002223 napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0;
Jason Wang0c465be2018-10-09 10:06:26 +08002224 if (napi_weight ^ vi->sq[0].napi.weight) {
2225 if (dev->flags & IFF_UP)
2226 return -EBUSY;
2227 for (i = 0; i < vi->max_queue_pairs; i++)
2228 vi->sq[i].napi.weight = napi_weight;
2229 }
2230
2231 return 0;
2232}
2233
2234static int virtnet_get_coalesce(struct net_device *dev,
2235 struct ethtool_coalesce *ec)
2236{
2237 struct ethtool_coalesce ec_default = {
2238 .cmd = ETHTOOL_GCOALESCE,
2239 .rx_max_coalesced_frames = 1,
2240 };
2241 struct virtnet_info *vi = netdev_priv(dev);
2242
2243 memcpy(ec, &ec_default, sizeof(ec_default));
2244
2245 if (vi->sq[0].napi.weight)
2246 ec->tx_max_coalesced_frames = 1;
2247
2248 return 0;
2249}
2250
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002251static void virtnet_init_settings(struct net_device *dev)
2252{
2253 struct virtnet_info *vi = netdev_priv(dev);
2254
2255 vi->speed = SPEED_UNKNOWN;
2256 vi->duplex = DUPLEX_UNKNOWN;
2257}
2258
Jason Baronfaa9b392018-01-05 17:44:54 -05002259static void virtnet_update_settings(struct virtnet_info *vi)
2260{
2261 u32 speed;
2262 u8 duplex;
2263
2264 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
2265 return;
2266
Michael S. Tsirkin64ffa392020-08-05 05:39:36 -04002267 virtio_cread_le(vi->vdev, struct virtio_net_config, speed, &speed);
2268
Jason Baronfaa9b392018-01-05 17:44:54 -05002269 if (ethtool_validate_speed(speed))
2270 vi->speed = speed;
Michael S. Tsirkin64ffa392020-08-05 05:39:36 -04002271
2272 virtio_cread_le(vi->vdev, struct virtio_net_config, duplex, &duplex);
2273
Jason Baronfaa9b392018-01-05 17:44:54 -05002274 if (ethtool_validate_duplex(duplex))
2275 vi->duplex = duplex;
2276}
2277
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07002278static const struct ethtool_ops virtnet_ethtool_ops = {
Jakub Kicinskia51e5202020-03-04 21:15:42 -08002279 .supported_coalesce_params = ETHTOOL_COALESCE_MAX_FRAMES,
Rick Jones66846042011-11-14 14:17:08 +00002280 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002281 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00002282 .get_ringparam = virtnet_get_ringparam,
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002283 .get_strings = virtnet_get_strings,
2284 .get_sset_count = virtnet_get_sset_count,
2285 .get_ethtool_stats = virtnet_get_ethtool_stats,
Jason Wangd73bcd22012-12-07 07:04:57 +00002286 .set_channels = virtnet_set_channels,
2287 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00002288 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002289 .get_link_ksettings = virtnet_get_link_ksettings,
2290 .set_link_ksettings = virtnet_set_link_ksettings,
Jason Wang0c465be2018-10-09 10:06:26 +08002291 .set_coalesce = virtnet_set_coalesce,
2292 .get_coalesce = virtnet_get_coalesce,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002293};
2294
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002295static void virtnet_freeze_down(struct virtio_device *vdev)
2296{
2297 struct virtnet_info *vi = vdev->priv;
2298 int i;
2299
2300 /* Make sure no work handler is accessing the device */
2301 flush_work(&vi->config_work);
2302
Ake Koomsin05c998b2018-10-17 19:44:12 +09002303 netif_tx_lock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002304 netif_device_detach(vi->dev);
Ake Koomsin05c998b2018-10-17 19:44:12 +09002305 netif_tx_unlock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002306 cancel_delayed_work_sync(&vi->refill);
2307
2308 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002309 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002310 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04002311 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002312 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002313 }
2314}
2315
2316static int init_vqs(struct virtnet_info *vi);
2317
2318static int virtnet_restore_up(struct virtio_device *vdev)
2319{
2320 struct virtnet_info *vi = vdev->priv;
2321 int err, i;
2322
2323 err = init_vqs(vi);
2324 if (err)
2325 return err;
2326
2327 virtio_device_ready(vdev);
2328
2329 if (netif_running(vi->dev)) {
2330 for (i = 0; i < vi->curr_queue_pairs; i++)
2331 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
2332 schedule_delayed_work(&vi->refill, 0);
2333
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002334 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04002335 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002336 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2337 &vi->sq[i].napi);
2338 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002339 }
2340
Ake Koomsin05c998b2018-10-17 19:44:12 +09002341 netif_tx_lock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002342 netif_device_attach(vi->dev);
Ake Koomsin05c998b2018-10-17 19:44:12 +09002343 netif_tx_unlock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002344 return err;
2345}
2346
Jason Wang3f935222017-07-19 16:54:49 +08002347static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
2348{
2349 struct scatterlist sg;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002350 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads);
Jason Wang3f935222017-07-19 16:54:49 +08002351
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002352 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads));
Jason Wang3f935222017-07-19 16:54:49 +08002353
2354 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
2355 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
Yuval Shaia7934b482019-04-03 12:10:13 +03002356 dev_warn(&vi->dev->dev, "Fail to set guest offload.\n");
Jason Wang3f935222017-07-19 16:54:49 +08002357 return -EINVAL;
2358 }
2359
2360 return 0;
2361}
2362
2363static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
2364{
2365 u64 offloads = 0;
2366
2367 if (!vi->guest_offloads)
2368 return 0;
2369
Jason Wang3f935222017-07-19 16:54:49 +08002370 return virtnet_set_guest_offloads(vi, offloads);
2371}
2372
2373static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
2374{
2375 u64 offloads = vi->guest_offloads;
2376
2377 if (!vi->guest_offloads)
2378 return 0;
Jason Wang3f935222017-07-19 16:54:49 +08002379
2380 return virtnet_set_guest_offloads(vi, offloads);
2381}
2382
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002383static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
2384 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08002385{
2386 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2387 struct virtnet_info *vi = netdev_priv(dev);
2388 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002389 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002390 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002391
Jason Wang3f935222017-07-19 16:54:49 +08002392 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2393 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2394 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2395 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
Jason Wang18ba58e2018-11-22 14:36:31 +08002396 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) ||
2397 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))) {
2398 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing LRO/CSUM, disable LRO/CSUM first");
John Fastabendf600b692016-12-15 12:13:24 -08002399 return -EOPNOTSUPP;
2400 }
2401
2402 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002403 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002404 return -EINVAL;
2405 }
2406
2407 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002408 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002409 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2410 return -EINVAL;
2411 }
2412
John Fastabend672aafd2016-12-15 12:13:49 -08002413 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2414 if (prog)
2415 xdp_qp = nr_cpu_ids;
2416
2417 /* XDP requires extra queues for XDP_TX */
2418 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002419 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002420 netdev_warn(dev, "request %i queues but max is %i\n",
2421 curr_qp + xdp_qp, vi->max_queue_pairs);
2422 return -ENOMEM;
2423 }
2424
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002425 old_prog = rtnl_dereference(vi->rq[0].xdp_prog);
2426 if (!prog && !old_prog)
2427 return 0;
2428
Andrii Nakryiko85192db2019-11-17 09:28:03 -08002429 if (prog)
2430 bpf_prog_add(prog, vi->max_queue_pairs - 1);
John Fastabend2de2f7f2017-02-02 19:16:29 -08002431
Jason Wang4941d472017-07-19 16:54:48 +08002432 /* Make sure NAPI is not using any XDP TX queues for RX. */
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002433 if (netif_running(dev)) {
2434 for (i = 0; i < vi->max_queue_pairs; i++) {
Jason Wang4e09ff52018-02-28 18:20:04 +08002435 napi_disable(&vi->rq[i].napi);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002436 virtnet_napi_tx_disable(&vi->sq[i].napi);
2437 }
2438 }
John Fastabendf600b692016-12-15 12:13:24 -08002439
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002440 if (!prog) {
2441 for (i = 0; i < vi->max_queue_pairs; i++) {
2442 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
2443 if (i == 0)
2444 virtnet_restore_guest_offloads(vi);
2445 }
2446 synchronize_net();
2447 }
2448
Jason Wang4941d472017-07-19 16:54:48 +08002449 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2450 if (err)
2451 goto err;
Toshiaki Makita188313c2019-01-29 09:45:55 +09002452 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002453 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002454
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002455 if (prog) {
2456 for (i = 0; i < vi->max_queue_pairs; i++) {
2457 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
2458 if (i == 0 && !old_prog)
Jason Wang3f935222017-07-19 16:54:49 +08002459 virtnet_clear_guest_offloads(vi);
Jason Wang3f935222017-07-19 16:54:49 +08002460 }
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002461 }
2462
2463 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabendf600b692016-12-15 12:13:24 -08002464 if (old_prog)
2465 bpf_prog_put(old_prog);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002466 if (netif_running(dev)) {
Jason Wang4e09ff52018-02-28 18:20:04 +08002467 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002468 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2469 &vi->sq[i].napi);
2470 }
John Fastabendf600b692016-12-15 12:13:24 -08002471 }
2472
2473 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002474
Jason Wang4941d472017-07-19 16:54:48 +08002475err:
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002476 if (!prog) {
2477 virtnet_clear_guest_offloads(vi);
2478 for (i = 0; i < vi->max_queue_pairs; i++)
2479 rcu_assign_pointer(vi->rq[i].xdp_prog, old_prog);
2480 }
2481
Toshiaki Makita8be4d9a2019-01-29 09:45:53 +09002482 if (netif_running(dev)) {
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002483 for (i = 0; i < vi->max_queue_pairs; i++) {
Toshiaki Makita8be4d9a2019-01-29 09:45:53 +09002484 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002485 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2486 &vi->sq[i].napi);
2487 }
Toshiaki Makita8be4d9a2019-01-29 09:45:53 +09002488 }
John Fastabend2de2f7f2017-02-02 19:16:29 -08002489 if (prog)
2490 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2491 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002492}
2493
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002494static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
John Fastabendf600b692016-12-15 12:13:24 -08002495{
2496 switch (xdp->command) {
2497 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002498 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002499 default:
2500 return -EINVAL;
2501 }
2502}
2503
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002504static int virtnet_get_phys_port_name(struct net_device *dev, char *buf,
2505 size_t len)
2506{
2507 struct virtnet_info *vi = netdev_priv(dev);
2508 int ret;
2509
2510 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
2511 return -EOPNOTSUPP;
2512
2513 ret = snprintf(buf, len, "sby");
2514 if (ret >= len)
2515 return -EOPNOTSUPP;
2516
2517 return 0;
2518}
2519
Willem de Bruijna02e8962018-12-20 17:14:54 -05002520static int virtnet_set_features(struct net_device *dev,
2521 netdev_features_t features)
2522{
2523 struct virtnet_info *vi = netdev_priv(dev);
2524 u64 offloads;
2525 int err;
2526
2527 if ((dev->features ^ features) & NETIF_F_LRO) {
2528 if (vi->xdp_queue_pairs)
2529 return -EBUSY;
2530
2531 if (features & NETIF_F_LRO)
2532 offloads = vi->guest_offloads_capable;
2533 else
2534 offloads = 0;
2535
2536 err = virtnet_set_guest_offloads(vi, offloads);
2537 if (err)
2538 return err;
2539 vi->guest_offloads = offloads;
2540 }
2541
2542 return 0;
2543}
2544
Stephen Hemminger76288b42009-01-06 10:44:22 -08002545static const struct net_device_ops virtnet_netdev = {
2546 .ndo_open = virtnet_open,
2547 .ndo_stop = virtnet_close,
2548 .ndo_start_xmit = start_xmit,
2549 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002550 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002551 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002552 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002553 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2554 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002555 .ndo_bpf = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002556 .ndo_xdp_xmit = virtnet_xdp_xmit,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002557 .ndo_features_check = passthru_features_check,
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002558 .ndo_get_phys_port_name = virtnet_get_phys_port_name,
Willem de Bruijna02e8962018-12-20 17:14:54 -05002559 .ndo_set_features = virtnet_set_features,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002560};
2561
Jason Wang586d17c2012-04-11 20:43:52 +00002562static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002563{
Jason Wang586d17c2012-04-11 20:43:52 +00002564 struct virtnet_info *vi =
2565 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002566 u16 v;
2567
Rusty Russell855e0c52013-10-14 18:11:51 +10302568 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2569 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302570 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002571
2572 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002573 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002574 virtnet_ack_link_announce(vi);
2575 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002576
2577 /* Ignore unknown (future) status bits */
2578 v &= VIRTIO_NET_S_LINK_UP;
2579
2580 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302581 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002582
2583 vi->status = v;
2584
2585 if (vi->status & VIRTIO_NET_S_LINK_UP) {
Jason Baronfaa9b392018-01-05 17:44:54 -05002586 virtnet_update_settings(vi);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002587 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002588 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002589 } else {
2590 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002591 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002592 }
2593}
2594
2595static void virtnet_config_changed(struct virtio_device *vdev)
2596{
2597 struct virtnet_info *vi = vdev->priv;
2598
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002599 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002600}
2601
Jason Wang986a4f42012-12-07 07:04:56 +00002602static void virtnet_free_queues(struct virtnet_info *vi)
2603{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002604 int i;
2605
Jason Wangab3971b2015-03-12 13:57:44 +08002606 for (i = 0; i < vi->max_queue_pairs; i++) {
Jakub Kicinski5198d5452020-09-09 10:37:51 -07002607 __netif_napi_del(&vi->rq[i].napi);
2608 __netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002609 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002610
Jakub Kicinski5198d5452020-09-09 10:37:51 -07002611 /* We called __netif_napi_del(),
Eric Dumazet963abe52016-11-15 22:24:12 -08002612 * we need to respect an RCU grace period before freeing vi->rq
2613 */
2614 synchronize_net();
2615
Jason Wang986a4f42012-12-07 07:04:56 +00002616 kfree(vi->rq);
2617 kfree(vi->sq);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002618 kfree(vi->ctrl);
Jason Wang986a4f42012-12-07 07:04:56 +00002619}
2620
John Fastabend473153292017-02-02 19:14:32 -08002621static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002622{
John Fastabendf600b692016-12-15 12:13:24 -08002623 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002624 int i;
2625
2626 for (i = 0; i < vi->max_queue_pairs; i++) {
2627 while (vi->rq[i].pages)
2628 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002629
2630 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2631 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2632 if (old_prog)
2633 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002634 }
John Fastabend473153292017-02-02 19:14:32 -08002635}
2636
2637static void free_receive_bufs(struct virtnet_info *vi)
2638{
2639 rtnl_lock();
2640 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002641 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002642}
2643
Michael Daltonfb518792014-01-16 22:23:26 -08002644static void free_receive_page_frags(struct virtnet_info *vi)
2645{
2646 int i;
2647 for (i = 0; i < vi->max_queue_pairs; i++)
2648 if (vi->rq[i].alloc_frag.page)
2649 put_page(vi->rq[i].alloc_frag.page);
2650}
2651
Jason Wang986a4f42012-12-07 07:04:56 +00002652static void free_unused_bufs(struct virtnet_info *vi)
2653{
2654 void *buf;
2655 int i;
2656
2657 for (i = 0; i < vi->max_queue_pairs; i++) {
2658 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002659 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Toshiaki Makita50504712019-01-29 09:45:59 +09002660 if (!is_xdp_frame(buf))
John Fastabend56434a02016-12-15 12:14:13 -08002661 dev_kfree_skb(buf);
2662 else
Toshiaki Makita50504712019-01-29 09:45:59 +09002663 xdp_return_frame(ptr_to_xdp(buf));
John Fastabend56434a02016-12-15 12:14:13 -08002664 }
Jason Wang986a4f42012-12-07 07:04:56 +00002665 }
2666
2667 for (i = 0; i < vi->max_queue_pairs; i++) {
2668 struct virtqueue *vq = vi->rq[i].vq;
2669
2670 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002671 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002672 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002673 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002674 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002675 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002676 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002677 }
Jason Wang986a4f42012-12-07 07:04:56 +00002678 }
Jason Wang986a4f42012-12-07 07:04:56 +00002679 }
2680}
2681
Jason Wange9d74172012-12-07 07:04:55 +00002682static void virtnet_del_vqs(struct virtnet_info *vi)
2683{
2684 struct virtio_device *vdev = vi->vdev;
2685
Peter Xu310974f2019-03-18 14:56:06 +08002686 virtnet_clean_affinity(vi);
Jason Wang986a4f42012-12-07 07:04:56 +00002687
Jason Wange9d74172012-12-07 07:04:55 +00002688 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002689
2690 virtnet_free_queues(vi);
2691}
2692
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002693/* How large should a single buffer be so a queue full of these can fit at
2694 * least one full packet?
2695 * Logic below assumes the mergeable buffer header is used.
2696 */
2697static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2698{
2699 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2700 unsigned int rq_size = virtqueue_get_vring_size(vq);
2701 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2702 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2703 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2704
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002705 return max(max(min_buf_len, hdr_len) - hdr_len,
2706 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002707}
2708
Jason Wang986a4f42012-12-07 07:04:56 +00002709static int virtnet_find_vqs(struct virtnet_info *vi)
2710{
2711 vq_callback_t **callbacks;
2712 struct virtqueue **vqs;
2713 int ret = -ENOMEM;
2714 int i, total_vqs;
2715 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002716 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002717
2718 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2719 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2720 * possible control vq.
2721 */
2722 total_vqs = vi->max_queue_pairs * 2 +
2723 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2724
2725 /* Allocate space for find_vqs parameters */
Kees Cook6396bb22018-06-12 14:03:40 -07002726 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002727 if (!vqs)
2728 goto err_vq;
Kees Cook6da2ec52018-06-12 13:55:00 -07002729 callbacks = kmalloc_array(total_vqs, sizeof(*callbacks), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002730 if (!callbacks)
2731 goto err_callback;
Kees Cook6da2ec52018-06-12 13:55:00 -07002732 names = kmalloc_array(total_vqs, sizeof(*names), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002733 if (!names)
2734 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002735 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Kees Cook6396bb22018-06-12 14:03:40 -07002736 ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL);
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002737 if (!ctx)
2738 goto err_ctx;
2739 } else {
2740 ctx = NULL;
2741 }
Jason Wang986a4f42012-12-07 07:04:56 +00002742
2743 /* Parameters for control virtqueue, if any */
2744 if (vi->has_cvq) {
2745 callbacks[total_vqs - 1] = NULL;
2746 names[total_vqs - 1] = "control";
2747 }
2748
2749 /* Allocate/initialize parameters for send/receive virtqueues */
2750 for (i = 0; i < vi->max_queue_pairs; i++) {
2751 callbacks[rxq2vq(i)] = skb_recv_done;
2752 callbacks[txq2vq(i)] = skb_xmit_done;
2753 sprintf(vi->rq[i].name, "input.%d", i);
2754 sprintf(vi->sq[i].name, "output.%d", i);
2755 names[rxq2vq(i)] = vi->rq[i].name;
2756 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002757 if (ctx)
2758 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002759 }
2760
2761 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002762 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002763 if (ret)
2764 goto err_find;
2765
2766 if (vi->has_cvq) {
2767 vi->cvq = vqs[total_vqs - 1];
2768 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002769 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002770 }
2771
2772 for (i = 0; i < vi->max_queue_pairs; i++) {
2773 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002774 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002775 vi->sq[i].vq = vqs[txq2vq(i)];
2776 }
2777
Tonghao Zhang2fa3c8a2018-05-31 07:16:32 -07002778 /* run here: ret == 0. */
Jason Wang986a4f42012-12-07 07:04:56 +00002779
Jason Wang986a4f42012-12-07 07:04:56 +00002780
2781err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002782 kfree(ctx);
2783err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002784 kfree(names);
2785err_names:
2786 kfree(callbacks);
2787err_callback:
2788 kfree(vqs);
2789err_vq:
2790 return ret;
2791}
2792
2793static int virtnet_alloc_queues(struct virtnet_info *vi)
2794{
2795 int i;
2796
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002797 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
2798 if (!vi->ctrl)
2799 goto err_ctrl;
Kees Cook6396bb22018-06-12 14:03:40 -07002800 vi->sq = kcalloc(vi->max_queue_pairs, sizeof(*vi->sq), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002801 if (!vi->sq)
2802 goto err_sq;
Kees Cook6396bb22018-06-12 14:03:40 -07002803 vi->rq = kcalloc(vi->max_queue_pairs, sizeof(*vi->rq), GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002804 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002805 goto err_rq;
2806
2807 INIT_DELAYED_WORK(&vi->refill, refill_work);
2808 for (i = 0; i < vi->max_queue_pairs; i++) {
2809 vi->rq[i].pages = NULL;
2810 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2811 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002812 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2813 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002814
2815 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002816 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002817 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002818
2819 u64_stats_init(&vi->rq[i].stats.syncp);
2820 u64_stats_init(&vi->sq[i].stats.syncp);
Jason Wang986a4f42012-12-07 07:04:56 +00002821 }
2822
2823 return 0;
2824
2825err_rq:
2826 kfree(vi->sq);
2827err_sq:
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002828 kfree(vi->ctrl);
2829err_ctrl:
Jason Wang986a4f42012-12-07 07:04:56 +00002830 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002831}
2832
Amit Shah3f9c10b2011-12-22 16:58:31 +05302833static int init_vqs(struct virtnet_info *vi)
2834{
Jason Wang986a4f42012-12-07 07:04:56 +00002835 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302836
Jason Wang986a4f42012-12-07 07:04:56 +00002837 /* Allocate send & receive queues */
2838 ret = virtnet_alloc_queues(vi);
2839 if (ret)
2840 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302841
Jason Wang986a4f42012-12-07 07:04:56 +00002842 ret = virtnet_find_vqs(vi);
2843 if (ret)
2844 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302845
Wanlong Gao47be2472013-01-24 23:51:29 +00002846 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002847 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002848 put_online_cpus();
2849
Amit Shah3f9c10b2011-12-22 16:58:31 +05302850 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002851
2852err_free:
2853 virtnet_free_queues(vi);
2854err:
2855 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302856}
2857
Michael Daltonfbf28d72014-01-16 22:23:30 -08002858#ifdef CONFIG_SYSFS
2859static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002860 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002861{
2862 struct virtnet_info *vi = netdev_priv(queue->dev);
2863 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Jason Wang3cc81a92018-03-02 17:29:14 +08002864 unsigned int headroom = virtnet_get_headroom(vi);
2865 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
Johannes Berg5377d7582015-08-19 09:48:40 +02002866 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002867
2868 BUG_ON(queue_index >= vi->max_queue_pairs);
2869 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002870 return sprintf(buf, "%u\n",
Jason Wang3cc81a92018-03-02 17:29:14 +08002871 get_mergeable_buf_len(&vi->rq[queue_index], avg,
2872 SKB_DATA_ALIGN(headroom + tailroom)));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002873}
2874
2875static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2876 __ATTR_RO(mergeable_rx_buffer_size);
2877
2878static struct attribute *virtio_net_mrg_rx_attrs[] = {
2879 &mergeable_rx_buffer_size_attribute.attr,
2880 NULL
2881};
2882
2883static const struct attribute_group virtio_net_mrg_rx_group = {
2884 .name = "virtio_net",
2885 .attrs = virtio_net_mrg_rx_attrs
2886};
2887#endif
2888
Jason Wang892d6eb2014-11-20 17:03:05 +08002889static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2890 unsigned int fbit,
2891 const char *fname, const char *dname)
2892{
2893 if (!virtio_has_feature(vdev, fbit))
2894 return false;
2895
2896 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2897 fname, dname);
2898
2899 return true;
2900}
2901
2902#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2903 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2904
2905static bool virtnet_validate_features(struct virtio_device *vdev)
2906{
2907 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2908 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2909 "VIRTIO_NET_F_CTRL_VQ") ||
2910 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2911 "VIRTIO_NET_F_CTRL_VQ") ||
2912 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2913 "VIRTIO_NET_F_CTRL_VQ") ||
2914 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2915 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2916 "VIRTIO_NET_F_CTRL_VQ"))) {
2917 return false;
2918 }
2919
2920 return true;
2921}
2922
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002923#define MIN_MTU ETH_MIN_MTU
2924#define MAX_MTU ETH_MAX_MTU
2925
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002926static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002927{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002928 if (!vdev->config->get) {
2929 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2930 __func__);
2931 return -EINVAL;
2932 }
2933
Jason Wang892d6eb2014-11-20 17:03:05 +08002934 if (!virtnet_validate_features(vdev))
2935 return -EINVAL;
2936
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002937 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2938 int mtu = virtio_cread16(vdev,
2939 offsetof(struct virtio_net_config,
2940 mtu));
2941 if (mtu < MIN_MTU)
2942 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2943 }
2944
2945 return 0;
2946}
2947
2948static int virtnet_probe(struct virtio_device *vdev)
2949{
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002950 int i, err = -ENOMEM;
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002951 struct net_device *dev;
2952 struct virtnet_info *vi;
2953 u16 max_queue_pairs;
2954 int mtu;
2955
Jason Wang986a4f42012-12-07 07:04:56 +00002956 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302957 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2958 struct virtio_net_config,
2959 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002960
2961 /* We need at least 2 queue's */
2962 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2963 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2964 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2965 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002966
2967 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002968 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002969 if (!dev)
2970 return -ENOMEM;
2971
2972 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002973 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002974 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002975 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002976
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002977 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002978 SET_NETDEV_DEV(dev, &vdev->dev);
2979
2980 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002981 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002982 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002983 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002984 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002985 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002986
2987 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002988 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002989 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2990 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002991 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002992 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2993 dev->hw_features |= NETIF_F_TSO;
2994 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2995 dev->hw_features |= NETIF_F_TSO6;
2996 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2997 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002998
Jason Wang41f2f122014-12-24 11:03:52 +08002999 dev->features |= NETIF_F_GSO_ROBUST;
3000
Michał Mirosław98e778c2011-03-31 01:01:35 +00003001 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07003002 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00003003 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10003004 }
Thomas Huth4f491292013-08-27 17:09:02 +02003005 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
3006 dev->features |= NETIF_F_RXCSUM;
Willem de Bruijna02e8962018-12-20 17:14:54 -05003007 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
3008 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6))
3009 dev->features |= NETIF_F_LRO;
3010 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS))
3011 dev->hw_features |= NETIF_F_LRO;
Rusty Russell296f96f2007-10-22 11:03:37 +10003012
Jason Wang4fda8302013-04-10 23:32:21 +00003013 dev->vlan_features = dev->features;
3014
Jarod Wilsond0c2c992016-10-20 13:55:21 -04003015 /* MTU range: 68 - 65535 */
3016 dev->min_mtu = MIN_MTU;
3017 dev->max_mtu = MAX_MTU;
3018
Rusty Russell296f96f2007-10-22 11:03:37 +10003019 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10303020 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
3021 virtio_cread_bytes(vdev,
3022 offsetof(struct virtio_net_config, mac),
3023 dev->dev_addr, dev->addr_len);
3024 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00003025 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003026
3027 /* Set up our device-specific information */
3028 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003029 vi->dev = dev;
3030 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01003031 vdev->priv = vi;
John Stultz827da442013-10-07 15:51:58 -07003032
Jason Wang586d17c2012-04-11 20:43:52 +00003033 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10003034
Herbert Xu97402b92008-04-18 11:24:27 +08003035 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00003036 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
3037 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05003038 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
3039 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08003040 vi->big_packets = true;
3041
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08003042 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
3043 vi->mergeable_rx_bufs = true;
3044
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03003045 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
3046 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03003047 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
3048 else
3049 vi->hdr_len = sizeof(struct virtio_net_hdr);
3050
Michael S. Tsirkin75993302015-07-15 15:26:19 +03003051 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
3052 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303053 vi->any_header_sg = true;
3054
Jason Wang986a4f42012-12-07 07:04:56 +00003055 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
3056 vi->has_cvq = true;
3057
Aaron Conole14de9d12016-06-03 16:57:12 -04003058 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
3059 mtu = virtio_cread16(vdev,
3060 offsetof(struct virtio_net_config,
3061 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04003062 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003063 /* Should never trigger: MTU was previously validated
3064 * in virtnet_validate.
3065 */
Yuval Shaia7934b482019-04-03 12:10:13 +03003066 dev_err(&vdev->dev,
3067 "device MTU appears to have changed it is now %d < %d",
3068 mtu, dev->min_mtu);
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09003069 goto free;
Aaron Conole93a205e2016-10-25 16:12:12 -04003070 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02003071
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003072 dev->mtu = mtu;
3073 dev->max_mtu = mtu;
3074
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02003075 /* TODO: size buffers correctly in this case. */
3076 if (dev->mtu > ETH_DATA_LEN)
3077 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04003078 }
3079
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03003080 if (vi->any_header_sg)
3081 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08003082
Jason Wang44900012016-11-25 12:37:26 +08003083 /* Enable multiqueue by default */
3084 if (num_online_cpus() >= max_queue_pairs)
3085 vi->curr_queue_pairs = max_queue_pairs;
3086 else
3087 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00003088 vi->max_queue_pairs = max_queue_pairs;
3089
3090 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05303091 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003092 if (err)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09003093 goto free;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003094
Michael Daltonfbf28d72014-01-16 22:23:30 -08003095#ifdef CONFIG_SYSFS
3096 if (vi->mergeable_rx_bufs)
3097 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
3098#endif
Zhi Yong Wu0f13b66b2013-11-18 21:19:27 +08003099 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
3100 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00003101
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01003102 virtnet_init_settings(dev);
3103
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003104 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
3105 vi->failover = net_failover_create(vi->dev);
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00003106 if (IS_ERR(vi->failover)) {
3107 err = PTR_ERR(vi->failover);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003108 goto free_vqs;
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00003109 }
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003110 }
3111
Rusty Russell296f96f2007-10-22 11:03:37 +10003112 err = register_netdev(dev);
3113 if (err) {
3114 pr_debug("virtio_net: registering device failed\n");
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003115 goto free_failover;
Rusty Russell296f96f2007-10-22 11:03:37 +10003116 }
Rusty Russellb3369c12008-02-04 23:50:02 -05003117
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10303118 virtio_device_ready(vdev);
3119
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003120 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003121 if (err) {
3122 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08003123 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003124 }
3125
Jason Wanga2208712016-12-13 14:23:05 +08003126 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08003127
Jason Wang167c25e2010-11-10 14:45:41 +00003128 /* Assume link up if device can't report link status,
3129 otherwise get link status from config. */
Jay Vosburghbda7fab2018-03-22 14:42:41 +00003130 netif_carrier_off(dev);
Jason Wang167c25e2010-11-10 14:45:41 +00003131 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
Tejun Heo3b07e9c2012-08-20 14:51:24 -07003132 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00003133 } else {
3134 vi->status = VIRTIO_NET_S_LINK_UP;
Jason Baronfaa9b392018-01-05 17:44:54 -05003135 virtnet_update_settings(vi);
Jason Wang167c25e2010-11-10 14:45:41 +00003136 netif_carrier_on(dev);
3137 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003138
Jason Wang3f935222017-07-19 16:54:49 +08003139 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
3140 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
3141 set_bit(guest_offloads[i], &vi->guest_offloads);
Willem de Bruijna02e8962018-12-20 17:14:54 -05003142 vi->guest_offloads_capable = vi->guest_offloads;
Jason Wang3f935222017-07-19 16:54:49 +08003143
Jason Wang986a4f42012-12-07 07:04:56 +00003144 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
3145 dev->name, max_queue_pairs);
3146
Rusty Russell296f96f2007-10-22 11:03:37 +10003147 return 0;
3148
wangyunjianf00e35e2016-05-31 11:52:43 +08003149free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10303150 vi->vdev->config->reset(vdev);
3151
Rusty Russellb3369c12008-02-04 23:50:02 -05003152 unregister_netdev(dev);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003153free_failover:
3154 net_failover_destroy(vi->failover);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003155free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00003156 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08003157 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00003158 virtnet_del_vqs(vi);
Rusty Russell296f96f2007-10-22 11:03:37 +10003159free:
3160 free_netdev(dev);
3161 return err;
3162}
3163
Amit Shah04486ed2011-12-22 16:58:32 +05303164static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10003165{
Amit Shah04486ed2011-12-22 16:58:32 +05303166 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00003167
3168 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00003169 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003170
Jason Wang986a4f42012-12-07 07:04:56 +00003171 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003172
Michael Daltonfb518792014-01-16 22:23:26 -08003173 free_receive_page_frags(vi);
3174
Jason Wang986a4f42012-12-07 07:04:56 +00003175 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05303176}
3177
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003178static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05303179{
3180 struct virtnet_info *vi = vdev->priv;
3181
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003182 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003183
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10303184 /* Make sure no work handler is accessing the device. */
3185 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00003186
Amit Shah04486ed2011-12-22 16:58:32 +05303187 unregister_netdev(vi->dev);
3188
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003189 net_failover_destroy(vi->failover);
3190
Amit Shah04486ed2011-12-22 16:58:32 +05303191 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003192
Rusty Russell74b25532007-11-19 11:20:42 -05003193 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003194}
3195
Arnd Bergmann67a75192017-07-25 17:35:50 +02003196static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303197{
3198 struct virtnet_info *vi = vdev->priv;
3199
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003200 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003201 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303202 remove_vq_common(vi);
3203
3204 return 0;
3205}
3206
Arnd Bergmann67a75192017-07-25 17:35:50 +02003207static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303208{
3209 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003210 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05303211
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003212 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303213 if (err)
3214 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00003215 virtnet_set_queues(vi, vi->curr_queue_pairs);
3216
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003217 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08003218 if (err)
3219 return err;
3220
Amit Shah0741bcb2011-12-22 16:58:33 +05303221 return 0;
3222}
Amit Shah0741bcb2011-12-22 16:58:33 +05303223
Rusty Russell296f96f2007-10-22 11:03:37 +10003224static struct virtio_device_id id_table[] = {
3225 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
3226 { 0 },
3227};
3228
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003229#define VIRTNET_FEATURES \
3230 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
3231 VIRTIO_NET_F_MAC, \
3232 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
3233 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
3234 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
3235 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
3236 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
3237 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
3238 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Baronfaa9b392018-01-05 17:44:54 -05003239 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
Sridhar Samudrala98050692018-05-24 09:55:16 -07003240 VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003241
Rusty Russellc45a6812008-05-02 21:50:50 -05003242static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003243 VIRTNET_FEATURES,
3244};
3245
3246static unsigned int features_legacy[] = {
3247 VIRTNET_FEATURES,
3248 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303249 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05003250};
3251
Uwe Kleine-König22402522009-11-05 01:32:44 -08003252static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05003253 .feature_table = features,
3254 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003255 .feature_table_legacy = features_legacy,
3256 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10003257 .driver.name = KBUILD_MODNAME,
3258 .driver.owner = THIS_MODULE,
3259 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003260 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10003261 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003262 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003263 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09303264#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05303265 .freeze = virtnet_freeze,
3266 .restore = virtnet_restore,
3267#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10003268};
3269
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003270static __init int virtio_net_driver_init(void)
3271{
3272 int ret;
3273
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003274 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003275 virtnet_cpu_online,
3276 virtnet_cpu_down_prep);
3277 if (ret < 0)
3278 goto out;
3279 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003280 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003281 NULL, virtnet_cpu_dead);
3282 if (ret)
3283 goto err_dead;
3284
3285 ret = register_virtio_driver(&virtio_net_driver);
3286 if (ret)
3287 goto err_virtio;
3288 return 0;
3289err_virtio:
3290 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3291err_dead:
3292 cpuhp_remove_multi_state(virtionet_online);
3293out:
3294 return ret;
3295}
3296module_init(virtio_net_driver_init);
3297
3298static __exit void virtio_net_driver_exit(void)
3299{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02003300 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003301 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3302 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003303}
3304module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10003305
3306MODULE_DEVICE_TABLE(virtio, id_table);
3307MODULE_DESCRIPTION("Virtio network driver");
3308MODULE_LICENSE("GPL");