blob: e90de2186ffc34344d626eb6be878a35391c03a5 [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
Jason Wang3f935222017-07-19 16:54:49 +080060const unsigned long guest_offloads[] = { VIRTIO_NET_F_GUEST_TSO4,
61 VIRTIO_NET_F_GUEST_TSO6,
62 VIRTIO_NET_F_GUEST_ECN,
63 VIRTIO_NET_F_GUEST_UFO };
64
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000065struct virtnet_stats {
Eric Dumazet83a27052012-06-05 22:35:24 +000066 struct u64_stats_sync tx_syncp;
67 struct u64_stats_sync rx_syncp;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000068 u64 tx_bytes;
69 u64 tx_packets;
70
71 u64 rx_bytes;
72 u64 rx_packets;
73};
74
Jason Wange9d74172012-12-07 07:04:55 +000075/* Internal representation of a send virtqueue */
76struct send_queue {
77 /* Virtqueue associated with this send _queue */
78 struct virtqueue *vq;
79
80 /* TX: fragments + linear part + virtio header */
81 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +000082
83 /* Name of the send queue: output.$index */
84 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040085
86 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +000087};
88
89/* Internal representation of a receive virtqueue */
90struct receive_queue {
91 /* Virtqueue associated with this receive_queue */
92 struct virtqueue *vq;
93
Rusty Russell296f96f2007-10-22 11:03:37 +100094 struct napi_struct napi;
95
John Fastabendf600b692016-12-15 12:13:24 -080096 struct bpf_prog __rcu *xdp_prog;
97
Jason Wange9d74172012-12-07 07:04:55 +000098 /* Chain pages by the private ptr. */
99 struct page *pages;
100
Michael Daltonab7db912014-01-16 22:23:27 -0800101 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200102 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800103
Michael Daltonfb518792014-01-16 22:23:26 -0800104 /* Page frag for packet buffer allocation. */
105 struct page_frag alloc_frag;
106
Jason Wange9d74172012-12-07 07:04:55 +0000107 /* RX: fragments + linear part + virtio header */
108 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000109
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200110 /* Min single buffer size for mergeable buffers case. */
111 unsigned int min_buf_len;
112
Jason Wang986a4f42012-12-07 07:04:56 +0000113 /* Name of this receive queue: input.$index */
114 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +0000115};
116
117struct virtnet_info {
118 struct virtio_device *vdev;
119 struct virtqueue *cvq;
120 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000121 struct send_queue *sq;
122 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000123 unsigned int status;
124
Jason Wang986a4f42012-12-07 07:04:56 +0000125 /* Max # of queue pairs supported by the device */
126 u16 max_queue_pairs;
127
128 /* # of queue pairs currently used by the driver */
129 u16 curr_queue_pairs;
130
John Fastabend672aafd2016-12-15 12:13:49 -0800131 /* # of XDP queue pairs currently used by the driver */
132 u16 xdp_queue_pairs;
133
Herbert Xu97402b92008-04-18 11:24:27 +0800134 /* I like... big packets and I cannot lie! */
135 bool big_packets;
136
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800137 /* Host will merge rx buffers for big packets (shake it! shake it!) */
138 bool mergeable_rx_bufs;
139
Jason Wang986a4f42012-12-07 07:04:56 +0000140 /* Has control virtqueue */
141 bool has_cvq;
142
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930143 /* Host can handle any s/g split between our header and packet data */
144 bool any_header_sg;
145
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300146 /* Packet virtio header size */
147 u8 hdr_len;
148
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000149 /* Active statistics */
150 struct virtnet_stats __percpu *stats;
151
Rusty Russell3161e452009-08-26 12:22:32 -0700152 /* Work struct for refilling if we run low on memory. */
153 struct delayed_work refill;
154
Jason Wang586d17c2012-04-11 20:43:52 +0000155 /* Work struct for config space updates */
156 struct work_struct config_work;
157
Jason Wang986a4f42012-12-07 07:04:56 +0000158 /* Does the affinity hint is set for virtqueues? */
159 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000160
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200161 /* CPU hotplug instances for online & dead */
162 struct hlist_node node;
163 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200164
165 /* Control VQ buffers: protected by the rtnl lock */
166 struct virtio_net_ctrl_hdr ctrl_hdr;
167 virtio_net_ctrl_ack ctrl_status;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700168 struct virtio_net_ctrl_mq ctrl_mq;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200169 u8 ctrl_promisc;
170 u8 ctrl_allmulti;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700171 u16 ctrl_vid;
Jason Wang3f935222017-07-19 16:54:49 +0800172 u64 ctrl_offloads;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100173
174 /* Ethtool settings */
175 u8 duplex;
176 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800177
178 unsigned long guest_offloads;
Rusty Russell296f96f2007-10-22 11:03:37 +1000179};
180
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000181struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300182 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000183 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300184 * hdr is in a separate sg buffer, and data sg buffer shares same page
185 * with this header sg. This padding makes next sg 16 byte aligned
186 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000187 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300188 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000189};
190
Jason Wang986a4f42012-12-07 07:04:56 +0000191/* Converting between virtqueue no. and kernel tx/rx queue no.
192 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
193 */
194static int vq2txq(struct virtqueue *vq)
195{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000196 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000197}
198
199static int txq2vq(int txq)
200{
201 return txq * 2 + 1;
202}
203
204static int vq2rxq(struct virtqueue *vq)
205{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000206 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000207}
208
209static int rxq2vq(int rxq)
210{
211 return rxq * 2;
212}
213
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300214static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000215{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300216 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000217}
218
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000219/*
220 * private is used to chain pages for big packets, put the whole
221 * most recent used list in the beginning for reuse
222 */
Jason Wange9d74172012-12-07 07:04:55 +0000223static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500224{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000225 struct page *end;
226
Jason Wange9d74172012-12-07 07:04:55 +0000227 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000228 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000229 end->private = (unsigned long)rq->pages;
230 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500231}
232
Jason Wange9d74172012-12-07 07:04:55 +0000233static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500234{
Jason Wange9d74172012-12-07 07:04:55 +0000235 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500236
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000237 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000238 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000239 /* clear private here, it is used to chain pages */
240 p->private = 0;
241 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500242 p = alloc_page(gfp_mask);
243 return p;
244}
245
Willem de Bruijne4e84522017-04-24 13:49:26 -0400246static void virtqueue_napi_schedule(struct napi_struct *napi,
247 struct virtqueue *vq)
248{
249 if (napi_schedule_prep(napi)) {
250 virtqueue_disable_cb(vq);
251 __napi_schedule(napi);
252 }
253}
254
255static void virtqueue_napi_complete(struct napi_struct *napi,
256 struct virtqueue *vq, int processed)
257{
258 int opaque;
259
260 opaque = virtqueue_enable_cb_prepare(vq);
261 if (napi_complete_done(napi, processed) &&
262 unlikely(virtqueue_poll(vq, opaque)))
263 virtqueue_napi_schedule(napi, vq);
264}
265
Jason Wange9d74172012-12-07 07:04:55 +0000266static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000267{
Jason Wange9d74172012-12-07 07:04:55 +0000268 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400269 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000270
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500271 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000272 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000273
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400274 if (napi->weight)
275 virtqueue_napi_schedule(napi, vq);
276 else
277 /* We were probably waiting for more output buffers. */
278 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000279}
280
Jason Wang28b39bc2017-07-19 16:54:46 +0800281#define MRG_CTX_HEADER_SHIFT 22
282static void *mergeable_len_to_ctx(unsigned int truesize,
283 unsigned int headroom)
284{
285 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
286}
287
288static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
289{
290 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
291}
292
293static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
294{
295 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
296}
297
Mike Waychison34646452012-01-04 12:52:32 +0000298/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300299static struct sk_buff *page_to_skb(struct virtnet_info *vi,
300 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700301 struct page *page, unsigned int offset,
302 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000303{
304 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300305 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700306 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000307 char *p;
308
Michael Dalton2613af02013-10-28 15:44:18 -0700309 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000310
311 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100312 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000313 if (unlikely(!skb))
314 return NULL;
315
316 hdr = skb_vnet_hdr(skb);
317
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300318 hdr_len = vi->hdr_len;
319 if (vi->mergeable_rx_bufs)
320 hdr_padded_len = sizeof *hdr;
321 else
Michael Dalton2613af02013-10-28 15:44:18 -0700322 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000323
324 memcpy(hdr, p, hdr_len);
325
326 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700327 offset += hdr_padded_len;
328 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000329
330 copy = len;
331 if (copy > skb_tailroom(skb))
332 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200333 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000334
335 len -= copy;
336 offset += copy;
337
Michael Dalton2613af02013-10-28 15:44:18 -0700338 if (vi->mergeable_rx_bufs) {
339 if (len)
340 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
341 else
342 put_page(page);
343 return skb;
344 }
345
Sasha Levine878d782011-09-28 04:40:54 +0000346 /*
347 * Verify that we can indeed put this data into a skb.
348 * This is here to handle cases when the device erroneously
349 * tries to receive more than is possible. This is usually
350 * the case of a broken device.
351 */
352 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000353 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000354 dev_kfree_skb(skb);
355 return NULL;
356 }
Michael Dalton2613af02013-10-28 15:44:18 -0700357 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000358 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700359 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
360 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
361 frag_size, truesize);
362 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000363 page = (struct page *)page->private;
364 offset = 0;
365 }
366
367 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000368 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000369
370 return skb;
371}
372
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100373static bool virtnet_xdp_xmit(struct virtnet_info *vi,
John Fastabend56434a02016-12-15 12:14:13 -0800374 struct receive_queue *rq,
Jason Wangf6b10202017-02-21 16:46:28 +0800375 struct xdp_buff *xdp)
John Fastabend56434a02016-12-15 12:14:13 -0800376{
John Fastabend56434a02016-12-15 12:14:13 -0800377 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wangf6b10202017-02-21 16:46:28 +0800378 unsigned int len;
John Fastabend722d8282017-02-02 19:15:32 -0800379 struct send_queue *sq;
380 unsigned int qp;
John Fastabend56434a02016-12-15 12:14:13 -0800381 void *xdp_sent;
382 int err;
383
John Fastabend722d8282017-02-02 19:15:32 -0800384 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
385 sq = &vi->sq[qp];
386
John Fastabend56434a02016-12-15 12:14:13 -0800387 /* Free up any pending old buffers before queueing new ones. */
388 while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Jason Wangf6b10202017-02-21 16:46:28 +0800389 struct page *sent_page = virt_to_head_page(xdp_sent);
Jason Wangbb91acc2016-12-23 22:37:32 +0800390
Jason Wangf6b10202017-02-21 16:46:28 +0800391 put_page(sent_page);
John Fastabend56434a02016-12-15 12:14:13 -0800392 }
393
Jason Wangf6b10202017-02-21 16:46:28 +0800394 xdp->data -= vi->hdr_len;
395 /* Zero header and leave csum up to XDP layers */
396 hdr = xdp->data;
397 memset(hdr, 0, vi->hdr_len);
John Fastabend56434a02016-12-15 12:14:13 -0800398
Jason Wangf6b10202017-02-21 16:46:28 +0800399 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800400
Jason Wangf6b10202017-02-21 16:46:28 +0800401 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp->data, GFP_ATOMIC);
John Fastabend56434a02016-12-15 12:14:13 -0800402 if (unlikely(err)) {
Jason Wangf6b10202017-02-21 16:46:28 +0800403 struct page *page = virt_to_head_page(xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800404
Jason Wangf6b10202017-02-21 16:46:28 +0800405 put_page(page);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100406 return false;
John Fastabend56434a02016-12-15 12:14:13 -0800407 }
408
409 virtqueue_kick(sq->vq);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100410 return true;
John Fastabend56434a02016-12-15 12:14:13 -0800411}
412
Jason Wangf6b10202017-02-21 16:46:28 +0800413static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
414{
415 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
416}
417
Jason Wang4941d472017-07-19 16:54:48 +0800418/* We copy the packet for XDP in the following cases:
419 *
420 * 1) Packet is scattered across multiple rx buffers.
421 * 2) Headroom space is insufficient.
422 *
423 * This is inefficient but it's a temporary condition that
424 * we hit right after XDP is enabled and until queue is refilled
425 * with large buffers with sufficient headroom - so it should affect
426 * at most queue size packets.
427 * Afterwards, the conditions to enable
428 * XDP should preclude the underlying device from sending packets
429 * across multiple buffers (num_buf > 1), and we make sure buffers
430 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800431 */
432static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800433 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800434 struct page *p,
435 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800436 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800437 unsigned int *len)
438{
439 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800440
441 if (!page)
442 return NULL;
443
444 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
445 page_off += *len;
446
Jason Wang56a86f82016-12-23 22:37:26 +0800447 while (--*num_buf) {
John Fastabend72979a62016-12-15 12:14:36 -0800448 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800449 void *buf;
450 int off;
451
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200452 buf = virtqueue_get_buf(rq->vq, &buflen);
453 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800454 goto err_buf;
455
John Fastabend72979a62016-12-15 12:14:36 -0800456 p = virt_to_head_page(buf);
457 off = buf - page_address(p);
458
Jason Wang56a86f82016-12-23 22:37:26 +0800459 /* guard against a misconfigured or uncooperative backend that
460 * is sending packet larger than the MTU.
461 */
462 if ((page_off + buflen) > PAGE_SIZE) {
463 put_page(p);
464 goto err_buf;
465 }
466
John Fastabend72979a62016-12-15 12:14:36 -0800467 memcpy(page_address(page) + page_off,
468 page_address(p) + off, buflen);
469 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800470 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800471 }
472
John Fastabend2de2f7f2017-02-02 19:16:29 -0800473 /* Headroom does not contribute to packet length */
474 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800475 return page;
476err_buf:
477 __free_pages(page, 0);
478 return NULL;
479}
480
Jason Wang4941d472017-07-19 16:54:48 +0800481static struct sk_buff *receive_small(struct net_device *dev,
482 struct virtnet_info *vi,
483 struct receive_queue *rq,
484 void *buf, void *ctx,
485 unsigned int len)
486{
487 struct sk_buff *skb;
488 struct bpf_prog *xdp_prog;
489 unsigned int xdp_headroom = (unsigned long)ctx;
490 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
491 unsigned int headroom = vi->hdr_len + header_offset;
492 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
493 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
494 struct page *page = virt_to_head_page(buf);
495 unsigned int delta = 0;
496 struct page *xdp_page;
497 len -= vi->hdr_len;
498
499 rcu_read_lock();
500 xdp_prog = rcu_dereference(rq->xdp_prog);
501 if (xdp_prog) {
502 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
503 struct xdp_buff xdp;
504 void *orig_data;
505 u32 act;
506
507 if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags))
508 goto err_xdp;
509
510 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
511 int offset = buf - page_address(page) + header_offset;
512 unsigned int tlen = len + vi->hdr_len;
513 u16 num_buf = 1;
514
515 xdp_headroom = virtnet_get_headroom(vi);
516 header_offset = VIRTNET_RX_PAD + xdp_headroom;
517 headroom = vi->hdr_len + header_offset;
518 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
519 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
520 xdp_page = xdp_linearize_page(rq, &num_buf, page,
521 offset, header_offset,
522 &tlen);
523 if (!xdp_page)
524 goto err_xdp;
525
526 buf = page_address(xdp_page);
527 put_page(page);
528 page = xdp_page;
529 }
530
531 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
532 xdp.data = xdp.data_hard_start + xdp_headroom;
533 xdp.data_end = xdp.data + len;
534 orig_data = xdp.data;
535 act = bpf_prog_run_xdp(xdp_prog, &xdp);
536
537 switch (act) {
538 case XDP_PASS:
539 /* Recalculate length in case bpf program changed it */
540 delta = orig_data - xdp.data;
541 break;
542 case XDP_TX:
543 if (unlikely(!virtnet_xdp_xmit(vi, rq, &xdp)))
544 trace_xdp_exception(vi->dev, xdp_prog, act);
545 rcu_read_unlock();
546 goto xdp_xmit;
547 default:
548 bpf_warn_invalid_xdp_action(act);
549 case XDP_ABORTED:
550 trace_xdp_exception(vi->dev, xdp_prog, act);
551 case XDP_DROP:
552 goto err_xdp;
553 }
554 }
555 rcu_read_unlock();
556
557 skb = build_skb(buf, buflen);
558 if (!skb) {
559 put_page(page);
560 goto err;
561 }
562 skb_reserve(skb, headroom - delta);
563 skb_put(skb, len + delta);
564 if (!delta) {
565 buf += header_offset;
566 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
567 } /* keep zeroed vnet hdr since packet was changed by bpf */
568
569err:
570 return skb;
571
572err_xdp:
573 rcu_read_unlock();
574 dev->stats.rx_dropped++;
575 put_page(page);
576xdp_xmit:
577 return NULL;
578}
579
580static struct sk_buff *receive_big(struct net_device *dev,
581 struct virtnet_info *vi,
582 struct receive_queue *rq,
583 void *buf,
584 unsigned int len)
585{
586 struct page *page = buf;
587 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
588
589 if (unlikely(!skb))
590 goto err;
591
592 return skb;
593
594err:
595 dev->stats.rx_dropped++;
596 give_pages(rq, page);
597 return NULL;
598}
599
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200600static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200601 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200602 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200603 void *buf,
604 void *ctx,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200605 unsigned int len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000606{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300607 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
608 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200609 struct page *page = virt_to_head_page(buf);
610 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800611 struct sk_buff *head_skb, *curr_skb;
612 struct bpf_prog *xdp_prog;
613 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800614 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Michael Daltonab7db912014-01-16 22:23:27 -0800615
John Fastabend56434a02016-12-15 12:14:13 -0800616 head_skb = NULL;
617
John Fastabendf600b692016-12-15 12:13:24 -0800618 rcu_read_lock();
619 xdp_prog = rcu_dereference(rq->xdp_prog);
620 if (xdp_prog) {
John Fastabend72979a62016-12-15 12:14:36 -0800621 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800622 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800623 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800624 u32 act;
625
Jason Wang73b62bd2016-12-23 22:37:24 +0800626 /* This happens when rx buffer size is underestimated */
Jason Wang4941d472017-07-19 16:54:48 +0800627 if (unlikely(num_buf > 1 ||
628 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800629 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800630 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800631 page, offset,
632 VIRTIO_XDP_HEADROOM,
633 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800634 if (!xdp_page)
635 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800636 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800637 } else {
638 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800639 }
640
641 /* Transient failure which in theory could occur if
642 * in-flight packets from before XDP was enabled reach
643 * the receive path after XDP is loaded. In practice I
644 * was not able to create this condition.
645 */
Jason Wangb00f70b2016-12-23 22:37:28 +0800646 if (unlikely(hdr->hdr.gso_type))
John Fastabendf600b692016-12-15 12:13:24 -0800647 goto err_xdp;
648
John Fastabend2de2f7f2017-02-02 19:16:29 -0800649 /* Allow consuming headroom but reserve enough space to push
650 * the descriptor on if we get an XDP_TX return code.
651 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800652 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800653 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800654 xdp.data = data + vi->hdr_len;
655 xdp.data_end = xdp.data + (len - vi->hdr_len);
656 act = bpf_prog_run_xdp(xdp_prog, &xdp);
657
John Fastabend56434a02016-12-15 12:14:13 -0800658 switch (act) {
659 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800660 /* recalculate offset to account for any header
661 * adjustments. Note other cases do not build an
662 * skb and avoid using offset
663 */
664 offset = xdp.data -
665 page_address(xdp_page) - vi->hdr_len;
666
Jason Wang1830f892016-12-23 22:37:27 +0800667 /* We can only create skb based on xdp_page. */
668 if (unlikely(xdp_page != page)) {
669 rcu_read_unlock();
670 put_page(page);
671 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800672 offset, len, PAGE_SIZE);
Jason Wang5c334742016-12-23 22:37:29 +0800673 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
Jason Wang1830f892016-12-23 22:37:27 +0800674 return head_skb;
675 }
John Fastabend56434a02016-12-15 12:14:13 -0800676 break;
677 case XDP_TX:
Jason Wangf6b10202017-02-21 16:46:28 +0800678 if (unlikely(!virtnet_xdp_xmit(vi, rq, &xdp)))
John Fastabend0354e4d2017-02-02 19:15:01 -0800679 trace_xdp_exception(vi->dev, xdp_prog, act);
Jason Wang5c334742016-12-23 22:37:29 +0800680 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabend72979a62016-12-15 12:14:36 -0800681 if (unlikely(xdp_page != page))
682 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800683 rcu_read_unlock();
684 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800685 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800686 bpf_warn_invalid_xdp_action(act);
687 case XDP_ABORTED:
688 trace_xdp_exception(vi->dev, xdp_prog, act);
689 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800690 if (unlikely(xdp_page != page))
691 __free_pages(xdp_page, 0);
Jason Wang5c334742016-12-23 22:37:29 +0800692 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabendf600b692016-12-15 12:13:24 -0800693 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800694 }
John Fastabendf600b692016-12-15 12:13:24 -0800695 }
696 rcu_read_unlock();
697
Jason Wang28b39bc2017-07-19 16:54:46 +0800698 truesize = mergeable_ctx_to_truesize(ctx);
699 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300700 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200701 dev->name, len, (unsigned long)ctx);
702 dev->stats.rx_length_errors++;
703 goto err_skb;
704 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800705
John Fastabendf600b692016-12-15 12:13:24 -0800706 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
707 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000708
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200709 if (unlikely(!curr_skb))
710 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000711 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200712 int num_skb_frags;
713
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200714 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Michael Daltonab7db912014-01-16 22:23:27 -0800715 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200716 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200717 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300718 virtio16_to_cpu(vi->vdev,
719 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200720 dev->stats.rx_length_errors++;
721 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000722 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200723
724 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800725
726 truesize = mergeable_ctx_to_truesize(ctx);
727 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300728 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200729 dev->name, len, (unsigned long)ctx);
730 dev->stats.rx_length_errors++;
731 goto err_skb;
732 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200733
734 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700735 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
736 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200737
738 if (unlikely(!nskb))
739 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700740 if (curr_skb == head_skb)
741 skb_shinfo(curr_skb)->frag_list = nskb;
742 else
743 curr_skb->next = nskb;
744 curr_skb = nskb;
745 head_skb->truesize += nskb->truesize;
746 num_skb_frags = 0;
747 }
748 if (curr_skb != head_skb) {
749 head_skb->data_len += len;
750 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800751 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700752 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200753 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800754 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
755 put_page(page);
756 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800757 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800758 } else {
759 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800760 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800761 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200762 }
763
Johannes Berg5377d7582015-08-19 09:48:40 +0200764 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200765 return head_skb;
766
John Fastabendf600b692016-12-15 12:13:24 -0800767err_xdp:
768 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200769err_skb:
770 put_page(page);
771 while (--num_buf) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200772 buf = virtqueue_get_buf(rq->vq, &len);
773 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200774 pr_debug("%s: rx error: %d buffers missing\n",
775 dev->name, num_buf);
776 dev->stats.rx_length_errors++;
777 break;
778 }
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200779 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200780 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000781 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200782err_buf:
783 dev->stats.rx_dropped++;
784 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800785xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200786 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000787}
788
Jason Wang61845d22017-02-17 11:33:09 +0800789static int receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200790 void *buf, unsigned int len, void **ctx)
Rusty Russell296f96f2007-10-22 11:03:37 +1000791{
Jason Wange9d74172012-12-07 07:04:55 +0000792 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000793 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300794 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wang61845d22017-02-17 11:33:09 +0800795 int ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000796
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300797 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000798 pr_debug("%s: short packet %i\n", dev->name, len);
799 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800800 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200801 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800802 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800803 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800804 } else {
Jason Wangf6b10202017-02-21 16:46:28 +0800805 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800806 }
Jason Wang61845d22017-02-17 11:33:09 +0800807 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000808 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000809
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200810 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200811 skb = receive_mergeable(dev, vi, rq, buf, ctx, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200812 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300813 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200814 else
Jason Wang192f68c2017-07-19 16:54:47 +0800815 skb = receive_small(dev, vi, rq, buf, ctx, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200816
817 if (unlikely(!skb))
Jason Wang61845d22017-02-17 11:33:09 +0800818 return 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800819
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000820 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000821
Jason Wang61845d22017-02-17 11:33:09 +0800822 ret = skb->len;
Rusty Russell296f96f2007-10-22 11:03:37 +1000823
Mike Rapoporte858fae2016-06-08 16:09:21 +0300824 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000825 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000826
Mike Rapoporte858fae2016-06-08 16:09:21 +0300827 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
828 virtio_is_little_endian(vi->vdev))) {
829 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
830 dev->name, hdr->hdr.gso_type,
831 hdr->hdr.gso_size);
832 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000833 }
834
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300835 skb->protocol = eth_type_trans(skb, dev);
836 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
837 ntohs(skb->protocol), skb->len, skb->pkt_type);
838
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200839 napi_gro_receive(&rq->napi, skb);
Jason Wang61845d22017-02-17 11:33:09 +0800840 return ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000841
842frame_err:
843 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000844 dev_kfree_skb(skb);
Jason Wang61845d22017-02-17 11:33:09 +0800845 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000846}
847
Jason Wang192f68c2017-07-19 16:54:47 +0800848/* Unlike mergeable buffers, all buffers are allocated to the
849 * same size, except for the headroom. For this reason we do
850 * not need to use mergeable_len_to_ctx here - it is enough
851 * to store the headroom as the context ignoring the truesize.
852 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300853static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
854 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000855{
Jason Wangf6b10202017-02-21 16:46:28 +0800856 struct page_frag *alloc_frag = &rq->alloc_frag;
857 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800858 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +0800859 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +0800860 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000861 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000862
Jason Wangf6b10202017-02-21 16:46:28 +0800863 len = SKB_DATA_ALIGN(len) +
864 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
865 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000866 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800867
Jason Wangf6b10202017-02-21 16:46:28 +0800868 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
869 get_page(alloc_frag->page);
870 alloc_frag->offset += len;
871 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
872 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +0800873 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000874 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +0800875 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000876 return err;
877}
878
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300879static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
880 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000881{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000882 struct page *first, *list = NULL;
883 char *p;
884 int i, err, offset;
885
Rusty Russella5835442014-09-11 10:17:36 +0930886 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
887
Jason Wange9d74172012-12-07 07:04:55 +0000888 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000889 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000890 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000891 if (!first) {
892 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000893 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000894 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700895 }
Jason Wange9d74172012-12-07 07:04:55 +0000896 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000897
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000898 /* chain new page in list head to match sg */
899 first->private = (unsigned long)list;
900 list = first;
901 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800902
Jason Wange9d74172012-12-07 07:04:55 +0000903 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000904 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000905 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000906 return -ENOMEM;
907 }
908 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800909
Jason Wange9d74172012-12-07 07:04:55 +0000910 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300911 /* a separated rq->sg[0] for header - required in case !any_header_sg */
912 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +0800913
Jason Wange9d74172012-12-07 07:04:55 +0000914 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000915 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000916 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800917
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000918 /* chain first in list head */
919 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030920 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
921 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000922 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +0000923 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +0800924
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000925 return err;
926}
Herbert Xu97402b92008-04-18 11:24:27 +0800927
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200928static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
929 struct ewma_pkt_len *avg_pkt_len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000930{
Michael Daltonab7db912014-01-16 22:23:27 -0800931 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800932 unsigned int len;
933
Johannes Berg5377d7582015-08-19 09:48:40 +0200934 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +0300935 rq->min_buf_len, PAGE_SIZE - hdr_len);
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +0200936 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800937}
938
John Fastabend2de2f7f2017-02-02 19:16:29 -0800939static int add_recvbuf_mergeable(struct virtnet_info *vi,
940 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -0800941{
Michael Daltonfb518792014-01-16 22:23:26 -0800942 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800943 unsigned int headroom = virtnet_get_headroom(vi);
Michael Daltonfb518792014-01-16 22:23:26 -0800944 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200945 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000946 int err;
Michael Daltonfb518792014-01-16 22:23:26 -0800947 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +1000948
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200949 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800950 if (unlikely(!skb_page_frag_refill(len + headroom, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000951 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -0800952
Michael Daltonfb518792014-01-16 22:23:26 -0800953 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800954 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -0800955 get_page(alloc_frag->page);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800956 alloc_frag->offset += len + headroom;
Michael Daltonfb518792014-01-16 22:23:26 -0800957 hole = alloc_frag->size - alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800958 if (hole < len + headroom) {
Michael Daltonab7db912014-01-16 22:23:27 -0800959 /* To avoid internal fragmentation, if there is very likely not
960 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +0300961 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -0800962 */
Michael Daltonfb518792014-01-16 22:23:26 -0800963 len += hole;
964 alloc_frag->offset += hole;
965 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000966
Michael Daltonfb518792014-01-16 22:23:26 -0800967 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -0700968 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200969 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000970 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -0700971 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000972
973 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000974}
975
Rusty Russellb2baed62011-12-29 00:42:38 +0000976/*
977 * Returns false if we couldn't fill entirely (OOM).
978 *
979 * Normally run in the receive path, but can also be run from ndo_open
980 * before we're receiving packets, or from refill_work which is
981 * careful to disable receiving (using napi_disable).
982 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300983static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
984 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800985{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800986 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000987 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800988
Michael Daltonfb518792014-01-16 22:23:26 -0800989 gfp |= __GFP_COLD;
Amit Shah0aea51c2009-08-26 14:58:28 +0530990 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000991 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -0800992 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000993 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300994 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000995 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300996 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800997
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000998 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030999 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001000 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001001 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +08001002 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -07001003 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001004}
1005
Rusty Russell18445c42008-02-04 23:49:57 -05001006static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001007{
1008 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001009 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001010
Willem de Bruijne4e84522017-04-24 13:49:26 -04001011 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001012}
1013
Willem de Bruijne4e84522017-04-24 13:49:26 -04001014static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001015{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001016 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001017
1018 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001019 * won't get another interrupt, so process any outstanding packets now.
1020 * Call local_bh_enable after to trigger softIRQ processing.
1021 */
1022 local_bh_disable();
1023 virtqueue_napi_schedule(napi, vq);
1024 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001025}
1026
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001027static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1028 struct virtqueue *vq,
1029 struct napi_struct *napi)
1030{
1031 if (!napi->weight)
1032 return;
1033
1034 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1035 * enable the feature if this is likely affine with the transmit path.
1036 */
1037 if (!vi->affinity_hint_set) {
1038 napi->weight = 0;
1039 return;
1040 }
1041
1042 return virtnet_napi_enable(vq, napi);
1043}
1044
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001045static void virtnet_napi_tx_disable(struct napi_struct *napi)
1046{
1047 if (napi->weight)
1048 napi_disable(napi);
1049}
1050
Rusty Russell3161e452009-08-26 12:22:32 -07001051static void refill_work(struct work_struct *work)
1052{
Jason Wange9d74172012-12-07 07:04:55 +00001053 struct virtnet_info *vi =
1054 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001055 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001056 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001057
Sasha Levin55257d72013-04-29 12:00:08 +09301058 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001059 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001060
Jason Wang986a4f42012-12-07 07:04:56 +00001061 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001062 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001063 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001064
1065 /* In theory, this can happen: if we don't get any buffers in
1066 * we will *never* try to fill again.
1067 */
1068 if (still_empty)
1069 schedule_delayed_work(&vi->refill, HZ/2);
1070 }
Rusty Russell3161e452009-08-26 12:22:32 -07001071}
1072
Jason Wang2ffa7592014-07-23 16:33:54 +08001073static int virtnet_receive(struct receive_queue *rq, int budget)
Rusty Russell296f96f2007-10-22 11:03:37 +10001074{
Jason Wange9d74172012-12-07 07:04:55 +00001075 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang61845d22017-02-17 11:33:09 +08001076 unsigned int len, received = 0, bytes = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001077 void *buf;
Jason Wang61845d22017-02-17 11:33:09 +08001078 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10001079
Jason Wang192f68c2017-07-19 16:54:47 +08001080 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001081 void *ctx;
1082
1083 while (received < budget &&
1084 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
1085 bytes += receive_buf(vi, rq, buf, len, ctx);
1086 received++;
1087 }
1088 } else {
1089 while (received < budget &&
1090 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
1091 bytes += receive_buf(vi, rq, buf, len, NULL);
1092 received++;
1093 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001094 }
1095
Jason Wangbe121f42014-01-16 14:45:24 +08001096 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001097 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001098 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001099 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001100
Jason Wang61845d22017-02-17 11:33:09 +08001101 u64_stats_update_begin(&stats->rx_syncp);
1102 stats->rx_bytes += bytes;
1103 stats->rx_packets += received;
1104 u64_stats_update_end(&stats->rx_syncp);
1105
Jason Wang2ffa7592014-07-23 16:33:54 +08001106 return received;
1107}
1108
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001109static void free_old_xmit_skbs(struct send_queue *sq)
1110{
1111 struct sk_buff *skb;
1112 unsigned int len;
1113 struct virtnet_info *vi = sq->vq->vdev->priv;
1114 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
1115 unsigned int packets = 0;
1116 unsigned int bytes = 0;
1117
1118 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1119 pr_debug("Sent skb %p\n", skb);
1120
1121 bytes += skb->len;
1122 packets++;
1123
1124 dev_kfree_skb_any(skb);
1125 }
1126
1127 /* Avoid overhead when no packets have been processed
1128 * happens when called speculatively from start_xmit.
1129 */
1130 if (!packets)
1131 return;
1132
1133 u64_stats_update_begin(&stats->tx_syncp);
1134 stats->tx_bytes += bytes;
1135 stats->tx_packets += packets;
1136 u64_stats_update_end(&stats->tx_syncp);
1137}
1138
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001139static void virtnet_poll_cleantx(struct receive_queue *rq)
1140{
1141 struct virtnet_info *vi = rq->vq->vdev->priv;
1142 unsigned int index = vq2rxq(rq->vq);
1143 struct send_queue *sq = &vi->sq[index];
1144 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1145
1146 if (!sq->napi.weight)
1147 return;
1148
1149 if (__netif_tx_trylock(txq)) {
1150 free_old_xmit_skbs(sq);
1151 __netif_tx_unlock(txq);
1152 }
1153
1154 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1155 netif_tx_wake_queue(txq);
1156}
1157
Jason Wang2ffa7592014-07-23 16:33:54 +08001158static int virtnet_poll(struct napi_struct *napi, int budget)
1159{
1160 struct receive_queue *rq =
1161 container_of(napi, struct receive_queue, napi);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001162 unsigned int received;
Jason Wang2ffa7592014-07-23 16:33:54 +08001163
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001164 virtnet_poll_cleantx(rq);
1165
Li RongQingfaadb052015-03-26 15:39:45 +08001166 received = virtnet_receive(rq, budget);
Jason Wang2ffa7592014-07-23 16:33:54 +08001167
Rusty Russell8329d982007-11-19 11:20:43 -05001168 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001169 if (received < budget)
1170 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001171
1172 return received;
1173}
1174
Jason Wang986a4f42012-12-07 07:04:56 +00001175static int virtnet_open(struct net_device *dev)
1176{
1177 struct virtnet_info *vi = netdev_priv(dev);
1178 int i;
1179
Jason Wange4166622013-05-21 20:03:58 +00001180 for (i = 0; i < vi->max_queue_pairs; i++) {
1181 if (i < vi->curr_queue_pairs)
1182 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001183 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001184 schedule_delayed_work(&vi->refill, 0);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001185 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001186 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001187 }
1188
1189 return 0;
1190}
1191
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001192static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1193{
1194 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1195 struct virtnet_info *vi = sq->vq->vdev->priv;
1196 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1197
1198 __netif_tx_lock(txq, raw_smp_processor_id());
1199 free_old_xmit_skbs(sq);
1200 __netif_tx_unlock(txq);
1201
1202 virtqueue_napi_complete(napi, sq->vq, 0);
1203
1204 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1205 netif_tx_wake_queue(txq);
1206
1207 return 0;
1208}
1209
Jason Wange9d74172012-12-07 07:04:55 +00001210static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001211{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001212 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001213 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001214 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001215 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001216 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301217 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001218
Johannes Berge1749612008-10-27 15:59:26 -07001219 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301220
1221 can_push = vi->any_header_sg &&
1222 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1223 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1224 /* Even if we can, don't push here yet as this would skew
1225 * csum_start offset below. */
1226 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001227 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301228 else
1229 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001230
Mike Rapoporte858fae2016-06-08 16:09:21 +03001231 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Jason Wang6391a442017-01-20 14:32:42 +08001232 virtio_is_little_endian(vi->vdev), false))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001233 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001234
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001235 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001236 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001237
Jason Wang547c8902015-08-27 14:53:06 +08001238 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301239 if (can_push) {
1240 __skb_push(skb, hdr_len);
1241 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001242 if (unlikely(num_sg < 0))
1243 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301244 /* Pull header back to avoid skew in tx bytes calculations. */
1245 __skb_pull(skb, hdr_len);
1246 } else {
1247 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001248 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1249 if (unlikely(num_sg < 0))
1250 return num_sg;
1251 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301252 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301253 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001254}
1255
Stephen Hemminger424efe92009-08-31 19:50:51 +00001256static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001257{
1258 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001259 int qnum = skb_get_queue_mapping(skb);
1260 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301261 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001262 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1263 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001264 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001265
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001266 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001267 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001268
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001269 if (use_napi && kick)
1270 virtqueue_enable_cb_delayed(sq->vq);
1271
Jacob Keller074c3582014-06-25 02:37:13 +00001272 /* timestamp packet in software */
1273 skb_tx_timestamp(skb);
1274
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001275 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001276 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001277
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301278 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001279 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301280 dev->stats.tx_fifo_errors++;
1281 if (net_ratelimit())
1282 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001283 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001284 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001285 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001286 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001287 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001288
Rusty Russell48925e32009-09-24 09:59:20 -06001289 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001290 if (!use_napi) {
1291 skb_orphan(skb);
1292 nf_reset(skb);
1293 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001294
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001295 /* If running out of space, stop queue to avoid getting packets that we
1296 * are then unable to transmit.
1297 * An alternative would be to force queuing layer to requeue the skb by
1298 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1299 * returned in a normal path of operation: it means that driver is not
1300 * maintaining the TX queue stop/start state properly, and causes
1301 * the stack to do a non-trivial amount of useless work.
1302 * Since most packets only take 1 or 2 ring slots, stopping the queue
1303 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001304 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001305 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001306 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001307 if (!use_napi &&
1308 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001309 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001310 free_old_xmit_skbs(sq);
1311 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001312 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001313 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001314 }
1315 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001316 }
Rusty Russell48925e32009-09-24 09:59:20 -06001317
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001318 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001319 virtqueue_kick(sq->vq);
1320
Rusty Russell48925e32009-09-24 09:59:20 -06001321 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001322}
1323
Amos Kong40cbfc32013-01-21 01:17:21 +00001324/*
1325 * Send command via the control virtqueue and check status. Commands
1326 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001327 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001328 */
1329static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001330 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001331{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301332 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001333 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001334
1335 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301336 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001337
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001338 vi->ctrl_status = ~0;
1339 vi->ctrl_hdr.class = class;
1340 vi->ctrl_hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301341 /* Add header */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001342 sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301343 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001344
Rusty Russellf7bc9592013-03-20 15:44:28 +10301345 if (out)
1346 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001347
Rusty Russellf7bc9592013-03-20 15:44:28 +10301348 /* Add return status. */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001349 sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001350 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001351
stephen hemmingerd24bae32013-12-09 16:17:40 -08001352 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301353 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001354
Heinz Graalfs67975902013-10-29 09:40:02 +10301355 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001356 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001357
1358 /* Spin for a response, the kick causes an ioport write, trapping
1359 * into the hypervisor, so the request should be handled immediately.
1360 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301361 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1362 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001363 cpu_relax();
1364
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001365 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001366}
1367
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001368static int virtnet_set_mac_address(struct net_device *dev, void *p)
1369{
1370 struct virtnet_info *vi = netdev_priv(dev);
1371 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001372 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001373 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001374 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001375
Shyam Saini801822d2016-12-24 00:44:58 +05301376 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001377 if (!addr)
1378 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001379
1380 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001381 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001382 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001383
Amos Kong7e58d5a2013-01-21 01:17:23 +00001384 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1385 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1386 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001387 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001388 dev_warn(&vdev->dev,
1389 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001390 ret = -EINVAL;
1391 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001392 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001393 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1394 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301395 unsigned int i;
1396
1397 /* Naturally, this has an atomicity problem. */
1398 for (i = 0; i < dev->addr_len; i++)
1399 virtio_cwrite8(vdev,
1400 offsetof(struct virtio_net_config, mac) +
1401 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001402 }
1403
1404 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001405 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001406
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001407out:
1408 kfree(addr);
1409 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001410}
1411
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001412static void virtnet_stats(struct net_device *dev,
1413 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001414{
1415 struct virtnet_info *vi = netdev_priv(dev);
1416 int cpu;
1417 unsigned int start;
1418
1419 for_each_possible_cpu(cpu) {
Eric Dumazet58472a72012-02-13 06:53:41 +00001420 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001421 u64 tpackets, tbytes, rpackets, rbytes;
1422
1423 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001424 start = u64_stats_fetch_begin_irq(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001425 tpackets = stats->tx_packets;
1426 tbytes = stats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001427 } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001428
1429 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001430 start = u64_stats_fetch_begin_irq(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001431 rpackets = stats->rx_packets;
1432 rbytes = stats->rx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001433 } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001434
1435 tot->rx_packets += rpackets;
1436 tot->tx_packets += tpackets;
1437 tot->rx_bytes += rbytes;
1438 tot->tx_bytes += tbytes;
1439 }
1440
1441 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001442 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001443 tot->rx_dropped = dev->stats.rx_dropped;
1444 tot->rx_length_errors = dev->stats.rx_length_errors;
1445 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001446}
1447
Amit Shahda74e892008-02-29 16:24:50 +05301448#ifdef CONFIG_NET_POLL_CONTROLLER
1449static void virtnet_netpoll(struct net_device *dev)
1450{
1451 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001452 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301453
Jason Wang986a4f42012-12-07 07:04:56 +00001454 for (i = 0; i < vi->curr_queue_pairs; i++)
1455 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301456}
1457#endif
1458
Jason Wang586d17c2012-04-11 20:43:52 +00001459static void virtnet_ack_link_announce(struct virtnet_info *vi)
1460{
1461 rtnl_lock();
1462 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001463 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001464 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1465 rtnl_unlock();
1466}
1467
John Fastabend473153292017-02-02 19:14:32 -08001468static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001469{
1470 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001471 struct net_device *dev = vi->dev;
1472
1473 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1474 return 0;
1475
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001476 vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1477 sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001478
1479 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001480 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001481 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1482 queue_pairs);
1483 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301484 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001485 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001486 /* virtnet_open() will refill when device is going to up. */
1487 if (dev->flags & IFF_UP)
1488 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301489 }
Jason Wang986a4f42012-12-07 07:04:56 +00001490
1491 return 0;
1492}
1493
John Fastabend473153292017-02-02 19:14:32 -08001494static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1495{
1496 int err;
1497
1498 rtnl_lock();
1499 err = _virtnet_set_queues(vi, queue_pairs);
1500 rtnl_unlock();
1501 return err;
1502}
1503
Rusty Russell296f96f2007-10-22 11:03:37 +10001504static int virtnet_close(struct net_device *dev)
1505{
1506 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001507 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001508
Rusty Russellb2baed62011-12-29 00:42:38 +00001509 /* Make sure refill_work doesn't re-enable napi! */
1510 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001511
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001512 for (i = 0; i < vi->max_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001513 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001514 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001515 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001516
Rusty Russell296f96f2007-10-22 11:03:37 +10001517 return 0;
1518}
1519
Alex Williamson2af76982009-02-04 09:02:40 +00001520static void virtnet_set_rx_mode(struct net_device *dev)
1521{
1522 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001523 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001524 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001525 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001526 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001527 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001528 void *buf;
1529 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001530
stephen hemminger788a8b62013-12-09 16:18:45 -08001531 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001532 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1533 return;
1534
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001535 vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0);
1536 vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001537
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001538 sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001539
1540 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001541 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001542 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001543 vi->ctrl_promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001544
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001545 sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001546
1547 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001548 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001549 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001550 vi->ctrl_allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001551
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001552 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001553 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001554 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001555 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1556 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1557 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001558 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001559 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001560
Alex Williamson23e258e2009-05-01 17:27:56 +00001561 sg_init_table(sg, 2);
1562
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001563 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001564 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001565 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001566 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001567 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001568
1569 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001570 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001571
1572 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001573 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001574
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001575 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001576 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001577 netdev_for_each_mc_addr(ha, dev)
1578 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001579
1580 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001581 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001582
1583 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001584 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001585 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001586
1587 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001588}
1589
Patrick McHardy80d5c362013-04-19 02:04:28 +00001590static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1591 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001592{
1593 struct virtnet_info *vi = netdev_priv(dev);
1594 struct scatterlist sg;
1595
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001596 vi->ctrl_vid = vid;
1597 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001598
1599 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001600 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001601 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001602 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001603}
1604
Patrick McHardy80d5c362013-04-19 02:04:28 +00001605static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1606 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001607{
1608 struct virtnet_info *vi = netdev_priv(dev);
1609 struct scatterlist sg;
1610
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001611 vi->ctrl_vid = vid;
1612 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001613
1614 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001615 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001616 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001617 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001618}
1619
Wanlong Gao8898c212013-01-24 23:51:30 +00001620static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001621{
1622 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001623
1624 if (vi->affinity_hint_set) {
1625 for (i = 0; i < vi->max_queue_pairs; i++) {
1626 virtqueue_set_affinity(vi->rq[i].vq, -1);
1627 virtqueue_set_affinity(vi->sq[i].vq, -1);
1628 }
1629
1630 vi->affinity_hint_set = false;
1631 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001632}
1633
1634static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001635{
1636 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001637 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001638
1639 /* In multiqueue mode, when the number of cpu is equal to the number of
1640 * queue pairs, we let the queue pairs to be private to one cpu by
1641 * setting the affinity hint to eliminate the contention.
1642 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001643 if (vi->curr_queue_pairs == 1 ||
1644 vi->max_queue_pairs != num_online_cpus()) {
1645 virtnet_clean_affinity(vi, -1);
1646 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001647 }
1648
Wanlong Gao8898c212013-01-24 23:51:30 +00001649 i = 0;
1650 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001651 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1652 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001653 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001654 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001655 }
1656
Wanlong Gao8898c212013-01-24 23:51:30 +00001657 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001658}
1659
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001660static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001661{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001662 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1663 node);
1664 virtnet_set_affinity(vi);
1665 return 0;
1666}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001667
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001668static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1669{
1670 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1671 node_dead);
1672 virtnet_set_affinity(vi);
1673 return 0;
1674}
Jason Wang3ab098d2013-10-15 11:18:58 +08001675
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001676static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1677{
1678 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1679 node);
1680
1681 virtnet_clean_affinity(vi, cpu);
1682 return 0;
1683}
1684
1685static enum cpuhp_state virtionet_online;
1686
1687static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1688{
1689 int ret;
1690
1691 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1692 if (ret)
1693 return ret;
1694 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1695 &vi->node_dead);
1696 if (!ret)
1697 return ret;
1698 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1699 return ret;
1700}
1701
1702static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1703{
1704 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1705 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1706 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001707}
1708
Rick Jones8f9f4662011-10-19 08:10:59 +00001709static void virtnet_get_ringparam(struct net_device *dev,
1710 struct ethtool_ringparam *ring)
1711{
1712 struct virtnet_info *vi = netdev_priv(dev);
1713
Jason Wang986a4f42012-12-07 07:04:56 +00001714 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1715 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001716 ring->rx_pending = ring->rx_max_pending;
1717 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001718}
1719
Rick Jones66846042011-11-14 14:17:08 +00001720
1721static void virtnet_get_drvinfo(struct net_device *dev,
1722 struct ethtool_drvinfo *info)
1723{
1724 struct virtnet_info *vi = netdev_priv(dev);
1725 struct virtio_device *vdev = vi->vdev;
1726
1727 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1728 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1729 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1730
1731}
1732
Jason Wangd73bcd22012-12-07 07:04:57 +00001733/* TODO: Eliminate OOO packets during switching */
1734static int virtnet_set_channels(struct net_device *dev,
1735 struct ethtool_channels *channels)
1736{
1737 struct virtnet_info *vi = netdev_priv(dev);
1738 u16 queue_pairs = channels->combined_count;
1739 int err;
1740
1741 /* We don't support separate rx/tx channels.
1742 * We don't allow setting 'other' channels.
1743 */
1744 if (channels->rx_count || channels->tx_count || channels->other_count)
1745 return -EINVAL;
1746
Amos Kongc18e9cd2014-04-18 13:45:41 +08001747 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001748 return -EINVAL;
1749
John Fastabendf600b692016-12-15 12:13:24 -08001750 /* For now we don't support modifying channels while XDP is loaded
1751 * also when XDP is loaded all RX queues have XDP programs so we only
1752 * need to check a single RX queue.
1753 */
1754 if (vi->rq[0].xdp_prog)
1755 return -EINVAL;
1756
Wanlong Gao47be2472013-01-24 23:51:29 +00001757 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08001758 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00001759 if (!err) {
1760 netif_set_real_num_tx_queues(dev, queue_pairs);
1761 netif_set_real_num_rx_queues(dev, queue_pairs);
1762
Wanlong Gao8898c212013-01-24 23:51:30 +00001763 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001764 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001765 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001766
1767 return err;
1768}
1769
1770static void virtnet_get_channels(struct net_device *dev,
1771 struct ethtool_channels *channels)
1772{
1773 struct virtnet_info *vi = netdev_priv(dev);
1774
1775 channels->combined_count = vi->curr_queue_pairs;
1776 channels->max_combined = vi->max_queue_pairs;
1777 channels->max_other = 0;
1778 channels->rx_count = 0;
1779 channels->tx_count = 0;
1780 channels->other_count = 0;
1781}
1782
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001783/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001784static bool
1785virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001786{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001787 struct ethtool_link_ksettings diff1 = *cmd;
1788 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001789
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001790 /* cmd is always set so we need to clear it, validate the port type
1791 * and also without autonegotiation we can ignore advertising
1792 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001793 diff1.base.speed = 0;
1794 diff2.base.port = PORT_OTHER;
1795 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
1796 diff1.base.duplex = 0;
1797 diff1.base.cmd = 0;
1798 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001799
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001800 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
1801 bitmap_empty(diff1.link_modes.supported,
1802 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1803 bitmap_empty(diff1.link_modes.advertising,
1804 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1805 bitmap_empty(diff1.link_modes.lp_advertising,
1806 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001807}
1808
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001809static int virtnet_set_link_ksettings(struct net_device *dev,
1810 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001811{
1812 struct virtnet_info *vi = netdev_priv(dev);
1813 u32 speed;
1814
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001815 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001816 /* don't allow custom speed and duplex */
1817 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001818 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001819 !virtnet_validate_ethtool_cmd(cmd))
1820 return -EINVAL;
1821 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001822 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001823
1824 return 0;
1825}
1826
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001827static int virtnet_get_link_ksettings(struct net_device *dev,
1828 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001829{
1830 struct virtnet_info *vi = netdev_priv(dev);
1831
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001832 cmd->base.speed = vi->speed;
1833 cmd->base.duplex = vi->duplex;
1834 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001835
1836 return 0;
1837}
1838
1839static void virtnet_init_settings(struct net_device *dev)
1840{
1841 struct virtnet_info *vi = netdev_priv(dev);
1842
1843 vi->speed = SPEED_UNKNOWN;
1844 vi->duplex = DUPLEX_UNKNOWN;
1845}
1846
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001847static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00001848 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001849 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00001850 .get_ringparam = virtnet_get_ringparam,
Jason Wangd73bcd22012-12-07 07:04:57 +00001851 .set_channels = virtnet_set_channels,
1852 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00001853 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001854 .get_link_ksettings = virtnet_get_link_ksettings,
1855 .set_link_ksettings = virtnet_set_link_ksettings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001856};
1857
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001858static void virtnet_freeze_down(struct virtio_device *vdev)
1859{
1860 struct virtnet_info *vi = vdev->priv;
1861 int i;
1862
1863 /* Make sure no work handler is accessing the device */
1864 flush_work(&vi->config_work);
1865
1866 netif_device_detach(vi->dev);
Jason Wang713a98d2017-06-28 09:51:03 +08001867 netif_tx_disable(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001868 cancel_delayed_work_sync(&vi->refill);
1869
1870 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001871 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001872 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001873 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001874 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001875 }
1876}
1877
1878static int init_vqs(struct virtnet_info *vi);
1879
1880static int virtnet_restore_up(struct virtio_device *vdev)
1881{
1882 struct virtnet_info *vi = vdev->priv;
1883 int err, i;
1884
1885 err = init_vqs(vi);
1886 if (err)
1887 return err;
1888
1889 virtio_device_ready(vdev);
1890
1891 if (netif_running(vi->dev)) {
1892 for (i = 0; i < vi->curr_queue_pairs; i++)
1893 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
1894 schedule_delayed_work(&vi->refill, 0);
1895
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001896 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04001897 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001898 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
1899 &vi->sq[i].napi);
1900 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001901 }
1902
1903 netif_device_attach(vi->dev);
1904 return err;
1905}
1906
Jason Wang3f935222017-07-19 16:54:49 +08001907static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
1908{
1909 struct scatterlist sg;
1910 vi->ctrl_offloads = cpu_to_virtio64(vi->vdev, offloads);
1911
1912 sg_init_one(&sg, &vi->ctrl_offloads, sizeof(vi->ctrl_offloads));
1913
1914 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
1915 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
1916 dev_warn(&vi->dev->dev, "Fail to set guest offload. \n");
1917 return -EINVAL;
1918 }
1919
1920 return 0;
1921}
1922
1923static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
1924{
1925 u64 offloads = 0;
1926
1927 if (!vi->guest_offloads)
1928 return 0;
1929
1930 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
1931 offloads = 1ULL << VIRTIO_NET_F_GUEST_CSUM;
1932
1933 return virtnet_set_guest_offloads(vi, offloads);
1934}
1935
1936static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
1937{
1938 u64 offloads = vi->guest_offloads;
1939
1940 if (!vi->guest_offloads)
1941 return 0;
1942 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
1943 offloads |= 1ULL << VIRTIO_NET_F_GUEST_CSUM;
1944
1945 return virtnet_set_guest_offloads(vi, offloads);
1946}
1947
Jakub Kicinski9861ce02017-04-30 21:46:48 -07001948static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1949 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08001950{
1951 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
1952 struct virtnet_info *vi = netdev_priv(dev);
1953 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08001954 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08001955 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08001956
Jason Wang3f935222017-07-19 16:54:49 +08001957 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
1958 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
1959 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
1960 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
1961 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO))) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02001962 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 -08001963 return -EOPNOTSUPP;
1964 }
1965
1966 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02001967 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08001968 return -EINVAL;
1969 }
1970
1971 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02001972 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08001973 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
1974 return -EINVAL;
1975 }
1976
John Fastabend672aafd2016-12-15 12:13:49 -08001977 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
1978 if (prog)
1979 xdp_qp = nr_cpu_ids;
1980
1981 /* XDP requires extra queues for XDP_TX */
1982 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02001983 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08001984 netdev_warn(dev, "request %i queues but max is %i\n",
1985 curr_qp + xdp_qp, vi->max_queue_pairs);
1986 return -ENOMEM;
1987 }
1988
John Fastabend2de2f7f2017-02-02 19:16:29 -08001989 if (prog) {
1990 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
1991 if (IS_ERR(prog))
1992 return PTR_ERR(prog);
1993 }
1994
Jason Wang4941d472017-07-19 16:54:48 +08001995 /* Make sure NAPI is not using any XDP TX queues for RX. */
1996 for (i = 0; i < vi->max_queue_pairs; i++)
1997 napi_disable(&vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08001998
John Fastabend672aafd2016-12-15 12:13:49 -08001999 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002000 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2001 if (err)
2002 goto err;
2003 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002004
John Fastabendf600b692016-12-15 12:13:24 -08002005 for (i = 0; i < vi->max_queue_pairs; i++) {
2006 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2007 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
Jason Wang3f935222017-07-19 16:54:49 +08002008 if (i == 0) {
2009 if (!old_prog)
2010 virtnet_clear_guest_offloads(vi);
2011 if (!prog)
2012 virtnet_restore_guest_offloads(vi);
2013 }
John Fastabendf600b692016-12-15 12:13:24 -08002014 if (old_prog)
2015 bpf_prog_put(old_prog);
Jason Wang4941d472017-07-19 16:54:48 +08002016 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002017 }
2018
2019 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002020
Jason Wang4941d472017-07-19 16:54:48 +08002021err:
2022 for (i = 0; i < vi->max_queue_pairs; i++)
2023 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08002024 if (prog)
2025 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2026 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002027}
2028
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002029static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08002030{
2031 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002032 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08002033 int i;
2034
2035 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002036 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2037 if (xdp_prog)
2038 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08002039 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002040 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08002041}
2042
2043static int virtnet_xdp(struct net_device *dev, struct netdev_xdp *xdp)
2044{
2045 switch (xdp->command) {
2046 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002047 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002048 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002049 xdp->prog_id = virtnet_xdp_query(dev);
2050 xdp->prog_attached = !!xdp->prog_id;
John Fastabendf600b692016-12-15 12:13:24 -08002051 return 0;
2052 default:
2053 return -EINVAL;
2054 }
2055}
2056
Stephen Hemminger76288b42009-01-06 10:44:22 -08002057static const struct net_device_ops virtnet_netdev = {
2058 .ndo_open = virtnet_open,
2059 .ndo_stop = virtnet_close,
2060 .ndo_start_xmit = start_xmit,
2061 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002062 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002063 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002064 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002065 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2066 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002067#ifdef CONFIG_NET_POLL_CONTROLLER
2068 .ndo_poll_controller = virtnet_netpoll,
2069#endif
John Fastabendf600b692016-12-15 12:13:24 -08002070 .ndo_xdp = virtnet_xdp,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002071 .ndo_features_check = passthru_features_check,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002072};
2073
Jason Wang586d17c2012-04-11 20:43:52 +00002074static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002075{
Jason Wang586d17c2012-04-11 20:43:52 +00002076 struct virtnet_info *vi =
2077 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002078 u16 v;
2079
Rusty Russell855e0c52013-10-14 18:11:51 +10302080 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2081 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302082 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002083
2084 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002085 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002086 virtnet_ack_link_announce(vi);
2087 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002088
2089 /* Ignore unknown (future) status bits */
2090 v &= VIRTIO_NET_S_LINK_UP;
2091
2092 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302093 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002094
2095 vi->status = v;
2096
2097 if (vi->status & VIRTIO_NET_S_LINK_UP) {
2098 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002099 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002100 } else {
2101 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002102 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002103 }
2104}
2105
2106static void virtnet_config_changed(struct virtio_device *vdev)
2107{
2108 struct virtnet_info *vi = vdev->priv;
2109
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002110 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002111}
2112
Jason Wang986a4f42012-12-07 07:04:56 +00002113static void virtnet_free_queues(struct virtnet_info *vi)
2114{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002115 int i;
2116
Jason Wangab3971b2015-03-12 13:57:44 +08002117 for (i = 0; i < vi->max_queue_pairs; i++) {
2118 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002119 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002120 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002121 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002122
Eric Dumazet963abe52016-11-15 22:24:12 -08002123 /* We called napi_hash_del() before netif_napi_del(),
2124 * we need to respect an RCU grace period before freeing vi->rq
2125 */
2126 synchronize_net();
2127
Jason Wang986a4f42012-12-07 07:04:56 +00002128 kfree(vi->rq);
2129 kfree(vi->sq);
2130}
2131
John Fastabend473153292017-02-02 19:14:32 -08002132static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002133{
John Fastabendf600b692016-12-15 12:13:24 -08002134 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002135 int i;
2136
2137 for (i = 0; i < vi->max_queue_pairs; i++) {
2138 while (vi->rq[i].pages)
2139 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002140
2141 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2142 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2143 if (old_prog)
2144 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002145 }
John Fastabend473153292017-02-02 19:14:32 -08002146}
2147
2148static void free_receive_bufs(struct virtnet_info *vi)
2149{
2150 rtnl_lock();
2151 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002152 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002153}
2154
Michael Daltonfb518792014-01-16 22:23:26 -08002155static void free_receive_page_frags(struct virtnet_info *vi)
2156{
2157 int i;
2158 for (i = 0; i < vi->max_queue_pairs; i++)
2159 if (vi->rq[i].alloc_frag.page)
2160 put_page(vi->rq[i].alloc_frag.page);
2161}
2162
John Fastabendb68df012017-01-25 18:22:48 -08002163static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002164{
2165 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2166 return false;
2167 else if (q < vi->curr_queue_pairs)
2168 return true;
2169 else
2170 return false;
2171}
2172
Jason Wang986a4f42012-12-07 07:04:56 +00002173static void free_unused_bufs(struct virtnet_info *vi)
2174{
2175 void *buf;
2176 int i;
2177
2178 for (i = 0; i < vi->max_queue_pairs; i++) {
2179 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002180 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002181 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002182 dev_kfree_skb(buf);
2183 else
2184 put_page(virt_to_head_page(buf));
2185 }
Jason Wang986a4f42012-12-07 07:04:56 +00002186 }
2187
2188 for (i = 0; i < vi->max_queue_pairs; i++) {
2189 struct virtqueue *vq = vi->rq[i].vq;
2190
2191 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002192 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002193 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002194 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002195 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002196 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002197 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002198 }
Jason Wang986a4f42012-12-07 07:04:56 +00002199 }
Jason Wang986a4f42012-12-07 07:04:56 +00002200 }
2201}
2202
Jason Wange9d74172012-12-07 07:04:55 +00002203static void virtnet_del_vqs(struct virtnet_info *vi)
2204{
2205 struct virtio_device *vdev = vi->vdev;
2206
Wanlong Gao8898c212013-01-24 23:51:30 +00002207 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002208
Jason Wange9d74172012-12-07 07:04:55 +00002209 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002210
2211 virtnet_free_queues(vi);
2212}
2213
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002214/* How large should a single buffer be so a queue full of these can fit at
2215 * least one full packet?
2216 * Logic below assumes the mergeable buffer header is used.
2217 */
2218static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2219{
2220 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2221 unsigned int rq_size = virtqueue_get_vring_size(vq);
2222 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2223 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2224 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2225
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002226 return max(max(min_buf_len, hdr_len) - hdr_len,
2227 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002228}
2229
Jason Wang986a4f42012-12-07 07:04:56 +00002230static int virtnet_find_vqs(struct virtnet_info *vi)
2231{
2232 vq_callback_t **callbacks;
2233 struct virtqueue **vqs;
2234 int ret = -ENOMEM;
2235 int i, total_vqs;
2236 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002237 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002238
2239 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2240 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2241 * possible control vq.
2242 */
2243 total_vqs = vi->max_queue_pairs * 2 +
2244 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2245
2246 /* Allocate space for find_vqs parameters */
2247 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
2248 if (!vqs)
2249 goto err_vq;
2250 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
2251 if (!callbacks)
2252 goto err_callback;
2253 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
2254 if (!names)
2255 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002256 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002257 ctx = kzalloc(total_vqs * sizeof(*ctx), GFP_KERNEL);
2258 if (!ctx)
2259 goto err_ctx;
2260 } else {
2261 ctx = NULL;
2262 }
Jason Wang986a4f42012-12-07 07:04:56 +00002263
2264 /* Parameters for control virtqueue, if any */
2265 if (vi->has_cvq) {
2266 callbacks[total_vqs - 1] = NULL;
2267 names[total_vqs - 1] = "control";
2268 }
2269
2270 /* Allocate/initialize parameters for send/receive virtqueues */
2271 for (i = 0; i < vi->max_queue_pairs; i++) {
2272 callbacks[rxq2vq(i)] = skb_recv_done;
2273 callbacks[txq2vq(i)] = skb_xmit_done;
2274 sprintf(vi->rq[i].name, "input.%d", i);
2275 sprintf(vi->sq[i].name, "output.%d", i);
2276 names[rxq2vq(i)] = vi->rq[i].name;
2277 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002278 if (ctx)
2279 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002280 }
2281
2282 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002283 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002284 if (ret)
2285 goto err_find;
2286
2287 if (vi->has_cvq) {
2288 vi->cvq = vqs[total_vqs - 1];
2289 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002290 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002291 }
2292
2293 for (i = 0; i < vi->max_queue_pairs; i++) {
2294 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002295 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002296 vi->sq[i].vq = vqs[txq2vq(i)];
2297 }
2298
2299 kfree(names);
2300 kfree(callbacks);
2301 kfree(vqs);
Jason Wang55281622017-07-07 19:56:09 +08002302 kfree(ctx);
Jason Wang986a4f42012-12-07 07:04:56 +00002303
2304 return 0;
2305
2306err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002307 kfree(ctx);
2308err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002309 kfree(names);
2310err_names:
2311 kfree(callbacks);
2312err_callback:
2313 kfree(vqs);
2314err_vq:
2315 return ret;
2316}
2317
2318static int virtnet_alloc_queues(struct virtnet_info *vi)
2319{
2320 int i;
2321
2322 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
2323 if (!vi->sq)
2324 goto err_sq;
2325 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002326 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002327 goto err_rq;
2328
2329 INIT_DELAYED_WORK(&vi->refill, refill_work);
2330 for (i = 0; i < vi->max_queue_pairs; i++) {
2331 vi->rq[i].pages = NULL;
2332 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2333 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002334 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2335 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002336
2337 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002338 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002339 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
2340 }
2341
2342 return 0;
2343
2344err_rq:
2345 kfree(vi->sq);
2346err_sq:
2347 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002348}
2349
Amit Shah3f9c10b2011-12-22 16:58:31 +05302350static int init_vqs(struct virtnet_info *vi)
2351{
Jason Wang986a4f42012-12-07 07:04:56 +00002352 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302353
Jason Wang986a4f42012-12-07 07:04:56 +00002354 /* Allocate send & receive queues */
2355 ret = virtnet_alloc_queues(vi);
2356 if (ret)
2357 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302358
Jason Wang986a4f42012-12-07 07:04:56 +00002359 ret = virtnet_find_vqs(vi);
2360 if (ret)
2361 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302362
Wanlong Gao47be2472013-01-24 23:51:29 +00002363 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002364 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002365 put_online_cpus();
2366
Amit Shah3f9c10b2011-12-22 16:58:31 +05302367 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002368
2369err_free:
2370 virtnet_free_queues(vi);
2371err:
2372 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302373}
2374
Michael Daltonfbf28d72014-01-16 22:23:30 -08002375#ifdef CONFIG_SYSFS
2376static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
2377 struct rx_queue_attribute *attribute, char *buf)
2378{
2379 struct virtnet_info *vi = netdev_priv(queue->dev);
2380 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Johannes Berg5377d7582015-08-19 09:48:40 +02002381 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002382
2383 BUG_ON(queue_index >= vi->max_queue_pairs);
2384 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002385 return sprintf(buf, "%u\n",
2386 get_mergeable_buf_len(&vi->rq[queue_index], avg));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002387}
2388
2389static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2390 __ATTR_RO(mergeable_rx_buffer_size);
2391
2392static struct attribute *virtio_net_mrg_rx_attrs[] = {
2393 &mergeable_rx_buffer_size_attribute.attr,
2394 NULL
2395};
2396
2397static const struct attribute_group virtio_net_mrg_rx_group = {
2398 .name = "virtio_net",
2399 .attrs = virtio_net_mrg_rx_attrs
2400};
2401#endif
2402
Jason Wang892d6eb2014-11-20 17:03:05 +08002403static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2404 unsigned int fbit,
2405 const char *fname, const char *dname)
2406{
2407 if (!virtio_has_feature(vdev, fbit))
2408 return false;
2409
2410 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2411 fname, dname);
2412
2413 return true;
2414}
2415
2416#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2417 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2418
2419static bool virtnet_validate_features(struct virtio_device *vdev)
2420{
2421 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2422 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2423 "VIRTIO_NET_F_CTRL_VQ") ||
2424 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2425 "VIRTIO_NET_F_CTRL_VQ") ||
2426 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2427 "VIRTIO_NET_F_CTRL_VQ") ||
2428 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2429 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2430 "VIRTIO_NET_F_CTRL_VQ"))) {
2431 return false;
2432 }
2433
2434 return true;
2435}
2436
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002437#define MIN_MTU ETH_MIN_MTU
2438#define MAX_MTU ETH_MAX_MTU
2439
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002440static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002441{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002442 if (!vdev->config->get) {
2443 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2444 __func__);
2445 return -EINVAL;
2446 }
2447
Jason Wang892d6eb2014-11-20 17:03:05 +08002448 if (!virtnet_validate_features(vdev))
2449 return -EINVAL;
2450
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002451 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2452 int mtu = virtio_cread16(vdev,
2453 offsetof(struct virtio_net_config,
2454 mtu));
2455 if (mtu < MIN_MTU)
2456 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2457 }
2458
2459 return 0;
2460}
2461
2462static int virtnet_probe(struct virtio_device *vdev)
2463{
2464 int i, err;
2465 struct net_device *dev;
2466 struct virtnet_info *vi;
2467 u16 max_queue_pairs;
2468 int mtu;
2469
Jason Wang986a4f42012-12-07 07:04:56 +00002470 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302471 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2472 struct virtio_net_config,
2473 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002474
2475 /* We need at least 2 queue's */
2476 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2477 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2478 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2479 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002480
2481 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002482 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002483 if (!dev)
2484 return -ENOMEM;
2485
2486 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002487 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002488 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002489 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002490
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002491 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002492 SET_NETDEV_DEV(dev, &vdev->dev);
2493
2494 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002495 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002496 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002497 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002498 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002499 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002500
2501 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002502 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002503 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2504 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002505 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002506 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2507 dev->hw_features |= NETIF_F_TSO;
2508 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2509 dev->hw_features |= NETIF_F_TSO6;
2510 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2511 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002512
Jason Wang41f2f122014-12-24 11:03:52 +08002513 dev->features |= NETIF_F_GSO_ROBUST;
2514
Michał Mirosław98e778c2011-03-31 01:01:35 +00002515 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07002516 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002517 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002518 }
Thomas Huth4f491292013-08-27 17:09:02 +02002519 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2520 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002521
Jason Wang4fda8302013-04-10 23:32:21 +00002522 dev->vlan_features = dev->features;
2523
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002524 /* MTU range: 68 - 65535 */
2525 dev->min_mtu = MIN_MTU;
2526 dev->max_mtu = MAX_MTU;
2527
Rusty Russell296f96f2007-10-22 11:03:37 +10002528 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302529 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2530 virtio_cread_bytes(vdev,
2531 offsetof(struct virtio_net_config, mac),
2532 dev->dev_addr, dev->addr_len);
2533 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002534 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002535
2536 /* Set up our device-specific information */
2537 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002538 vi->dev = dev;
2539 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002540 vdev->priv = vi;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002541 vi->stats = alloc_percpu(struct virtnet_stats);
2542 err = -ENOMEM;
2543 if (vi->stats == NULL)
2544 goto free;
2545
John Stultz827da442013-10-07 15:51:58 -07002546 for_each_possible_cpu(i) {
2547 struct virtnet_stats *virtnet_stats;
2548 virtnet_stats = per_cpu_ptr(vi->stats, i);
2549 u64_stats_init(&virtnet_stats->tx_syncp);
2550 u64_stats_init(&virtnet_stats->rx_syncp);
2551 }
2552
Jason Wang586d17c2012-04-11 20:43:52 +00002553 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002554
Herbert Xu97402b92008-04-18 11:24:27 +08002555 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002556 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2557 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002558 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2559 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002560 vi->big_packets = true;
2561
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002562 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2563 vi->mergeable_rx_bufs = true;
2564
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002565 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2566 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002567 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2568 else
2569 vi->hdr_len = sizeof(struct virtio_net_hdr);
2570
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002571 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2572 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302573 vi->any_header_sg = true;
2574
Jason Wang986a4f42012-12-07 07:04:56 +00002575 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2576 vi->has_cvq = true;
2577
Aaron Conole14de9d12016-06-03 16:57:12 -04002578 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2579 mtu = virtio_cread16(vdev,
2580 offsetof(struct virtio_net_config,
2581 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002582 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002583 /* Should never trigger: MTU was previously validated
2584 * in virtnet_validate.
2585 */
2586 dev_err(&vdev->dev, "device MTU appears to have changed "
2587 "it is now %d < %d", mtu, dev->min_mtu);
2588 goto free_stats;
Aaron Conole93a205e2016-10-25 16:12:12 -04002589 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002590
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002591 dev->mtu = mtu;
2592 dev->max_mtu = mtu;
2593
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002594 /* TODO: size buffers correctly in this case. */
2595 if (dev->mtu > ETH_DATA_LEN)
2596 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04002597 }
2598
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002599 if (vi->any_header_sg)
2600 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002601
Jason Wang44900012016-11-25 12:37:26 +08002602 /* Enable multiqueue by default */
2603 if (num_online_cpus() >= max_queue_pairs)
2604 vi->curr_queue_pairs = max_queue_pairs;
2605 else
2606 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002607 vi->max_queue_pairs = max_queue_pairs;
2608
2609 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302610 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002611 if (err)
Jason Wang9bb8ca82013-11-05 18:19:45 +08002612 goto free_stats;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002613
Michael Daltonfbf28d72014-01-16 22:23:30 -08002614#ifdef CONFIG_SYSFS
2615 if (vi->mergeable_rx_bufs)
2616 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2617#endif
Zhi Yong Wu0f13b66b2013-11-18 21:19:27 +08002618 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2619 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002620
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002621 virtnet_init_settings(dev);
2622
Rusty Russell296f96f2007-10-22 11:03:37 +10002623 err = register_netdev(dev);
2624 if (err) {
2625 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002626 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002627 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002628
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302629 virtio_device_ready(vdev);
2630
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002631 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002632 if (err) {
2633 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002634 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002635 }
2636
Jason Wanga2208712016-12-13 14:23:05 +08002637 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08002638
Jason Wang167c25e2010-11-10 14:45:41 +00002639 /* Assume link up if device can't report link status,
2640 otherwise get link status from config. */
2641 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2642 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002643 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002644 } else {
2645 vi->status = VIRTIO_NET_S_LINK_UP;
2646 netif_carrier_on(dev);
2647 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002648
Jason Wang3f935222017-07-19 16:54:49 +08002649 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
2650 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
2651 set_bit(guest_offloads[i], &vi->guest_offloads);
2652
Jason Wang986a4f42012-12-07 07:04:56 +00002653 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2654 dev->name, max_queue_pairs);
2655
Rusty Russell296f96f2007-10-22 11:03:37 +10002656 return 0;
2657
wangyunjianf00e35e2016-05-31 11:52:43 +08002658free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302659 vi->vdev->config->reset(vdev);
2660
Rusty Russellb3369c12008-02-04 23:50:02 -05002661 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002662free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002663 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002664 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002665 virtnet_del_vqs(vi);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002666free_stats:
2667 free_percpu(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10002668free:
2669 free_netdev(dev);
2670 return err;
2671}
2672
Amit Shah04486ed2011-12-22 16:58:32 +05302673static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002674{
Amit Shah04486ed2011-12-22 16:58:32 +05302675 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002676
2677 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002678 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002679
Jason Wang986a4f42012-12-07 07:04:56 +00002680 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002681
Michael Daltonfb518792014-01-16 22:23:26 -08002682 free_receive_page_frags(vi);
2683
Jason Wang986a4f42012-12-07 07:04:56 +00002684 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302685}
2686
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002687static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302688{
2689 struct virtnet_info *vi = vdev->priv;
2690
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002691 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002692
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302693 /* Make sure no work handler is accessing the device. */
2694 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002695
Amit Shah04486ed2011-12-22 16:58:32 +05302696 unregister_netdev(vi->dev);
2697
2698 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002699
Krishna Kumar2e66f552011-07-20 03:56:02 +00002700 free_percpu(vi->stats);
Rusty Russell74b25532007-11-19 11:20:42 -05002701 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002702}
2703
Arnd Bergmann67a75192017-07-25 17:35:50 +02002704static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05302705{
2706 struct virtnet_info *vi = vdev->priv;
2707
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002708 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002709 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302710 remove_vq_common(vi);
2711
2712 return 0;
2713}
2714
Arnd Bergmann67a75192017-07-25 17:35:50 +02002715static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05302716{
2717 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002718 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05302719
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002720 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302721 if (err)
2722 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00002723 virtnet_set_queues(vi, vi->curr_queue_pairs);
2724
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002725 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002726 if (err)
2727 return err;
2728
Amit Shah0741bcb2011-12-22 16:58:33 +05302729 return 0;
2730}
Amit Shah0741bcb2011-12-22 16:58:33 +05302731
Rusty Russell296f96f2007-10-22 11:03:37 +10002732static struct virtio_device_id id_table[] = {
2733 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2734 { 0 },
2735};
2736
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002737#define VIRTNET_FEATURES \
2738 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2739 VIRTIO_NET_F_MAC, \
2740 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2741 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2742 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2743 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2744 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2745 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2746 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Wang3f935222017-07-19 16:54:49 +08002747 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002748
Rusty Russellc45a6812008-05-02 21:50:50 -05002749static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002750 VIRTNET_FEATURES,
2751};
2752
2753static unsigned int features_legacy[] = {
2754 VIRTNET_FEATURES,
2755 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302756 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05002757};
2758
Uwe Kleine-König22402522009-11-05 01:32:44 -08002759static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05002760 .feature_table = features,
2761 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002762 .feature_table_legacy = features_legacy,
2763 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10002764 .driver.name = KBUILD_MODNAME,
2765 .driver.owner = THIS_MODULE,
2766 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002767 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10002768 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002769 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002770 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09302771#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302772 .freeze = virtnet_freeze,
2773 .restore = virtnet_restore,
2774#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10002775};
2776
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002777static __init int virtio_net_driver_init(void)
2778{
2779 int ret;
2780
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002781 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002782 virtnet_cpu_online,
2783 virtnet_cpu_down_prep);
2784 if (ret < 0)
2785 goto out;
2786 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002787 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002788 NULL, virtnet_cpu_dead);
2789 if (ret)
2790 goto err_dead;
2791
2792 ret = register_virtio_driver(&virtio_net_driver);
2793 if (ret)
2794 goto err_virtio;
2795 return 0;
2796err_virtio:
2797 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2798err_dead:
2799 cpuhp_remove_multi_state(virtionet_online);
2800out:
2801 return ret;
2802}
2803module_init(virtio_net_driver_init);
2804
2805static __exit void virtio_net_driver_exit(void)
2806{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02002807 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002808 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2809 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002810}
2811module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10002812
2813MODULE_DEVICE_TABLE(virtio, id_table);
2814MODULE_DESCRIPTION("Virtio network driver");
2815MODULE_LICENSE("GPL");