blob: f894713dca2a973900bd365e8292c21ed4fcb18d [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>
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +020032#include <net/route.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100033
Amerigo Wangd34710e2013-05-09 19:50:51 +000034static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020035module_param(napi_weight, int, 0444);
36
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040037static bool csum = true, gso = true, napi_tx;
Rusty Russell34a48572008-02-04 23:50:02 -050038module_param(csum, bool, 0444);
39module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040040module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050041
Rusty Russell296f96f2007-10-22 11:03:37 +100042/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080043#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080044#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100045
Jason Wangf6b10202017-02-21 16:46:28 +080046#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
47
John Fastabend2de2f7f2017-02-02 19:16:29 -080048/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
49#define VIRTIO_XDP_HEADROOM 256
50
Johannes Berg5377d7582015-08-19 09:48:40 +020051/* RX packet size EWMA. The average packet size is used to determine the packet
52 * buffer size when refilling RX rings. As the entire RX ring may be refilled
53 * at once, the weight is chosen so that the EWMA will be insensitive to short-
54 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080055 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010056DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080057
Rick Jones66846042011-11-14 14:17:08 +000058#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000059
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000060struct virtnet_stats {
Eric Dumazet83a27052012-06-05 22:35:24 +000061 struct u64_stats_sync tx_syncp;
62 struct u64_stats_sync rx_syncp;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000063 u64 tx_bytes;
64 u64 tx_packets;
65
66 u64 rx_bytes;
67 u64 rx_packets;
68};
69
Jason Wange9d74172012-12-07 07:04:55 +000070/* Internal representation of a send virtqueue */
71struct send_queue {
72 /* Virtqueue associated with this send _queue */
73 struct virtqueue *vq;
74
75 /* TX: fragments + linear part + virtio header */
76 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +000077
78 /* Name of the send queue: output.$index */
79 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040080
81 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +000082};
83
84/* Internal representation of a receive virtqueue */
85struct receive_queue {
86 /* Virtqueue associated with this receive_queue */
87 struct virtqueue *vq;
88
Rusty Russell296f96f2007-10-22 11:03:37 +100089 struct napi_struct napi;
90
John Fastabendf600b692016-12-15 12:13:24 -080091 struct bpf_prog __rcu *xdp_prog;
92
Jason Wange9d74172012-12-07 07:04:55 +000093 /* Chain pages by the private ptr. */
94 struct page *pages;
95
Michael Daltonab7db912014-01-16 22:23:27 -080096 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +020097 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -080098
Michael Daltonfb518792014-01-16 22:23:26 -080099 /* Page frag for packet buffer allocation. */
100 struct page_frag alloc_frag;
101
Jason Wange9d74172012-12-07 07:04:55 +0000102 /* RX: fragments + linear part + virtio header */
103 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000104
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200105 /* Min single buffer size for mergeable buffers case. */
106 unsigned int min_buf_len;
107
Jason Wang986a4f42012-12-07 07:04:56 +0000108 /* Name of this receive queue: input.$index */
109 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +0000110};
111
112struct virtnet_info {
113 struct virtio_device *vdev;
114 struct virtqueue *cvq;
115 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000116 struct send_queue *sq;
117 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000118 unsigned int status;
119
Jason Wang986a4f42012-12-07 07:04:56 +0000120 /* Max # of queue pairs supported by the device */
121 u16 max_queue_pairs;
122
123 /* # of queue pairs currently used by the driver */
124 u16 curr_queue_pairs;
125
John Fastabend672aafd2016-12-15 12:13:49 -0800126 /* # of XDP queue pairs currently used by the driver */
127 u16 xdp_queue_pairs;
128
Herbert Xu97402b92008-04-18 11:24:27 +0800129 /* I like... big packets and I cannot lie! */
130 bool big_packets;
131
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800132 /* Host will merge rx buffers for big packets (shake it! shake it!) */
133 bool mergeable_rx_bufs;
134
Jason Wang986a4f42012-12-07 07:04:56 +0000135 /* Has control virtqueue */
136 bool has_cvq;
137
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930138 /* Host can handle any s/g split between our header and packet data */
139 bool any_header_sg;
140
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300141 /* Packet virtio header size */
142 u8 hdr_len;
143
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000144 /* Active statistics */
145 struct virtnet_stats __percpu *stats;
146
Rusty Russell3161e452009-08-26 12:22:32 -0700147 /* Work struct for refilling if we run low on memory. */
148 struct delayed_work refill;
149
Jason Wang586d17c2012-04-11 20:43:52 +0000150 /* Work struct for config space updates */
151 struct work_struct config_work;
152
Jason Wang986a4f42012-12-07 07:04:56 +0000153 /* Does the affinity hint is set for virtqueues? */
154 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000155
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200156 /* CPU hotplug instances for online & dead */
157 struct hlist_node node;
158 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200159
160 /* Control VQ buffers: protected by the rtnl lock */
161 struct virtio_net_ctrl_hdr ctrl_hdr;
162 virtio_net_ctrl_ack ctrl_status;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700163 struct virtio_net_ctrl_mq ctrl_mq;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200164 u8 ctrl_promisc;
165 u8 ctrl_allmulti;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700166 u16 ctrl_vid;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100167
168 /* Ethtool settings */
169 u8 duplex;
170 u32 speed;
Rusty Russell296f96f2007-10-22 11:03:37 +1000171};
172
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000173struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300174 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000175 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300176 * hdr is in a separate sg buffer, and data sg buffer shares same page
177 * with this header sg. This padding makes next sg 16 byte aligned
178 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000179 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300180 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000181};
182
Jason Wang986a4f42012-12-07 07:04:56 +0000183/* Converting between virtqueue no. and kernel tx/rx queue no.
184 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
185 */
186static int vq2txq(struct virtqueue *vq)
187{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000188 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000189}
190
191static int txq2vq(int txq)
192{
193 return txq * 2 + 1;
194}
195
196static int vq2rxq(struct virtqueue *vq)
197{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000198 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000199}
200
201static int rxq2vq(int rxq)
202{
203 return rxq * 2;
204}
205
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300206static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000207{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300208 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000209}
210
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000211/*
212 * private is used to chain pages for big packets, put the whole
213 * most recent used list in the beginning for reuse
214 */
Jason Wange9d74172012-12-07 07:04:55 +0000215static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500216{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000217 struct page *end;
218
Jason Wange9d74172012-12-07 07:04:55 +0000219 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000220 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000221 end->private = (unsigned long)rq->pages;
222 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500223}
224
Jason Wange9d74172012-12-07 07:04:55 +0000225static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500226{
Jason Wange9d74172012-12-07 07:04:55 +0000227 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500228
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000229 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000230 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000231 /* clear private here, it is used to chain pages */
232 p->private = 0;
233 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500234 p = alloc_page(gfp_mask);
235 return p;
236}
237
Willem de Bruijne4e84522017-04-24 13:49:26 -0400238static void virtqueue_napi_schedule(struct napi_struct *napi,
239 struct virtqueue *vq)
240{
241 if (napi_schedule_prep(napi)) {
242 virtqueue_disable_cb(vq);
243 __napi_schedule(napi);
244 }
245}
246
247static void virtqueue_napi_complete(struct napi_struct *napi,
248 struct virtqueue *vq, int processed)
249{
250 int opaque;
251
252 opaque = virtqueue_enable_cb_prepare(vq);
253 if (napi_complete_done(napi, processed) &&
254 unlikely(virtqueue_poll(vq, opaque)))
255 virtqueue_napi_schedule(napi, vq);
256}
257
Jason Wange9d74172012-12-07 07:04:55 +0000258static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000259{
Jason Wange9d74172012-12-07 07:04:55 +0000260 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400261 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000262
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500263 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000264 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000265
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400266 if (napi->weight)
267 virtqueue_napi_schedule(napi, vq);
268 else
269 /* We were probably waiting for more output buffers. */
270 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000271}
272
Jason Wang28b39bc2017-07-19 16:54:46 +0800273#define MRG_CTX_HEADER_SHIFT 22
274static void *mergeable_len_to_ctx(unsigned int truesize,
275 unsigned int headroom)
276{
277 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
278}
279
280static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
281{
282 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
283}
284
285static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
286{
287 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
288}
289
Mike Waychison34646452012-01-04 12:52:32 +0000290/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300291static struct sk_buff *page_to_skb(struct virtnet_info *vi,
292 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700293 struct page *page, unsigned int offset,
294 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000295{
296 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300297 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700298 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000299 char *p;
300
Michael Dalton2613af02013-10-28 15:44:18 -0700301 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000302
303 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100304 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000305 if (unlikely(!skb))
306 return NULL;
307
308 hdr = skb_vnet_hdr(skb);
309
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300310 hdr_len = vi->hdr_len;
311 if (vi->mergeable_rx_bufs)
312 hdr_padded_len = sizeof *hdr;
313 else
Michael Dalton2613af02013-10-28 15:44:18 -0700314 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000315
316 memcpy(hdr, p, hdr_len);
317
318 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700319 offset += hdr_padded_len;
320 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000321
322 copy = len;
323 if (copy > skb_tailroom(skb))
324 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200325 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000326
327 len -= copy;
328 offset += copy;
329
Michael Dalton2613af02013-10-28 15:44:18 -0700330 if (vi->mergeable_rx_bufs) {
331 if (len)
332 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
333 else
334 put_page(page);
335 return skb;
336 }
337
Sasha Levine878d782011-09-28 04:40:54 +0000338 /*
339 * Verify that we can indeed put this data into a skb.
340 * This is here to handle cases when the device erroneously
341 * tries to receive more than is possible. This is usually
342 * the case of a broken device.
343 */
344 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000345 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000346 dev_kfree_skb(skb);
347 return NULL;
348 }
Michael Dalton2613af02013-10-28 15:44:18 -0700349 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000350 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700351 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
352 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
353 frag_size, truesize);
354 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000355 page = (struct page *)page->private;
356 offset = 0;
357 }
358
359 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000360 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000361
362 return skb;
363}
364
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100365static bool virtnet_xdp_xmit(struct virtnet_info *vi,
John Fastabend56434a02016-12-15 12:14:13 -0800366 struct receive_queue *rq,
Jason Wangf6b10202017-02-21 16:46:28 +0800367 struct xdp_buff *xdp)
John Fastabend56434a02016-12-15 12:14:13 -0800368{
John Fastabend56434a02016-12-15 12:14:13 -0800369 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wangf6b10202017-02-21 16:46:28 +0800370 unsigned int len;
John Fastabend722d8282017-02-02 19:15:32 -0800371 struct send_queue *sq;
372 unsigned int qp;
John Fastabend56434a02016-12-15 12:14:13 -0800373 void *xdp_sent;
374 int err;
375
John Fastabend722d8282017-02-02 19:15:32 -0800376 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
377 sq = &vi->sq[qp];
378
John Fastabend56434a02016-12-15 12:14:13 -0800379 /* Free up any pending old buffers before queueing new ones. */
380 while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Jason Wangf6b10202017-02-21 16:46:28 +0800381 struct page *sent_page = virt_to_head_page(xdp_sent);
Jason Wangbb91acc2016-12-23 22:37:32 +0800382
Jason Wangf6b10202017-02-21 16:46:28 +0800383 put_page(sent_page);
John Fastabend56434a02016-12-15 12:14:13 -0800384 }
385
Jason Wangf6b10202017-02-21 16:46:28 +0800386 xdp->data -= vi->hdr_len;
387 /* Zero header and leave csum up to XDP layers */
388 hdr = xdp->data;
389 memset(hdr, 0, vi->hdr_len);
John Fastabend56434a02016-12-15 12:14:13 -0800390
Jason Wangf6b10202017-02-21 16:46:28 +0800391 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800392
Jason Wangf6b10202017-02-21 16:46:28 +0800393 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp->data, GFP_ATOMIC);
John Fastabend56434a02016-12-15 12:14:13 -0800394 if (unlikely(err)) {
Jason Wangf6b10202017-02-21 16:46:28 +0800395 struct page *page = virt_to_head_page(xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800396
Jason Wangf6b10202017-02-21 16:46:28 +0800397 put_page(page);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100398 return false;
John Fastabend56434a02016-12-15 12:14:13 -0800399 }
400
401 virtqueue_kick(sq->vq);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100402 return true;
John Fastabend56434a02016-12-15 12:14:13 -0800403}
404
Jason Wangf6b10202017-02-21 16:46:28 +0800405static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
406{
407 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
408}
409
Jason Wang4941d472017-07-19 16:54:48 +0800410/* We copy the packet for XDP in the following cases:
411 *
412 * 1) Packet is scattered across multiple rx buffers.
413 * 2) Headroom space is insufficient.
414 *
415 * This is inefficient but it's a temporary condition that
416 * we hit right after XDP is enabled and until queue is refilled
417 * with large buffers with sufficient headroom - so it should affect
418 * at most queue size packets.
419 * Afterwards, the conditions to enable
420 * XDP should preclude the underlying device from sending packets
421 * across multiple buffers (num_buf > 1), and we make sure buffers
422 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800423 */
424static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800425 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800426 struct page *p,
427 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800428 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800429 unsigned int *len)
430{
431 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800432
433 if (!page)
434 return NULL;
435
436 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
437 page_off += *len;
438
Jason Wang56a86f82016-12-23 22:37:26 +0800439 while (--*num_buf) {
John Fastabend72979a62016-12-15 12:14:36 -0800440 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800441 void *buf;
442 int off;
443
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200444 buf = virtqueue_get_buf(rq->vq, &buflen);
445 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800446 goto err_buf;
447
John Fastabend72979a62016-12-15 12:14:36 -0800448 p = virt_to_head_page(buf);
449 off = buf - page_address(p);
450
Jason Wang56a86f82016-12-23 22:37:26 +0800451 /* guard against a misconfigured or uncooperative backend that
452 * is sending packet larger than the MTU.
453 */
454 if ((page_off + buflen) > PAGE_SIZE) {
455 put_page(p);
456 goto err_buf;
457 }
458
John Fastabend72979a62016-12-15 12:14:36 -0800459 memcpy(page_address(page) + page_off,
460 page_address(p) + off, buflen);
461 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800462 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800463 }
464
John Fastabend2de2f7f2017-02-02 19:16:29 -0800465 /* Headroom does not contribute to packet length */
466 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800467 return page;
468err_buf:
469 __free_pages(page, 0);
470 return NULL;
471}
472
Jason Wang4941d472017-07-19 16:54:48 +0800473static struct sk_buff *receive_small(struct net_device *dev,
474 struct virtnet_info *vi,
475 struct receive_queue *rq,
476 void *buf, void *ctx,
477 unsigned int len)
478{
479 struct sk_buff *skb;
480 struct bpf_prog *xdp_prog;
481 unsigned int xdp_headroom = (unsigned long)ctx;
482 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
483 unsigned int headroom = vi->hdr_len + header_offset;
484 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
485 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
486 struct page *page = virt_to_head_page(buf);
487 unsigned int delta = 0;
488 struct page *xdp_page;
489 len -= vi->hdr_len;
490
491 rcu_read_lock();
492 xdp_prog = rcu_dereference(rq->xdp_prog);
493 if (xdp_prog) {
494 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
495 struct xdp_buff xdp;
496 void *orig_data;
497 u32 act;
498
499 if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags))
500 goto err_xdp;
501
502 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
503 int offset = buf - page_address(page) + header_offset;
504 unsigned int tlen = len + vi->hdr_len;
505 u16 num_buf = 1;
506
507 xdp_headroom = virtnet_get_headroom(vi);
508 header_offset = VIRTNET_RX_PAD + xdp_headroom;
509 headroom = vi->hdr_len + header_offset;
510 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
511 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
512 xdp_page = xdp_linearize_page(rq, &num_buf, page,
513 offset, header_offset,
514 &tlen);
515 if (!xdp_page)
516 goto err_xdp;
517
518 buf = page_address(xdp_page);
519 put_page(page);
520 page = xdp_page;
521 }
522
523 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
524 xdp.data = xdp.data_hard_start + xdp_headroom;
525 xdp.data_end = xdp.data + len;
526 orig_data = xdp.data;
527 act = bpf_prog_run_xdp(xdp_prog, &xdp);
528
529 switch (act) {
530 case XDP_PASS:
531 /* Recalculate length in case bpf program changed it */
532 delta = orig_data - xdp.data;
533 break;
534 case XDP_TX:
535 if (unlikely(!virtnet_xdp_xmit(vi, rq, &xdp)))
536 trace_xdp_exception(vi->dev, xdp_prog, act);
537 rcu_read_unlock();
538 goto xdp_xmit;
539 default:
540 bpf_warn_invalid_xdp_action(act);
541 case XDP_ABORTED:
542 trace_xdp_exception(vi->dev, xdp_prog, act);
543 case XDP_DROP:
544 goto err_xdp;
545 }
546 }
547 rcu_read_unlock();
548
549 skb = build_skb(buf, buflen);
550 if (!skb) {
551 put_page(page);
552 goto err;
553 }
554 skb_reserve(skb, headroom - delta);
555 skb_put(skb, len + delta);
556 if (!delta) {
557 buf += header_offset;
558 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
559 } /* keep zeroed vnet hdr since packet was changed by bpf */
560
561err:
562 return skb;
563
564err_xdp:
565 rcu_read_unlock();
566 dev->stats.rx_dropped++;
567 put_page(page);
568xdp_xmit:
569 return NULL;
570}
571
572static struct sk_buff *receive_big(struct net_device *dev,
573 struct virtnet_info *vi,
574 struct receive_queue *rq,
575 void *buf,
576 unsigned int len)
577{
578 struct page *page = buf;
579 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
580
581 if (unlikely(!skb))
582 goto err;
583
584 return skb;
585
586err:
587 dev->stats.rx_dropped++;
588 give_pages(rq, page);
589 return NULL;
590}
591
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200592static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200593 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200594 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200595 void *buf,
596 void *ctx,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200597 unsigned int len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000598{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300599 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
600 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200601 struct page *page = virt_to_head_page(buf);
602 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800603 struct sk_buff *head_skb, *curr_skb;
604 struct bpf_prog *xdp_prog;
605 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800606 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Michael Daltonab7db912014-01-16 22:23:27 -0800607
John Fastabend56434a02016-12-15 12:14:13 -0800608 head_skb = NULL;
609
John Fastabendf600b692016-12-15 12:13:24 -0800610 rcu_read_lock();
611 xdp_prog = rcu_dereference(rq->xdp_prog);
612 if (xdp_prog) {
John Fastabend72979a62016-12-15 12:14:36 -0800613 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800614 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800615 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800616 u32 act;
617
Jason Wang73b62bd2016-12-23 22:37:24 +0800618 /* This happens when rx buffer size is underestimated */
Jason Wang4941d472017-07-19 16:54:48 +0800619 if (unlikely(num_buf > 1 ||
620 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800621 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800622 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800623 page, offset,
624 VIRTIO_XDP_HEADROOM,
625 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800626 if (!xdp_page)
627 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800628 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800629 } else {
630 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800631 }
632
633 /* Transient failure which in theory could occur if
634 * in-flight packets from before XDP was enabled reach
635 * the receive path after XDP is loaded. In practice I
636 * was not able to create this condition.
637 */
Jason Wangb00f70b2016-12-23 22:37:28 +0800638 if (unlikely(hdr->hdr.gso_type))
John Fastabendf600b692016-12-15 12:13:24 -0800639 goto err_xdp;
640
John Fastabend2de2f7f2017-02-02 19:16:29 -0800641 /* Allow consuming headroom but reserve enough space to push
642 * the descriptor on if we get an XDP_TX return code.
643 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800644 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800645 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800646 xdp.data = data + vi->hdr_len;
647 xdp.data_end = xdp.data + (len - vi->hdr_len);
648 act = bpf_prog_run_xdp(xdp_prog, &xdp);
649
John Fastabend56434a02016-12-15 12:14:13 -0800650 switch (act) {
651 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800652 /* recalculate offset to account for any header
653 * adjustments. Note other cases do not build an
654 * skb and avoid using offset
655 */
656 offset = xdp.data -
657 page_address(xdp_page) - vi->hdr_len;
658
Jason Wang1830f892016-12-23 22:37:27 +0800659 /* We can only create skb based on xdp_page. */
660 if (unlikely(xdp_page != page)) {
661 rcu_read_unlock();
662 put_page(page);
663 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800664 offset, len, PAGE_SIZE);
Jason Wang5c334742016-12-23 22:37:29 +0800665 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
Jason Wang1830f892016-12-23 22:37:27 +0800666 return head_skb;
667 }
John Fastabend56434a02016-12-15 12:14:13 -0800668 break;
669 case XDP_TX:
Jason Wangf6b10202017-02-21 16:46:28 +0800670 if (unlikely(!virtnet_xdp_xmit(vi, rq, &xdp)))
John Fastabend0354e4d2017-02-02 19:15:01 -0800671 trace_xdp_exception(vi->dev, xdp_prog, act);
Jason Wang5c334742016-12-23 22:37:29 +0800672 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabend72979a62016-12-15 12:14:36 -0800673 if (unlikely(xdp_page != page))
674 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800675 rcu_read_unlock();
676 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800677 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800678 bpf_warn_invalid_xdp_action(act);
679 case XDP_ABORTED:
680 trace_xdp_exception(vi->dev, xdp_prog, act);
681 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800682 if (unlikely(xdp_page != page))
683 __free_pages(xdp_page, 0);
Jason Wang5c334742016-12-23 22:37:29 +0800684 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabendf600b692016-12-15 12:13:24 -0800685 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800686 }
John Fastabendf600b692016-12-15 12:13:24 -0800687 }
688 rcu_read_unlock();
689
Jason Wang28b39bc2017-07-19 16:54:46 +0800690 truesize = mergeable_ctx_to_truesize(ctx);
691 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300692 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200693 dev->name, len, (unsigned long)ctx);
694 dev->stats.rx_length_errors++;
695 goto err_skb;
696 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800697
John Fastabendf600b692016-12-15 12:13:24 -0800698 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
699 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000700
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200701 if (unlikely(!curr_skb))
702 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000703 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200704 int num_skb_frags;
705
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200706 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Michael Daltonab7db912014-01-16 22:23:27 -0800707 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200708 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200709 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300710 virtio16_to_cpu(vi->vdev,
711 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200712 dev->stats.rx_length_errors++;
713 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000714 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200715
716 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800717
718 truesize = mergeable_ctx_to_truesize(ctx);
719 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300720 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200721 dev->name, len, (unsigned long)ctx);
722 dev->stats.rx_length_errors++;
723 goto err_skb;
724 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200725
726 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700727 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
728 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200729
730 if (unlikely(!nskb))
731 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700732 if (curr_skb == head_skb)
733 skb_shinfo(curr_skb)->frag_list = nskb;
734 else
735 curr_skb->next = nskb;
736 curr_skb = nskb;
737 head_skb->truesize += nskb->truesize;
738 num_skb_frags = 0;
739 }
740 if (curr_skb != head_skb) {
741 head_skb->data_len += len;
742 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800743 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700744 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200745 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800746 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
747 put_page(page);
748 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800749 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800750 } else {
751 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800752 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800753 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200754 }
755
Johannes Berg5377d7582015-08-19 09:48:40 +0200756 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200757 return head_skb;
758
John Fastabendf600b692016-12-15 12:13:24 -0800759err_xdp:
760 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200761err_skb:
762 put_page(page);
763 while (--num_buf) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200764 buf = virtqueue_get_buf(rq->vq, &len);
765 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200766 pr_debug("%s: rx error: %d buffers missing\n",
767 dev->name, num_buf);
768 dev->stats.rx_length_errors++;
769 break;
770 }
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200771 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200772 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000773 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200774err_buf:
775 dev->stats.rx_dropped++;
776 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800777xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200778 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000779}
780
Jason Wang61845d22017-02-17 11:33:09 +0800781static int receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200782 void *buf, unsigned int len, void **ctx)
Rusty Russell296f96f2007-10-22 11:03:37 +1000783{
Jason Wange9d74172012-12-07 07:04:55 +0000784 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000785 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300786 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wang61845d22017-02-17 11:33:09 +0800787 int ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000788
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300789 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000790 pr_debug("%s: short packet %i\n", dev->name, len);
791 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800792 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200793 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800794 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800795 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800796 } else {
Jason Wangf6b10202017-02-21 16:46:28 +0800797 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800798 }
Jason Wang61845d22017-02-17 11:33:09 +0800799 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000800 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000801
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200802 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200803 skb = receive_mergeable(dev, vi, rq, buf, ctx, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200804 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300805 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200806 else
Jason Wang192f68c2017-07-19 16:54:47 +0800807 skb = receive_small(dev, vi, rq, buf, ctx, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200808
809 if (unlikely(!skb))
Jason Wang61845d22017-02-17 11:33:09 +0800810 return 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800811
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000812 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000813
Jason Wang61845d22017-02-17 11:33:09 +0800814 ret = skb->len;
Rusty Russell296f96f2007-10-22 11:03:37 +1000815
Mike Rapoporte858fae2016-06-08 16:09:21 +0300816 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000817 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000818
Mike Rapoporte858fae2016-06-08 16:09:21 +0300819 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
820 virtio_is_little_endian(vi->vdev))) {
821 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
822 dev->name, hdr->hdr.gso_type,
823 hdr->hdr.gso_size);
824 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000825 }
826
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300827 skb->protocol = eth_type_trans(skb, dev);
828 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
829 ntohs(skb->protocol), skb->len, skb->pkt_type);
830
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200831 napi_gro_receive(&rq->napi, skb);
Jason Wang61845d22017-02-17 11:33:09 +0800832 return ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000833
834frame_err:
835 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000836 dev_kfree_skb(skb);
Jason Wang61845d22017-02-17 11:33:09 +0800837 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000838}
839
Jason Wang192f68c2017-07-19 16:54:47 +0800840/* Unlike mergeable buffers, all buffers are allocated to the
841 * same size, except for the headroom. For this reason we do
842 * not need to use mergeable_len_to_ctx here - it is enough
843 * to store the headroom as the context ignoring the truesize.
844 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300845static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
846 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000847{
Jason Wangf6b10202017-02-21 16:46:28 +0800848 struct page_frag *alloc_frag = &rq->alloc_frag;
849 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800850 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +0800851 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +0800852 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000853 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000854
Jason Wangf6b10202017-02-21 16:46:28 +0800855 len = SKB_DATA_ALIGN(len) +
856 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
857 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000858 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800859
Jason Wangf6b10202017-02-21 16:46:28 +0800860 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
861 get_page(alloc_frag->page);
862 alloc_frag->offset += len;
863 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
864 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +0800865 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000866 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +0800867 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000868 return err;
869}
870
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300871static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
872 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000873{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000874 struct page *first, *list = NULL;
875 char *p;
876 int i, err, offset;
877
Rusty Russella5835442014-09-11 10:17:36 +0930878 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
879
Jason Wange9d74172012-12-07 07:04:55 +0000880 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000881 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000882 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000883 if (!first) {
884 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000885 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000886 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700887 }
Jason Wange9d74172012-12-07 07:04:55 +0000888 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000889
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000890 /* chain new page in list head to match sg */
891 first->private = (unsigned long)list;
892 list = first;
893 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800894
Jason Wange9d74172012-12-07 07:04:55 +0000895 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000896 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000897 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000898 return -ENOMEM;
899 }
900 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800901
Jason Wange9d74172012-12-07 07:04:55 +0000902 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300903 /* a separated rq->sg[0] for header - required in case !any_header_sg */
904 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +0800905
Jason Wange9d74172012-12-07 07:04:55 +0000906 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000907 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000908 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800909
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000910 /* chain first in list head */
911 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030912 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
913 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000914 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +0000915 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +0800916
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000917 return err;
918}
Herbert Xu97402b92008-04-18 11:24:27 +0800919
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200920static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
921 struct ewma_pkt_len *avg_pkt_len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000922{
Michael Daltonab7db912014-01-16 22:23:27 -0800923 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800924 unsigned int len;
925
Johannes Berg5377d7582015-08-19 09:48:40 +0200926 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +0300927 rq->min_buf_len, PAGE_SIZE - hdr_len);
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +0200928 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800929}
930
John Fastabend2de2f7f2017-02-02 19:16:29 -0800931static int add_recvbuf_mergeable(struct virtnet_info *vi,
932 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -0800933{
Michael Daltonfb518792014-01-16 22:23:26 -0800934 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800935 unsigned int headroom = virtnet_get_headroom(vi);
Michael Daltonfb518792014-01-16 22:23:26 -0800936 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200937 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000938 int err;
Michael Daltonfb518792014-01-16 22:23:26 -0800939 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +1000940
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200941 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800942 if (unlikely(!skb_page_frag_refill(len + headroom, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000943 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -0800944
Michael Daltonfb518792014-01-16 22:23:26 -0800945 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800946 buf += headroom; /* advance address leaving hole at front of pkt */
Jason Wang28b39bc2017-07-19 16:54:46 +0800947 ctx = mergeable_len_to_ctx(len, headroom);
Michael Daltonfb518792014-01-16 22:23:26 -0800948 get_page(alloc_frag->page);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800949 alloc_frag->offset += len + headroom;
Michael Daltonfb518792014-01-16 22:23:26 -0800950 hole = alloc_frag->size - alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800951 if (hole < len + headroom) {
Michael Daltonab7db912014-01-16 22:23:27 -0800952 /* To avoid internal fragmentation, if there is very likely not
953 * enough space for another buffer, add the remaining space to
954 * the current buffer. This extra space is not included in
955 * the truesize stored in ctx.
956 */
Michael Daltonfb518792014-01-16 22:23:26 -0800957 len += hole;
958 alloc_frag->offset += hole;
959 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000960
Michael Daltonfb518792014-01-16 22:23:26 -0800961 sg_init_one(rq->sg, buf, len);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200962 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000963 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -0700964 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000965
966 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000967}
968
Rusty Russellb2baed62011-12-29 00:42:38 +0000969/*
970 * Returns false if we couldn't fill entirely (OOM).
971 *
972 * Normally run in the receive path, but can also be run from ndo_open
973 * before we're receiving packets, or from refill_work which is
974 * careful to disable receiving (using napi_disable).
975 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300976static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
977 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800978{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800979 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000980 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800981
Michael Daltonfb518792014-01-16 22:23:26 -0800982 gfp |= __GFP_COLD;
Amit Shah0aea51c2009-08-26 14:58:28 +0530983 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000984 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -0800985 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000986 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300987 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000988 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300989 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800990
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000991 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030992 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800993 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800994 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +0800995 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -0700996 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800997}
998
Rusty Russell18445c42008-02-04 23:49:57 -0500999static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001000{
1001 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001002 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001003
Willem de Bruijne4e84522017-04-24 13:49:26 -04001004 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001005}
1006
Willem de Bruijne4e84522017-04-24 13:49:26 -04001007static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001008{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001009 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001010
1011 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001012 * won't get another interrupt, so process any outstanding packets now.
1013 * Call local_bh_enable after to trigger softIRQ processing.
1014 */
1015 local_bh_disable();
1016 virtqueue_napi_schedule(napi, vq);
1017 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001018}
1019
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001020static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1021 struct virtqueue *vq,
1022 struct napi_struct *napi)
1023{
1024 if (!napi->weight)
1025 return;
1026
1027 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1028 * enable the feature if this is likely affine with the transmit path.
1029 */
1030 if (!vi->affinity_hint_set) {
1031 napi->weight = 0;
1032 return;
1033 }
1034
1035 return virtnet_napi_enable(vq, napi);
1036}
1037
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001038static void virtnet_napi_tx_disable(struct napi_struct *napi)
1039{
1040 if (napi->weight)
1041 napi_disable(napi);
1042}
1043
Rusty Russell3161e452009-08-26 12:22:32 -07001044static void refill_work(struct work_struct *work)
1045{
Jason Wange9d74172012-12-07 07:04:55 +00001046 struct virtnet_info *vi =
1047 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001048 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001049 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001050
Sasha Levin55257d72013-04-29 12:00:08 +09301051 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001052 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001053
Jason Wang986a4f42012-12-07 07:04:56 +00001054 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001055 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001056 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001057
1058 /* In theory, this can happen: if we don't get any buffers in
1059 * we will *never* try to fill again.
1060 */
1061 if (still_empty)
1062 schedule_delayed_work(&vi->refill, HZ/2);
1063 }
Rusty Russell3161e452009-08-26 12:22:32 -07001064}
1065
Jason Wang2ffa7592014-07-23 16:33:54 +08001066static int virtnet_receive(struct receive_queue *rq, int budget)
Rusty Russell296f96f2007-10-22 11:03:37 +10001067{
Jason Wange9d74172012-12-07 07:04:55 +00001068 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang61845d22017-02-17 11:33:09 +08001069 unsigned int len, received = 0, bytes = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001070 void *buf;
Jason Wang61845d22017-02-17 11:33:09 +08001071 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10001072
Jason Wang192f68c2017-07-19 16:54:47 +08001073 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001074 void *ctx;
1075
1076 while (received < budget &&
1077 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
1078 bytes += receive_buf(vi, rq, buf, len, ctx);
1079 received++;
1080 }
1081 } else {
1082 while (received < budget &&
1083 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
1084 bytes += receive_buf(vi, rq, buf, len, NULL);
1085 received++;
1086 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001087 }
1088
Jason Wangbe121f42014-01-16 14:45:24 +08001089 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001090 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001091 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001092 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001093
Jason Wang61845d22017-02-17 11:33:09 +08001094 u64_stats_update_begin(&stats->rx_syncp);
1095 stats->rx_bytes += bytes;
1096 stats->rx_packets += received;
1097 u64_stats_update_end(&stats->rx_syncp);
1098
Jason Wang2ffa7592014-07-23 16:33:54 +08001099 return received;
1100}
1101
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001102static void free_old_xmit_skbs(struct send_queue *sq)
1103{
1104 struct sk_buff *skb;
1105 unsigned int len;
1106 struct virtnet_info *vi = sq->vq->vdev->priv;
1107 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
1108 unsigned int packets = 0;
1109 unsigned int bytes = 0;
1110
1111 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1112 pr_debug("Sent skb %p\n", skb);
1113
1114 bytes += skb->len;
1115 packets++;
1116
1117 dev_kfree_skb_any(skb);
1118 }
1119
1120 /* Avoid overhead when no packets have been processed
1121 * happens when called speculatively from start_xmit.
1122 */
1123 if (!packets)
1124 return;
1125
1126 u64_stats_update_begin(&stats->tx_syncp);
1127 stats->tx_bytes += bytes;
1128 stats->tx_packets += packets;
1129 u64_stats_update_end(&stats->tx_syncp);
1130}
1131
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001132static void virtnet_poll_cleantx(struct receive_queue *rq)
1133{
1134 struct virtnet_info *vi = rq->vq->vdev->priv;
1135 unsigned int index = vq2rxq(rq->vq);
1136 struct send_queue *sq = &vi->sq[index];
1137 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1138
1139 if (!sq->napi.weight)
1140 return;
1141
1142 if (__netif_tx_trylock(txq)) {
1143 free_old_xmit_skbs(sq);
1144 __netif_tx_unlock(txq);
1145 }
1146
1147 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1148 netif_tx_wake_queue(txq);
1149}
1150
Jason Wang2ffa7592014-07-23 16:33:54 +08001151static int virtnet_poll(struct napi_struct *napi, int budget)
1152{
1153 struct receive_queue *rq =
1154 container_of(napi, struct receive_queue, napi);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001155 unsigned int received;
Jason Wang2ffa7592014-07-23 16:33:54 +08001156
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001157 virtnet_poll_cleantx(rq);
1158
Li RongQingfaadb052015-03-26 15:39:45 +08001159 received = virtnet_receive(rq, budget);
Jason Wang2ffa7592014-07-23 16:33:54 +08001160
Rusty Russell8329d982007-11-19 11:20:43 -05001161 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001162 if (received < budget)
1163 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001164
1165 return received;
1166}
1167
Jason Wang986a4f42012-12-07 07:04:56 +00001168static int virtnet_open(struct net_device *dev)
1169{
1170 struct virtnet_info *vi = netdev_priv(dev);
1171 int i;
1172
Jason Wange4166622013-05-21 20:03:58 +00001173 for (i = 0; i < vi->max_queue_pairs; i++) {
1174 if (i < vi->curr_queue_pairs)
1175 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001176 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001177 schedule_delayed_work(&vi->refill, 0);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001178 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001179 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001180 }
1181
1182 return 0;
1183}
1184
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001185static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1186{
1187 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1188 struct virtnet_info *vi = sq->vq->vdev->priv;
1189 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1190
1191 __netif_tx_lock(txq, raw_smp_processor_id());
1192 free_old_xmit_skbs(sq);
1193 __netif_tx_unlock(txq);
1194
1195 virtqueue_napi_complete(napi, sq->vq, 0);
1196
1197 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1198 netif_tx_wake_queue(txq);
1199
1200 return 0;
1201}
1202
Jason Wange9d74172012-12-07 07:04:55 +00001203static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001204{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001205 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001206 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001207 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001208 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001209 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301210 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001211
Johannes Berge1749612008-10-27 15:59:26 -07001212 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301213
1214 can_push = vi->any_header_sg &&
1215 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1216 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1217 /* Even if we can, don't push here yet as this would skew
1218 * csum_start offset below. */
1219 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001220 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301221 else
1222 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001223
Mike Rapoporte858fae2016-06-08 16:09:21 +03001224 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Jason Wang6391a442017-01-20 14:32:42 +08001225 virtio_is_little_endian(vi->vdev), false))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001226 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001227
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001228 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001229 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001230
Jason Wang547c8902015-08-27 14:53:06 +08001231 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301232 if (can_push) {
1233 __skb_push(skb, hdr_len);
1234 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001235 if (unlikely(num_sg < 0))
1236 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301237 /* Pull header back to avoid skew in tx bytes calculations. */
1238 __skb_pull(skb, hdr_len);
1239 } else {
1240 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001241 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1242 if (unlikely(num_sg < 0))
1243 return num_sg;
1244 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301245 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301246 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001247}
1248
Stephen Hemminger424efe92009-08-31 19:50:51 +00001249static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001250{
1251 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001252 int qnum = skb_get_queue_mapping(skb);
1253 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301254 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001255 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1256 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001257 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001258
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001259 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001260 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001261
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001262 if (use_napi && kick)
1263 virtqueue_enable_cb_delayed(sq->vq);
1264
Jacob Keller074c3582014-06-25 02:37:13 +00001265 /* timestamp packet in software */
1266 skb_tx_timestamp(skb);
1267
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001268 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001269 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001270
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301271 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001272 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301273 dev->stats.tx_fifo_errors++;
1274 if (net_ratelimit())
1275 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001276 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001277 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001278 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001279 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001280 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001281
Rusty Russell48925e32009-09-24 09:59:20 -06001282 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001283 if (!use_napi) {
1284 skb_orphan(skb);
1285 nf_reset(skb);
1286 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001287
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001288 /* If running out of space, stop queue to avoid getting packets that we
1289 * are then unable to transmit.
1290 * An alternative would be to force queuing layer to requeue the skb by
1291 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1292 * returned in a normal path of operation: it means that driver is not
1293 * maintaining the TX queue stop/start state properly, and causes
1294 * the stack to do a non-trivial amount of useless work.
1295 * Since most packets only take 1 or 2 ring slots, stopping the queue
1296 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001297 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001298 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001299 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001300 if (!use_napi &&
1301 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001302 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001303 free_old_xmit_skbs(sq);
1304 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001305 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001306 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001307 }
1308 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001309 }
Rusty Russell48925e32009-09-24 09:59:20 -06001310
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001311 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001312 virtqueue_kick(sq->vq);
1313
Rusty Russell48925e32009-09-24 09:59:20 -06001314 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001315}
1316
Amos Kong40cbfc32013-01-21 01:17:21 +00001317/*
1318 * Send command via the control virtqueue and check status. Commands
1319 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001320 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001321 */
1322static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001323 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001324{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301325 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001326 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001327
1328 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301329 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001330
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001331 vi->ctrl_status = ~0;
1332 vi->ctrl_hdr.class = class;
1333 vi->ctrl_hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301334 /* Add header */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001335 sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301336 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001337
Rusty Russellf7bc9592013-03-20 15:44:28 +10301338 if (out)
1339 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001340
Rusty Russellf7bc9592013-03-20 15:44:28 +10301341 /* Add return status. */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001342 sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001343 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001344
stephen hemmingerd24bae32013-12-09 16:17:40 -08001345 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301346 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001347
Heinz Graalfs67975902013-10-29 09:40:02 +10301348 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001349 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001350
1351 /* Spin for a response, the kick causes an ioport write, trapping
1352 * into the hypervisor, so the request should be handled immediately.
1353 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301354 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1355 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001356 cpu_relax();
1357
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001358 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001359}
1360
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001361static int virtnet_set_mac_address(struct net_device *dev, void *p)
1362{
1363 struct virtnet_info *vi = netdev_priv(dev);
1364 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001365 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001366 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001367 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001368
Shyam Saini801822d2016-12-24 00:44:58 +05301369 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001370 if (!addr)
1371 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001372
1373 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001374 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001375 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001376
Amos Kong7e58d5a2013-01-21 01:17:23 +00001377 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1378 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1379 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001380 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001381 dev_warn(&vdev->dev,
1382 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001383 ret = -EINVAL;
1384 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001385 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001386 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1387 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301388 unsigned int i;
1389
1390 /* Naturally, this has an atomicity problem. */
1391 for (i = 0; i < dev->addr_len; i++)
1392 virtio_cwrite8(vdev,
1393 offsetof(struct virtio_net_config, mac) +
1394 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001395 }
1396
1397 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001398 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001399
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001400out:
1401 kfree(addr);
1402 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001403}
1404
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001405static void virtnet_stats(struct net_device *dev,
1406 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001407{
1408 struct virtnet_info *vi = netdev_priv(dev);
1409 int cpu;
1410 unsigned int start;
1411
1412 for_each_possible_cpu(cpu) {
Eric Dumazet58472a72012-02-13 06:53:41 +00001413 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001414 u64 tpackets, tbytes, rpackets, rbytes;
1415
1416 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001417 start = u64_stats_fetch_begin_irq(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001418 tpackets = stats->tx_packets;
1419 tbytes = stats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001420 } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001421
1422 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001423 start = u64_stats_fetch_begin_irq(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001424 rpackets = stats->rx_packets;
1425 rbytes = stats->rx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001426 } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001427
1428 tot->rx_packets += rpackets;
1429 tot->tx_packets += tpackets;
1430 tot->rx_bytes += rbytes;
1431 tot->tx_bytes += tbytes;
1432 }
1433
1434 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001435 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001436 tot->rx_dropped = dev->stats.rx_dropped;
1437 tot->rx_length_errors = dev->stats.rx_length_errors;
1438 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001439}
1440
Amit Shahda74e892008-02-29 16:24:50 +05301441#ifdef CONFIG_NET_POLL_CONTROLLER
1442static void virtnet_netpoll(struct net_device *dev)
1443{
1444 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001445 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301446
Jason Wang986a4f42012-12-07 07:04:56 +00001447 for (i = 0; i < vi->curr_queue_pairs; i++)
1448 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301449}
1450#endif
1451
Jason Wang586d17c2012-04-11 20:43:52 +00001452static void virtnet_ack_link_announce(struct virtnet_info *vi)
1453{
1454 rtnl_lock();
1455 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001456 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001457 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1458 rtnl_unlock();
1459}
1460
John Fastabend473153292017-02-02 19:14:32 -08001461static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001462{
1463 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001464 struct net_device *dev = vi->dev;
1465
1466 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1467 return 0;
1468
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001469 vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1470 sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001471
1472 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001473 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001474 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1475 queue_pairs);
1476 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301477 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001478 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001479 /* virtnet_open() will refill when device is going to up. */
1480 if (dev->flags & IFF_UP)
1481 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301482 }
Jason Wang986a4f42012-12-07 07:04:56 +00001483
1484 return 0;
1485}
1486
John Fastabend473153292017-02-02 19:14:32 -08001487static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1488{
1489 int err;
1490
1491 rtnl_lock();
1492 err = _virtnet_set_queues(vi, queue_pairs);
1493 rtnl_unlock();
1494 return err;
1495}
1496
Rusty Russell296f96f2007-10-22 11:03:37 +10001497static int virtnet_close(struct net_device *dev)
1498{
1499 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001500 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001501
Rusty Russellb2baed62011-12-29 00:42:38 +00001502 /* Make sure refill_work doesn't re-enable napi! */
1503 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001504
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001505 for (i = 0; i < vi->max_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001506 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001507 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001508 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001509
Rusty Russell296f96f2007-10-22 11:03:37 +10001510 return 0;
1511}
1512
Alex Williamson2af76982009-02-04 09:02:40 +00001513static void virtnet_set_rx_mode(struct net_device *dev)
1514{
1515 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001516 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001517 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001518 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001519 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001520 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001521 void *buf;
1522 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001523
stephen hemminger788a8b62013-12-09 16:18:45 -08001524 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001525 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1526 return;
1527
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001528 vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0);
1529 vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001530
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001531 sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001532
1533 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001534 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001535 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001536 vi->ctrl_promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001537
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001538 sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001539
1540 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001541 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001542 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001543 vi->ctrl_allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001544
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001545 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001546 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001547 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001548 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1549 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1550 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001551 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001552 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001553
Alex Williamson23e258e2009-05-01 17:27:56 +00001554 sg_init_table(sg, 2);
1555
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001556 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001557 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001558 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001559 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001560 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001561
1562 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001563 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001564
1565 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001566 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001567
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001568 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001569 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001570 netdev_for_each_mc_addr(ha, dev)
1571 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001572
1573 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001574 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001575
1576 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001577 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001578 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001579
1580 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001581}
1582
Patrick McHardy80d5c362013-04-19 02:04:28 +00001583static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1584 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001585{
1586 struct virtnet_info *vi = netdev_priv(dev);
1587 struct scatterlist sg;
1588
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001589 vi->ctrl_vid = vid;
1590 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001591
1592 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001593 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001594 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001595 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001596}
1597
Patrick McHardy80d5c362013-04-19 02:04:28 +00001598static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1599 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001600{
1601 struct virtnet_info *vi = netdev_priv(dev);
1602 struct scatterlist sg;
1603
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001604 vi->ctrl_vid = vid;
1605 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001606
1607 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001608 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001609 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001610 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001611}
1612
Wanlong Gao8898c212013-01-24 23:51:30 +00001613static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001614{
1615 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001616
1617 if (vi->affinity_hint_set) {
1618 for (i = 0; i < vi->max_queue_pairs; i++) {
1619 virtqueue_set_affinity(vi->rq[i].vq, -1);
1620 virtqueue_set_affinity(vi->sq[i].vq, -1);
1621 }
1622
1623 vi->affinity_hint_set = false;
1624 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001625}
1626
1627static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001628{
1629 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001630 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001631
1632 /* In multiqueue mode, when the number of cpu is equal to the number of
1633 * queue pairs, we let the queue pairs to be private to one cpu by
1634 * setting the affinity hint to eliminate the contention.
1635 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001636 if (vi->curr_queue_pairs == 1 ||
1637 vi->max_queue_pairs != num_online_cpus()) {
1638 virtnet_clean_affinity(vi, -1);
1639 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001640 }
1641
Wanlong Gao8898c212013-01-24 23:51:30 +00001642 i = 0;
1643 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001644 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1645 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001646 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001647 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001648 }
1649
Wanlong Gao8898c212013-01-24 23:51:30 +00001650 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001651}
1652
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001653static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001654{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001655 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1656 node);
1657 virtnet_set_affinity(vi);
1658 return 0;
1659}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001660
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001661static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1662{
1663 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1664 node_dead);
1665 virtnet_set_affinity(vi);
1666 return 0;
1667}
Jason Wang3ab098d2013-10-15 11:18:58 +08001668
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001669static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1670{
1671 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1672 node);
1673
1674 virtnet_clean_affinity(vi, cpu);
1675 return 0;
1676}
1677
1678static enum cpuhp_state virtionet_online;
1679
1680static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1681{
1682 int ret;
1683
1684 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1685 if (ret)
1686 return ret;
1687 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1688 &vi->node_dead);
1689 if (!ret)
1690 return ret;
1691 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1692 return ret;
1693}
1694
1695static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1696{
1697 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1698 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1699 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001700}
1701
Rick Jones8f9f4662011-10-19 08:10:59 +00001702static void virtnet_get_ringparam(struct net_device *dev,
1703 struct ethtool_ringparam *ring)
1704{
1705 struct virtnet_info *vi = netdev_priv(dev);
1706
Jason Wang986a4f42012-12-07 07:04:56 +00001707 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1708 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001709 ring->rx_pending = ring->rx_max_pending;
1710 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001711}
1712
Rick Jones66846042011-11-14 14:17:08 +00001713
1714static void virtnet_get_drvinfo(struct net_device *dev,
1715 struct ethtool_drvinfo *info)
1716{
1717 struct virtnet_info *vi = netdev_priv(dev);
1718 struct virtio_device *vdev = vi->vdev;
1719
1720 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1721 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1722 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1723
1724}
1725
Jason Wangd73bcd22012-12-07 07:04:57 +00001726/* TODO: Eliminate OOO packets during switching */
1727static int virtnet_set_channels(struct net_device *dev,
1728 struct ethtool_channels *channels)
1729{
1730 struct virtnet_info *vi = netdev_priv(dev);
1731 u16 queue_pairs = channels->combined_count;
1732 int err;
1733
1734 /* We don't support separate rx/tx channels.
1735 * We don't allow setting 'other' channels.
1736 */
1737 if (channels->rx_count || channels->tx_count || channels->other_count)
1738 return -EINVAL;
1739
Amos Kongc18e9cd2014-04-18 13:45:41 +08001740 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001741 return -EINVAL;
1742
John Fastabendf600b692016-12-15 12:13:24 -08001743 /* For now we don't support modifying channels while XDP is loaded
1744 * also when XDP is loaded all RX queues have XDP programs so we only
1745 * need to check a single RX queue.
1746 */
1747 if (vi->rq[0].xdp_prog)
1748 return -EINVAL;
1749
Wanlong Gao47be2472013-01-24 23:51:29 +00001750 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08001751 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00001752 if (!err) {
1753 netif_set_real_num_tx_queues(dev, queue_pairs);
1754 netif_set_real_num_rx_queues(dev, queue_pairs);
1755
Wanlong Gao8898c212013-01-24 23:51:30 +00001756 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001757 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001758 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001759
1760 return err;
1761}
1762
1763static void virtnet_get_channels(struct net_device *dev,
1764 struct ethtool_channels *channels)
1765{
1766 struct virtnet_info *vi = netdev_priv(dev);
1767
1768 channels->combined_count = vi->curr_queue_pairs;
1769 channels->max_combined = vi->max_queue_pairs;
1770 channels->max_other = 0;
1771 channels->rx_count = 0;
1772 channels->tx_count = 0;
1773 channels->other_count = 0;
1774}
1775
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001776/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001777static bool
1778virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001779{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001780 struct ethtool_link_ksettings diff1 = *cmd;
1781 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001782
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001783 /* cmd is always set so we need to clear it, validate the port type
1784 * and also without autonegotiation we can ignore advertising
1785 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001786 diff1.base.speed = 0;
1787 diff2.base.port = PORT_OTHER;
1788 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
1789 diff1.base.duplex = 0;
1790 diff1.base.cmd = 0;
1791 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001792
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001793 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
1794 bitmap_empty(diff1.link_modes.supported,
1795 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1796 bitmap_empty(diff1.link_modes.advertising,
1797 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1798 bitmap_empty(diff1.link_modes.lp_advertising,
1799 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001800}
1801
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001802static int virtnet_set_link_ksettings(struct net_device *dev,
1803 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001804{
1805 struct virtnet_info *vi = netdev_priv(dev);
1806 u32 speed;
1807
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001808 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001809 /* don't allow custom speed and duplex */
1810 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001811 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001812 !virtnet_validate_ethtool_cmd(cmd))
1813 return -EINVAL;
1814 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001815 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001816
1817 return 0;
1818}
1819
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001820static int virtnet_get_link_ksettings(struct net_device *dev,
1821 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001822{
1823 struct virtnet_info *vi = netdev_priv(dev);
1824
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001825 cmd->base.speed = vi->speed;
1826 cmd->base.duplex = vi->duplex;
1827 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001828
1829 return 0;
1830}
1831
1832static void virtnet_init_settings(struct net_device *dev)
1833{
1834 struct virtnet_info *vi = netdev_priv(dev);
1835
1836 vi->speed = SPEED_UNKNOWN;
1837 vi->duplex = DUPLEX_UNKNOWN;
1838}
1839
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001840static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00001841 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001842 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00001843 .get_ringparam = virtnet_get_ringparam,
Jason Wangd73bcd22012-12-07 07:04:57 +00001844 .set_channels = virtnet_set_channels,
1845 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00001846 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001847 .get_link_ksettings = virtnet_get_link_ksettings,
1848 .set_link_ksettings = virtnet_set_link_ksettings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001849};
1850
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001851static void virtnet_freeze_down(struct virtio_device *vdev)
1852{
1853 struct virtnet_info *vi = vdev->priv;
1854 int i;
1855
1856 /* Make sure no work handler is accessing the device */
1857 flush_work(&vi->config_work);
1858
1859 netif_device_detach(vi->dev);
Jason Wang713a98d2017-06-28 09:51:03 +08001860 netif_tx_disable(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001861 cancel_delayed_work_sync(&vi->refill);
1862
1863 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001864 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001865 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001866 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001867 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001868 }
1869}
1870
1871static int init_vqs(struct virtnet_info *vi);
1872
1873static int virtnet_restore_up(struct virtio_device *vdev)
1874{
1875 struct virtnet_info *vi = vdev->priv;
1876 int err, i;
1877
1878 err = init_vqs(vi);
1879 if (err)
1880 return err;
1881
1882 virtio_device_ready(vdev);
1883
1884 if (netif_running(vi->dev)) {
1885 for (i = 0; i < vi->curr_queue_pairs; i++)
1886 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
1887 schedule_delayed_work(&vi->refill, 0);
1888
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001889 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04001890 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001891 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
1892 &vi->sq[i].napi);
1893 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001894 }
1895
1896 netif_device_attach(vi->dev);
1897 return err;
1898}
1899
Jakub Kicinski9861ce02017-04-30 21:46:48 -07001900static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1901 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08001902{
1903 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
1904 struct virtnet_info *vi = netdev_priv(dev);
1905 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08001906 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08001907 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08001908
1909 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
Jason Wang92502fe2016-12-23 22:37:30 +08001910 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
1911 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
1912 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO)) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02001913 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 -08001914 return -EOPNOTSUPP;
1915 }
1916
1917 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02001918 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08001919 return -EINVAL;
1920 }
1921
1922 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02001923 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08001924 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
1925 return -EINVAL;
1926 }
1927
John Fastabend672aafd2016-12-15 12:13:49 -08001928 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
1929 if (prog)
1930 xdp_qp = nr_cpu_ids;
1931
1932 /* XDP requires extra queues for XDP_TX */
1933 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02001934 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08001935 netdev_warn(dev, "request %i queues but max is %i\n",
1936 curr_qp + xdp_qp, vi->max_queue_pairs);
1937 return -ENOMEM;
1938 }
1939
John Fastabend2de2f7f2017-02-02 19:16:29 -08001940 if (prog) {
1941 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
1942 if (IS_ERR(prog))
1943 return PTR_ERR(prog);
1944 }
1945
Jason Wang4941d472017-07-19 16:54:48 +08001946 /* Make sure NAPI is not using any XDP TX queues for RX. */
1947 for (i = 0; i < vi->max_queue_pairs; i++)
1948 napi_disable(&vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08001949
John Fastabend672aafd2016-12-15 12:13:49 -08001950 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08001951 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
1952 if (err)
1953 goto err;
1954 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08001955
John Fastabendf600b692016-12-15 12:13:24 -08001956 for (i = 0; i < vi->max_queue_pairs; i++) {
1957 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1958 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
1959 if (old_prog)
1960 bpf_prog_put(old_prog);
Jason Wang4941d472017-07-19 16:54:48 +08001961 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08001962 }
1963
1964 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001965
Jason Wang4941d472017-07-19 16:54:48 +08001966err:
1967 for (i = 0; i < vi->max_queue_pairs; i++)
1968 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08001969 if (prog)
1970 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
1971 return err;
John Fastabendf600b692016-12-15 12:13:24 -08001972}
1973
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07001974static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08001975{
1976 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07001977 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08001978 int i;
1979
1980 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07001981 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1982 if (xdp_prog)
1983 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08001984 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07001985 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08001986}
1987
1988static int virtnet_xdp(struct net_device *dev, struct netdev_xdp *xdp)
1989{
1990 switch (xdp->command) {
1991 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07001992 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08001993 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07001994 xdp->prog_id = virtnet_xdp_query(dev);
1995 xdp->prog_attached = !!xdp->prog_id;
John Fastabendf600b692016-12-15 12:13:24 -08001996 return 0;
1997 default:
1998 return -EINVAL;
1999 }
2000}
2001
Stephen Hemminger76288b42009-01-06 10:44:22 -08002002static const struct net_device_ops virtnet_netdev = {
2003 .ndo_open = virtnet_open,
2004 .ndo_stop = virtnet_close,
2005 .ndo_start_xmit = start_xmit,
2006 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002007 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002008 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002009 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002010 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2011 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002012#ifdef CONFIG_NET_POLL_CONTROLLER
2013 .ndo_poll_controller = virtnet_netpoll,
2014#endif
John Fastabendf600b692016-12-15 12:13:24 -08002015 .ndo_xdp = virtnet_xdp,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002016 .ndo_features_check = passthru_features_check,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002017};
2018
Jason Wang586d17c2012-04-11 20:43:52 +00002019static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002020{
Jason Wang586d17c2012-04-11 20:43:52 +00002021 struct virtnet_info *vi =
2022 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002023 u16 v;
2024
Rusty Russell855e0c52013-10-14 18:11:51 +10302025 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2026 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302027 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002028
2029 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002030 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002031 virtnet_ack_link_announce(vi);
2032 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002033
2034 /* Ignore unknown (future) status bits */
2035 v &= VIRTIO_NET_S_LINK_UP;
2036
2037 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302038 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002039
2040 vi->status = v;
2041
2042 if (vi->status & VIRTIO_NET_S_LINK_UP) {
2043 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002044 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002045 } else {
2046 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002047 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002048 }
2049}
2050
2051static void virtnet_config_changed(struct virtio_device *vdev)
2052{
2053 struct virtnet_info *vi = vdev->priv;
2054
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002055 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002056}
2057
Jason Wang986a4f42012-12-07 07:04:56 +00002058static void virtnet_free_queues(struct virtnet_info *vi)
2059{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002060 int i;
2061
Jason Wangab3971b2015-03-12 13:57:44 +08002062 for (i = 0; i < vi->max_queue_pairs; i++) {
2063 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002064 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002065 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002066 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002067
Eric Dumazet963abe52016-11-15 22:24:12 -08002068 /* We called napi_hash_del() before netif_napi_del(),
2069 * we need to respect an RCU grace period before freeing vi->rq
2070 */
2071 synchronize_net();
2072
Jason Wang986a4f42012-12-07 07:04:56 +00002073 kfree(vi->rq);
2074 kfree(vi->sq);
2075}
2076
John Fastabend473153292017-02-02 19:14:32 -08002077static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002078{
John Fastabendf600b692016-12-15 12:13:24 -08002079 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002080 int i;
2081
2082 for (i = 0; i < vi->max_queue_pairs; i++) {
2083 while (vi->rq[i].pages)
2084 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002085
2086 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2087 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2088 if (old_prog)
2089 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002090 }
John Fastabend473153292017-02-02 19:14:32 -08002091}
2092
2093static void free_receive_bufs(struct virtnet_info *vi)
2094{
2095 rtnl_lock();
2096 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002097 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002098}
2099
Michael Daltonfb518792014-01-16 22:23:26 -08002100static void free_receive_page_frags(struct virtnet_info *vi)
2101{
2102 int i;
2103 for (i = 0; i < vi->max_queue_pairs; i++)
2104 if (vi->rq[i].alloc_frag.page)
2105 put_page(vi->rq[i].alloc_frag.page);
2106}
2107
John Fastabendb68df012017-01-25 18:22:48 -08002108static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002109{
2110 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2111 return false;
2112 else if (q < vi->curr_queue_pairs)
2113 return true;
2114 else
2115 return false;
2116}
2117
Jason Wang986a4f42012-12-07 07:04:56 +00002118static void free_unused_bufs(struct virtnet_info *vi)
2119{
2120 void *buf;
2121 int i;
2122
2123 for (i = 0; i < vi->max_queue_pairs; i++) {
2124 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002125 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002126 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002127 dev_kfree_skb(buf);
2128 else
2129 put_page(virt_to_head_page(buf));
2130 }
Jason Wang986a4f42012-12-07 07:04:56 +00002131 }
2132
2133 for (i = 0; i < vi->max_queue_pairs; i++) {
2134 struct virtqueue *vq = vi->rq[i].vq;
2135
2136 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002137 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002138 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002139 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002140 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002141 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002142 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002143 }
Jason Wang986a4f42012-12-07 07:04:56 +00002144 }
Jason Wang986a4f42012-12-07 07:04:56 +00002145 }
2146}
2147
Jason Wange9d74172012-12-07 07:04:55 +00002148static void virtnet_del_vqs(struct virtnet_info *vi)
2149{
2150 struct virtio_device *vdev = vi->vdev;
2151
Wanlong Gao8898c212013-01-24 23:51:30 +00002152 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002153
Jason Wange9d74172012-12-07 07:04:55 +00002154 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002155
2156 virtnet_free_queues(vi);
2157}
2158
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002159/* How large should a single buffer be so a queue full of these can fit at
2160 * least one full packet?
2161 * Logic below assumes the mergeable buffer header is used.
2162 */
2163static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2164{
2165 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2166 unsigned int rq_size = virtqueue_get_vring_size(vq);
2167 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2168 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2169 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2170
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002171 return max(max(min_buf_len, hdr_len) - hdr_len,
2172 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002173}
2174
Jason Wang986a4f42012-12-07 07:04:56 +00002175static int virtnet_find_vqs(struct virtnet_info *vi)
2176{
2177 vq_callback_t **callbacks;
2178 struct virtqueue **vqs;
2179 int ret = -ENOMEM;
2180 int i, total_vqs;
2181 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002182 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002183
2184 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2185 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2186 * possible control vq.
2187 */
2188 total_vqs = vi->max_queue_pairs * 2 +
2189 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2190
2191 /* Allocate space for find_vqs parameters */
2192 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
2193 if (!vqs)
2194 goto err_vq;
2195 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
2196 if (!callbacks)
2197 goto err_callback;
2198 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
2199 if (!names)
2200 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002201 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002202 ctx = kzalloc(total_vqs * sizeof(*ctx), GFP_KERNEL);
2203 if (!ctx)
2204 goto err_ctx;
2205 } else {
2206 ctx = NULL;
2207 }
Jason Wang986a4f42012-12-07 07:04:56 +00002208
2209 /* Parameters for control virtqueue, if any */
2210 if (vi->has_cvq) {
2211 callbacks[total_vqs - 1] = NULL;
2212 names[total_vqs - 1] = "control";
2213 }
2214
2215 /* Allocate/initialize parameters for send/receive virtqueues */
2216 for (i = 0; i < vi->max_queue_pairs; i++) {
2217 callbacks[rxq2vq(i)] = skb_recv_done;
2218 callbacks[txq2vq(i)] = skb_xmit_done;
2219 sprintf(vi->rq[i].name, "input.%d", i);
2220 sprintf(vi->sq[i].name, "output.%d", i);
2221 names[rxq2vq(i)] = vi->rq[i].name;
2222 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002223 if (ctx)
2224 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002225 }
2226
2227 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002228 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002229 if (ret)
2230 goto err_find;
2231
2232 if (vi->has_cvq) {
2233 vi->cvq = vqs[total_vqs - 1];
2234 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002235 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002236 }
2237
2238 for (i = 0; i < vi->max_queue_pairs; i++) {
2239 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002240 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002241 vi->sq[i].vq = vqs[txq2vq(i)];
2242 }
2243
2244 kfree(names);
2245 kfree(callbacks);
2246 kfree(vqs);
Jason Wang55281622017-07-07 19:56:09 +08002247 kfree(ctx);
Jason Wang986a4f42012-12-07 07:04:56 +00002248
2249 return 0;
2250
2251err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002252 kfree(ctx);
2253err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002254 kfree(names);
2255err_names:
2256 kfree(callbacks);
2257err_callback:
2258 kfree(vqs);
2259err_vq:
2260 return ret;
2261}
2262
2263static int virtnet_alloc_queues(struct virtnet_info *vi)
2264{
2265 int i;
2266
2267 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
2268 if (!vi->sq)
2269 goto err_sq;
2270 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002271 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002272 goto err_rq;
2273
2274 INIT_DELAYED_WORK(&vi->refill, refill_work);
2275 for (i = 0; i < vi->max_queue_pairs; i++) {
2276 vi->rq[i].pages = NULL;
2277 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2278 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002279 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2280 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002281
2282 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002283 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002284 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
2285 }
2286
2287 return 0;
2288
2289err_rq:
2290 kfree(vi->sq);
2291err_sq:
2292 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002293}
2294
Amit Shah3f9c10b2011-12-22 16:58:31 +05302295static int init_vqs(struct virtnet_info *vi)
2296{
Jason Wang986a4f42012-12-07 07:04:56 +00002297 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302298
Jason Wang986a4f42012-12-07 07:04:56 +00002299 /* Allocate send & receive queues */
2300 ret = virtnet_alloc_queues(vi);
2301 if (ret)
2302 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302303
Jason Wang986a4f42012-12-07 07:04:56 +00002304 ret = virtnet_find_vqs(vi);
2305 if (ret)
2306 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302307
Wanlong Gao47be2472013-01-24 23:51:29 +00002308 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002309 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002310 put_online_cpus();
2311
Amit Shah3f9c10b2011-12-22 16:58:31 +05302312 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002313
2314err_free:
2315 virtnet_free_queues(vi);
2316err:
2317 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302318}
2319
Michael Daltonfbf28d72014-01-16 22:23:30 -08002320#ifdef CONFIG_SYSFS
2321static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
2322 struct rx_queue_attribute *attribute, char *buf)
2323{
2324 struct virtnet_info *vi = netdev_priv(queue->dev);
2325 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Johannes Berg5377d7582015-08-19 09:48:40 +02002326 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002327
2328 BUG_ON(queue_index >= vi->max_queue_pairs);
2329 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002330 return sprintf(buf, "%u\n",
2331 get_mergeable_buf_len(&vi->rq[queue_index], avg));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002332}
2333
2334static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2335 __ATTR_RO(mergeable_rx_buffer_size);
2336
2337static struct attribute *virtio_net_mrg_rx_attrs[] = {
2338 &mergeable_rx_buffer_size_attribute.attr,
2339 NULL
2340};
2341
2342static const struct attribute_group virtio_net_mrg_rx_group = {
2343 .name = "virtio_net",
2344 .attrs = virtio_net_mrg_rx_attrs
2345};
2346#endif
2347
Jason Wang892d6eb2014-11-20 17:03:05 +08002348static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2349 unsigned int fbit,
2350 const char *fname, const char *dname)
2351{
2352 if (!virtio_has_feature(vdev, fbit))
2353 return false;
2354
2355 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2356 fname, dname);
2357
2358 return true;
2359}
2360
2361#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2362 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2363
2364static bool virtnet_validate_features(struct virtio_device *vdev)
2365{
2366 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2367 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2368 "VIRTIO_NET_F_CTRL_VQ") ||
2369 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2370 "VIRTIO_NET_F_CTRL_VQ") ||
2371 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2372 "VIRTIO_NET_F_CTRL_VQ") ||
2373 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2374 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2375 "VIRTIO_NET_F_CTRL_VQ"))) {
2376 return false;
2377 }
2378
2379 return true;
2380}
2381
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002382#define MIN_MTU ETH_MIN_MTU
2383#define MAX_MTU ETH_MAX_MTU
2384
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002385static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002386{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002387 if (!vdev->config->get) {
2388 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2389 __func__);
2390 return -EINVAL;
2391 }
2392
Jason Wang892d6eb2014-11-20 17:03:05 +08002393 if (!virtnet_validate_features(vdev))
2394 return -EINVAL;
2395
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002396 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2397 int mtu = virtio_cread16(vdev,
2398 offsetof(struct virtio_net_config,
2399 mtu));
2400 if (mtu < MIN_MTU)
2401 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2402 }
2403
2404 return 0;
2405}
2406
2407static int virtnet_probe(struct virtio_device *vdev)
2408{
2409 int i, err;
2410 struct net_device *dev;
2411 struct virtnet_info *vi;
2412 u16 max_queue_pairs;
2413 int mtu;
2414
Jason Wang986a4f42012-12-07 07:04:56 +00002415 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302416 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2417 struct virtio_net_config,
2418 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002419
2420 /* We need at least 2 queue's */
2421 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2422 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2423 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2424 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002425
2426 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002427 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002428 if (!dev)
2429 return -ENOMEM;
2430
2431 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002432 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002433 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002434 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002435
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002436 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002437 SET_NETDEV_DEV(dev, &vdev->dev);
2438
2439 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002440 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002441 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002442 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002443 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002444 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002445
2446 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002447 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002448 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2449 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002450 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002451 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2452 dev->hw_features |= NETIF_F_TSO;
2453 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2454 dev->hw_features |= NETIF_F_TSO6;
2455 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2456 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002457
Jason Wang41f2f122014-12-24 11:03:52 +08002458 dev->features |= NETIF_F_GSO_ROBUST;
2459
Michał Mirosław98e778c2011-03-31 01:01:35 +00002460 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07002461 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002462 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002463 }
Thomas Huth4f491292013-08-27 17:09:02 +02002464 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2465 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002466
Jason Wang4fda8302013-04-10 23:32:21 +00002467 dev->vlan_features = dev->features;
2468
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002469 /* MTU range: 68 - 65535 */
2470 dev->min_mtu = MIN_MTU;
2471 dev->max_mtu = MAX_MTU;
2472
Rusty Russell296f96f2007-10-22 11:03:37 +10002473 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302474 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2475 virtio_cread_bytes(vdev,
2476 offsetof(struct virtio_net_config, mac),
2477 dev->dev_addr, dev->addr_len);
2478 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002479 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002480
2481 /* Set up our device-specific information */
2482 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002483 vi->dev = dev;
2484 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002485 vdev->priv = vi;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002486 vi->stats = alloc_percpu(struct virtnet_stats);
2487 err = -ENOMEM;
2488 if (vi->stats == NULL)
2489 goto free;
2490
John Stultz827da442013-10-07 15:51:58 -07002491 for_each_possible_cpu(i) {
2492 struct virtnet_stats *virtnet_stats;
2493 virtnet_stats = per_cpu_ptr(vi->stats, i);
2494 u64_stats_init(&virtnet_stats->tx_syncp);
2495 u64_stats_init(&virtnet_stats->rx_syncp);
2496 }
2497
Jason Wang586d17c2012-04-11 20:43:52 +00002498 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002499
Herbert Xu97402b92008-04-18 11:24:27 +08002500 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002501 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2502 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002503 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2504 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002505 vi->big_packets = true;
2506
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002507 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2508 vi->mergeable_rx_bufs = true;
2509
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002510 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2511 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002512 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2513 else
2514 vi->hdr_len = sizeof(struct virtio_net_hdr);
2515
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002516 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2517 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302518 vi->any_header_sg = true;
2519
Jason Wang986a4f42012-12-07 07:04:56 +00002520 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2521 vi->has_cvq = true;
2522
Aaron Conole14de9d12016-06-03 16:57:12 -04002523 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2524 mtu = virtio_cread16(vdev,
2525 offsetof(struct virtio_net_config,
2526 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002527 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002528 /* Should never trigger: MTU was previously validated
2529 * in virtnet_validate.
2530 */
2531 dev_err(&vdev->dev, "device MTU appears to have changed "
2532 "it is now %d < %d", mtu, dev->min_mtu);
2533 goto free_stats;
Aaron Conole93a205e2016-10-25 16:12:12 -04002534 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002535
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002536 dev->mtu = mtu;
2537 dev->max_mtu = mtu;
2538
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002539 /* TODO: size buffers correctly in this case. */
2540 if (dev->mtu > ETH_DATA_LEN)
2541 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04002542 }
2543
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002544 if (vi->any_header_sg)
2545 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002546
Jason Wang44900012016-11-25 12:37:26 +08002547 /* Enable multiqueue by default */
2548 if (num_online_cpus() >= max_queue_pairs)
2549 vi->curr_queue_pairs = max_queue_pairs;
2550 else
2551 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002552 vi->max_queue_pairs = max_queue_pairs;
2553
2554 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302555 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002556 if (err)
Jason Wang9bb8ca82013-11-05 18:19:45 +08002557 goto free_stats;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002558
Michael Daltonfbf28d72014-01-16 22:23:30 -08002559#ifdef CONFIG_SYSFS
2560 if (vi->mergeable_rx_bufs)
2561 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2562#endif
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08002563 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2564 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002565
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002566 virtnet_init_settings(dev);
2567
Rusty Russell296f96f2007-10-22 11:03:37 +10002568 err = register_netdev(dev);
2569 if (err) {
2570 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002571 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002572 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002573
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302574 virtio_device_ready(vdev);
2575
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002576 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002577 if (err) {
2578 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002579 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002580 }
2581
Jason Wanga2208712016-12-13 14:23:05 +08002582 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08002583
Jason Wang167c25e2010-11-10 14:45:41 +00002584 /* Assume link up if device can't report link status,
2585 otherwise get link status from config. */
2586 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2587 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002588 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002589 } else {
2590 vi->status = VIRTIO_NET_S_LINK_UP;
2591 netif_carrier_on(dev);
2592 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002593
Jason Wang986a4f42012-12-07 07:04:56 +00002594 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2595 dev->name, max_queue_pairs);
2596
Rusty Russell296f96f2007-10-22 11:03:37 +10002597 return 0;
2598
wangyunjianf00e35e2016-05-31 11:52:43 +08002599free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302600 vi->vdev->config->reset(vdev);
2601
Rusty Russellb3369c12008-02-04 23:50:02 -05002602 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002603free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002604 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002605 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002606 virtnet_del_vqs(vi);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002607free_stats:
2608 free_percpu(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10002609free:
2610 free_netdev(dev);
2611 return err;
2612}
2613
Amit Shah04486ed2011-12-22 16:58:32 +05302614static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002615{
Amit Shah04486ed2011-12-22 16:58:32 +05302616 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002617
2618 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002619 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002620
Jason Wang986a4f42012-12-07 07:04:56 +00002621 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002622
Michael Daltonfb518792014-01-16 22:23:26 -08002623 free_receive_page_frags(vi);
2624
Jason Wang986a4f42012-12-07 07:04:56 +00002625 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302626}
2627
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002628static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302629{
2630 struct virtnet_info *vi = vdev->priv;
2631
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002632 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002633
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302634 /* Make sure no work handler is accessing the device. */
2635 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002636
Amit Shah04486ed2011-12-22 16:58:32 +05302637 unregister_netdev(vi->dev);
2638
2639 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002640
Krishna Kumar2e66f552011-07-20 03:56:02 +00002641 free_percpu(vi->stats);
Rusty Russell74b25532007-11-19 11:20:42 -05002642 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002643}
2644
Aaron Lu89107002013-09-17 09:25:23 +09302645#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302646static int virtnet_freeze(struct virtio_device *vdev)
2647{
2648 struct virtnet_info *vi = vdev->priv;
2649
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002650 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002651 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302652 remove_vq_common(vi);
2653
2654 return 0;
2655}
2656
2657static int virtnet_restore(struct virtio_device *vdev)
2658{
2659 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002660 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05302661
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002662 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302663 if (err)
2664 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00002665 virtnet_set_queues(vi, vi->curr_queue_pairs);
2666
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002667 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002668 if (err)
2669 return err;
2670
Amit Shah0741bcb2011-12-22 16:58:33 +05302671 return 0;
2672}
2673#endif
2674
Rusty Russell296f96f2007-10-22 11:03:37 +10002675static struct virtio_device_id id_table[] = {
2676 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2677 { 0 },
2678};
2679
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002680#define VIRTNET_FEATURES \
2681 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2682 VIRTIO_NET_F_MAC, \
2683 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2684 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2685 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2686 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2687 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2688 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2689 VIRTIO_NET_F_CTRL_MAC_ADDR, \
2690 VIRTIO_NET_F_MTU
2691
Rusty Russellc45a6812008-05-02 21:50:50 -05002692static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002693 VIRTNET_FEATURES,
2694};
2695
2696static unsigned int features_legacy[] = {
2697 VIRTNET_FEATURES,
2698 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302699 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05002700};
2701
Uwe Kleine-König22402522009-11-05 01:32:44 -08002702static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05002703 .feature_table = features,
2704 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002705 .feature_table_legacy = features_legacy,
2706 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10002707 .driver.name = KBUILD_MODNAME,
2708 .driver.owner = THIS_MODULE,
2709 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002710 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10002711 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002712 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002713 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09302714#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302715 .freeze = virtnet_freeze,
2716 .restore = virtnet_restore,
2717#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10002718};
2719
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002720static __init int virtio_net_driver_init(void)
2721{
2722 int ret;
2723
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002724 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002725 virtnet_cpu_online,
2726 virtnet_cpu_down_prep);
2727 if (ret < 0)
2728 goto out;
2729 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002730 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002731 NULL, virtnet_cpu_dead);
2732 if (ret)
2733 goto err_dead;
2734
2735 ret = register_virtio_driver(&virtio_net_driver);
2736 if (ret)
2737 goto err_virtio;
2738 return 0;
2739err_virtio:
2740 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2741err_dead:
2742 cpuhp_remove_multi_state(virtionet_online);
2743out:
2744 return ret;
2745}
2746module_init(virtio_net_driver_init);
2747
2748static __exit void virtio_net_driver_exit(void)
2749{
2750 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2751 cpuhp_remove_multi_state(virtionet_online);
2752 unregister_virtio_driver(&virtio_net_driver);
2753}
2754module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10002755
2756MODULE_DEVICE_TABLE(virtio, id_table);
2757MODULE_DESCRIPTION("Virtio network driver");
2758MODULE_LICENSE("GPL");