blob: 1f8c15cb63b0174ba97503b24c8a1238f06ab100 [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
Mike Waychison34646452012-01-04 12:52:32 +0000273/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300274static struct sk_buff *page_to_skb(struct virtnet_info *vi,
275 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700276 struct page *page, unsigned int offset,
277 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000278{
279 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300280 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700281 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000282 char *p;
283
Michael Dalton2613af02013-10-28 15:44:18 -0700284 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000285
286 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100287 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000288 if (unlikely(!skb))
289 return NULL;
290
291 hdr = skb_vnet_hdr(skb);
292
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300293 hdr_len = vi->hdr_len;
294 if (vi->mergeable_rx_bufs)
295 hdr_padded_len = sizeof *hdr;
296 else
Michael Dalton2613af02013-10-28 15:44:18 -0700297 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000298
299 memcpy(hdr, p, hdr_len);
300
301 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700302 offset += hdr_padded_len;
303 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000304
305 copy = len;
306 if (copy > skb_tailroom(skb))
307 copy = skb_tailroom(skb);
308 memcpy(skb_put(skb, copy), p, copy);
309
310 len -= copy;
311 offset += copy;
312
Michael Dalton2613af02013-10-28 15:44:18 -0700313 if (vi->mergeable_rx_bufs) {
314 if (len)
315 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
316 else
317 put_page(page);
318 return skb;
319 }
320
Sasha Levine878d782011-09-28 04:40:54 +0000321 /*
322 * Verify that we can indeed put this data into a skb.
323 * This is here to handle cases when the device erroneously
324 * tries to receive more than is possible. This is usually
325 * the case of a broken device.
326 */
327 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000328 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000329 dev_kfree_skb(skb);
330 return NULL;
331 }
Michael Dalton2613af02013-10-28 15:44:18 -0700332 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000333 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700334 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
335 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
336 frag_size, truesize);
337 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000338 page = (struct page *)page->private;
339 offset = 0;
340 }
341
342 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000343 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000344
345 return skb;
346}
347
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100348static bool virtnet_xdp_xmit(struct virtnet_info *vi,
John Fastabend56434a02016-12-15 12:14:13 -0800349 struct receive_queue *rq,
Jason Wangf6b10202017-02-21 16:46:28 +0800350 struct xdp_buff *xdp)
John Fastabend56434a02016-12-15 12:14:13 -0800351{
John Fastabend56434a02016-12-15 12:14:13 -0800352 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wangf6b10202017-02-21 16:46:28 +0800353 unsigned int len;
John Fastabend722d8282017-02-02 19:15:32 -0800354 struct send_queue *sq;
355 unsigned int qp;
John Fastabend56434a02016-12-15 12:14:13 -0800356 void *xdp_sent;
357 int err;
358
John Fastabend722d8282017-02-02 19:15:32 -0800359 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
360 sq = &vi->sq[qp];
361
John Fastabend56434a02016-12-15 12:14:13 -0800362 /* Free up any pending old buffers before queueing new ones. */
363 while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Jason Wangf6b10202017-02-21 16:46:28 +0800364 struct page *sent_page = virt_to_head_page(xdp_sent);
Jason Wangbb91acc2016-12-23 22:37:32 +0800365
Jason Wangf6b10202017-02-21 16:46:28 +0800366 put_page(sent_page);
John Fastabend56434a02016-12-15 12:14:13 -0800367 }
368
Jason Wangf6b10202017-02-21 16:46:28 +0800369 xdp->data -= vi->hdr_len;
370 /* Zero header and leave csum up to XDP layers */
371 hdr = xdp->data;
372 memset(hdr, 0, vi->hdr_len);
John Fastabend56434a02016-12-15 12:14:13 -0800373
Jason Wangf6b10202017-02-21 16:46:28 +0800374 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800375
Jason Wangf6b10202017-02-21 16:46:28 +0800376 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp->data, GFP_ATOMIC);
John Fastabend56434a02016-12-15 12:14:13 -0800377 if (unlikely(err)) {
Jason Wangf6b10202017-02-21 16:46:28 +0800378 struct page *page = virt_to_head_page(xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800379
Jason Wangf6b10202017-02-21 16:46:28 +0800380 put_page(page);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100381 return false;
John Fastabend56434a02016-12-15 12:14:13 -0800382 }
383
384 virtqueue_kick(sq->vq);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100385 return true;
John Fastabend56434a02016-12-15 12:14:13 -0800386}
387
Jason Wangf6b10202017-02-21 16:46:28 +0800388static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
389{
390 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
391}
392
Jason Wangbb91acc2016-12-23 22:37:32 +0800393static struct sk_buff *receive_small(struct net_device *dev,
394 struct virtnet_info *vi,
395 struct receive_queue *rq,
396 void *buf, unsigned int len)
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200397{
Jason Wangf6b10202017-02-21 16:46:28 +0800398 struct sk_buff *skb;
Jason Wangbb91acc2016-12-23 22:37:32 +0800399 struct bpf_prog *xdp_prog;
Jason Wangf6b10202017-02-21 16:46:28 +0800400 unsigned int xdp_headroom = virtnet_get_headroom(vi);
401 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
402 unsigned int headroom = vi->hdr_len + header_offset;
403 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
404 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
405 unsigned int delta = 0;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300406 len -= vi->hdr_len;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200407
Jason Wangbb91acc2016-12-23 22:37:32 +0800408 rcu_read_lock();
409 xdp_prog = rcu_dereference(rq->xdp_prog);
410 if (xdp_prog) {
Jason Wangf6b10202017-02-21 16:46:28 +0800411 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
John Fastabend0354e4d2017-02-02 19:15:01 -0800412 struct xdp_buff xdp;
Jason Wangf6b10202017-02-21 16:46:28 +0800413 void *orig_data;
Jason Wangbb91acc2016-12-23 22:37:32 +0800414 u32 act;
415
416 if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags))
417 goto err_xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800418
Jason Wangf6b10202017-02-21 16:46:28 +0800419 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
420 xdp.data = xdp.data_hard_start + xdp_headroom;
John Fastabend0354e4d2017-02-02 19:15:01 -0800421 xdp.data_end = xdp.data + len;
Jason Wangf6b10202017-02-21 16:46:28 +0800422 orig_data = xdp.data;
John Fastabend0354e4d2017-02-02 19:15:01 -0800423 act = bpf_prog_run_xdp(xdp_prog, &xdp);
424
Jason Wangbb91acc2016-12-23 22:37:32 +0800425 switch (act) {
426 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800427 /* Recalculate length in case bpf program changed it */
Jason Wangf6b10202017-02-21 16:46:28 +0800428 delta = orig_data - xdp.data;
Jason Wangbb91acc2016-12-23 22:37:32 +0800429 break;
430 case XDP_TX:
Jason Wangf6b10202017-02-21 16:46:28 +0800431 if (unlikely(!virtnet_xdp_xmit(vi, rq, &xdp)))
John Fastabend0354e4d2017-02-02 19:15:01 -0800432 trace_xdp_exception(vi->dev, xdp_prog, act);
Jason Wangbb91acc2016-12-23 22:37:32 +0800433 rcu_read_unlock();
434 goto xdp_xmit;
Jason Wangbb91acc2016-12-23 22:37:32 +0800435 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800436 bpf_warn_invalid_xdp_action(act);
437 case XDP_ABORTED:
438 trace_xdp_exception(vi->dev, xdp_prog, act);
439 case XDP_DROP:
Jason Wangbb91acc2016-12-23 22:37:32 +0800440 goto err_xdp;
441 }
442 }
443 rcu_read_unlock();
444
Jason Wangf6b10202017-02-21 16:46:28 +0800445 skb = build_skb(buf, buflen);
446 if (!skb) {
447 put_page(virt_to_head_page(buf));
448 goto err;
449 }
450 skb_reserve(skb, headroom - delta);
451 skb_put(skb, len + delta);
452 if (!delta) {
453 buf += header_offset;
454 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
455 } /* keep zeroed vnet hdr since packet was changed by bpf */
456
457err:
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200458 return skb;
Jason Wangbb91acc2016-12-23 22:37:32 +0800459
460err_xdp:
461 rcu_read_unlock();
462 dev->stats.rx_dropped++;
Jason Wangf6b10202017-02-21 16:46:28 +0800463 put_page(virt_to_head_page(buf));
Jason Wangbb91acc2016-12-23 22:37:32 +0800464xdp_xmit:
465 return NULL;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200466}
467
468static struct sk_buff *receive_big(struct net_device *dev,
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300469 struct virtnet_info *vi,
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200470 struct receive_queue *rq,
471 void *buf,
472 unsigned int len)
473{
474 struct page *page = buf;
Jason Wangc47a43d2016-12-23 22:37:31 +0800475 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200476
477 if (unlikely(!skb))
478 goto err;
479
480 return skb;
481
482err:
483 dev->stats.rx_dropped++;
484 give_pages(rq, page);
485 return NULL;
486}
487
John Fastabend72979a62016-12-15 12:14:36 -0800488/* The conditions to enable XDP should preclude the underlying device from
489 * sending packets across multiple buffers (num_buf > 1). However per spec
490 * it does not appear to be illegal to do so but rather just against convention.
491 * So in order to avoid making a system unresponsive the packets are pushed
492 * into a page and the XDP program is run. This will be extremely slow and we
493 * push a warning to the user to fix this as soon as possible. Fixing this may
494 * require resolving the underlying hardware to determine why multiple buffers
495 * are being received or simply loading the XDP program in the ingress stack
496 * after the skb is built because there is no advantage to running it here
497 * anymore.
498 */
499static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800500 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800501 struct page *p,
502 int offset,
503 unsigned int *len)
504{
505 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800506 unsigned int page_off = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800507
508 if (!page)
509 return NULL;
510
511 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
512 page_off += *len;
513
Jason Wang56a86f82016-12-23 22:37:26 +0800514 while (--*num_buf) {
John Fastabend72979a62016-12-15 12:14:36 -0800515 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800516 void *buf;
517 int off;
518
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200519 buf = virtqueue_get_buf(rq->vq, &buflen);
520 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800521 goto err_buf;
522
John Fastabend72979a62016-12-15 12:14:36 -0800523 p = virt_to_head_page(buf);
524 off = buf - page_address(p);
525
Jason Wang56a86f82016-12-23 22:37:26 +0800526 /* guard against a misconfigured or uncooperative backend that
527 * is sending packet larger than the MTU.
528 */
529 if ((page_off + buflen) > PAGE_SIZE) {
530 put_page(p);
531 goto err_buf;
532 }
533
John Fastabend72979a62016-12-15 12:14:36 -0800534 memcpy(page_address(page) + page_off,
535 page_address(p) + off, buflen);
536 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800537 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800538 }
539
John Fastabend2de2f7f2017-02-02 19:16:29 -0800540 /* Headroom does not contribute to packet length */
541 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800542 return page;
543err_buf:
544 __free_pages(page, 0);
545 return NULL;
546}
547
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200548static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200549 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200550 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200551 void *buf,
552 void *ctx,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200553 unsigned int len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000554{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300555 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
556 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200557 struct page *page = virt_to_head_page(buf);
558 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800559 struct sk_buff *head_skb, *curr_skb;
560 struct bpf_prog *xdp_prog;
561 unsigned int truesize;
Michael Daltonab7db912014-01-16 22:23:27 -0800562
John Fastabend56434a02016-12-15 12:14:13 -0800563 head_skb = NULL;
564
John Fastabendf600b692016-12-15 12:13:24 -0800565 rcu_read_lock();
566 xdp_prog = rcu_dereference(rq->xdp_prog);
567 if (xdp_prog) {
John Fastabend72979a62016-12-15 12:14:36 -0800568 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800569 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800570 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800571 u32 act;
572
Jason Wang73b62bd2016-12-23 22:37:24 +0800573 /* This happens when rx buffer size is underestimated */
John Fastabendf600b692016-12-15 12:13:24 -0800574 if (unlikely(num_buf > 1)) {
John Fastabend72979a62016-12-15 12:14:36 -0800575 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800576 xdp_page = xdp_linearize_page(rq, &num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800577 page, offset, &len);
578 if (!xdp_page)
579 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800580 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800581 } else {
582 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800583 }
584
585 /* Transient failure which in theory could occur if
586 * in-flight packets from before XDP was enabled reach
587 * the receive path after XDP is loaded. In practice I
588 * was not able to create this condition.
589 */
Jason Wangb00f70b2016-12-23 22:37:28 +0800590 if (unlikely(hdr->hdr.gso_type))
John Fastabendf600b692016-12-15 12:13:24 -0800591 goto err_xdp;
592
John Fastabend2de2f7f2017-02-02 19:16:29 -0800593 /* Allow consuming headroom but reserve enough space to push
594 * the descriptor on if we get an XDP_TX return code.
595 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800596 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800597 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800598 xdp.data = data + vi->hdr_len;
599 xdp.data_end = xdp.data + (len - vi->hdr_len);
600 act = bpf_prog_run_xdp(xdp_prog, &xdp);
601
John Fastabend56434a02016-12-15 12:14:13 -0800602 switch (act) {
603 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800604 /* recalculate offset to account for any header
605 * adjustments. Note other cases do not build an
606 * skb and avoid using offset
607 */
608 offset = xdp.data -
609 page_address(xdp_page) - vi->hdr_len;
610
Jason Wang1830f892016-12-23 22:37:27 +0800611 /* We can only create skb based on xdp_page. */
612 if (unlikely(xdp_page != page)) {
613 rcu_read_unlock();
614 put_page(page);
615 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800616 offset, len, PAGE_SIZE);
Jason Wang5c334742016-12-23 22:37:29 +0800617 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
Jason Wang1830f892016-12-23 22:37:27 +0800618 return head_skb;
619 }
John Fastabend56434a02016-12-15 12:14:13 -0800620 break;
621 case XDP_TX:
Jason Wangf6b10202017-02-21 16:46:28 +0800622 if (unlikely(!virtnet_xdp_xmit(vi, rq, &xdp)))
John Fastabend0354e4d2017-02-02 19:15:01 -0800623 trace_xdp_exception(vi->dev, xdp_prog, act);
Jason Wang5c334742016-12-23 22:37:29 +0800624 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabend72979a62016-12-15 12:14:36 -0800625 if (unlikely(xdp_page != page))
626 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800627 rcu_read_unlock();
628 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800629 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800630 bpf_warn_invalid_xdp_action(act);
631 case XDP_ABORTED:
632 trace_xdp_exception(vi->dev, xdp_prog, act);
633 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800634 if (unlikely(xdp_page != page))
635 __free_pages(xdp_page, 0);
Jason Wang5c334742016-12-23 22:37:29 +0800636 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabendf600b692016-12-15 12:13:24 -0800637 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800638 }
John Fastabendf600b692016-12-15 12:13:24 -0800639 }
640 rcu_read_unlock();
641
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200642 if (unlikely(len > (unsigned long)ctx)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300643 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200644 dev->name, len, (unsigned long)ctx);
645 dev->stats.rx_length_errors++;
646 goto err_skb;
647 }
648 truesize = (unsigned long)ctx;
John Fastabendf600b692016-12-15 12:13:24 -0800649 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
650 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000651
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200652 if (unlikely(!curr_skb))
653 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000654 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200655 int num_skb_frags;
656
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200657 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Michael Daltonab7db912014-01-16 22:23:27 -0800658 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200659 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200660 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300661 virtio16_to_cpu(vi->vdev,
662 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200663 dev->stats.rx_length_errors++;
664 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000665 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200666
667 page = virt_to_head_page(buf);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200668 if (unlikely(len > (unsigned long)ctx)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300669 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200670 dev->name, len, (unsigned long)ctx);
671 dev->stats.rx_length_errors++;
672 goto err_skb;
673 }
674 truesize = (unsigned long)ctx;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200675
676 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700677 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
678 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200679
680 if (unlikely(!nskb))
681 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700682 if (curr_skb == head_skb)
683 skb_shinfo(curr_skb)->frag_list = nskb;
684 else
685 curr_skb->next = nskb;
686 curr_skb = nskb;
687 head_skb->truesize += nskb->truesize;
688 num_skb_frags = 0;
689 }
690 if (curr_skb != head_skb) {
691 head_skb->data_len += len;
692 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800693 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700694 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200695 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800696 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
697 put_page(page);
698 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800699 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800700 } else {
701 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800702 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800703 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200704 }
705
Johannes Berg5377d7582015-08-19 09:48:40 +0200706 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200707 return head_skb;
708
John Fastabendf600b692016-12-15 12:13:24 -0800709err_xdp:
710 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200711err_skb:
712 put_page(page);
713 while (--num_buf) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200714 buf = virtqueue_get_buf(rq->vq, &len);
715 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200716 pr_debug("%s: rx error: %d buffers missing\n",
717 dev->name, num_buf);
718 dev->stats.rx_length_errors++;
719 break;
720 }
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200721 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200722 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000723 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200724err_buf:
725 dev->stats.rx_dropped++;
726 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800727xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200728 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000729}
730
Jason Wang61845d22017-02-17 11:33:09 +0800731static int receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200732 void *buf, unsigned int len, void **ctx)
Rusty Russell296f96f2007-10-22 11:03:37 +1000733{
Jason Wange9d74172012-12-07 07:04:55 +0000734 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000735 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300736 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wang61845d22017-02-17 11:33:09 +0800737 int ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000738
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300739 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000740 pr_debug("%s: short packet %i\n", dev->name, len);
741 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800742 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200743 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800744 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800745 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800746 } else {
Jason Wangf6b10202017-02-21 16:46:28 +0800747 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800748 }
Jason Wang61845d22017-02-17 11:33:09 +0800749 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000750 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000751
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200752 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200753 skb = receive_mergeable(dev, vi, rq, buf, ctx, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200754 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300755 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200756 else
Jason Wangbb91acc2016-12-23 22:37:32 +0800757 skb = receive_small(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200758
759 if (unlikely(!skb))
Jason Wang61845d22017-02-17 11:33:09 +0800760 return 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800761
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000762 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000763
Jason Wang61845d22017-02-17 11:33:09 +0800764 ret = skb->len;
Rusty Russell296f96f2007-10-22 11:03:37 +1000765
Mike Rapoporte858fae2016-06-08 16:09:21 +0300766 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000767 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000768
Mike Rapoporte858fae2016-06-08 16:09:21 +0300769 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
770 virtio_is_little_endian(vi->vdev))) {
771 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
772 dev->name, hdr->hdr.gso_type,
773 hdr->hdr.gso_size);
774 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000775 }
776
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300777 skb->protocol = eth_type_trans(skb, dev);
778 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
779 ntohs(skb->protocol), skb->len, skb->pkt_type);
780
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200781 napi_gro_receive(&rq->napi, skb);
Jason Wang61845d22017-02-17 11:33:09 +0800782 return ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000783
784frame_err:
785 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000786 dev_kfree_skb(skb);
Jason Wang61845d22017-02-17 11:33:09 +0800787 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000788}
789
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300790static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
791 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000792{
Jason Wangf6b10202017-02-21 16:46:28 +0800793 struct page_frag *alloc_frag = &rq->alloc_frag;
794 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800795 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wangf6b10202017-02-21 16:46:28 +0800796 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000797 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000798
Jason Wangf6b10202017-02-21 16:46:28 +0800799 len = SKB_DATA_ALIGN(len) +
800 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
801 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000802 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800803
Jason Wangf6b10202017-02-21 16:46:28 +0800804 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
805 get_page(alloc_frag->page);
806 alloc_frag->offset += len;
807 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
808 vi->hdr_len + GOOD_PACKET_LEN);
809 err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, buf, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000810 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +0800811 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000812
813 return err;
814}
815
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300816static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
817 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000818{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000819 struct page *first, *list = NULL;
820 char *p;
821 int i, err, offset;
822
Rusty Russella5835442014-09-11 10:17:36 +0930823 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
824
Jason Wange9d74172012-12-07 07:04:55 +0000825 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000826 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000827 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000828 if (!first) {
829 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000830 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000831 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700832 }
Jason Wange9d74172012-12-07 07:04:55 +0000833 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000834
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000835 /* chain new page in list head to match sg */
836 first->private = (unsigned long)list;
837 list = first;
838 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800839
Jason Wange9d74172012-12-07 07:04:55 +0000840 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000841 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000842 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000843 return -ENOMEM;
844 }
845 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800846
Jason Wange9d74172012-12-07 07:04:55 +0000847 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300848 /* a separated rq->sg[0] for header - required in case !any_header_sg */
849 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +0800850
Jason Wange9d74172012-12-07 07:04:55 +0000851 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000852 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000853 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800854
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000855 /* chain first in list head */
856 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030857 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
858 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000859 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +0000860 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +0800861
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000862 return err;
863}
Herbert Xu97402b92008-04-18 11:24:27 +0800864
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200865static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
866 struct ewma_pkt_len *avg_pkt_len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000867{
Michael Daltonab7db912014-01-16 22:23:27 -0800868 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800869 unsigned int len;
870
Johannes Berg5377d7582015-08-19 09:48:40 +0200871 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +0300872 rq->min_buf_len, PAGE_SIZE - hdr_len);
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +0200873 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800874}
875
John Fastabend2de2f7f2017-02-02 19:16:29 -0800876static int add_recvbuf_mergeable(struct virtnet_info *vi,
877 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -0800878{
Michael Daltonfb518792014-01-16 22:23:26 -0800879 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800880 unsigned int headroom = virtnet_get_headroom(vi);
Michael Daltonfb518792014-01-16 22:23:26 -0800881 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200882 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000883 int err;
Michael Daltonfb518792014-01-16 22:23:26 -0800884 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +1000885
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200886 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800887 if (unlikely(!skb_page_frag_refill(len + headroom, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000888 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -0800889
Michael Daltonfb518792014-01-16 22:23:26 -0800890 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800891 buf += headroom; /* advance address leaving hole at front of pkt */
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200892 ctx = (void *)(unsigned long)len;
Michael Daltonfb518792014-01-16 22:23:26 -0800893 get_page(alloc_frag->page);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800894 alloc_frag->offset += len + headroom;
Michael Daltonfb518792014-01-16 22:23:26 -0800895 hole = alloc_frag->size - alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800896 if (hole < len + headroom) {
Michael Daltonab7db912014-01-16 22:23:27 -0800897 /* To avoid internal fragmentation, if there is very likely not
898 * enough space for another buffer, add the remaining space to
899 * the current buffer. This extra space is not included in
900 * the truesize stored in ctx.
901 */
Michael Daltonfb518792014-01-16 22:23:26 -0800902 len += hole;
903 alloc_frag->offset += hole;
904 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000905
Michael Daltonfb518792014-01-16 22:23:26 -0800906 sg_init_one(rq->sg, buf, len);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200907 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000908 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -0700909 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000910
911 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000912}
913
Rusty Russellb2baed62011-12-29 00:42:38 +0000914/*
915 * Returns false if we couldn't fill entirely (OOM).
916 *
917 * Normally run in the receive path, but can also be run from ndo_open
918 * before we're receiving packets, or from refill_work which is
919 * careful to disable receiving (using napi_disable).
920 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300921static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
922 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800923{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800924 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000925 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800926
Michael Daltonfb518792014-01-16 22:23:26 -0800927 gfp |= __GFP_COLD;
Amit Shah0aea51c2009-08-26 14:58:28 +0530928 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000929 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -0800930 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000931 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300932 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000933 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300934 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800935
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000936 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030937 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800938 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800939 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +0800940 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -0700941 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800942}
943
Rusty Russell18445c42008-02-04 23:49:57 -0500944static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000945{
946 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +0000947 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +0000948
Willem de Bruijne4e84522017-04-24 13:49:26 -0400949 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +1000950}
951
Willem de Bruijne4e84522017-04-24 13:49:26 -0400952static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800953{
Willem de Bruijne4e84522017-04-24 13:49:26 -0400954 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800955
956 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -0400957 * won't get another interrupt, so process any outstanding packets now.
958 * Call local_bh_enable after to trigger softIRQ processing.
959 */
960 local_bh_disable();
961 virtqueue_napi_schedule(napi, vq);
962 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800963}
964
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400965static void virtnet_napi_tx_enable(struct virtnet_info *vi,
966 struct virtqueue *vq,
967 struct napi_struct *napi)
968{
969 if (!napi->weight)
970 return;
971
972 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
973 * enable the feature if this is likely affine with the transmit path.
974 */
975 if (!vi->affinity_hint_set) {
976 napi->weight = 0;
977 return;
978 }
979
980 return virtnet_napi_enable(vq, napi);
981}
982
Willem de Bruijn78a57b42017-04-25 15:59:17 -0400983static void virtnet_napi_tx_disable(struct napi_struct *napi)
984{
985 if (napi->weight)
986 napi_disable(napi);
987}
988
Rusty Russell3161e452009-08-26 12:22:32 -0700989static void refill_work(struct work_struct *work)
990{
Jason Wange9d74172012-12-07 07:04:55 +0000991 struct virtnet_info *vi =
992 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -0700993 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +0000994 int i;
Rusty Russell3161e452009-08-26 12:22:32 -0700995
Sasha Levin55257d72013-04-29 12:00:08 +0930996 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +0000997 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -0700998
Jason Wang986a4f42012-12-07 07:04:56 +0000999 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001000 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001001 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001002
1003 /* In theory, this can happen: if we don't get any buffers in
1004 * we will *never* try to fill again.
1005 */
1006 if (still_empty)
1007 schedule_delayed_work(&vi->refill, HZ/2);
1008 }
Rusty Russell3161e452009-08-26 12:22:32 -07001009}
1010
Jason Wang2ffa7592014-07-23 16:33:54 +08001011static int virtnet_receive(struct receive_queue *rq, int budget)
Rusty Russell296f96f2007-10-22 11:03:37 +10001012{
Jason Wange9d74172012-12-07 07:04:55 +00001013 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang61845d22017-02-17 11:33:09 +08001014 unsigned int len, received = 0, bytes = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001015 void *buf;
Jason Wang61845d22017-02-17 11:33:09 +08001016 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10001017
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001018 if (vi->mergeable_rx_bufs) {
1019 void *ctx;
1020
1021 while (received < budget &&
1022 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
1023 bytes += receive_buf(vi, rq, buf, len, ctx);
1024 received++;
1025 }
1026 } else {
1027 while (received < budget &&
1028 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
1029 bytes += receive_buf(vi, rq, buf, len, NULL);
1030 received++;
1031 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001032 }
1033
Jason Wangbe121f42014-01-16 14:45:24 +08001034 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001035 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001036 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001037 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001038
Jason Wang61845d22017-02-17 11:33:09 +08001039 u64_stats_update_begin(&stats->rx_syncp);
1040 stats->rx_bytes += bytes;
1041 stats->rx_packets += received;
1042 u64_stats_update_end(&stats->rx_syncp);
1043
Jason Wang2ffa7592014-07-23 16:33:54 +08001044 return received;
1045}
1046
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001047static void free_old_xmit_skbs(struct send_queue *sq)
1048{
1049 struct sk_buff *skb;
1050 unsigned int len;
1051 struct virtnet_info *vi = sq->vq->vdev->priv;
1052 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
1053 unsigned int packets = 0;
1054 unsigned int bytes = 0;
1055
1056 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1057 pr_debug("Sent skb %p\n", skb);
1058
1059 bytes += skb->len;
1060 packets++;
1061
1062 dev_kfree_skb_any(skb);
1063 }
1064
1065 /* Avoid overhead when no packets have been processed
1066 * happens when called speculatively from start_xmit.
1067 */
1068 if (!packets)
1069 return;
1070
1071 u64_stats_update_begin(&stats->tx_syncp);
1072 stats->tx_bytes += bytes;
1073 stats->tx_packets += packets;
1074 u64_stats_update_end(&stats->tx_syncp);
1075}
1076
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001077static void virtnet_poll_cleantx(struct receive_queue *rq)
1078{
1079 struct virtnet_info *vi = rq->vq->vdev->priv;
1080 unsigned int index = vq2rxq(rq->vq);
1081 struct send_queue *sq = &vi->sq[index];
1082 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1083
1084 if (!sq->napi.weight)
1085 return;
1086
1087 if (__netif_tx_trylock(txq)) {
1088 free_old_xmit_skbs(sq);
1089 __netif_tx_unlock(txq);
1090 }
1091
1092 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1093 netif_tx_wake_queue(txq);
1094}
1095
Jason Wang2ffa7592014-07-23 16:33:54 +08001096static int virtnet_poll(struct napi_struct *napi, int budget)
1097{
1098 struct receive_queue *rq =
1099 container_of(napi, struct receive_queue, napi);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001100 unsigned int received;
Jason Wang2ffa7592014-07-23 16:33:54 +08001101
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001102 virtnet_poll_cleantx(rq);
1103
Li RongQingfaadb052015-03-26 15:39:45 +08001104 received = virtnet_receive(rq, budget);
Jason Wang2ffa7592014-07-23 16:33:54 +08001105
Rusty Russell8329d982007-11-19 11:20:43 -05001106 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001107 if (received < budget)
1108 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001109
1110 return received;
1111}
1112
Jason Wang986a4f42012-12-07 07:04:56 +00001113static int virtnet_open(struct net_device *dev)
1114{
1115 struct virtnet_info *vi = netdev_priv(dev);
1116 int i;
1117
Jason Wange4166622013-05-21 20:03:58 +00001118 for (i = 0; i < vi->max_queue_pairs; i++) {
1119 if (i < vi->curr_queue_pairs)
1120 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001121 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001122 schedule_delayed_work(&vi->refill, 0);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001123 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001124 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001125 }
1126
1127 return 0;
1128}
1129
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001130static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1131{
1132 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1133 struct virtnet_info *vi = sq->vq->vdev->priv;
1134 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1135
1136 __netif_tx_lock(txq, raw_smp_processor_id());
1137 free_old_xmit_skbs(sq);
1138 __netif_tx_unlock(txq);
1139
1140 virtqueue_napi_complete(napi, sq->vq, 0);
1141
1142 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1143 netif_tx_wake_queue(txq);
1144
1145 return 0;
1146}
1147
Jason Wange9d74172012-12-07 07:04:55 +00001148static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001149{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001150 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001151 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001152 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001153 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001154 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301155 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001156
Johannes Berge1749612008-10-27 15:59:26 -07001157 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301158
1159 can_push = vi->any_header_sg &&
1160 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1161 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1162 /* Even if we can, don't push here yet as this would skew
1163 * csum_start offset below. */
1164 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001165 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301166 else
1167 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001168
Mike Rapoporte858fae2016-06-08 16:09:21 +03001169 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Jason Wang6391a442017-01-20 14:32:42 +08001170 virtio_is_little_endian(vi->vdev), false))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001171 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001172
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001173 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001174 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001175
Jason Wang547c8902015-08-27 14:53:06 +08001176 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301177 if (can_push) {
1178 __skb_push(skb, hdr_len);
1179 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001180 if (unlikely(num_sg < 0))
1181 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301182 /* Pull header back to avoid skew in tx bytes calculations. */
1183 __skb_pull(skb, hdr_len);
1184 } else {
1185 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001186 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1187 if (unlikely(num_sg < 0))
1188 return num_sg;
1189 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301190 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301191 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001192}
1193
Stephen Hemminger424efe92009-08-31 19:50:51 +00001194static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001195{
1196 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001197 int qnum = skb_get_queue_mapping(skb);
1198 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301199 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001200 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1201 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001202 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001203
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001204 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001205 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001206
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001207 if (use_napi && kick)
1208 virtqueue_enable_cb_delayed(sq->vq);
1209
Jacob Keller074c3582014-06-25 02:37:13 +00001210 /* timestamp packet in software */
1211 skb_tx_timestamp(skb);
1212
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001213 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001214 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001215
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301216 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001217 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301218 dev->stats.tx_fifo_errors++;
1219 if (net_ratelimit())
1220 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001221 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001222 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001223 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001224 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001225 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001226
Rusty Russell48925e32009-09-24 09:59:20 -06001227 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001228 if (!use_napi) {
1229 skb_orphan(skb);
1230 nf_reset(skb);
1231 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001232
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001233 /* If running out of space, stop queue to avoid getting packets that we
1234 * are then unable to transmit.
1235 * An alternative would be to force queuing layer to requeue the skb by
1236 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1237 * returned in a normal path of operation: it means that driver is not
1238 * maintaining the TX queue stop/start state properly, and causes
1239 * the stack to do a non-trivial amount of useless work.
1240 * Since most packets only take 1 or 2 ring slots, stopping the queue
1241 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001242 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001243 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001244 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001245 if (!use_napi &&
1246 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001247 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001248 free_old_xmit_skbs(sq);
1249 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001250 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001251 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001252 }
1253 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001254 }
Rusty Russell48925e32009-09-24 09:59:20 -06001255
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001256 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001257 virtqueue_kick(sq->vq);
1258
Rusty Russell48925e32009-09-24 09:59:20 -06001259 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001260}
1261
Amos Kong40cbfc32013-01-21 01:17:21 +00001262/*
1263 * Send command via the control virtqueue and check status. Commands
1264 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001265 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001266 */
1267static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001268 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001269{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301270 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001271 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001272
1273 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301274 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001275
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001276 vi->ctrl_status = ~0;
1277 vi->ctrl_hdr.class = class;
1278 vi->ctrl_hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301279 /* Add header */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001280 sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301281 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001282
Rusty Russellf7bc9592013-03-20 15:44:28 +10301283 if (out)
1284 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001285
Rusty Russellf7bc9592013-03-20 15:44:28 +10301286 /* Add return status. */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001287 sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001288 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001289
stephen hemmingerd24bae32013-12-09 16:17:40 -08001290 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301291 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001292
Heinz Graalfs67975902013-10-29 09:40:02 +10301293 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001294 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001295
1296 /* Spin for a response, the kick causes an ioport write, trapping
1297 * into the hypervisor, so the request should be handled immediately.
1298 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301299 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1300 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001301 cpu_relax();
1302
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001303 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001304}
1305
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001306static int virtnet_set_mac_address(struct net_device *dev, void *p)
1307{
1308 struct virtnet_info *vi = netdev_priv(dev);
1309 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001310 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001311 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001312 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001313
Shyam Saini801822d2016-12-24 00:44:58 +05301314 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001315 if (!addr)
1316 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001317
1318 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001319 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001320 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001321
Amos Kong7e58d5a2013-01-21 01:17:23 +00001322 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1323 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1324 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001325 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001326 dev_warn(&vdev->dev,
1327 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001328 ret = -EINVAL;
1329 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001330 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001331 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1332 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301333 unsigned int i;
1334
1335 /* Naturally, this has an atomicity problem. */
1336 for (i = 0; i < dev->addr_len; i++)
1337 virtio_cwrite8(vdev,
1338 offsetof(struct virtio_net_config, mac) +
1339 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001340 }
1341
1342 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001343 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001344
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001345out:
1346 kfree(addr);
1347 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001348}
1349
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001350static void virtnet_stats(struct net_device *dev,
1351 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001352{
1353 struct virtnet_info *vi = netdev_priv(dev);
1354 int cpu;
1355 unsigned int start;
1356
1357 for_each_possible_cpu(cpu) {
Eric Dumazet58472a72012-02-13 06:53:41 +00001358 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001359 u64 tpackets, tbytes, rpackets, rbytes;
1360
1361 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001362 start = u64_stats_fetch_begin_irq(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001363 tpackets = stats->tx_packets;
1364 tbytes = stats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001365 } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001366
1367 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001368 start = u64_stats_fetch_begin_irq(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001369 rpackets = stats->rx_packets;
1370 rbytes = stats->rx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001371 } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001372
1373 tot->rx_packets += rpackets;
1374 tot->tx_packets += tpackets;
1375 tot->rx_bytes += rbytes;
1376 tot->tx_bytes += tbytes;
1377 }
1378
1379 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001380 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001381 tot->rx_dropped = dev->stats.rx_dropped;
1382 tot->rx_length_errors = dev->stats.rx_length_errors;
1383 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001384}
1385
Amit Shahda74e892008-02-29 16:24:50 +05301386#ifdef CONFIG_NET_POLL_CONTROLLER
1387static void virtnet_netpoll(struct net_device *dev)
1388{
1389 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001390 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301391
Jason Wang986a4f42012-12-07 07:04:56 +00001392 for (i = 0; i < vi->curr_queue_pairs; i++)
1393 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301394}
1395#endif
1396
Jason Wang586d17c2012-04-11 20:43:52 +00001397static void virtnet_ack_link_announce(struct virtnet_info *vi)
1398{
1399 rtnl_lock();
1400 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001401 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001402 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1403 rtnl_unlock();
1404}
1405
John Fastabend473153292017-02-02 19:14:32 -08001406static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001407{
1408 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001409 struct net_device *dev = vi->dev;
1410
1411 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1412 return 0;
1413
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001414 vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1415 sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001416
1417 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001418 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001419 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1420 queue_pairs);
1421 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301422 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001423 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001424 /* virtnet_open() will refill when device is going to up. */
1425 if (dev->flags & IFF_UP)
1426 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301427 }
Jason Wang986a4f42012-12-07 07:04:56 +00001428
1429 return 0;
1430}
1431
John Fastabend473153292017-02-02 19:14:32 -08001432static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1433{
1434 int err;
1435
1436 rtnl_lock();
1437 err = _virtnet_set_queues(vi, queue_pairs);
1438 rtnl_unlock();
1439 return err;
1440}
1441
Rusty Russell296f96f2007-10-22 11:03:37 +10001442static int virtnet_close(struct net_device *dev)
1443{
1444 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001445 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001446
Rusty Russellb2baed62011-12-29 00:42:38 +00001447 /* Make sure refill_work doesn't re-enable napi! */
1448 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001449
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001450 for (i = 0; i < vi->max_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001451 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001452 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001453 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001454
Rusty Russell296f96f2007-10-22 11:03:37 +10001455 return 0;
1456}
1457
Alex Williamson2af76982009-02-04 09:02:40 +00001458static void virtnet_set_rx_mode(struct net_device *dev)
1459{
1460 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001461 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001462 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001463 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001464 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001465 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001466 void *buf;
1467 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001468
stephen hemminger788a8b62013-12-09 16:18:45 -08001469 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001470 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1471 return;
1472
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001473 vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0);
1474 vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001475
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001476 sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001477
1478 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001479 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001480 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001481 vi->ctrl_promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001482
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001483 sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001484
1485 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001486 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001487 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001488 vi->ctrl_allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001489
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001490 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001491 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001492 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001493 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1494 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1495 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001496 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001497 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001498
Alex Williamson23e258e2009-05-01 17:27:56 +00001499 sg_init_table(sg, 2);
1500
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001501 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001502 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001503 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001504 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001505 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001506
1507 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001508 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001509
1510 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001511 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001512
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001513 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001514 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001515 netdev_for_each_mc_addr(ha, dev)
1516 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001517
1518 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001519 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001520
1521 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001522 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001523 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001524
1525 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001526}
1527
Patrick McHardy80d5c362013-04-19 02:04:28 +00001528static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1529 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001530{
1531 struct virtnet_info *vi = netdev_priv(dev);
1532 struct scatterlist sg;
1533
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001534 vi->ctrl_vid = vid;
1535 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001536
1537 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001538 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001539 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001540 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001541}
1542
Patrick McHardy80d5c362013-04-19 02:04:28 +00001543static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1544 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001545{
1546 struct virtnet_info *vi = netdev_priv(dev);
1547 struct scatterlist sg;
1548
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001549 vi->ctrl_vid = vid;
1550 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001551
1552 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001553 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001554 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001555 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001556}
1557
Wanlong Gao8898c212013-01-24 23:51:30 +00001558static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001559{
1560 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001561
1562 if (vi->affinity_hint_set) {
1563 for (i = 0; i < vi->max_queue_pairs; i++) {
1564 virtqueue_set_affinity(vi->rq[i].vq, -1);
1565 virtqueue_set_affinity(vi->sq[i].vq, -1);
1566 }
1567
1568 vi->affinity_hint_set = false;
1569 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001570}
1571
1572static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001573{
1574 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001575 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001576
1577 /* In multiqueue mode, when the number of cpu is equal to the number of
1578 * queue pairs, we let the queue pairs to be private to one cpu by
1579 * setting the affinity hint to eliminate the contention.
1580 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001581 if (vi->curr_queue_pairs == 1 ||
1582 vi->max_queue_pairs != num_online_cpus()) {
1583 virtnet_clean_affinity(vi, -1);
1584 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001585 }
1586
Wanlong Gao8898c212013-01-24 23:51:30 +00001587 i = 0;
1588 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001589 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1590 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001591 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001592 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001593 }
1594
Wanlong Gao8898c212013-01-24 23:51:30 +00001595 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001596}
1597
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001598static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001599{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001600 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1601 node);
1602 virtnet_set_affinity(vi);
1603 return 0;
1604}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001605
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001606static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1607{
1608 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1609 node_dead);
1610 virtnet_set_affinity(vi);
1611 return 0;
1612}
Jason Wang3ab098d2013-10-15 11:18:58 +08001613
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001614static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1615{
1616 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1617 node);
1618
1619 virtnet_clean_affinity(vi, cpu);
1620 return 0;
1621}
1622
1623static enum cpuhp_state virtionet_online;
1624
1625static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1626{
1627 int ret;
1628
1629 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1630 if (ret)
1631 return ret;
1632 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1633 &vi->node_dead);
1634 if (!ret)
1635 return ret;
1636 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1637 return ret;
1638}
1639
1640static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1641{
1642 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1643 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1644 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001645}
1646
Rick Jones8f9f4662011-10-19 08:10:59 +00001647static void virtnet_get_ringparam(struct net_device *dev,
1648 struct ethtool_ringparam *ring)
1649{
1650 struct virtnet_info *vi = netdev_priv(dev);
1651
Jason Wang986a4f42012-12-07 07:04:56 +00001652 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1653 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001654 ring->rx_pending = ring->rx_max_pending;
1655 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001656}
1657
Rick Jones66846042011-11-14 14:17:08 +00001658
1659static void virtnet_get_drvinfo(struct net_device *dev,
1660 struct ethtool_drvinfo *info)
1661{
1662 struct virtnet_info *vi = netdev_priv(dev);
1663 struct virtio_device *vdev = vi->vdev;
1664
1665 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1666 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1667 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1668
1669}
1670
Jason Wangd73bcd22012-12-07 07:04:57 +00001671/* TODO: Eliminate OOO packets during switching */
1672static int virtnet_set_channels(struct net_device *dev,
1673 struct ethtool_channels *channels)
1674{
1675 struct virtnet_info *vi = netdev_priv(dev);
1676 u16 queue_pairs = channels->combined_count;
1677 int err;
1678
1679 /* We don't support separate rx/tx channels.
1680 * We don't allow setting 'other' channels.
1681 */
1682 if (channels->rx_count || channels->tx_count || channels->other_count)
1683 return -EINVAL;
1684
Amos Kongc18e9cd2014-04-18 13:45:41 +08001685 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001686 return -EINVAL;
1687
John Fastabendf600b692016-12-15 12:13:24 -08001688 /* For now we don't support modifying channels while XDP is loaded
1689 * also when XDP is loaded all RX queues have XDP programs so we only
1690 * need to check a single RX queue.
1691 */
1692 if (vi->rq[0].xdp_prog)
1693 return -EINVAL;
1694
Wanlong Gao47be2472013-01-24 23:51:29 +00001695 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08001696 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00001697 if (!err) {
1698 netif_set_real_num_tx_queues(dev, queue_pairs);
1699 netif_set_real_num_rx_queues(dev, queue_pairs);
1700
Wanlong Gao8898c212013-01-24 23:51:30 +00001701 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001702 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001703 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001704
1705 return err;
1706}
1707
1708static void virtnet_get_channels(struct net_device *dev,
1709 struct ethtool_channels *channels)
1710{
1711 struct virtnet_info *vi = netdev_priv(dev);
1712
1713 channels->combined_count = vi->curr_queue_pairs;
1714 channels->max_combined = vi->max_queue_pairs;
1715 channels->max_other = 0;
1716 channels->rx_count = 0;
1717 channels->tx_count = 0;
1718 channels->other_count = 0;
1719}
1720
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001721/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001722static bool
1723virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001724{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001725 struct ethtool_link_ksettings diff1 = *cmd;
1726 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001727
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001728 /* cmd is always set so we need to clear it, validate the port type
1729 * and also without autonegotiation we can ignore advertising
1730 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001731 diff1.base.speed = 0;
1732 diff2.base.port = PORT_OTHER;
1733 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
1734 diff1.base.duplex = 0;
1735 diff1.base.cmd = 0;
1736 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001737
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001738 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
1739 bitmap_empty(diff1.link_modes.supported,
1740 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1741 bitmap_empty(diff1.link_modes.advertising,
1742 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1743 bitmap_empty(diff1.link_modes.lp_advertising,
1744 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001745}
1746
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001747static int virtnet_set_link_ksettings(struct net_device *dev,
1748 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001749{
1750 struct virtnet_info *vi = netdev_priv(dev);
1751 u32 speed;
1752
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001753 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001754 /* don't allow custom speed and duplex */
1755 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001756 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001757 !virtnet_validate_ethtool_cmd(cmd))
1758 return -EINVAL;
1759 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001760 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001761
1762 return 0;
1763}
1764
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001765static int virtnet_get_link_ksettings(struct net_device *dev,
1766 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001767{
1768 struct virtnet_info *vi = netdev_priv(dev);
1769
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001770 cmd->base.speed = vi->speed;
1771 cmd->base.duplex = vi->duplex;
1772 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001773
1774 return 0;
1775}
1776
1777static void virtnet_init_settings(struct net_device *dev)
1778{
1779 struct virtnet_info *vi = netdev_priv(dev);
1780
1781 vi->speed = SPEED_UNKNOWN;
1782 vi->duplex = DUPLEX_UNKNOWN;
1783}
1784
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001785static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00001786 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001787 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00001788 .get_ringparam = virtnet_get_ringparam,
Jason Wangd73bcd22012-12-07 07:04:57 +00001789 .set_channels = virtnet_set_channels,
1790 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00001791 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001792 .get_link_ksettings = virtnet_get_link_ksettings,
1793 .set_link_ksettings = virtnet_set_link_ksettings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001794};
1795
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001796static void virtnet_freeze_down(struct virtio_device *vdev)
1797{
1798 struct virtnet_info *vi = vdev->priv;
1799 int i;
1800
1801 /* Make sure no work handler is accessing the device */
1802 flush_work(&vi->config_work);
1803
1804 netif_device_detach(vi->dev);
1805 cancel_delayed_work_sync(&vi->refill);
1806
1807 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001808 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001809 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001810 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001811 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001812 }
1813}
1814
1815static int init_vqs(struct virtnet_info *vi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08001816static void _remove_vq_common(struct virtnet_info *vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001817
1818static int virtnet_restore_up(struct virtio_device *vdev)
1819{
1820 struct virtnet_info *vi = vdev->priv;
1821 int err, i;
1822
1823 err = init_vqs(vi);
1824 if (err)
1825 return err;
1826
1827 virtio_device_ready(vdev);
1828
1829 if (netif_running(vi->dev)) {
1830 for (i = 0; i < vi->curr_queue_pairs; i++)
1831 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
1832 schedule_delayed_work(&vi->refill, 0);
1833
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001834 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04001835 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001836 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
1837 &vi->sq[i].napi);
1838 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001839 }
1840
1841 netif_device_attach(vi->dev);
1842 return err;
1843}
1844
Jason Wang017b29c2017-02-20 11:50:20 +08001845static int virtnet_reset(struct virtnet_info *vi, int curr_qp, int xdp_qp)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001846{
1847 struct virtio_device *dev = vi->vdev;
1848 int ret;
1849
1850 virtio_config_disable(dev);
1851 dev->failed = dev->config->get_status(dev) & VIRTIO_CONFIG_S_FAILED;
1852 virtnet_freeze_down(dev);
1853 _remove_vq_common(vi);
1854
John Fastabend2de2f7f2017-02-02 19:16:29 -08001855 virtio_add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE);
1856 virtio_add_status(dev, VIRTIO_CONFIG_S_DRIVER);
1857
1858 ret = virtio_finalize_features(dev);
1859 if (ret)
1860 goto err;
1861
Jason Wang017b29c2017-02-20 11:50:20 +08001862 vi->xdp_queue_pairs = xdp_qp;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001863 ret = virtnet_restore_up(dev);
1864 if (ret)
1865 goto err;
Jason Wang017b29c2017-02-20 11:50:20 +08001866 ret = _virtnet_set_queues(vi, curr_qp);
John Fastabend2de2f7f2017-02-02 19:16:29 -08001867 if (ret)
1868 goto err;
1869
1870 virtio_add_status(dev, VIRTIO_CONFIG_S_DRIVER_OK);
1871 virtio_config_enable(dev);
1872 return 0;
1873err:
1874 virtio_add_status(dev, VIRTIO_CONFIG_S_FAILED);
1875 return ret;
1876}
1877
Jakub Kicinski9861ce02017-04-30 21:46:48 -07001878static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1879 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08001880{
1881 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
1882 struct virtnet_info *vi = netdev_priv(dev);
1883 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08001884 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08001885 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08001886
1887 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
Jason Wang92502fe2016-12-23 22:37:30 +08001888 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
1889 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
1890 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO)) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02001891 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 -08001892 return -EOPNOTSUPP;
1893 }
1894
1895 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02001896 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08001897 return -EINVAL;
1898 }
1899
1900 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02001901 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08001902 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
1903 return -EINVAL;
1904 }
1905
John Fastabend672aafd2016-12-15 12:13:49 -08001906 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
1907 if (prog)
1908 xdp_qp = nr_cpu_ids;
1909
1910 /* XDP requires extra queues for XDP_TX */
1911 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02001912 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08001913 netdev_warn(dev, "request %i queues but max is %i\n",
1914 curr_qp + xdp_qp, vi->max_queue_pairs);
1915 return -ENOMEM;
1916 }
1917
John Fastabend2de2f7f2017-02-02 19:16:29 -08001918 if (prog) {
1919 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
1920 if (IS_ERR(prog))
1921 return PTR_ERR(prog);
1922 }
1923
John Fastabend2de2f7f2017-02-02 19:16:29 -08001924 /* Changing the headroom in buffers is a disruptive operation because
1925 * existing buffers must be flushed and reallocated. This will happen
1926 * when a xdp program is initially added or xdp is disabled by removing
1927 * the xdp program resulting in number of XDP queues changing.
1928 */
1929 if (vi->xdp_queue_pairs != xdp_qp) {
Jason Wang017b29c2017-02-20 11:50:20 +08001930 err = virtnet_reset(vi, curr_qp + xdp_qp, xdp_qp);
1931 if (err) {
1932 dev_warn(&dev->dev, "XDP reset failure.\n");
John Fastabend2de2f7f2017-02-02 19:16:29 -08001933 goto virtio_reset_err;
Jason Wang017b29c2017-02-20 11:50:20 +08001934 }
John Fastabendf600b692016-12-15 12:13:24 -08001935 }
1936
John Fastabend672aafd2016-12-15 12:13:49 -08001937 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
1938
John Fastabendf600b692016-12-15 12:13:24 -08001939 for (i = 0; i < vi->max_queue_pairs; i++) {
1940 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1941 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
1942 if (old_prog)
1943 bpf_prog_put(old_prog);
1944 }
1945
1946 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001947
1948virtio_reset_err:
1949 /* On reset error do our best to unwind XDP changes inflight and return
1950 * error up to user space for resolution. The underlying reset hung on
1951 * us so not much we can do here.
1952 */
John Fastabend2de2f7f2017-02-02 19:16:29 -08001953 if (prog)
1954 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
1955 return err;
John Fastabendf600b692016-12-15 12:13:24 -08001956}
1957
1958static bool virtnet_xdp_query(struct net_device *dev)
1959{
1960 struct virtnet_info *vi = netdev_priv(dev);
1961 int i;
1962
1963 for (i = 0; i < vi->max_queue_pairs; i++) {
1964 if (vi->rq[i].xdp_prog)
1965 return true;
1966 }
1967 return false;
1968}
1969
1970static int virtnet_xdp(struct net_device *dev, struct netdev_xdp *xdp)
1971{
1972 switch (xdp->command) {
1973 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07001974 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08001975 case XDP_QUERY_PROG:
1976 xdp->prog_attached = virtnet_xdp_query(dev);
1977 return 0;
1978 default:
1979 return -EINVAL;
1980 }
1981}
1982
Stephen Hemminger76288b42009-01-06 10:44:22 -08001983static const struct net_device_ops virtnet_netdev = {
1984 .ndo_open = virtnet_open,
1985 .ndo_stop = virtnet_close,
1986 .ndo_start_xmit = start_xmit,
1987 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001988 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00001989 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001990 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00001991 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
1992 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001993#ifdef CONFIG_NET_POLL_CONTROLLER
1994 .ndo_poll_controller = virtnet_netpoll,
1995#endif
John Fastabendf600b692016-12-15 12:13:24 -08001996 .ndo_xdp = virtnet_xdp,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04001997 .ndo_features_check = passthru_features_check,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001998};
1999
Jason Wang586d17c2012-04-11 20:43:52 +00002000static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002001{
Jason Wang586d17c2012-04-11 20:43:52 +00002002 struct virtnet_info *vi =
2003 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002004 u16 v;
2005
Rusty Russell855e0c52013-10-14 18:11:51 +10302006 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2007 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302008 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002009
2010 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002011 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002012 virtnet_ack_link_announce(vi);
2013 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002014
2015 /* Ignore unknown (future) status bits */
2016 v &= VIRTIO_NET_S_LINK_UP;
2017
2018 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302019 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002020
2021 vi->status = v;
2022
2023 if (vi->status & VIRTIO_NET_S_LINK_UP) {
2024 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002025 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002026 } else {
2027 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002028 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002029 }
2030}
2031
2032static void virtnet_config_changed(struct virtio_device *vdev)
2033{
2034 struct virtnet_info *vi = vdev->priv;
2035
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002036 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002037}
2038
Jason Wang986a4f42012-12-07 07:04:56 +00002039static void virtnet_free_queues(struct virtnet_info *vi)
2040{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002041 int i;
2042
Jason Wangab3971b2015-03-12 13:57:44 +08002043 for (i = 0; i < vi->max_queue_pairs; i++) {
2044 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002045 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002046 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002047 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002048
Eric Dumazet963abe52016-11-15 22:24:12 -08002049 /* We called napi_hash_del() before netif_napi_del(),
2050 * we need to respect an RCU grace period before freeing vi->rq
2051 */
2052 synchronize_net();
2053
Jason Wang986a4f42012-12-07 07:04:56 +00002054 kfree(vi->rq);
2055 kfree(vi->sq);
2056}
2057
John Fastabend473153292017-02-02 19:14:32 -08002058static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002059{
John Fastabendf600b692016-12-15 12:13:24 -08002060 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002061 int i;
2062
2063 for (i = 0; i < vi->max_queue_pairs; i++) {
2064 while (vi->rq[i].pages)
2065 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002066
2067 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2068 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2069 if (old_prog)
2070 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002071 }
John Fastabend473153292017-02-02 19:14:32 -08002072}
2073
2074static void free_receive_bufs(struct virtnet_info *vi)
2075{
2076 rtnl_lock();
2077 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002078 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002079}
2080
Michael Daltonfb518792014-01-16 22:23:26 -08002081static void free_receive_page_frags(struct virtnet_info *vi)
2082{
2083 int i;
2084 for (i = 0; i < vi->max_queue_pairs; i++)
2085 if (vi->rq[i].alloc_frag.page)
2086 put_page(vi->rq[i].alloc_frag.page);
2087}
2088
John Fastabendb68df012017-01-25 18:22:48 -08002089static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002090{
2091 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2092 return false;
2093 else if (q < vi->curr_queue_pairs)
2094 return true;
2095 else
2096 return false;
2097}
2098
Jason Wang986a4f42012-12-07 07:04:56 +00002099static void free_unused_bufs(struct virtnet_info *vi)
2100{
2101 void *buf;
2102 int i;
2103
2104 for (i = 0; i < vi->max_queue_pairs; i++) {
2105 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002106 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002107 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002108 dev_kfree_skb(buf);
2109 else
2110 put_page(virt_to_head_page(buf));
2111 }
Jason Wang986a4f42012-12-07 07:04:56 +00002112 }
2113
2114 for (i = 0; i < vi->max_queue_pairs; i++) {
2115 struct virtqueue *vq = vi->rq[i].vq;
2116
2117 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002118 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002119 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002120 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002121 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002122 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002123 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002124 }
Jason Wang986a4f42012-12-07 07:04:56 +00002125 }
Jason Wang986a4f42012-12-07 07:04:56 +00002126 }
2127}
2128
Jason Wange9d74172012-12-07 07:04:55 +00002129static void virtnet_del_vqs(struct virtnet_info *vi)
2130{
2131 struct virtio_device *vdev = vi->vdev;
2132
Wanlong Gao8898c212013-01-24 23:51:30 +00002133 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002134
Jason Wange9d74172012-12-07 07:04:55 +00002135 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002136
2137 virtnet_free_queues(vi);
2138}
2139
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002140/* How large should a single buffer be so a queue full of these can fit at
2141 * least one full packet?
2142 * Logic below assumes the mergeable buffer header is used.
2143 */
2144static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2145{
2146 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2147 unsigned int rq_size = virtqueue_get_vring_size(vq);
2148 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2149 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2150 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2151
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002152 return max(max(min_buf_len, hdr_len) - hdr_len,
2153 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002154}
2155
Jason Wang986a4f42012-12-07 07:04:56 +00002156static int virtnet_find_vqs(struct virtnet_info *vi)
2157{
2158 vq_callback_t **callbacks;
2159 struct virtqueue **vqs;
2160 int ret = -ENOMEM;
2161 int i, total_vqs;
2162 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002163 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002164
2165 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2166 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2167 * possible control vq.
2168 */
2169 total_vqs = vi->max_queue_pairs * 2 +
2170 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2171
2172 /* Allocate space for find_vqs parameters */
2173 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
2174 if (!vqs)
2175 goto err_vq;
2176 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
2177 if (!callbacks)
2178 goto err_callback;
2179 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
2180 if (!names)
2181 goto err_names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002182 if (vi->mergeable_rx_bufs) {
2183 ctx = kzalloc(total_vqs * sizeof(*ctx), GFP_KERNEL);
2184 if (!ctx)
2185 goto err_ctx;
2186 } else {
2187 ctx = NULL;
2188 }
Jason Wang986a4f42012-12-07 07:04:56 +00002189
2190 /* Parameters for control virtqueue, if any */
2191 if (vi->has_cvq) {
2192 callbacks[total_vqs - 1] = NULL;
2193 names[total_vqs - 1] = "control";
2194 }
2195
2196 /* Allocate/initialize parameters for send/receive virtqueues */
2197 for (i = 0; i < vi->max_queue_pairs; i++) {
2198 callbacks[rxq2vq(i)] = skb_recv_done;
2199 callbacks[txq2vq(i)] = skb_xmit_done;
2200 sprintf(vi->rq[i].name, "input.%d", i);
2201 sprintf(vi->sq[i].name, "output.%d", i);
2202 names[rxq2vq(i)] = vi->rq[i].name;
2203 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002204 if (ctx)
2205 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002206 }
2207
2208 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002209 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002210 if (ret)
2211 goto err_find;
2212
2213 if (vi->has_cvq) {
2214 vi->cvq = vqs[total_vqs - 1];
2215 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002216 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002217 }
2218
2219 for (i = 0; i < vi->max_queue_pairs; i++) {
2220 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002221 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002222 vi->sq[i].vq = vqs[txq2vq(i)];
2223 }
2224
2225 kfree(names);
2226 kfree(callbacks);
2227 kfree(vqs);
2228
2229 return 0;
2230
2231err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002232 kfree(ctx);
2233err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002234 kfree(names);
2235err_names:
2236 kfree(callbacks);
2237err_callback:
2238 kfree(vqs);
2239err_vq:
2240 return ret;
2241}
2242
2243static int virtnet_alloc_queues(struct virtnet_info *vi)
2244{
2245 int i;
2246
2247 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
2248 if (!vi->sq)
2249 goto err_sq;
2250 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002251 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002252 goto err_rq;
2253
2254 INIT_DELAYED_WORK(&vi->refill, refill_work);
2255 for (i = 0; i < vi->max_queue_pairs; i++) {
2256 vi->rq[i].pages = NULL;
2257 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2258 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002259 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2260 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002261
2262 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002263 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002264 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
2265 }
2266
2267 return 0;
2268
2269err_rq:
2270 kfree(vi->sq);
2271err_sq:
2272 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002273}
2274
Amit Shah3f9c10b2011-12-22 16:58:31 +05302275static int init_vqs(struct virtnet_info *vi)
2276{
Jason Wang986a4f42012-12-07 07:04:56 +00002277 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302278
Jason Wang986a4f42012-12-07 07:04:56 +00002279 /* Allocate send & receive queues */
2280 ret = virtnet_alloc_queues(vi);
2281 if (ret)
2282 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302283
Jason Wang986a4f42012-12-07 07:04:56 +00002284 ret = virtnet_find_vqs(vi);
2285 if (ret)
2286 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302287
Wanlong Gao47be2472013-01-24 23:51:29 +00002288 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002289 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002290 put_online_cpus();
2291
Amit Shah3f9c10b2011-12-22 16:58:31 +05302292 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002293
2294err_free:
2295 virtnet_free_queues(vi);
2296err:
2297 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302298}
2299
Michael Daltonfbf28d72014-01-16 22:23:30 -08002300#ifdef CONFIG_SYSFS
2301static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
2302 struct rx_queue_attribute *attribute, char *buf)
2303{
2304 struct virtnet_info *vi = netdev_priv(queue->dev);
2305 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Johannes Berg5377d7582015-08-19 09:48:40 +02002306 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002307
2308 BUG_ON(queue_index >= vi->max_queue_pairs);
2309 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002310 return sprintf(buf, "%u\n",
2311 get_mergeable_buf_len(&vi->rq[queue_index], avg));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002312}
2313
2314static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2315 __ATTR_RO(mergeable_rx_buffer_size);
2316
2317static struct attribute *virtio_net_mrg_rx_attrs[] = {
2318 &mergeable_rx_buffer_size_attribute.attr,
2319 NULL
2320};
2321
2322static const struct attribute_group virtio_net_mrg_rx_group = {
2323 .name = "virtio_net",
2324 .attrs = virtio_net_mrg_rx_attrs
2325};
2326#endif
2327
Jason Wang892d6eb2014-11-20 17:03:05 +08002328static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2329 unsigned int fbit,
2330 const char *fname, const char *dname)
2331{
2332 if (!virtio_has_feature(vdev, fbit))
2333 return false;
2334
2335 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2336 fname, dname);
2337
2338 return true;
2339}
2340
2341#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2342 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2343
2344static bool virtnet_validate_features(struct virtio_device *vdev)
2345{
2346 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2347 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2348 "VIRTIO_NET_F_CTRL_VQ") ||
2349 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2350 "VIRTIO_NET_F_CTRL_VQ") ||
2351 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2352 "VIRTIO_NET_F_CTRL_VQ") ||
2353 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2354 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2355 "VIRTIO_NET_F_CTRL_VQ"))) {
2356 return false;
2357 }
2358
2359 return true;
2360}
2361
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002362#define MIN_MTU ETH_MIN_MTU
2363#define MAX_MTU ETH_MAX_MTU
2364
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002365static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002366{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002367 if (!vdev->config->get) {
2368 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2369 __func__);
2370 return -EINVAL;
2371 }
2372
Jason Wang892d6eb2014-11-20 17:03:05 +08002373 if (!virtnet_validate_features(vdev))
2374 return -EINVAL;
2375
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002376 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2377 int mtu = virtio_cread16(vdev,
2378 offsetof(struct virtio_net_config,
2379 mtu));
2380 if (mtu < MIN_MTU)
2381 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2382 }
2383
2384 return 0;
2385}
2386
2387static int virtnet_probe(struct virtio_device *vdev)
2388{
2389 int i, err;
2390 struct net_device *dev;
2391 struct virtnet_info *vi;
2392 u16 max_queue_pairs;
2393 int mtu;
2394
Jason Wang986a4f42012-12-07 07:04:56 +00002395 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302396 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2397 struct virtio_net_config,
2398 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002399
2400 /* We need at least 2 queue's */
2401 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2402 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2403 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2404 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002405
2406 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002407 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002408 if (!dev)
2409 return -ENOMEM;
2410
2411 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002412 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002413 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002414 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002415
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002416 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002417 SET_NETDEV_DEV(dev, &vdev->dev);
2418
2419 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002420 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002421 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002422 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002423 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002424 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002425
2426 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002427 dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO
Rusty Russell34a48572008-02-04 23:50:02 -05002428 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2429 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002430 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002431 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2432 dev->hw_features |= NETIF_F_TSO;
2433 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2434 dev->hw_features |= NETIF_F_TSO6;
2435 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2436 dev->hw_features |= NETIF_F_TSO_ECN;
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002437 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
2438 dev->hw_features |= NETIF_F_UFO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002439
Jason Wang41f2f122014-12-24 11:03:52 +08002440 dev->features |= NETIF_F_GSO_ROBUST;
2441
Michał Mirosław98e778c2011-03-31 01:01:35 +00002442 if (gso)
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002443 dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO);
Michał Mirosław98e778c2011-03-31 01:01:35 +00002444 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002445 }
Thomas Huth4f491292013-08-27 17:09:02 +02002446 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2447 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002448
Jason Wang4fda8302013-04-10 23:32:21 +00002449 dev->vlan_features = dev->features;
2450
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002451 /* MTU range: 68 - 65535 */
2452 dev->min_mtu = MIN_MTU;
2453 dev->max_mtu = MAX_MTU;
2454
Rusty Russell296f96f2007-10-22 11:03:37 +10002455 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302456 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2457 virtio_cread_bytes(vdev,
2458 offsetof(struct virtio_net_config, mac),
2459 dev->dev_addr, dev->addr_len);
2460 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002461 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002462
2463 /* Set up our device-specific information */
2464 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002465 vi->dev = dev;
2466 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002467 vdev->priv = vi;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002468 vi->stats = alloc_percpu(struct virtnet_stats);
2469 err = -ENOMEM;
2470 if (vi->stats == NULL)
2471 goto free;
2472
John Stultz827da442013-10-07 15:51:58 -07002473 for_each_possible_cpu(i) {
2474 struct virtnet_stats *virtnet_stats;
2475 virtnet_stats = per_cpu_ptr(vi->stats, i);
2476 u64_stats_init(&virtnet_stats->tx_syncp);
2477 u64_stats_init(&virtnet_stats->rx_syncp);
2478 }
2479
Jason Wang586d17c2012-04-11 20:43:52 +00002480 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002481
Herbert Xu97402b92008-04-18 11:24:27 +08002482 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002483 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2484 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002485 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2486 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002487 vi->big_packets = true;
2488
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002489 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2490 vi->mergeable_rx_bufs = true;
2491
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002492 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2493 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002494 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2495 else
2496 vi->hdr_len = sizeof(struct virtio_net_hdr);
2497
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002498 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2499 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302500 vi->any_header_sg = true;
2501
Jason Wang986a4f42012-12-07 07:04:56 +00002502 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2503 vi->has_cvq = true;
2504
Aaron Conole14de9d12016-06-03 16:57:12 -04002505 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2506 mtu = virtio_cread16(vdev,
2507 offsetof(struct virtio_net_config,
2508 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002509 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002510 /* Should never trigger: MTU was previously validated
2511 * in virtnet_validate.
2512 */
2513 dev_err(&vdev->dev, "device MTU appears to have changed "
2514 "it is now %d < %d", mtu, dev->min_mtu);
2515 goto free_stats;
Aaron Conole93a205e2016-10-25 16:12:12 -04002516 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002517
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002518 dev->mtu = mtu;
2519 dev->max_mtu = mtu;
2520
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002521 /* TODO: size buffers correctly in this case. */
2522 if (dev->mtu > ETH_DATA_LEN)
2523 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04002524 }
2525
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002526 if (vi->any_header_sg)
2527 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002528
Jason Wang44900012016-11-25 12:37:26 +08002529 /* Enable multiqueue by default */
2530 if (num_online_cpus() >= max_queue_pairs)
2531 vi->curr_queue_pairs = max_queue_pairs;
2532 else
2533 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002534 vi->max_queue_pairs = max_queue_pairs;
2535
2536 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302537 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002538 if (err)
Jason Wang9bb8ca82013-11-05 18:19:45 +08002539 goto free_stats;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002540
Michael Daltonfbf28d72014-01-16 22:23:30 -08002541#ifdef CONFIG_SYSFS
2542 if (vi->mergeable_rx_bufs)
2543 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2544#endif
Zhi Yong Wu0f13b66b2013-11-18 21:19:27 +08002545 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2546 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002547
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002548 virtnet_init_settings(dev);
2549
Rusty Russell296f96f2007-10-22 11:03:37 +10002550 err = register_netdev(dev);
2551 if (err) {
2552 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002553 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002554 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002555
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302556 virtio_device_ready(vdev);
2557
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002558 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002559 if (err) {
2560 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002561 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002562 }
2563
Jason Wanga2208712016-12-13 14:23:05 +08002564 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08002565
Jason Wang167c25e2010-11-10 14:45:41 +00002566 /* Assume link up if device can't report link status,
2567 otherwise get link status from config. */
2568 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2569 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002570 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002571 } else {
2572 vi->status = VIRTIO_NET_S_LINK_UP;
2573 netif_carrier_on(dev);
2574 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002575
Jason Wang986a4f42012-12-07 07:04:56 +00002576 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2577 dev->name, max_queue_pairs);
2578
Rusty Russell296f96f2007-10-22 11:03:37 +10002579 return 0;
2580
wangyunjianf00e35e2016-05-31 11:52:43 +08002581free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302582 vi->vdev->config->reset(vdev);
2583
Rusty Russellb3369c12008-02-04 23:50:02 -05002584 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002585free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002586 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002587 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002588 virtnet_del_vqs(vi);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002589free_stats:
2590 free_percpu(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10002591free:
2592 free_netdev(dev);
2593 return err;
2594}
2595
John Fastabend2de2f7f2017-02-02 19:16:29 -08002596static void _remove_vq_common(struct virtnet_info *vi)
2597{
2598 vi->vdev->config->reset(vi->vdev);
2599 free_unused_bufs(vi);
2600 _free_receive_bufs(vi);
2601 free_receive_page_frags(vi);
2602 virtnet_del_vqs(vi);
2603}
2604
Amit Shah04486ed2011-12-22 16:58:32 +05302605static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002606{
Amit Shah04486ed2011-12-22 16:58:32 +05302607 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002608
2609 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002610 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002611
Jason Wang986a4f42012-12-07 07:04:56 +00002612 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002613
Michael Daltonfb518792014-01-16 22:23:26 -08002614 free_receive_page_frags(vi);
2615
Jason Wang986a4f42012-12-07 07:04:56 +00002616 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302617}
2618
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002619static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302620{
2621 struct virtnet_info *vi = vdev->priv;
2622
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002623 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002624
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302625 /* Make sure no work handler is accessing the device. */
2626 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002627
Amit Shah04486ed2011-12-22 16:58:32 +05302628 unregister_netdev(vi->dev);
2629
2630 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002631
Krishna Kumar2e66f552011-07-20 03:56:02 +00002632 free_percpu(vi->stats);
Rusty Russell74b25532007-11-19 11:20:42 -05002633 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002634}
2635
Aaron Lu89107002013-09-17 09:25:23 +09302636#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302637static int virtnet_freeze(struct virtio_device *vdev)
2638{
2639 struct virtnet_info *vi = vdev->priv;
2640
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002641 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002642 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302643 remove_vq_common(vi);
2644
2645 return 0;
2646}
2647
2648static int virtnet_restore(struct virtio_device *vdev)
2649{
2650 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002651 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05302652
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002653 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302654 if (err)
2655 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00002656 virtnet_set_queues(vi, vi->curr_queue_pairs);
2657
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002658 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002659 if (err)
2660 return err;
2661
Amit Shah0741bcb2011-12-22 16:58:33 +05302662 return 0;
2663}
2664#endif
2665
Rusty Russell296f96f2007-10-22 11:03:37 +10002666static struct virtio_device_id id_table[] = {
2667 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2668 { 0 },
2669};
2670
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002671#define VIRTNET_FEATURES \
2672 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2673 VIRTIO_NET_F_MAC, \
2674 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2675 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2676 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2677 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2678 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2679 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2680 VIRTIO_NET_F_CTRL_MAC_ADDR, \
2681 VIRTIO_NET_F_MTU
2682
Rusty Russellc45a6812008-05-02 21:50:50 -05002683static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002684 VIRTNET_FEATURES,
2685};
2686
2687static unsigned int features_legacy[] = {
2688 VIRTNET_FEATURES,
2689 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302690 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05002691};
2692
Uwe Kleine-König22402522009-11-05 01:32:44 -08002693static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05002694 .feature_table = features,
2695 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002696 .feature_table_legacy = features_legacy,
2697 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10002698 .driver.name = KBUILD_MODNAME,
2699 .driver.owner = THIS_MODULE,
2700 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002701 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10002702 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002703 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002704 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09302705#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302706 .freeze = virtnet_freeze,
2707 .restore = virtnet_restore,
2708#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10002709};
2710
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002711static __init int virtio_net_driver_init(void)
2712{
2713 int ret;
2714
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002715 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002716 virtnet_cpu_online,
2717 virtnet_cpu_down_prep);
2718 if (ret < 0)
2719 goto out;
2720 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002721 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002722 NULL, virtnet_cpu_dead);
2723 if (ret)
2724 goto err_dead;
2725
2726 ret = register_virtio_driver(&virtio_net_driver);
2727 if (ret)
2728 goto err_virtio;
2729 return 0;
2730err_virtio:
2731 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2732err_dead:
2733 cpuhp_remove_multi_state(virtionet_online);
2734out:
2735 return ret;
2736}
2737module_init(virtio_net_driver_init);
2738
2739static __exit void virtio_net_driver_exit(void)
2740{
2741 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2742 cpuhp_remove_multi_state(virtionet_online);
2743 unregister_virtio_driver(&virtio_net_driver);
2744}
2745module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10002746
2747MODULE_DEVICE_TABLE(virtio, id_table);
2748MODULE_DESCRIPTION("Virtio network driver");
2749MODULE_LICENSE("GPL");