blob: 6260d6549ee8b66ae41d404df6a9eda279e4dac2 [file] [log] [blame]
Rusty Russell48925e32009-09-24 09:59:20 -06001/* A network driver using virtio.
Rusty Russell296f96f2007-10-22 11:03:37 +10002 *
3 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Jeff Kirsheradf8d3f2013-12-06 06:28:47 -080016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Rusty Russell296f96f2007-10-22 11:03:37 +100017 */
18//#define DEBUG
19#include <linux/netdevice.h>
20#include <linux/etherdevice.h>
Herbert Xua9ea3fc2008-04-18 11:21:42 +080021#include <linux/ethtool.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100022#include <linux/module.h>
23#include <linux/virtio.h>
24#include <linux/virtio_net.h>
John Fastabendf600b692016-12-15 12:13:24 -080025#include <linux/bpf.h>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010026#include <linux/bpf_trace.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100027#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080028#include <linux/if_vlan.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Wanlong Gao8de4b2f2013-01-24 23:51:31 +000030#include <linux/cpu.h>
Michael Daltonab7db912014-01-16 22:23:27 -080031#include <linux/average.h>
Jason Wang186b3c92017-09-19 17:42:43 +080032#include <linux/filter.h>
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +020033#include <net/route.h>
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +010034#include <net/xdp.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100035
Amerigo Wangd34710e2013-05-09 19:50:51 +000036static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020037module_param(napi_weight, int, 0444);
38
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040039static bool csum = true, gso = true, napi_tx;
Rusty Russell34a48572008-02-04 23:50:02 -050040module_param(csum, bool, 0444);
41module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040042module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050043
Rusty Russell296f96f2007-10-22 11:03:37 +100044/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080045#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080046#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100047
Jason Wangf6b10202017-02-21 16:46:28 +080048#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
49
John Fastabend2de2f7f2017-02-02 19:16:29 -080050/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
51#define VIRTIO_XDP_HEADROOM 256
52
Johannes Berg5377d7582015-08-19 09:48:40 +020053/* RX packet size EWMA. The average packet size is used to determine the packet
54 * buffer size when refilling RX rings. As the entire RX ring may be refilled
55 * at once, the weight is chosen so that the EWMA will be insensitive to short-
56 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080057 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010058DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080059
Rick Jones66846042011-11-14 14:17:08 +000060#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000061
Colin Ian King7acd4322017-08-12 22:45:53 +010062static const unsigned long guest_offloads[] = {
63 VIRTIO_NET_F_GUEST_TSO4,
64 VIRTIO_NET_F_GUEST_TSO6,
65 VIRTIO_NET_F_GUEST_ECN,
66 VIRTIO_NET_F_GUEST_UFO
67};
Jason Wang3f935222017-07-19 16:54:49 +080068
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090069struct virtnet_stat_desc {
70 char desc[ETH_GSTRING_LEN];
71 size_t offset;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000072};
73
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090074struct virtnet_sq_stats {
75 struct u64_stats_sync syncp;
76 u64 packets;
77 u64 bytes;
78};
79
80struct virtnet_rq_stats {
81 struct u64_stats_sync syncp;
82 u64 packets;
83 u64 bytes;
84};
85
86#define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
87#define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m)
88
89static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
90 { "packets", VIRTNET_SQ_STAT(packets) },
91 { "bytes", VIRTNET_SQ_STAT(bytes) },
92};
93
94static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
95 { "packets", VIRTNET_RQ_STAT(packets) },
96 { "bytes", VIRTNET_RQ_STAT(bytes) },
97};
98
99#define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
100#define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
101
Jason Wange9d74172012-12-07 07:04:55 +0000102/* Internal representation of a send virtqueue */
103struct send_queue {
104 /* Virtqueue associated with this send _queue */
105 struct virtqueue *vq;
106
107 /* TX: fragments + linear part + virtio header */
108 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000109
110 /* Name of the send queue: output.$index */
111 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400112
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900113 struct virtnet_sq_stats stats;
114
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400115 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +0000116};
117
118/* Internal representation of a receive virtqueue */
119struct receive_queue {
120 /* Virtqueue associated with this receive_queue */
121 struct virtqueue *vq;
122
Rusty Russell296f96f2007-10-22 11:03:37 +1000123 struct napi_struct napi;
124
John Fastabendf600b692016-12-15 12:13:24 -0800125 struct bpf_prog __rcu *xdp_prog;
126
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900127 struct virtnet_rq_stats stats;
128
Jason Wange9d74172012-12-07 07:04:55 +0000129 /* Chain pages by the private ptr. */
130 struct page *pages;
131
Michael Daltonab7db912014-01-16 22:23:27 -0800132 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200133 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800134
Michael Daltonfb518792014-01-16 22:23:26 -0800135 /* Page frag for packet buffer allocation. */
136 struct page_frag alloc_frag;
137
Jason Wange9d74172012-12-07 07:04:55 +0000138 /* RX: fragments + linear part + virtio header */
139 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000140
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200141 /* Min single buffer size for mergeable buffers case. */
142 unsigned int min_buf_len;
143
Jason Wang986a4f42012-12-07 07:04:56 +0000144 /* Name of this receive queue: input.$index */
145 char name[40];
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100146
147 struct xdp_rxq_info xdp_rxq;
Jason Wange9d74172012-12-07 07:04:55 +0000148};
149
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300150/* Control VQ buffers: protected by the rtnl lock */
151struct control_buf {
152 struct virtio_net_ctrl_hdr hdr;
153 virtio_net_ctrl_ack status;
154 struct virtio_net_ctrl_mq mq;
155 u8 promisc;
156 u8 allmulti;
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +0300157 __virtio16 vid;
Michael S. Tsirkinf4ee7032018-04-19 08:30:50 +0300158 __virtio64 offloads;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300159};
160
Jason Wange9d74172012-12-07 07:04:55 +0000161struct virtnet_info {
162 struct virtio_device *vdev;
163 struct virtqueue *cvq;
164 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000165 struct send_queue *sq;
166 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000167 unsigned int status;
168
Jason Wang986a4f42012-12-07 07:04:56 +0000169 /* Max # of queue pairs supported by the device */
170 u16 max_queue_pairs;
171
172 /* # of queue pairs currently used by the driver */
173 u16 curr_queue_pairs;
174
John Fastabend672aafd2016-12-15 12:13:49 -0800175 /* # of XDP queue pairs currently used by the driver */
176 u16 xdp_queue_pairs;
177
Herbert Xu97402b92008-04-18 11:24:27 +0800178 /* I like... big packets and I cannot lie! */
179 bool big_packets;
180
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800181 /* Host will merge rx buffers for big packets (shake it! shake it!) */
182 bool mergeable_rx_bufs;
183
Jason Wang986a4f42012-12-07 07:04:56 +0000184 /* Has control virtqueue */
185 bool has_cvq;
186
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930187 /* Host can handle any s/g split between our header and packet data */
188 bool any_header_sg;
189
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300190 /* Packet virtio header size */
191 u8 hdr_len;
192
Rusty Russell3161e452009-08-26 12:22:32 -0700193 /* Work struct for refilling if we run low on memory. */
194 struct delayed_work refill;
195
Jason Wang586d17c2012-04-11 20:43:52 +0000196 /* Work struct for config space updates */
197 struct work_struct config_work;
198
Jason Wang986a4f42012-12-07 07:04:56 +0000199 /* Does the affinity hint is set for virtqueues? */
200 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000201
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200202 /* CPU hotplug instances for online & dead */
203 struct hlist_node node;
204 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200205
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300206 struct control_buf *ctrl;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100207
208 /* Ethtool settings */
209 u8 duplex;
210 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800211
212 unsigned long guest_offloads;
Rusty Russell296f96f2007-10-22 11:03:37 +1000213};
214
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000215struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300216 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000217 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300218 * hdr is in a separate sg buffer, and data sg buffer shares same page
219 * with this header sg. This padding makes next sg 16 byte aligned
220 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000221 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300222 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000223};
224
Jason Wang986a4f42012-12-07 07:04:56 +0000225/* Converting between virtqueue no. and kernel tx/rx queue no.
226 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
227 */
228static int vq2txq(struct virtqueue *vq)
229{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000230 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000231}
232
233static int txq2vq(int txq)
234{
235 return txq * 2 + 1;
236}
237
238static int vq2rxq(struct virtqueue *vq)
239{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000240 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000241}
242
243static int rxq2vq(int rxq)
244{
245 return rxq * 2;
246}
247
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300248static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000249{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300250 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000251}
252
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000253/*
254 * private is used to chain pages for big packets, put the whole
255 * most recent used list in the beginning for reuse
256 */
Jason Wange9d74172012-12-07 07:04:55 +0000257static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500258{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000259 struct page *end;
260
Jason Wange9d74172012-12-07 07:04:55 +0000261 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000262 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000263 end->private = (unsigned long)rq->pages;
264 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500265}
266
Jason Wange9d74172012-12-07 07:04:55 +0000267static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500268{
Jason Wange9d74172012-12-07 07:04:55 +0000269 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500270
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000271 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000272 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000273 /* clear private here, it is used to chain pages */
274 p->private = 0;
275 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500276 p = alloc_page(gfp_mask);
277 return p;
278}
279
Willem de Bruijne4e84522017-04-24 13:49:26 -0400280static void virtqueue_napi_schedule(struct napi_struct *napi,
281 struct virtqueue *vq)
282{
283 if (napi_schedule_prep(napi)) {
284 virtqueue_disable_cb(vq);
285 __napi_schedule(napi);
286 }
287}
288
289static void virtqueue_napi_complete(struct napi_struct *napi,
290 struct virtqueue *vq, int processed)
291{
292 int opaque;
293
294 opaque = virtqueue_enable_cb_prepare(vq);
Toshiaki Makitafdaa7672017-12-07 13:15:15 +0900295 if (napi_complete_done(napi, processed)) {
296 if (unlikely(virtqueue_poll(vq, opaque)))
297 virtqueue_napi_schedule(napi, vq);
298 } else {
299 virtqueue_disable_cb(vq);
300 }
Willem de Bruijne4e84522017-04-24 13:49:26 -0400301}
302
Jason Wange9d74172012-12-07 07:04:55 +0000303static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000304{
Jason Wange9d74172012-12-07 07:04:55 +0000305 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400306 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000307
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500308 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000309 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000310
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400311 if (napi->weight)
312 virtqueue_napi_schedule(napi, vq);
313 else
314 /* We were probably waiting for more output buffers. */
315 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000316}
317
Jason Wang28b39bc2017-07-19 16:54:46 +0800318#define MRG_CTX_HEADER_SHIFT 22
319static void *mergeable_len_to_ctx(unsigned int truesize,
320 unsigned int headroom)
321{
322 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
323}
324
325static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
326{
327 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
328}
329
330static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
331{
332 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
333}
334
Mike Waychison34646452012-01-04 12:52:32 +0000335/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300336static struct sk_buff *page_to_skb(struct virtnet_info *vi,
337 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700338 struct page *page, unsigned int offset,
339 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000340{
341 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300342 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700343 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000344 char *p;
345
Michael Dalton2613af02013-10-28 15:44:18 -0700346 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000347
348 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100349 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000350 if (unlikely(!skb))
351 return NULL;
352
353 hdr = skb_vnet_hdr(skb);
354
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300355 hdr_len = vi->hdr_len;
356 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700357 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300358 else
Michael Dalton2613af02013-10-28 15:44:18 -0700359 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000360
361 memcpy(hdr, p, hdr_len);
362
363 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700364 offset += hdr_padded_len;
365 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000366
367 copy = len;
368 if (copy > skb_tailroom(skb))
369 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200370 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000371
372 len -= copy;
373 offset += copy;
374
Michael Dalton2613af02013-10-28 15:44:18 -0700375 if (vi->mergeable_rx_bufs) {
376 if (len)
377 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
378 else
379 put_page(page);
380 return skb;
381 }
382
Sasha Levine878d782011-09-28 04:40:54 +0000383 /*
384 * Verify that we can indeed put this data into a skb.
385 * This is here to handle cases when the device erroneously
386 * tries to receive more than is possible. This is usually
387 * the case of a broken device.
388 */
389 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000390 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000391 dev_kfree_skb(skb);
392 return NULL;
393 }
Michael Dalton2613af02013-10-28 15:44:18 -0700394 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000395 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700396 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
397 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
398 frag_size, truesize);
399 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000400 page = (struct page *)page->private;
401 offset = 0;
402 }
403
404 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000405 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000406
407 return skb;
408}
409
Jason Wang186b3c92017-09-19 17:42:43 +0800410static void virtnet_xdp_flush(struct net_device *dev)
411{
412 struct virtnet_info *vi = netdev_priv(dev);
413 struct send_queue *sq;
414 unsigned int qp;
415
416 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
417 sq = &vi->sq[qp];
418
419 virtqueue_kick(sq->vq);
420}
421
422static bool __virtnet_xdp_xmit(struct virtnet_info *vi,
423 struct xdp_buff *xdp)
John Fastabend56434a02016-12-15 12:14:13 -0800424{
John Fastabend56434a02016-12-15 12:14:13 -0800425 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wangf6b10202017-02-21 16:46:28 +0800426 unsigned int len;
John Fastabend722d8282017-02-02 19:15:32 -0800427 struct send_queue *sq;
428 unsigned int qp;
John Fastabend56434a02016-12-15 12:14:13 -0800429 void *xdp_sent;
430 int err;
431
John Fastabend722d8282017-02-02 19:15:32 -0800432 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
433 sq = &vi->sq[qp];
434
John Fastabend56434a02016-12-15 12:14:13 -0800435 /* Free up any pending old buffers before queueing new ones. */
436 while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Jason Wangf6b10202017-02-21 16:46:28 +0800437 struct page *sent_page = virt_to_head_page(xdp_sent);
Jason Wangbb91acc2016-12-23 22:37:32 +0800438
Jason Wangf6b10202017-02-21 16:46:28 +0800439 put_page(sent_page);
John Fastabend56434a02016-12-15 12:14:13 -0800440 }
441
Jason Wangf6b10202017-02-21 16:46:28 +0800442 xdp->data -= vi->hdr_len;
443 /* Zero header and leave csum up to XDP layers */
444 hdr = xdp->data;
445 memset(hdr, 0, vi->hdr_len);
John Fastabend56434a02016-12-15 12:14:13 -0800446
Jason Wangf6b10202017-02-21 16:46:28 +0800447 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800448
Jason Wangf6b10202017-02-21 16:46:28 +0800449 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp->data, GFP_ATOMIC);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100450 if (unlikely(err))
451 return false; /* Caller handle free/refcnt */
John Fastabend56434a02016-12-15 12:14:13 -0800452
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100453 return true;
John Fastabend56434a02016-12-15 12:14:13 -0800454}
455
Jason Wang186b3c92017-09-19 17:42:43 +0800456static int virtnet_xdp_xmit(struct net_device *dev, struct xdp_buff *xdp)
457{
458 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100459 struct receive_queue *rq = vi->rq;
460 struct bpf_prog *xdp_prog;
461 bool sent;
Jason Wang186b3c92017-09-19 17:42:43 +0800462
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100463 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this
464 * indicate XDP resources have been successfully allocated.
465 */
466 xdp_prog = rcu_dereference(rq->xdp_prog);
467 if (!xdp_prog)
468 return -ENXIO;
469
470 sent = __virtnet_xdp_xmit(vi, xdp);
Jason Wang186b3c92017-09-19 17:42:43 +0800471 if (!sent)
472 return -ENOSPC;
473 return 0;
474}
475
Jason Wangf6b10202017-02-21 16:46:28 +0800476static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
477{
478 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
479}
480
Jason Wang4941d472017-07-19 16:54:48 +0800481/* We copy the packet for XDP in the following cases:
482 *
483 * 1) Packet is scattered across multiple rx buffers.
484 * 2) Headroom space is insufficient.
485 *
486 * This is inefficient but it's a temporary condition that
487 * we hit right after XDP is enabled and until queue is refilled
488 * with large buffers with sufficient headroom - so it should affect
489 * at most queue size packets.
490 * Afterwards, the conditions to enable
491 * XDP should preclude the underlying device from sending packets
492 * across multiple buffers (num_buf > 1), and we make sure buffers
493 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800494 */
495static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800496 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800497 struct page *p,
498 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800499 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800500 unsigned int *len)
501{
502 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800503
504 if (!page)
505 return NULL;
506
507 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
508 page_off += *len;
509
Jason Wang56a86f82016-12-23 22:37:26 +0800510 while (--*num_buf) {
Jason Wang3cc81a92018-03-02 17:29:14 +0800511 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
John Fastabend72979a62016-12-15 12:14:36 -0800512 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800513 void *buf;
514 int off;
515
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200516 buf = virtqueue_get_buf(rq->vq, &buflen);
517 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800518 goto err_buf;
519
John Fastabend72979a62016-12-15 12:14:36 -0800520 p = virt_to_head_page(buf);
521 off = buf - page_address(p);
522
Jason Wang56a86f82016-12-23 22:37:26 +0800523 /* guard against a misconfigured or uncooperative backend that
524 * is sending packet larger than the MTU.
525 */
Jason Wang3cc81a92018-03-02 17:29:14 +0800526 if ((page_off + buflen + tailroom) > PAGE_SIZE) {
Jason Wang56a86f82016-12-23 22:37:26 +0800527 put_page(p);
528 goto err_buf;
529 }
530
John Fastabend72979a62016-12-15 12:14:36 -0800531 memcpy(page_address(page) + page_off,
532 page_address(p) + off, buflen);
533 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800534 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800535 }
536
John Fastabend2de2f7f2017-02-02 19:16:29 -0800537 /* Headroom does not contribute to packet length */
538 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800539 return page;
540err_buf:
541 __free_pages(page, 0);
542 return NULL;
543}
544
Jason Wang4941d472017-07-19 16:54:48 +0800545static struct sk_buff *receive_small(struct net_device *dev,
546 struct virtnet_info *vi,
547 struct receive_queue *rq,
548 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800549 unsigned int len,
550 bool *xdp_xmit)
Jason Wang4941d472017-07-19 16:54:48 +0800551{
552 struct sk_buff *skb;
553 struct bpf_prog *xdp_prog;
554 unsigned int xdp_headroom = (unsigned long)ctx;
555 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
556 unsigned int headroom = vi->hdr_len + header_offset;
557 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
558 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
559 struct page *page = virt_to_head_page(buf);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100560 unsigned int delta = 0;
Jason Wang4941d472017-07-19 16:54:48 +0800561 struct page *xdp_page;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100562 bool sent;
563 int err;
564
Jason Wang4941d472017-07-19 16:54:48 +0800565 len -= vi->hdr_len;
566
567 rcu_read_lock();
568 xdp_prog = rcu_dereference(rq->xdp_prog);
569 if (xdp_prog) {
570 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
571 struct xdp_buff xdp;
572 void *orig_data;
573 u32 act;
574
Jesper Dangaard Brouer95dbe9e2018-02-20 14:32:10 +0100575 if (unlikely(hdr->hdr.gso_type))
Jason Wang4941d472017-07-19 16:54:48 +0800576 goto err_xdp;
577
578 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
579 int offset = buf - page_address(page) + header_offset;
580 unsigned int tlen = len + vi->hdr_len;
581 u16 num_buf = 1;
582
583 xdp_headroom = virtnet_get_headroom(vi);
584 header_offset = VIRTNET_RX_PAD + xdp_headroom;
585 headroom = vi->hdr_len + header_offset;
586 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
587 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
588 xdp_page = xdp_linearize_page(rq, &num_buf, page,
589 offset, header_offset,
590 &tlen);
591 if (!xdp_page)
592 goto err_xdp;
593
594 buf = page_address(xdp_page);
595 put_page(page);
596 page = xdp_page;
597 }
598
599 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
600 xdp.data = xdp.data_hard_start + xdp_headroom;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200601 xdp_set_data_meta_invalid(&xdp);
Jason Wang4941d472017-07-19 16:54:48 +0800602 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100603 xdp.rxq = &rq->xdp_rxq;
Jason Wang4941d472017-07-19 16:54:48 +0800604 orig_data = xdp.data;
605 act = bpf_prog_run_xdp(xdp_prog, &xdp);
606
607 switch (act) {
608 case XDP_PASS:
609 /* Recalculate length in case bpf program changed it */
610 delta = orig_data - xdp.data;
611 break;
612 case XDP_TX:
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100613 sent = __virtnet_xdp_xmit(vi, &xdp);
614 if (unlikely(!sent)) {
Jason Wang4941d472017-07-19 16:54:48 +0800615 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100616 goto err_xdp;
617 }
618 *xdp_xmit = true;
Jason Wang186b3c92017-09-19 17:42:43 +0800619 rcu_read_unlock();
620 goto xdp_xmit;
621 case XDP_REDIRECT:
622 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100623 if (err)
624 goto err_xdp;
625 *xdp_xmit = true;
Jason Wang4941d472017-07-19 16:54:48 +0800626 rcu_read_unlock();
627 goto xdp_xmit;
628 default:
629 bpf_warn_invalid_xdp_action(act);
630 case XDP_ABORTED:
631 trace_xdp_exception(vi->dev, xdp_prog, act);
632 case XDP_DROP:
633 goto err_xdp;
634 }
635 }
636 rcu_read_unlock();
637
638 skb = build_skb(buf, buflen);
639 if (!skb) {
640 put_page(page);
641 goto err;
642 }
643 skb_reserve(skb, headroom - delta);
644 skb_put(skb, len + delta);
645 if (!delta) {
646 buf += header_offset;
647 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
648 } /* keep zeroed vnet hdr since packet was changed by bpf */
649
650err:
651 return skb;
652
653err_xdp:
654 rcu_read_unlock();
655 dev->stats.rx_dropped++;
656 put_page(page);
657xdp_xmit:
658 return NULL;
659}
660
661static struct sk_buff *receive_big(struct net_device *dev,
662 struct virtnet_info *vi,
663 struct receive_queue *rq,
664 void *buf,
665 unsigned int len)
666{
667 struct page *page = buf;
668 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
669
670 if (unlikely(!skb))
671 goto err;
672
673 return skb;
674
675err:
676 dev->stats.rx_dropped++;
677 give_pages(rq, page);
678 return NULL;
679}
680
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200681static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200682 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200683 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200684 void *buf,
685 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800686 unsigned int len,
687 bool *xdp_xmit)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000688{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300689 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
690 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200691 struct page *page = virt_to_head_page(buf);
692 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800693 struct sk_buff *head_skb, *curr_skb;
694 struct bpf_prog *xdp_prog;
695 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800696 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100697 bool sent;
Jason Wang3cc81a92018-03-02 17:29:14 +0800698 int err;
Michael Daltonab7db912014-01-16 22:23:27 -0800699
John Fastabend56434a02016-12-15 12:14:13 -0800700 head_skb = NULL;
701
John Fastabendf600b692016-12-15 12:13:24 -0800702 rcu_read_lock();
703 xdp_prog = rcu_dereference(rq->xdp_prog);
704 if (xdp_prog) {
John Fastabend72979a62016-12-15 12:14:36 -0800705 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800706 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800707 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800708 u32 act;
709
Jason Wang3cc81a92018-03-02 17:29:14 +0800710 /* This happens when rx buffer size is underestimated
711 * or headroom is not enough because of the buffer
712 * was refilled before XDP is set. This should only
713 * happen for the first several packets, so we don't
714 * care much about its performance.
715 */
Jason Wang4941d472017-07-19 16:54:48 +0800716 if (unlikely(num_buf > 1 ||
717 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800718 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800719 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800720 page, offset,
721 VIRTIO_XDP_HEADROOM,
722 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800723 if (!xdp_page)
724 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800725 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800726 } else {
727 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800728 }
729
730 /* Transient failure which in theory could occur if
731 * in-flight packets from before XDP was enabled reach
732 * the receive path after XDP is loaded. In practice I
733 * was not able to create this condition.
734 */
Jason Wangb00f70b2016-12-23 22:37:28 +0800735 if (unlikely(hdr->hdr.gso_type))
John Fastabendf600b692016-12-15 12:13:24 -0800736 goto err_xdp;
737
John Fastabend2de2f7f2017-02-02 19:16:29 -0800738 /* Allow consuming headroom but reserve enough space to push
739 * the descriptor on if we get an XDP_TX return code.
740 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800741 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800742 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800743 xdp.data = data + vi->hdr_len;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200744 xdp_set_data_meta_invalid(&xdp);
John Fastabend0354e4d2017-02-02 19:15:01 -0800745 xdp.data_end = xdp.data + (len - vi->hdr_len);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100746 xdp.rxq = &rq->xdp_rxq;
747
John Fastabend0354e4d2017-02-02 19:15:01 -0800748 act = bpf_prog_run_xdp(xdp_prog, &xdp);
749
John Fastabend56434a02016-12-15 12:14:13 -0800750 switch (act) {
751 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800752 /* recalculate offset to account for any header
753 * adjustments. Note other cases do not build an
754 * skb and avoid using offset
755 */
756 offset = xdp.data -
757 page_address(xdp_page) - vi->hdr_len;
758
Jason Wang1830f892016-12-23 22:37:27 +0800759 /* We can only create skb based on xdp_page. */
760 if (unlikely(xdp_page != page)) {
761 rcu_read_unlock();
762 put_page(page);
763 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800764 offset, len, PAGE_SIZE);
Jason Wang1830f892016-12-23 22:37:27 +0800765 return head_skb;
766 }
John Fastabend56434a02016-12-15 12:14:13 -0800767 break;
768 case XDP_TX:
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100769 sent = __virtnet_xdp_xmit(vi, &xdp);
770 if (unlikely(!sent)) {
John Fastabend0354e4d2017-02-02 19:15:01 -0800771 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100772 if (unlikely(xdp_page != page))
773 put_page(xdp_page);
774 goto err_xdp;
775 }
776 *xdp_xmit = true;
John Fastabend72979a62016-12-15 12:14:36 -0800777 if (unlikely(xdp_page != page))
Jason Wang5d458a12018-05-22 11:44:29 +0800778 put_page(page);
John Fastabend56434a02016-12-15 12:14:13 -0800779 rcu_read_unlock();
780 goto xdp_xmit;
Jason Wang3cc81a92018-03-02 17:29:14 +0800781 case XDP_REDIRECT:
782 err = xdp_do_redirect(dev, &xdp, xdp_prog);
783 if (err) {
784 if (unlikely(xdp_page != page))
785 put_page(xdp_page);
786 goto err_xdp;
787 }
788 *xdp_xmit = true;
789 if (unlikely(xdp_page != page))
Jason Wang68904182018-05-22 11:44:28 +0800790 put_page(page);
Jason Wang3cc81a92018-03-02 17:29:14 +0800791 rcu_read_unlock();
792 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800793 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800794 bpf_warn_invalid_xdp_action(act);
795 case XDP_ABORTED:
796 trace_xdp_exception(vi->dev, xdp_prog, act);
797 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800798 if (unlikely(xdp_page != page))
799 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800800 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800801 }
John Fastabendf600b692016-12-15 12:13:24 -0800802 }
803 rcu_read_unlock();
804
Jason Wang28b39bc2017-07-19 16:54:46 +0800805 truesize = mergeable_ctx_to_truesize(ctx);
806 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300807 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200808 dev->name, len, (unsigned long)ctx);
809 dev->stats.rx_length_errors++;
810 goto err_skb;
811 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800812
John Fastabendf600b692016-12-15 12:13:24 -0800813 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
814 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000815
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200816 if (unlikely(!curr_skb))
817 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000818 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200819 int num_skb_frags;
820
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200821 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Yunjian Wang03e9f8a2017-12-04 14:02:19 +0800822 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200823 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200824 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300825 virtio16_to_cpu(vi->vdev,
826 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200827 dev->stats.rx_length_errors++;
828 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000829 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200830
831 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800832
833 truesize = mergeable_ctx_to_truesize(ctx);
834 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300835 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200836 dev->name, len, (unsigned long)ctx);
837 dev->stats.rx_length_errors++;
838 goto err_skb;
839 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200840
841 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700842 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
843 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200844
845 if (unlikely(!nskb))
846 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700847 if (curr_skb == head_skb)
848 skb_shinfo(curr_skb)->frag_list = nskb;
849 else
850 curr_skb->next = nskb;
851 curr_skb = nskb;
852 head_skb->truesize += nskb->truesize;
853 num_skb_frags = 0;
854 }
855 if (curr_skb != head_skb) {
856 head_skb->data_len += len;
857 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800858 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700859 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200860 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800861 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
862 put_page(page);
863 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800864 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800865 } else {
866 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800867 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800868 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200869 }
870
Johannes Berg5377d7582015-08-19 09:48:40 +0200871 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200872 return head_skb;
873
John Fastabendf600b692016-12-15 12:13:24 -0800874err_xdp:
875 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200876err_skb:
877 put_page(page);
878 while (--num_buf) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200879 buf = virtqueue_get_buf(rq->vq, &len);
880 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200881 pr_debug("%s: rx error: %d buffers missing\n",
882 dev->name, num_buf);
883 dev->stats.rx_length_errors++;
884 break;
885 }
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200886 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200887 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000888 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200889err_buf:
890 dev->stats.rx_dropped++;
891 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800892xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200893 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000894}
895
Jason Wang61845d22017-02-17 11:33:09 +0800896static int receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
Jason Wang186b3c92017-09-19 17:42:43 +0800897 void *buf, unsigned int len, void **ctx, bool *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +1000898{
Jason Wange9d74172012-12-07 07:04:55 +0000899 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000900 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300901 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wang61845d22017-02-17 11:33:09 +0800902 int ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000903
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300904 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000905 pr_debug("%s: short packet %i\n", dev->name, len);
906 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800907 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200908 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800909 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800910 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800911 } else {
Jason Wangf6b10202017-02-21 16:46:28 +0800912 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800913 }
Jason Wang61845d22017-02-17 11:33:09 +0800914 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000915 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000916
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200917 if (vi->mergeable_rx_bufs)
Jason Wang186b3c92017-09-19 17:42:43 +0800918 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200919 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300920 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200921 else
Jason Wang186b3c92017-09-19 17:42:43 +0800922 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200923
924 if (unlikely(!skb))
Jason Wang61845d22017-02-17 11:33:09 +0800925 return 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800926
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000927 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000928
Jason Wang61845d22017-02-17 11:33:09 +0800929 ret = skb->len;
Rusty Russell296f96f2007-10-22 11:03:37 +1000930
Mike Rapoporte858fae2016-06-08 16:09:21 +0300931 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000932 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000933
Mike Rapoporte858fae2016-06-08 16:09:21 +0300934 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
935 virtio_is_little_endian(vi->vdev))) {
936 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
937 dev->name, hdr->hdr.gso_type,
938 hdr->hdr.gso_size);
939 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000940 }
941
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300942 skb->protocol = eth_type_trans(skb, dev);
943 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
944 ntohs(skb->protocol), skb->len, skb->pkt_type);
945
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200946 napi_gro_receive(&rq->napi, skb);
Jason Wang61845d22017-02-17 11:33:09 +0800947 return ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000948
949frame_err:
950 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000951 dev_kfree_skb(skb);
Jason Wang61845d22017-02-17 11:33:09 +0800952 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000953}
954
Jason Wang192f68c2017-07-19 16:54:47 +0800955/* Unlike mergeable buffers, all buffers are allocated to the
956 * same size, except for the headroom. For this reason we do
957 * not need to use mergeable_len_to_ctx here - it is enough
958 * to store the headroom as the context ignoring the truesize.
959 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300960static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
961 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000962{
Jason Wangf6b10202017-02-21 16:46:28 +0800963 struct page_frag *alloc_frag = &rq->alloc_frag;
964 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800965 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +0800966 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +0800967 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000968 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000969
Jason Wangf6b10202017-02-21 16:46:28 +0800970 len = SKB_DATA_ALIGN(len) +
971 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
972 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000973 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800974
Jason Wangf6b10202017-02-21 16:46:28 +0800975 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
976 get_page(alloc_frag->page);
977 alloc_frag->offset += len;
978 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
979 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +0800980 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000981 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +0800982 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000983 return err;
984}
985
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300986static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
987 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000988{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000989 struct page *first, *list = NULL;
990 char *p;
991 int i, err, offset;
992
Rusty Russella5835442014-09-11 10:17:36 +0930993 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
994
Jason Wange9d74172012-12-07 07:04:55 +0000995 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000996 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000997 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000998 if (!first) {
999 if (list)
Jason Wange9d74172012-12-07 07:04:55 +00001000 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001001 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -07001002 }
Jason Wange9d74172012-12-07 07:04:55 +00001003 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +10001004
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001005 /* chain new page in list head to match sg */
1006 first->private = (unsigned long)list;
1007 list = first;
1008 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001009
Jason Wange9d74172012-12-07 07:04:55 +00001010 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001011 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +00001012 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001013 return -ENOMEM;
1014 }
1015 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +08001016
Jason Wange9d74172012-12-07 07:04:55 +00001017 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001018 /* a separated rq->sg[0] for header - required in case !any_header_sg */
1019 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +08001020
Jason Wange9d74172012-12-07 07:04:55 +00001021 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001022 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +00001023 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +08001024
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001025 /* chain first in list head */
1026 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301027 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
1028 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001029 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +00001030 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +08001031
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001032 return err;
1033}
Herbert Xu97402b92008-04-18 11:24:27 +08001034
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02001035static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
Jason Wang3cc81a92018-03-02 17:29:14 +08001036 struct ewma_pkt_len *avg_pkt_len,
1037 unsigned int room)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001038{
Michael Daltonab7db912014-01-16 22:23:27 -08001039 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001040 unsigned int len;
1041
Jason Wang3cc81a92018-03-02 17:29:14 +08001042 if (room)
1043 return PAGE_SIZE - room;
1044
1045 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03001046 rq->min_buf_len, PAGE_SIZE - hdr_len);
Jason Wang3cc81a92018-03-02 17:29:14 +08001047
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +02001048 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001049}
1050
John Fastabend2de2f7f2017-02-02 19:16:29 -08001051static int add_recvbuf_mergeable(struct virtnet_info *vi,
1052 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -08001053{
Michael Daltonfb518792014-01-16 22:23:26 -08001054 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001055 unsigned int headroom = virtnet_get_headroom(vi);
Jason Wang3cc81a92018-03-02 17:29:14 +08001056 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1057 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
Michael Daltonfb518792014-01-16 22:23:26 -08001058 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001059 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001060 int err;
Michael Daltonfb518792014-01-16 22:23:26 -08001061 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +10001062
Jason Wang3cc81a92018-03-02 17:29:14 +08001063 /* Extra tailroom is needed to satisfy XDP's assumption. This
1064 * means rx frags coalescing won't work, but consider we've
1065 * disabled GSO for XDP, it won't be a big issue.
1066 */
1067 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room);
1068 if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001069 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -08001070
Michael Daltonfb518792014-01-16 22:23:26 -08001071 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001072 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -08001073 get_page(alloc_frag->page);
Jason Wang3cc81a92018-03-02 17:29:14 +08001074 alloc_frag->offset += len + room;
Michael Daltonfb518792014-01-16 22:23:26 -08001075 hole = alloc_frag->size - alloc_frag->offset;
Jason Wang3cc81a92018-03-02 17:29:14 +08001076 if (hole < len + room) {
Michael Daltonab7db912014-01-16 22:23:27 -08001077 /* To avoid internal fragmentation, if there is very likely not
1078 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001079 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001080 */
Michael Daltonfb518792014-01-16 22:23:26 -08001081 len += hole;
1082 alloc_frag->offset += hole;
1083 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001084
Michael Daltonfb518792014-01-16 22:23:26 -08001085 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001086 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001087 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001088 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001089 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001090
1091 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001092}
1093
Rusty Russellb2baed62011-12-29 00:42:38 +00001094/*
1095 * Returns false if we couldn't fill entirely (OOM).
1096 *
1097 * Normally run in the receive path, but can also be run from ndo_open
1098 * before we're receiving packets, or from refill_work which is
1099 * careful to disable receiving (using napi_disable).
1100 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001101static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1102 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001103{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001104 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001105 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001106
Amit Shah0aea51c2009-08-26 14:58:28 +05301107 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001108 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001109 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001110 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001111 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001112 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001113 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001114
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001115 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301116 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001117 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001118 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +08001119 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -07001120 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001121}
1122
Rusty Russell18445c42008-02-04 23:49:57 -05001123static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001124{
1125 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001126 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001127
Willem de Bruijne4e84522017-04-24 13:49:26 -04001128 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001129}
1130
Willem de Bruijne4e84522017-04-24 13:49:26 -04001131static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001132{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001133 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001134
1135 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001136 * won't get another interrupt, so process any outstanding packets now.
1137 * Call local_bh_enable after to trigger softIRQ processing.
1138 */
1139 local_bh_disable();
1140 virtqueue_napi_schedule(napi, vq);
1141 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001142}
1143
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001144static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1145 struct virtqueue *vq,
1146 struct napi_struct *napi)
1147{
1148 if (!napi->weight)
1149 return;
1150
1151 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1152 * enable the feature if this is likely affine with the transmit path.
1153 */
1154 if (!vi->affinity_hint_set) {
1155 napi->weight = 0;
1156 return;
1157 }
1158
1159 return virtnet_napi_enable(vq, napi);
1160}
1161
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001162static void virtnet_napi_tx_disable(struct napi_struct *napi)
1163{
1164 if (napi->weight)
1165 napi_disable(napi);
1166}
1167
Rusty Russell3161e452009-08-26 12:22:32 -07001168static void refill_work(struct work_struct *work)
1169{
Jason Wange9d74172012-12-07 07:04:55 +00001170 struct virtnet_info *vi =
1171 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001172 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001173 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001174
Sasha Levin55257d72013-04-29 12:00:08 +09301175 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001176 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001177
Jason Wang986a4f42012-12-07 07:04:56 +00001178 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001179 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001180 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001181
1182 /* In theory, this can happen: if we don't get any buffers in
1183 * we will *never* try to fill again.
1184 */
1185 if (still_empty)
1186 schedule_delayed_work(&vi->refill, HZ/2);
1187 }
Rusty Russell3161e452009-08-26 12:22:32 -07001188}
1189
Jason Wang186b3c92017-09-19 17:42:43 +08001190static int virtnet_receive(struct receive_queue *rq, int budget, bool *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001191{
Jason Wange9d74172012-12-07 07:04:55 +00001192 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang61845d22017-02-17 11:33:09 +08001193 unsigned int len, received = 0, bytes = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001194 void *buf;
Rusty Russell296f96f2007-10-22 11:03:37 +10001195
Jason Wang192f68c2017-07-19 16:54:47 +08001196 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001197 void *ctx;
1198
1199 while (received < budget &&
1200 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Jason Wang186b3c92017-09-19 17:42:43 +08001201 bytes += receive_buf(vi, rq, buf, len, ctx, xdp_xmit);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001202 received++;
1203 }
1204 } else {
1205 while (received < budget &&
1206 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Jason Wang186b3c92017-09-19 17:42:43 +08001207 bytes += receive_buf(vi, rq, buf, len, NULL, xdp_xmit);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001208 received++;
1209 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001210 }
1211
Jason Wangbe121f42014-01-16 14:45:24 +08001212 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001213 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001214 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001215 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001216
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001217 u64_stats_update_begin(&rq->stats.syncp);
1218 rq->stats.bytes += bytes;
1219 rq->stats.packets += received;
1220 u64_stats_update_end(&rq->stats.syncp);
Jason Wang61845d22017-02-17 11:33:09 +08001221
Jason Wang2ffa7592014-07-23 16:33:54 +08001222 return received;
1223}
1224
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001225static void free_old_xmit_skbs(struct send_queue *sq)
1226{
1227 struct sk_buff *skb;
1228 unsigned int len;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001229 unsigned int packets = 0;
1230 unsigned int bytes = 0;
1231
1232 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1233 pr_debug("Sent skb %p\n", skb);
1234
1235 bytes += skb->len;
1236 packets++;
1237
Eric Dumazetdadc0732017-08-24 09:02:49 -07001238 dev_consume_skb_any(skb);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001239 }
1240
1241 /* Avoid overhead when no packets have been processed
1242 * happens when called speculatively from start_xmit.
1243 */
1244 if (!packets)
1245 return;
1246
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001247 u64_stats_update_begin(&sq->stats.syncp);
1248 sq->stats.bytes += bytes;
1249 sq->stats.packets += packets;
1250 u64_stats_update_end(&sq->stats.syncp);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001251}
1252
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001253static void virtnet_poll_cleantx(struct receive_queue *rq)
1254{
1255 struct virtnet_info *vi = rq->vq->vdev->priv;
1256 unsigned int index = vq2rxq(rq->vq);
1257 struct send_queue *sq = &vi->sq[index];
1258 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1259
1260 if (!sq->napi.weight)
1261 return;
1262
1263 if (__netif_tx_trylock(txq)) {
1264 free_old_xmit_skbs(sq);
1265 __netif_tx_unlock(txq);
1266 }
1267
1268 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1269 netif_tx_wake_queue(txq);
1270}
1271
Jason Wang2ffa7592014-07-23 16:33:54 +08001272static int virtnet_poll(struct napi_struct *napi, int budget)
1273{
1274 struct receive_queue *rq =
1275 container_of(napi, struct receive_queue, napi);
Jason Wang9267c432018-04-13 14:58:25 +08001276 struct virtnet_info *vi = rq->vq->vdev->priv;
1277 struct send_queue *sq;
1278 unsigned int received, qp;
Jason Wang186b3c92017-09-19 17:42:43 +08001279 bool xdp_xmit = false;
Jason Wang2ffa7592014-07-23 16:33:54 +08001280
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001281 virtnet_poll_cleantx(rq);
1282
Jason Wang186b3c92017-09-19 17:42:43 +08001283 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001284
Rusty Russell8329d982007-11-19 11:20:43 -05001285 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001286 if (received < budget)
1287 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001288
Jason Wang9267c432018-04-13 14:58:25 +08001289 if (xdp_xmit) {
1290 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs +
1291 smp_processor_id();
1292 sq = &vi->sq[qp];
1293 virtqueue_kick(sq->vq);
Jason Wang186b3c92017-09-19 17:42:43 +08001294 xdp_do_flush_map();
Jason Wang9267c432018-04-13 14:58:25 +08001295 }
Jason Wang186b3c92017-09-19 17:42:43 +08001296
Rusty Russell296f96f2007-10-22 11:03:37 +10001297 return received;
1298}
1299
Jason Wang986a4f42012-12-07 07:04:56 +00001300static int virtnet_open(struct net_device *dev)
1301{
1302 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001303 int i, err;
Jason Wang986a4f42012-12-07 07:04:56 +00001304
Jason Wange4166622013-05-21 20:03:58 +00001305 for (i = 0; i < vi->max_queue_pairs; i++) {
1306 if (i < vi->curr_queue_pairs)
1307 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001308 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001309 schedule_delayed_work(&vi->refill, 0);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001310
1311 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i);
1312 if (err < 0)
1313 return err;
1314
Willem de Bruijne4e84522017-04-24 13:49:26 -04001315 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001316 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001317 }
1318
1319 return 0;
1320}
1321
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001322static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1323{
1324 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1325 struct virtnet_info *vi = sq->vq->vdev->priv;
1326 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1327
1328 __netif_tx_lock(txq, raw_smp_processor_id());
1329 free_old_xmit_skbs(sq);
1330 __netif_tx_unlock(txq);
1331
1332 virtqueue_napi_complete(napi, sq->vq, 0);
1333
1334 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1335 netif_tx_wake_queue(txq);
1336
1337 return 0;
1338}
1339
Jason Wange9d74172012-12-07 07:04:55 +00001340static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001341{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001342 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001343 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001344 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001345 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001346 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301347 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001348
Johannes Berge1749612008-10-27 15:59:26 -07001349 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301350
1351 can_push = vi->any_header_sg &&
1352 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1353 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1354 /* Even if we can, don't push here yet as this would skew
1355 * csum_start offset below. */
1356 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001357 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301358 else
1359 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001360
Mike Rapoporte858fae2016-06-08 16:09:21 +03001361 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Jason Wang6391a442017-01-20 14:32:42 +08001362 virtio_is_little_endian(vi->vdev), false))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001363 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001364
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001365 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001366 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001367
Jason Wang547c8902015-08-27 14:53:06 +08001368 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301369 if (can_push) {
1370 __skb_push(skb, hdr_len);
1371 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001372 if (unlikely(num_sg < 0))
1373 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301374 /* Pull header back to avoid skew in tx bytes calculations. */
1375 __skb_pull(skb, hdr_len);
1376 } else {
1377 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001378 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1379 if (unlikely(num_sg < 0))
1380 return num_sg;
1381 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301382 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301383 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001384}
1385
Stephen Hemminger424efe92009-08-31 19:50:51 +00001386static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001387{
1388 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001389 int qnum = skb_get_queue_mapping(skb);
1390 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301391 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001392 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1393 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001394 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001395
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001396 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001397 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001398
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001399 if (use_napi && kick)
1400 virtqueue_enable_cb_delayed(sq->vq);
1401
Jacob Keller074c3582014-06-25 02:37:13 +00001402 /* timestamp packet in software */
1403 skb_tx_timestamp(skb);
1404
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001405 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001406 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001407
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301408 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001409 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301410 dev->stats.tx_fifo_errors++;
1411 if (net_ratelimit())
1412 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001413 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001414 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001415 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001416 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001417 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001418
Rusty Russell48925e32009-09-24 09:59:20 -06001419 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001420 if (!use_napi) {
1421 skb_orphan(skb);
1422 nf_reset(skb);
1423 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001424
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001425 /* If running out of space, stop queue to avoid getting packets that we
1426 * are then unable to transmit.
1427 * An alternative would be to force queuing layer to requeue the skb by
1428 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1429 * returned in a normal path of operation: it means that driver is not
1430 * maintaining the TX queue stop/start state properly, and causes
1431 * the stack to do a non-trivial amount of useless work.
1432 * Since most packets only take 1 or 2 ring slots, stopping the queue
1433 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001434 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001435 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001436 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001437 if (!use_napi &&
1438 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001439 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001440 free_old_xmit_skbs(sq);
1441 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001442 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001443 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001444 }
1445 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001446 }
Rusty Russell48925e32009-09-24 09:59:20 -06001447
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001448 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001449 virtqueue_kick(sq->vq);
1450
Rusty Russell48925e32009-09-24 09:59:20 -06001451 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001452}
1453
Amos Kong40cbfc32013-01-21 01:17:21 +00001454/*
1455 * Send command via the control virtqueue and check status. Commands
1456 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001457 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001458 */
1459static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001460 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001461{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301462 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001463 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001464
1465 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301466 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001467
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001468 vi->ctrl->status = ~0;
1469 vi->ctrl->hdr.class = class;
1470 vi->ctrl->hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301471 /* Add header */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001472 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301473 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001474
Rusty Russellf7bc9592013-03-20 15:44:28 +10301475 if (out)
1476 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001477
Rusty Russellf7bc9592013-03-20 15:44:28 +10301478 /* Add return status. */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001479 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001480 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001481
stephen hemmingerd24bae32013-12-09 16:17:40 -08001482 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301483 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001484
Heinz Graalfs67975902013-10-29 09:40:02 +10301485 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001486 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001487
1488 /* Spin for a response, the kick causes an ioport write, trapping
1489 * into the hypervisor, so the request should be handled immediately.
1490 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301491 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1492 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001493 cpu_relax();
1494
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001495 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001496}
1497
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001498static int virtnet_set_mac_address(struct net_device *dev, void *p)
1499{
1500 struct virtnet_info *vi = netdev_priv(dev);
1501 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001502 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001503 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001504 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001505
Shyam Saini801822d2016-12-24 00:44:58 +05301506 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001507 if (!addr)
1508 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001509
1510 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001511 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001512 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001513
Amos Kong7e58d5a2013-01-21 01:17:23 +00001514 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1515 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1516 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001517 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001518 dev_warn(&vdev->dev,
1519 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001520 ret = -EINVAL;
1521 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001522 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001523 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1524 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301525 unsigned int i;
1526
1527 /* Naturally, this has an atomicity problem. */
1528 for (i = 0; i < dev->addr_len; i++)
1529 virtio_cwrite8(vdev,
1530 offsetof(struct virtio_net_config, mac) +
1531 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001532 }
1533
1534 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001535 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001536
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001537out:
1538 kfree(addr);
1539 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001540}
1541
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001542static void virtnet_stats(struct net_device *dev,
1543 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001544{
1545 struct virtnet_info *vi = netdev_priv(dev);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001546 unsigned int start;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001547 int i;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001548
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001549 for (i = 0; i < vi->max_queue_pairs; i++) {
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001550 u64 tpackets, tbytes, rpackets, rbytes;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001551 struct receive_queue *rq = &vi->rq[i];
1552 struct send_queue *sq = &vi->sq[i];
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001553
1554 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001555 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1556 tpackets = sq->stats.packets;
1557 tbytes = sq->stats.bytes;
1558 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001559
1560 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001561 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
1562 rpackets = rq->stats.packets;
1563 rbytes = rq->stats.bytes;
1564 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001565
1566 tot->rx_packets += rpackets;
1567 tot->tx_packets += tpackets;
1568 tot->rx_bytes += rbytes;
1569 tot->tx_bytes += tbytes;
1570 }
1571
1572 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001573 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001574 tot->rx_dropped = dev->stats.rx_dropped;
1575 tot->rx_length_errors = dev->stats.rx_length_errors;
1576 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001577}
1578
Amit Shahda74e892008-02-29 16:24:50 +05301579#ifdef CONFIG_NET_POLL_CONTROLLER
1580static void virtnet_netpoll(struct net_device *dev)
1581{
1582 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001583 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301584
Jason Wang986a4f42012-12-07 07:04:56 +00001585 for (i = 0; i < vi->curr_queue_pairs; i++)
1586 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301587}
1588#endif
1589
Jason Wang586d17c2012-04-11 20:43:52 +00001590static void virtnet_ack_link_announce(struct virtnet_info *vi)
1591{
1592 rtnl_lock();
1593 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001594 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001595 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1596 rtnl_unlock();
1597}
1598
John Fastabend473153292017-02-02 19:14:32 -08001599static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001600{
1601 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001602 struct net_device *dev = vi->dev;
1603
1604 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1605 return 0;
1606
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001607 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1608 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001609
1610 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001611 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001612 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1613 queue_pairs);
1614 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301615 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001616 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001617 /* virtnet_open() will refill when device is going to up. */
1618 if (dev->flags & IFF_UP)
1619 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301620 }
Jason Wang986a4f42012-12-07 07:04:56 +00001621
1622 return 0;
1623}
1624
John Fastabend473153292017-02-02 19:14:32 -08001625static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1626{
1627 int err;
1628
1629 rtnl_lock();
1630 err = _virtnet_set_queues(vi, queue_pairs);
1631 rtnl_unlock();
1632 return err;
1633}
1634
Rusty Russell296f96f2007-10-22 11:03:37 +10001635static int virtnet_close(struct net_device *dev)
1636{
1637 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001638 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001639
Rusty Russellb2baed62011-12-29 00:42:38 +00001640 /* Make sure refill_work doesn't re-enable napi! */
1641 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001642
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001643 for (i = 0; i < vi->max_queue_pairs; i++) {
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001644 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
Jason Wang986a4f42012-12-07 07:04:56 +00001645 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001646 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001647 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001648
Rusty Russell296f96f2007-10-22 11:03:37 +10001649 return 0;
1650}
1651
Alex Williamson2af76982009-02-04 09:02:40 +00001652static void virtnet_set_rx_mode(struct net_device *dev)
1653{
1654 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001655 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001656 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001657 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001658 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001659 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001660 void *buf;
1661 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001662
stephen hemminger788a8b62013-12-09 16:18:45 -08001663 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001664 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1665 return;
1666
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001667 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0);
1668 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001669
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001670 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001671
1672 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001673 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001674 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001675 vi->ctrl->promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001676
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001677 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001678
1679 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001680 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001681 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001682 vi->ctrl->allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001683
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001684 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001685 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001686 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001687 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1688 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1689 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001690 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001691 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001692
Alex Williamson23e258e2009-05-01 17:27:56 +00001693 sg_init_table(sg, 2);
1694
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001695 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001696 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001697 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001698 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001699 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001700
1701 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001702 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001703
1704 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001705 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001706
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001707 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001708 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001709 netdev_for_each_mc_addr(ha, dev)
1710 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001711
1712 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001713 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001714
1715 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001716 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001717 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001718
1719 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001720}
1721
Patrick McHardy80d5c362013-04-19 02:04:28 +00001722static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1723 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001724{
1725 struct virtnet_info *vi = netdev_priv(dev);
1726 struct scatterlist sg;
1727
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001728 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001729 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001730
1731 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001732 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001733 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001734 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001735}
1736
Patrick McHardy80d5c362013-04-19 02:04:28 +00001737static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1738 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001739{
1740 struct virtnet_info *vi = netdev_priv(dev);
1741 struct scatterlist sg;
1742
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001743 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001744 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001745
1746 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001747 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001748 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001749 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001750}
1751
Wanlong Gao8898c212013-01-24 23:51:30 +00001752static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001753{
1754 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001755
1756 if (vi->affinity_hint_set) {
1757 for (i = 0; i < vi->max_queue_pairs; i++) {
1758 virtqueue_set_affinity(vi->rq[i].vq, -1);
1759 virtqueue_set_affinity(vi->sq[i].vq, -1);
1760 }
1761
1762 vi->affinity_hint_set = false;
1763 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001764}
1765
1766static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001767{
1768 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001769 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001770
1771 /* In multiqueue mode, when the number of cpu is equal to the number of
1772 * queue pairs, we let the queue pairs to be private to one cpu by
1773 * setting the affinity hint to eliminate the contention.
1774 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001775 if (vi->curr_queue_pairs == 1 ||
1776 vi->max_queue_pairs != num_online_cpus()) {
1777 virtnet_clean_affinity(vi, -1);
1778 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001779 }
1780
Wanlong Gao8898c212013-01-24 23:51:30 +00001781 i = 0;
1782 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001783 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1784 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001785 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001786 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001787 }
1788
Wanlong Gao8898c212013-01-24 23:51:30 +00001789 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001790}
1791
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001792static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001793{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001794 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1795 node);
1796 virtnet_set_affinity(vi);
1797 return 0;
1798}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001799
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001800static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1801{
1802 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1803 node_dead);
1804 virtnet_set_affinity(vi);
1805 return 0;
1806}
Jason Wang3ab098d2013-10-15 11:18:58 +08001807
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001808static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1809{
1810 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1811 node);
1812
1813 virtnet_clean_affinity(vi, cpu);
1814 return 0;
1815}
1816
1817static enum cpuhp_state virtionet_online;
1818
1819static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1820{
1821 int ret;
1822
1823 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1824 if (ret)
1825 return ret;
1826 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1827 &vi->node_dead);
1828 if (!ret)
1829 return ret;
1830 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1831 return ret;
1832}
1833
1834static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1835{
1836 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1837 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1838 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001839}
1840
Rick Jones8f9f4662011-10-19 08:10:59 +00001841static void virtnet_get_ringparam(struct net_device *dev,
1842 struct ethtool_ringparam *ring)
1843{
1844 struct virtnet_info *vi = netdev_priv(dev);
1845
Jason Wang986a4f42012-12-07 07:04:56 +00001846 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1847 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001848 ring->rx_pending = ring->rx_max_pending;
1849 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001850}
1851
Rick Jones66846042011-11-14 14:17:08 +00001852
1853static void virtnet_get_drvinfo(struct net_device *dev,
1854 struct ethtool_drvinfo *info)
1855{
1856 struct virtnet_info *vi = netdev_priv(dev);
1857 struct virtio_device *vdev = vi->vdev;
1858
1859 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1860 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1861 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1862
1863}
1864
Jason Wangd73bcd22012-12-07 07:04:57 +00001865/* TODO: Eliminate OOO packets during switching */
1866static int virtnet_set_channels(struct net_device *dev,
1867 struct ethtool_channels *channels)
1868{
1869 struct virtnet_info *vi = netdev_priv(dev);
1870 u16 queue_pairs = channels->combined_count;
1871 int err;
1872
1873 /* We don't support separate rx/tx channels.
1874 * We don't allow setting 'other' channels.
1875 */
1876 if (channels->rx_count || channels->tx_count || channels->other_count)
1877 return -EINVAL;
1878
Amos Kongc18e9cd2014-04-18 13:45:41 +08001879 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001880 return -EINVAL;
1881
John Fastabendf600b692016-12-15 12:13:24 -08001882 /* For now we don't support modifying channels while XDP is loaded
1883 * also when XDP is loaded all RX queues have XDP programs so we only
1884 * need to check a single RX queue.
1885 */
1886 if (vi->rq[0].xdp_prog)
1887 return -EINVAL;
1888
Wanlong Gao47be2472013-01-24 23:51:29 +00001889 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08001890 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00001891 if (!err) {
1892 netif_set_real_num_tx_queues(dev, queue_pairs);
1893 netif_set_real_num_rx_queues(dev, queue_pairs);
1894
Wanlong Gao8898c212013-01-24 23:51:30 +00001895 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001896 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001897 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001898
1899 return err;
1900}
1901
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001902static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
1903{
1904 struct virtnet_info *vi = netdev_priv(dev);
1905 char *p = (char *)data;
1906 unsigned int i, j;
1907
1908 switch (stringset) {
1909 case ETH_SS_STATS:
1910 for (i = 0; i < vi->curr_queue_pairs; i++) {
1911 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
1912 snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s",
1913 i, virtnet_rq_stats_desc[j].desc);
1914 p += ETH_GSTRING_LEN;
1915 }
1916 }
1917
1918 for (i = 0; i < vi->curr_queue_pairs; i++) {
1919 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
1920 snprintf(p, ETH_GSTRING_LEN, "tx_queue_%u_%s",
1921 i, virtnet_sq_stats_desc[j].desc);
1922 p += ETH_GSTRING_LEN;
1923 }
1924 }
1925 break;
1926 }
1927}
1928
1929static int virtnet_get_sset_count(struct net_device *dev, int sset)
1930{
1931 struct virtnet_info *vi = netdev_priv(dev);
1932
1933 switch (sset) {
1934 case ETH_SS_STATS:
1935 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN +
1936 VIRTNET_SQ_STATS_LEN);
1937 default:
1938 return -EOPNOTSUPP;
1939 }
1940}
1941
1942static void virtnet_get_ethtool_stats(struct net_device *dev,
1943 struct ethtool_stats *stats, u64 *data)
1944{
1945 struct virtnet_info *vi = netdev_priv(dev);
1946 unsigned int idx = 0, start, i, j;
1947 const u8 *stats_base;
1948 size_t offset;
1949
1950 for (i = 0; i < vi->curr_queue_pairs; i++) {
1951 struct receive_queue *rq = &vi->rq[i];
1952
1953 stats_base = (u8 *)&rq->stats;
1954 do {
1955 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
1956 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
1957 offset = virtnet_rq_stats_desc[j].offset;
1958 data[idx + j] = *(u64 *)(stats_base + offset);
1959 }
1960 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
1961 idx += VIRTNET_RQ_STATS_LEN;
1962 }
1963
1964 for (i = 0; i < vi->curr_queue_pairs; i++) {
1965 struct send_queue *sq = &vi->sq[i];
1966
1967 stats_base = (u8 *)&sq->stats;
1968 do {
1969 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1970 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
1971 offset = virtnet_sq_stats_desc[j].offset;
1972 data[idx + j] = *(u64 *)(stats_base + offset);
1973 }
1974 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
1975 idx += VIRTNET_SQ_STATS_LEN;
1976 }
1977}
1978
Jason Wangd73bcd22012-12-07 07:04:57 +00001979static void virtnet_get_channels(struct net_device *dev,
1980 struct ethtool_channels *channels)
1981{
1982 struct virtnet_info *vi = netdev_priv(dev);
1983
1984 channels->combined_count = vi->curr_queue_pairs;
1985 channels->max_combined = vi->max_queue_pairs;
1986 channels->max_other = 0;
1987 channels->rx_count = 0;
1988 channels->tx_count = 0;
1989 channels->other_count = 0;
1990}
1991
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001992/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001993static bool
1994virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001995{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001996 struct ethtool_link_ksettings diff1 = *cmd;
1997 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001998
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001999 /* cmd is always set so we need to clear it, validate the port type
2000 * and also without autonegotiation we can ignore advertising
2001 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002002 diff1.base.speed = 0;
2003 diff2.base.port = PORT_OTHER;
2004 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
2005 diff1.base.duplex = 0;
2006 diff1.base.cmd = 0;
2007 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002008
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002009 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
2010 bitmap_empty(diff1.link_modes.supported,
2011 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2012 bitmap_empty(diff1.link_modes.advertising,
2013 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2014 bitmap_empty(diff1.link_modes.lp_advertising,
2015 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002016}
2017
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002018static int virtnet_set_link_ksettings(struct net_device *dev,
2019 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002020{
2021 struct virtnet_info *vi = netdev_priv(dev);
2022 u32 speed;
2023
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002024 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002025 /* don't allow custom speed and duplex */
2026 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002027 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002028 !virtnet_validate_ethtool_cmd(cmd))
2029 return -EINVAL;
2030 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002031 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002032
2033 return 0;
2034}
2035
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002036static int virtnet_get_link_ksettings(struct net_device *dev,
2037 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002038{
2039 struct virtnet_info *vi = netdev_priv(dev);
2040
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002041 cmd->base.speed = vi->speed;
2042 cmd->base.duplex = vi->duplex;
2043 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002044
2045 return 0;
2046}
2047
2048static void virtnet_init_settings(struct net_device *dev)
2049{
2050 struct virtnet_info *vi = netdev_priv(dev);
2051
2052 vi->speed = SPEED_UNKNOWN;
2053 vi->duplex = DUPLEX_UNKNOWN;
2054}
2055
Jason Baronfaa9b392018-01-05 17:44:54 -05002056static void virtnet_update_settings(struct virtnet_info *vi)
2057{
2058 u32 speed;
2059 u8 duplex;
2060
2061 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
2062 return;
2063
2064 speed = virtio_cread32(vi->vdev, offsetof(struct virtio_net_config,
2065 speed));
2066 if (ethtool_validate_speed(speed))
2067 vi->speed = speed;
2068 duplex = virtio_cread8(vi->vdev, offsetof(struct virtio_net_config,
2069 duplex));
2070 if (ethtool_validate_duplex(duplex))
2071 vi->duplex = duplex;
2072}
2073
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07002074static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00002075 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002076 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00002077 .get_ringparam = virtnet_get_ringparam,
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002078 .get_strings = virtnet_get_strings,
2079 .get_sset_count = virtnet_get_sset_count,
2080 .get_ethtool_stats = virtnet_get_ethtool_stats,
Jason Wangd73bcd22012-12-07 07:04:57 +00002081 .set_channels = virtnet_set_channels,
2082 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00002083 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002084 .get_link_ksettings = virtnet_get_link_ksettings,
2085 .set_link_ksettings = virtnet_set_link_ksettings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002086};
2087
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002088static void virtnet_freeze_down(struct virtio_device *vdev)
2089{
2090 struct virtnet_info *vi = vdev->priv;
2091 int i;
2092
2093 /* Make sure no work handler is accessing the device */
2094 flush_work(&vi->config_work);
2095
2096 netif_device_detach(vi->dev);
Jason Wang713a98d2017-06-28 09:51:03 +08002097 netif_tx_disable(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002098 cancel_delayed_work_sync(&vi->refill);
2099
2100 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002101 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002102 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04002103 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002104 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002105 }
2106}
2107
2108static int init_vqs(struct virtnet_info *vi);
2109
2110static int virtnet_restore_up(struct virtio_device *vdev)
2111{
2112 struct virtnet_info *vi = vdev->priv;
2113 int err, i;
2114
2115 err = init_vqs(vi);
2116 if (err)
2117 return err;
2118
2119 virtio_device_ready(vdev);
2120
2121 if (netif_running(vi->dev)) {
2122 for (i = 0; i < vi->curr_queue_pairs; i++)
2123 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
2124 schedule_delayed_work(&vi->refill, 0);
2125
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002126 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04002127 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002128 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2129 &vi->sq[i].napi);
2130 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002131 }
2132
2133 netif_device_attach(vi->dev);
2134 return err;
2135}
2136
Jason Wang3f935222017-07-19 16:54:49 +08002137static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
2138{
2139 struct scatterlist sg;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002140 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads);
Jason Wang3f935222017-07-19 16:54:49 +08002141
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002142 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads));
Jason Wang3f935222017-07-19 16:54:49 +08002143
2144 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
2145 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
2146 dev_warn(&vi->dev->dev, "Fail to set guest offload. \n");
2147 return -EINVAL;
2148 }
2149
2150 return 0;
2151}
2152
2153static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
2154{
2155 u64 offloads = 0;
2156
2157 if (!vi->guest_offloads)
2158 return 0;
2159
2160 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2161 offloads = 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2162
2163 return virtnet_set_guest_offloads(vi, offloads);
2164}
2165
2166static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
2167{
2168 u64 offloads = vi->guest_offloads;
2169
2170 if (!vi->guest_offloads)
2171 return 0;
2172 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2173 offloads |= 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2174
2175 return virtnet_set_guest_offloads(vi, offloads);
2176}
2177
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002178static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
2179 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08002180{
2181 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2182 struct virtnet_info *vi = netdev_priv(dev);
2183 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002184 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002185 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002186
Jason Wang3f935222017-07-19 16:54:49 +08002187 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2188 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2189 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2190 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
2191 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO))) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002192 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing LRO, disable LRO first");
John Fastabendf600b692016-12-15 12:13:24 -08002193 return -EOPNOTSUPP;
2194 }
2195
2196 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002197 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002198 return -EINVAL;
2199 }
2200
2201 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002202 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002203 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2204 return -EINVAL;
2205 }
2206
John Fastabend672aafd2016-12-15 12:13:49 -08002207 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2208 if (prog)
2209 xdp_qp = nr_cpu_ids;
2210
2211 /* XDP requires extra queues for XDP_TX */
2212 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002213 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002214 netdev_warn(dev, "request %i queues but max is %i\n",
2215 curr_qp + xdp_qp, vi->max_queue_pairs);
2216 return -ENOMEM;
2217 }
2218
John Fastabend2de2f7f2017-02-02 19:16:29 -08002219 if (prog) {
2220 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
2221 if (IS_ERR(prog))
2222 return PTR_ERR(prog);
2223 }
2224
Jason Wang4941d472017-07-19 16:54:48 +08002225 /* Make sure NAPI is not using any XDP TX queues for RX. */
Jason Wang4e09ff52018-02-28 18:20:04 +08002226 if (netif_running(dev))
2227 for (i = 0; i < vi->max_queue_pairs; i++)
2228 napi_disable(&vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002229
John Fastabend672aafd2016-12-15 12:13:49 -08002230 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002231 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2232 if (err)
2233 goto err;
2234 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002235
John Fastabendf600b692016-12-15 12:13:24 -08002236 for (i = 0; i < vi->max_queue_pairs; i++) {
2237 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2238 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
Jason Wang3f935222017-07-19 16:54:49 +08002239 if (i == 0) {
2240 if (!old_prog)
2241 virtnet_clear_guest_offloads(vi);
2242 if (!prog)
2243 virtnet_restore_guest_offloads(vi);
2244 }
John Fastabendf600b692016-12-15 12:13:24 -08002245 if (old_prog)
2246 bpf_prog_put(old_prog);
Jason Wang4e09ff52018-02-28 18:20:04 +08002247 if (netif_running(dev))
2248 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002249 }
2250
2251 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002252
Jason Wang4941d472017-07-19 16:54:48 +08002253err:
2254 for (i = 0; i < vi->max_queue_pairs; i++)
2255 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08002256 if (prog)
2257 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2258 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002259}
2260
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002261static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08002262{
2263 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002264 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08002265 int i;
2266
2267 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002268 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2269 if (xdp_prog)
2270 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08002271 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002272 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08002273}
2274
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002275static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
John Fastabendf600b692016-12-15 12:13:24 -08002276{
2277 switch (xdp->command) {
2278 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002279 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002280 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002281 xdp->prog_id = virtnet_xdp_query(dev);
2282 xdp->prog_attached = !!xdp->prog_id;
John Fastabendf600b692016-12-15 12:13:24 -08002283 return 0;
2284 default:
2285 return -EINVAL;
2286 }
2287}
2288
Stephen Hemminger76288b42009-01-06 10:44:22 -08002289static const struct net_device_ops virtnet_netdev = {
2290 .ndo_open = virtnet_open,
2291 .ndo_stop = virtnet_close,
2292 .ndo_start_xmit = start_xmit,
2293 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002294 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002295 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002296 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002297 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2298 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002299#ifdef CONFIG_NET_POLL_CONTROLLER
2300 .ndo_poll_controller = virtnet_netpoll,
2301#endif
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002302 .ndo_bpf = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002303 .ndo_xdp_xmit = virtnet_xdp_xmit,
2304 .ndo_xdp_flush = virtnet_xdp_flush,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002305 .ndo_features_check = passthru_features_check,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002306};
2307
Jason Wang586d17c2012-04-11 20:43:52 +00002308static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002309{
Jason Wang586d17c2012-04-11 20:43:52 +00002310 struct virtnet_info *vi =
2311 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002312 u16 v;
2313
Rusty Russell855e0c52013-10-14 18:11:51 +10302314 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2315 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302316 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002317
2318 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002319 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002320 virtnet_ack_link_announce(vi);
2321 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002322
2323 /* Ignore unknown (future) status bits */
2324 v &= VIRTIO_NET_S_LINK_UP;
2325
2326 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302327 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002328
2329 vi->status = v;
2330
2331 if (vi->status & VIRTIO_NET_S_LINK_UP) {
Jason Baronfaa9b392018-01-05 17:44:54 -05002332 virtnet_update_settings(vi);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002333 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002334 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002335 } else {
2336 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002337 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002338 }
2339}
2340
2341static void virtnet_config_changed(struct virtio_device *vdev)
2342{
2343 struct virtnet_info *vi = vdev->priv;
2344
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002345 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002346}
2347
Jason Wang986a4f42012-12-07 07:04:56 +00002348static void virtnet_free_queues(struct virtnet_info *vi)
2349{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002350 int i;
2351
Jason Wangab3971b2015-03-12 13:57:44 +08002352 for (i = 0; i < vi->max_queue_pairs; i++) {
2353 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002354 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002355 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002356 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002357
Eric Dumazet963abe52016-11-15 22:24:12 -08002358 /* We called napi_hash_del() before netif_napi_del(),
2359 * we need to respect an RCU grace period before freeing vi->rq
2360 */
2361 synchronize_net();
2362
Jason Wang986a4f42012-12-07 07:04:56 +00002363 kfree(vi->rq);
2364 kfree(vi->sq);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002365 kfree(vi->ctrl);
Jason Wang986a4f42012-12-07 07:04:56 +00002366}
2367
John Fastabend473153292017-02-02 19:14:32 -08002368static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002369{
John Fastabendf600b692016-12-15 12:13:24 -08002370 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002371 int i;
2372
2373 for (i = 0; i < vi->max_queue_pairs; i++) {
2374 while (vi->rq[i].pages)
2375 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002376
2377 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2378 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2379 if (old_prog)
2380 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002381 }
John Fastabend473153292017-02-02 19:14:32 -08002382}
2383
2384static void free_receive_bufs(struct virtnet_info *vi)
2385{
2386 rtnl_lock();
2387 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002388 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002389}
2390
Michael Daltonfb518792014-01-16 22:23:26 -08002391static void free_receive_page_frags(struct virtnet_info *vi)
2392{
2393 int i;
2394 for (i = 0; i < vi->max_queue_pairs; i++)
2395 if (vi->rq[i].alloc_frag.page)
2396 put_page(vi->rq[i].alloc_frag.page);
2397}
2398
John Fastabendb68df012017-01-25 18:22:48 -08002399static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002400{
2401 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2402 return false;
2403 else if (q < vi->curr_queue_pairs)
2404 return true;
2405 else
2406 return false;
2407}
2408
Jason Wang986a4f42012-12-07 07:04:56 +00002409static void free_unused_bufs(struct virtnet_info *vi)
2410{
2411 void *buf;
2412 int i;
2413
2414 for (i = 0; i < vi->max_queue_pairs; i++) {
2415 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002416 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002417 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002418 dev_kfree_skb(buf);
2419 else
2420 put_page(virt_to_head_page(buf));
2421 }
Jason Wang986a4f42012-12-07 07:04:56 +00002422 }
2423
2424 for (i = 0; i < vi->max_queue_pairs; i++) {
2425 struct virtqueue *vq = vi->rq[i].vq;
2426
2427 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002428 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002429 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002430 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002431 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002432 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002433 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002434 }
Jason Wang986a4f42012-12-07 07:04:56 +00002435 }
Jason Wang986a4f42012-12-07 07:04:56 +00002436 }
2437}
2438
Jason Wange9d74172012-12-07 07:04:55 +00002439static void virtnet_del_vqs(struct virtnet_info *vi)
2440{
2441 struct virtio_device *vdev = vi->vdev;
2442
Wanlong Gao8898c212013-01-24 23:51:30 +00002443 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002444
Jason Wange9d74172012-12-07 07:04:55 +00002445 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002446
2447 virtnet_free_queues(vi);
2448}
2449
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002450/* How large should a single buffer be so a queue full of these can fit at
2451 * least one full packet?
2452 * Logic below assumes the mergeable buffer header is used.
2453 */
2454static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2455{
2456 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2457 unsigned int rq_size = virtqueue_get_vring_size(vq);
2458 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2459 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2460 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2461
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002462 return max(max(min_buf_len, hdr_len) - hdr_len,
2463 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002464}
2465
Jason Wang986a4f42012-12-07 07:04:56 +00002466static int virtnet_find_vqs(struct virtnet_info *vi)
2467{
2468 vq_callback_t **callbacks;
2469 struct virtqueue **vqs;
2470 int ret = -ENOMEM;
2471 int i, total_vqs;
2472 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002473 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002474
2475 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2476 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2477 * possible control vq.
2478 */
2479 total_vqs = vi->max_queue_pairs * 2 +
2480 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2481
2482 /* Allocate space for find_vqs parameters */
2483 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
2484 if (!vqs)
2485 goto err_vq;
2486 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
2487 if (!callbacks)
2488 goto err_callback;
2489 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
2490 if (!names)
2491 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002492 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002493 ctx = kzalloc(total_vqs * sizeof(*ctx), GFP_KERNEL);
2494 if (!ctx)
2495 goto err_ctx;
2496 } else {
2497 ctx = NULL;
2498 }
Jason Wang986a4f42012-12-07 07:04:56 +00002499
2500 /* Parameters for control virtqueue, if any */
2501 if (vi->has_cvq) {
2502 callbacks[total_vqs - 1] = NULL;
2503 names[total_vqs - 1] = "control";
2504 }
2505
2506 /* Allocate/initialize parameters for send/receive virtqueues */
2507 for (i = 0; i < vi->max_queue_pairs; i++) {
2508 callbacks[rxq2vq(i)] = skb_recv_done;
2509 callbacks[txq2vq(i)] = skb_xmit_done;
2510 sprintf(vi->rq[i].name, "input.%d", i);
2511 sprintf(vi->sq[i].name, "output.%d", i);
2512 names[rxq2vq(i)] = vi->rq[i].name;
2513 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002514 if (ctx)
2515 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002516 }
2517
2518 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002519 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002520 if (ret)
2521 goto err_find;
2522
2523 if (vi->has_cvq) {
2524 vi->cvq = vqs[total_vqs - 1];
2525 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002526 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002527 }
2528
2529 for (i = 0; i < vi->max_queue_pairs; i++) {
2530 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002531 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002532 vi->sq[i].vq = vqs[txq2vq(i)];
2533 }
2534
2535 kfree(names);
2536 kfree(callbacks);
2537 kfree(vqs);
Jason Wang55281622017-07-07 19:56:09 +08002538 kfree(ctx);
Jason Wang986a4f42012-12-07 07:04:56 +00002539
2540 return 0;
2541
2542err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002543 kfree(ctx);
2544err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002545 kfree(names);
2546err_names:
2547 kfree(callbacks);
2548err_callback:
2549 kfree(vqs);
2550err_vq:
2551 return ret;
2552}
2553
2554static int virtnet_alloc_queues(struct virtnet_info *vi)
2555{
2556 int i;
2557
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002558 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
2559 if (!vi->ctrl)
2560 goto err_ctrl;
Jason Wang986a4f42012-12-07 07:04:56 +00002561 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
2562 if (!vi->sq)
2563 goto err_sq;
2564 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002565 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002566 goto err_rq;
2567
2568 INIT_DELAYED_WORK(&vi->refill, refill_work);
2569 for (i = 0; i < vi->max_queue_pairs; i++) {
2570 vi->rq[i].pages = NULL;
2571 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2572 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002573 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2574 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002575
2576 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002577 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002578 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002579
2580 u64_stats_init(&vi->rq[i].stats.syncp);
2581 u64_stats_init(&vi->sq[i].stats.syncp);
Jason Wang986a4f42012-12-07 07:04:56 +00002582 }
2583
2584 return 0;
2585
2586err_rq:
2587 kfree(vi->sq);
2588err_sq:
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002589 kfree(vi->ctrl);
2590err_ctrl:
Jason Wang986a4f42012-12-07 07:04:56 +00002591 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002592}
2593
Amit Shah3f9c10b2011-12-22 16:58:31 +05302594static int init_vqs(struct virtnet_info *vi)
2595{
Jason Wang986a4f42012-12-07 07:04:56 +00002596 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302597
Jason Wang986a4f42012-12-07 07:04:56 +00002598 /* Allocate send & receive queues */
2599 ret = virtnet_alloc_queues(vi);
2600 if (ret)
2601 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302602
Jason Wang986a4f42012-12-07 07:04:56 +00002603 ret = virtnet_find_vqs(vi);
2604 if (ret)
2605 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302606
Wanlong Gao47be2472013-01-24 23:51:29 +00002607 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002608 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002609 put_online_cpus();
2610
Amit Shah3f9c10b2011-12-22 16:58:31 +05302611 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002612
2613err_free:
2614 virtnet_free_queues(vi);
2615err:
2616 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302617}
2618
Michael Daltonfbf28d72014-01-16 22:23:30 -08002619#ifdef CONFIG_SYSFS
2620static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002621 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002622{
2623 struct virtnet_info *vi = netdev_priv(queue->dev);
2624 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Jason Wang3cc81a92018-03-02 17:29:14 +08002625 unsigned int headroom = virtnet_get_headroom(vi);
2626 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
Johannes Berg5377d7582015-08-19 09:48:40 +02002627 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002628
2629 BUG_ON(queue_index >= vi->max_queue_pairs);
2630 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002631 return sprintf(buf, "%u\n",
Jason Wang3cc81a92018-03-02 17:29:14 +08002632 get_mergeable_buf_len(&vi->rq[queue_index], avg,
2633 SKB_DATA_ALIGN(headroom + tailroom)));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002634}
2635
2636static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2637 __ATTR_RO(mergeable_rx_buffer_size);
2638
2639static struct attribute *virtio_net_mrg_rx_attrs[] = {
2640 &mergeable_rx_buffer_size_attribute.attr,
2641 NULL
2642};
2643
2644static const struct attribute_group virtio_net_mrg_rx_group = {
2645 .name = "virtio_net",
2646 .attrs = virtio_net_mrg_rx_attrs
2647};
2648#endif
2649
Jason Wang892d6eb2014-11-20 17:03:05 +08002650static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2651 unsigned int fbit,
2652 const char *fname, const char *dname)
2653{
2654 if (!virtio_has_feature(vdev, fbit))
2655 return false;
2656
2657 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2658 fname, dname);
2659
2660 return true;
2661}
2662
2663#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2664 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2665
2666static bool virtnet_validate_features(struct virtio_device *vdev)
2667{
2668 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2669 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2670 "VIRTIO_NET_F_CTRL_VQ") ||
2671 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2672 "VIRTIO_NET_F_CTRL_VQ") ||
2673 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2674 "VIRTIO_NET_F_CTRL_VQ") ||
2675 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2676 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2677 "VIRTIO_NET_F_CTRL_VQ"))) {
2678 return false;
2679 }
2680
2681 return true;
2682}
2683
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002684#define MIN_MTU ETH_MIN_MTU
2685#define MAX_MTU ETH_MAX_MTU
2686
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002687static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002688{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002689 if (!vdev->config->get) {
2690 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2691 __func__);
2692 return -EINVAL;
2693 }
2694
Jason Wang892d6eb2014-11-20 17:03:05 +08002695 if (!virtnet_validate_features(vdev))
2696 return -EINVAL;
2697
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002698 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2699 int mtu = virtio_cread16(vdev,
2700 offsetof(struct virtio_net_config,
2701 mtu));
2702 if (mtu < MIN_MTU)
2703 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2704 }
2705
2706 return 0;
2707}
2708
2709static int virtnet_probe(struct virtio_device *vdev)
2710{
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002711 int i, err = -ENOMEM;
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002712 struct net_device *dev;
2713 struct virtnet_info *vi;
2714 u16 max_queue_pairs;
2715 int mtu;
2716
Jason Wang986a4f42012-12-07 07:04:56 +00002717 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302718 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2719 struct virtio_net_config,
2720 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002721
2722 /* We need at least 2 queue's */
2723 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2724 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2725 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2726 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002727
2728 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002729 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002730 if (!dev)
2731 return -ENOMEM;
2732
2733 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002734 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002735 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002736 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002737
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002738 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002739 SET_NETDEV_DEV(dev, &vdev->dev);
2740
2741 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002742 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002743 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002744 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002745 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002746 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002747
2748 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002749 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002750 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2751 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002752 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002753 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2754 dev->hw_features |= NETIF_F_TSO;
2755 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2756 dev->hw_features |= NETIF_F_TSO6;
2757 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2758 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002759
Jason Wang41f2f122014-12-24 11:03:52 +08002760 dev->features |= NETIF_F_GSO_ROBUST;
2761
Michał Mirosław98e778c2011-03-31 01:01:35 +00002762 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07002763 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002764 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002765 }
Thomas Huth4f491292013-08-27 17:09:02 +02002766 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2767 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002768
Jason Wang4fda8302013-04-10 23:32:21 +00002769 dev->vlan_features = dev->features;
2770
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002771 /* MTU range: 68 - 65535 */
2772 dev->min_mtu = MIN_MTU;
2773 dev->max_mtu = MAX_MTU;
2774
Rusty Russell296f96f2007-10-22 11:03:37 +10002775 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302776 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2777 virtio_cread_bytes(vdev,
2778 offsetof(struct virtio_net_config, mac),
2779 dev->dev_addr, dev->addr_len);
2780 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002781 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002782
2783 /* Set up our device-specific information */
2784 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002785 vi->dev = dev;
2786 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002787 vdev->priv = vi;
John Stultz827da442013-10-07 15:51:58 -07002788
Jason Wang586d17c2012-04-11 20:43:52 +00002789 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002790
Herbert Xu97402b92008-04-18 11:24:27 +08002791 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002792 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2793 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002794 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2795 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002796 vi->big_packets = true;
2797
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002798 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2799 vi->mergeable_rx_bufs = true;
2800
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002801 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2802 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002803 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2804 else
2805 vi->hdr_len = sizeof(struct virtio_net_hdr);
2806
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002807 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2808 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302809 vi->any_header_sg = true;
2810
Jason Wang986a4f42012-12-07 07:04:56 +00002811 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2812 vi->has_cvq = true;
2813
Aaron Conole14de9d12016-06-03 16:57:12 -04002814 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2815 mtu = virtio_cread16(vdev,
2816 offsetof(struct virtio_net_config,
2817 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002818 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002819 /* Should never trigger: MTU was previously validated
2820 * in virtnet_validate.
2821 */
2822 dev_err(&vdev->dev, "device MTU appears to have changed "
2823 "it is now %d < %d", mtu, dev->min_mtu);
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002824 goto free;
Aaron Conole93a205e2016-10-25 16:12:12 -04002825 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002826
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002827 dev->mtu = mtu;
2828 dev->max_mtu = mtu;
2829
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002830 /* TODO: size buffers correctly in this case. */
2831 if (dev->mtu > ETH_DATA_LEN)
2832 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04002833 }
2834
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002835 if (vi->any_header_sg)
2836 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002837
Jason Wang44900012016-11-25 12:37:26 +08002838 /* Enable multiqueue by default */
2839 if (num_online_cpus() >= max_queue_pairs)
2840 vi->curr_queue_pairs = max_queue_pairs;
2841 else
2842 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002843 vi->max_queue_pairs = max_queue_pairs;
2844
2845 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302846 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002847 if (err)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002848 goto free;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002849
Michael Daltonfbf28d72014-01-16 22:23:30 -08002850#ifdef CONFIG_SYSFS
2851 if (vi->mergeable_rx_bufs)
2852 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2853#endif
Zhi Yong Wu0f13b66b2013-11-18 21:19:27 +08002854 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2855 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002856
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002857 virtnet_init_settings(dev);
2858
Rusty Russell296f96f2007-10-22 11:03:37 +10002859 err = register_netdev(dev);
2860 if (err) {
2861 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002862 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002863 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002864
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302865 virtio_device_ready(vdev);
2866
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002867 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002868 if (err) {
2869 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002870 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002871 }
2872
Jason Wanga2208712016-12-13 14:23:05 +08002873 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08002874
Jason Wang167c25e2010-11-10 14:45:41 +00002875 /* Assume link up if device can't report link status,
2876 otherwise get link status from config. */
Jay Vosburghbda7fab2018-03-22 14:42:41 +00002877 netif_carrier_off(dev);
Jason Wang167c25e2010-11-10 14:45:41 +00002878 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002879 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002880 } else {
2881 vi->status = VIRTIO_NET_S_LINK_UP;
Jason Baronfaa9b392018-01-05 17:44:54 -05002882 virtnet_update_settings(vi);
Jason Wang167c25e2010-11-10 14:45:41 +00002883 netif_carrier_on(dev);
2884 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002885
Jason Wang3f935222017-07-19 16:54:49 +08002886 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
2887 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
2888 set_bit(guest_offloads[i], &vi->guest_offloads);
2889
Jason Wang986a4f42012-12-07 07:04:56 +00002890 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2891 dev->name, max_queue_pairs);
2892
Rusty Russell296f96f2007-10-22 11:03:37 +10002893 return 0;
2894
wangyunjianf00e35e2016-05-31 11:52:43 +08002895free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302896 vi->vdev->config->reset(vdev);
2897
Rusty Russellb3369c12008-02-04 23:50:02 -05002898 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002899free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002900 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002901 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002902 virtnet_del_vqs(vi);
Rusty Russell296f96f2007-10-22 11:03:37 +10002903free:
2904 free_netdev(dev);
2905 return err;
2906}
2907
Amit Shah04486ed2011-12-22 16:58:32 +05302908static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002909{
Amit Shah04486ed2011-12-22 16:58:32 +05302910 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002911
2912 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002913 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002914
Jason Wang986a4f42012-12-07 07:04:56 +00002915 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002916
Michael Daltonfb518792014-01-16 22:23:26 -08002917 free_receive_page_frags(vi);
2918
Jason Wang986a4f42012-12-07 07:04:56 +00002919 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302920}
2921
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002922static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302923{
2924 struct virtnet_info *vi = vdev->priv;
2925
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002926 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002927
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302928 /* Make sure no work handler is accessing the device. */
2929 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002930
Amit Shah04486ed2011-12-22 16:58:32 +05302931 unregister_netdev(vi->dev);
2932
2933 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002934
Rusty Russell74b25532007-11-19 11:20:42 -05002935 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002936}
2937
Arnd Bergmann67a75192017-07-25 17:35:50 +02002938static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05302939{
2940 struct virtnet_info *vi = vdev->priv;
2941
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002942 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002943 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302944 remove_vq_common(vi);
2945
2946 return 0;
2947}
2948
Arnd Bergmann67a75192017-07-25 17:35:50 +02002949static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05302950{
2951 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002952 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05302953
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002954 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302955 if (err)
2956 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00002957 virtnet_set_queues(vi, vi->curr_queue_pairs);
2958
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002959 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002960 if (err)
2961 return err;
2962
Amit Shah0741bcb2011-12-22 16:58:33 +05302963 return 0;
2964}
Amit Shah0741bcb2011-12-22 16:58:33 +05302965
Rusty Russell296f96f2007-10-22 11:03:37 +10002966static struct virtio_device_id id_table[] = {
2967 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2968 { 0 },
2969};
2970
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002971#define VIRTNET_FEATURES \
2972 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2973 VIRTIO_NET_F_MAC, \
2974 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2975 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2976 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2977 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2978 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2979 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2980 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Baronfaa9b392018-01-05 17:44:54 -05002981 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
2982 VIRTIO_NET_F_SPEED_DUPLEX
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002983
Rusty Russellc45a6812008-05-02 21:50:50 -05002984static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002985 VIRTNET_FEATURES,
2986};
2987
2988static unsigned int features_legacy[] = {
2989 VIRTNET_FEATURES,
2990 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302991 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05002992};
2993
Uwe Kleine-König22402522009-11-05 01:32:44 -08002994static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05002995 .feature_table = features,
2996 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002997 .feature_table_legacy = features_legacy,
2998 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10002999 .driver.name = KBUILD_MODNAME,
3000 .driver.owner = THIS_MODULE,
3001 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003002 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10003003 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003004 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003005 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09303006#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05303007 .freeze = virtnet_freeze,
3008 .restore = virtnet_restore,
3009#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10003010};
3011
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003012static __init int virtio_net_driver_init(void)
3013{
3014 int ret;
3015
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003016 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003017 virtnet_cpu_online,
3018 virtnet_cpu_down_prep);
3019 if (ret < 0)
3020 goto out;
3021 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003022 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003023 NULL, virtnet_cpu_dead);
3024 if (ret)
3025 goto err_dead;
3026
3027 ret = register_virtio_driver(&virtio_net_driver);
3028 if (ret)
3029 goto err_virtio;
3030 return 0;
3031err_virtio:
3032 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3033err_dead:
3034 cpuhp_remove_multi_state(virtionet_online);
3035out:
3036 return ret;
3037}
3038module_init(virtio_net_driver_init);
3039
3040static __exit void virtio_net_driver_exit(void)
3041{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02003042 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003043 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3044 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003045}
3046module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10003047
3048MODULE_DEVICE_TABLE(virtio, id_table);
3049MODULE_DESCRIPTION("Virtio network driver");
3050MODULE_LICENSE("GPL");