blob: 6fb7b658a6cc7b67a7f719e3f48e36cc1cb64bde [file] [log] [blame]
Rusty Russell48925e32009-09-24 09:59:20 -06001/* A network driver using virtio.
Rusty Russell296f96f2007-10-22 11:03:37 +10002 *
3 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Jeff Kirsheradf8d3f2013-12-06 06:28:47 -080016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Rusty Russell296f96f2007-10-22 11:03:37 +100017 */
18//#define DEBUG
19#include <linux/netdevice.h>
20#include <linux/etherdevice.h>
Herbert Xua9ea3fc2008-04-18 11:21:42 +080021#include <linux/ethtool.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100022#include <linux/module.h>
23#include <linux/virtio.h>
24#include <linux/virtio_net.h>
John Fastabendf600b692016-12-15 12:13:24 -080025#include <linux/bpf.h>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010026#include <linux/bpf_trace.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100027#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080028#include <linux/if_vlan.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Wanlong Gao8de4b2f2013-01-24 23:51:31 +000030#include <linux/cpu.h>
Michael Daltonab7db912014-01-16 22:23:27 -080031#include <linux/average.h>
Jason Wang186b3c92017-09-19 17:42:43 +080032#include <linux/filter.h>
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +020033#include <net/route.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100034
Amerigo Wangd34710e2013-05-09 19:50:51 +000035static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020036module_param(napi_weight, int, 0444);
37
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040038static bool csum = true, gso = true, napi_tx;
Rusty Russell34a48572008-02-04 23:50:02 -050039module_param(csum, bool, 0444);
40module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040041module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050042
Rusty Russell296f96f2007-10-22 11:03:37 +100043/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080044#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080045#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100046
Jason Wangf6b10202017-02-21 16:46:28 +080047#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
48
John Fastabend2de2f7f2017-02-02 19:16:29 -080049/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
50#define VIRTIO_XDP_HEADROOM 256
51
Johannes Berg5377d7582015-08-19 09:48:40 +020052/* RX packet size EWMA. The average packet size is used to determine the packet
53 * buffer size when refilling RX rings. As the entire RX ring may be refilled
54 * at once, the weight is chosen so that the EWMA will be insensitive to short-
55 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080056 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010057DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080058
Rick Jones66846042011-11-14 14:17:08 +000059#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000060
Colin Ian King7acd4322017-08-12 22:45:53 +010061static const unsigned long guest_offloads[] = {
62 VIRTIO_NET_F_GUEST_TSO4,
63 VIRTIO_NET_F_GUEST_TSO6,
64 VIRTIO_NET_F_GUEST_ECN,
65 VIRTIO_NET_F_GUEST_UFO
66};
Jason Wang3f935222017-07-19 16:54:49 +080067
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000068struct virtnet_stats {
Eric Dumazet83a27052012-06-05 22:35:24 +000069 struct u64_stats_sync tx_syncp;
70 struct u64_stats_sync rx_syncp;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000071 u64 tx_bytes;
72 u64 tx_packets;
73
74 u64 rx_bytes;
75 u64 rx_packets;
76};
77
Jason Wange9d74172012-12-07 07:04:55 +000078/* Internal representation of a send virtqueue */
79struct send_queue {
80 /* Virtqueue associated with this send _queue */
81 struct virtqueue *vq;
82
83 /* TX: fragments + linear part + virtio header */
84 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +000085
86 /* Name of the send queue: output.$index */
87 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040088
89 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +000090};
91
92/* Internal representation of a receive virtqueue */
93struct receive_queue {
94 /* Virtqueue associated with this receive_queue */
95 struct virtqueue *vq;
96
Rusty Russell296f96f2007-10-22 11:03:37 +100097 struct napi_struct napi;
98
John Fastabendf600b692016-12-15 12:13:24 -080099 struct bpf_prog __rcu *xdp_prog;
100
Jason Wange9d74172012-12-07 07:04:55 +0000101 /* Chain pages by the private ptr. */
102 struct page *pages;
103
Michael Daltonab7db912014-01-16 22:23:27 -0800104 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200105 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800106
Michael Daltonfb518792014-01-16 22:23:26 -0800107 /* Page frag for packet buffer allocation. */
108 struct page_frag alloc_frag;
109
Jason Wange9d74172012-12-07 07:04:55 +0000110 /* RX: fragments + linear part + virtio header */
111 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000112
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200113 /* Min single buffer size for mergeable buffers case. */
114 unsigned int min_buf_len;
115
Jason Wang986a4f42012-12-07 07:04:56 +0000116 /* Name of this receive queue: input.$index */
117 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +0000118};
119
120struct virtnet_info {
121 struct virtio_device *vdev;
122 struct virtqueue *cvq;
123 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000124 struct send_queue *sq;
125 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000126 unsigned int status;
127
Jason Wang986a4f42012-12-07 07:04:56 +0000128 /* Max # of queue pairs supported by the device */
129 u16 max_queue_pairs;
130
131 /* # of queue pairs currently used by the driver */
132 u16 curr_queue_pairs;
133
John Fastabend672aafd2016-12-15 12:13:49 -0800134 /* # of XDP queue pairs currently used by the driver */
135 u16 xdp_queue_pairs;
136
Herbert Xu97402b92008-04-18 11:24:27 +0800137 /* I like... big packets and I cannot lie! */
138 bool big_packets;
139
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800140 /* Host will merge rx buffers for big packets (shake it! shake it!) */
141 bool mergeable_rx_bufs;
142
Jason Wang986a4f42012-12-07 07:04:56 +0000143 /* Has control virtqueue */
144 bool has_cvq;
145
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930146 /* Host can handle any s/g split between our header and packet data */
147 bool any_header_sg;
148
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300149 /* Packet virtio header size */
150 u8 hdr_len;
151
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000152 /* Active statistics */
153 struct virtnet_stats __percpu *stats;
154
Rusty Russell3161e452009-08-26 12:22:32 -0700155 /* Work struct for refilling if we run low on memory. */
156 struct delayed_work refill;
157
Jason Wang586d17c2012-04-11 20:43:52 +0000158 /* Work struct for config space updates */
159 struct work_struct config_work;
160
Jason Wang986a4f42012-12-07 07:04:56 +0000161 /* Does the affinity hint is set for virtqueues? */
162 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000163
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200164 /* CPU hotplug instances for online & dead */
165 struct hlist_node node;
166 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200167
168 /* Control VQ buffers: protected by the rtnl lock */
169 struct virtio_net_ctrl_hdr ctrl_hdr;
170 virtio_net_ctrl_ack ctrl_status;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700171 struct virtio_net_ctrl_mq ctrl_mq;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200172 u8 ctrl_promisc;
173 u8 ctrl_allmulti;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700174 u16 ctrl_vid;
Jason Wang3f935222017-07-19 16:54:49 +0800175 u64 ctrl_offloads;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100176
177 /* Ethtool settings */
178 u8 duplex;
179 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800180
181 unsigned long guest_offloads;
Rusty Russell296f96f2007-10-22 11:03:37 +1000182};
183
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000184struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300185 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000186 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300187 * hdr is in a separate sg buffer, and data sg buffer shares same page
188 * with this header sg. This padding makes next sg 16 byte aligned
189 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000190 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300191 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000192};
193
Jason Wang986a4f42012-12-07 07:04:56 +0000194/* Converting between virtqueue no. and kernel tx/rx queue no.
195 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
196 */
197static int vq2txq(struct virtqueue *vq)
198{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000199 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000200}
201
202static int txq2vq(int txq)
203{
204 return txq * 2 + 1;
205}
206
207static int vq2rxq(struct virtqueue *vq)
208{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000209 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000210}
211
212static int rxq2vq(int rxq)
213{
214 return rxq * 2;
215}
216
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300217static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000218{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300219 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000220}
221
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000222/*
223 * private is used to chain pages for big packets, put the whole
224 * most recent used list in the beginning for reuse
225 */
Jason Wange9d74172012-12-07 07:04:55 +0000226static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500227{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000228 struct page *end;
229
Jason Wange9d74172012-12-07 07:04:55 +0000230 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000231 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000232 end->private = (unsigned long)rq->pages;
233 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500234}
235
Jason Wange9d74172012-12-07 07:04:55 +0000236static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500237{
Jason Wange9d74172012-12-07 07:04:55 +0000238 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500239
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000240 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000241 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000242 /* clear private here, it is used to chain pages */
243 p->private = 0;
244 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500245 p = alloc_page(gfp_mask);
246 return p;
247}
248
Willem de Bruijne4e84522017-04-24 13:49:26 -0400249static void virtqueue_napi_schedule(struct napi_struct *napi,
250 struct virtqueue *vq)
251{
252 if (napi_schedule_prep(napi)) {
253 virtqueue_disable_cb(vq);
254 __napi_schedule(napi);
255 }
256}
257
258static void virtqueue_napi_complete(struct napi_struct *napi,
259 struct virtqueue *vq, int processed)
260{
261 int opaque;
262
263 opaque = virtqueue_enable_cb_prepare(vq);
Toshiaki Makitafdaa7672017-12-07 13:15:15 +0900264 if (napi_complete_done(napi, processed)) {
265 if (unlikely(virtqueue_poll(vq, opaque)))
266 virtqueue_napi_schedule(napi, vq);
267 } else {
268 virtqueue_disable_cb(vq);
269 }
Willem de Bruijne4e84522017-04-24 13:49:26 -0400270}
271
Jason Wange9d74172012-12-07 07:04:55 +0000272static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000273{
Jason Wange9d74172012-12-07 07:04:55 +0000274 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400275 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000276
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500277 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000278 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000279
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400280 if (napi->weight)
281 virtqueue_napi_schedule(napi, vq);
282 else
283 /* We were probably waiting for more output buffers. */
284 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000285}
286
Jason Wang28b39bc2017-07-19 16:54:46 +0800287#define MRG_CTX_HEADER_SHIFT 22
288static void *mergeable_len_to_ctx(unsigned int truesize,
289 unsigned int headroom)
290{
291 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
292}
293
294static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
295{
296 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
297}
298
299static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
300{
301 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
302}
303
Mike Waychison34646452012-01-04 12:52:32 +0000304/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300305static struct sk_buff *page_to_skb(struct virtnet_info *vi,
306 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700307 struct page *page, unsigned int offset,
308 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000309{
310 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300311 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700312 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000313 char *p;
314
Michael Dalton2613af02013-10-28 15:44:18 -0700315 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000316
317 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100318 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000319 if (unlikely(!skb))
320 return NULL;
321
322 hdr = skb_vnet_hdr(skb);
323
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300324 hdr_len = vi->hdr_len;
325 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700326 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300327 else
Michael Dalton2613af02013-10-28 15:44:18 -0700328 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000329
330 memcpy(hdr, p, hdr_len);
331
332 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700333 offset += hdr_padded_len;
334 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000335
336 copy = len;
337 if (copy > skb_tailroom(skb))
338 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200339 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000340
341 len -= copy;
342 offset += copy;
343
Michael Dalton2613af02013-10-28 15:44:18 -0700344 if (vi->mergeable_rx_bufs) {
345 if (len)
346 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
347 else
348 put_page(page);
349 return skb;
350 }
351
Sasha Levine878d782011-09-28 04:40:54 +0000352 /*
353 * Verify that we can indeed put this data into a skb.
354 * This is here to handle cases when the device erroneously
355 * tries to receive more than is possible. This is usually
356 * the case of a broken device.
357 */
358 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000359 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000360 dev_kfree_skb(skb);
361 return NULL;
362 }
Michael Dalton2613af02013-10-28 15:44:18 -0700363 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000364 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700365 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
366 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
367 frag_size, truesize);
368 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000369 page = (struct page *)page->private;
370 offset = 0;
371 }
372
373 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000374 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000375
376 return skb;
377}
378
Jason Wang186b3c92017-09-19 17:42:43 +0800379static void virtnet_xdp_flush(struct net_device *dev)
380{
381 struct virtnet_info *vi = netdev_priv(dev);
382 struct send_queue *sq;
383 unsigned int qp;
384
385 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
386 sq = &vi->sq[qp];
387
388 virtqueue_kick(sq->vq);
389}
390
391static bool __virtnet_xdp_xmit(struct virtnet_info *vi,
392 struct xdp_buff *xdp)
John Fastabend56434a02016-12-15 12:14:13 -0800393{
John Fastabend56434a02016-12-15 12:14:13 -0800394 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wangf6b10202017-02-21 16:46:28 +0800395 unsigned int len;
John Fastabend722d8282017-02-02 19:15:32 -0800396 struct send_queue *sq;
397 unsigned int qp;
John Fastabend56434a02016-12-15 12:14:13 -0800398 void *xdp_sent;
399 int err;
400
John Fastabend722d8282017-02-02 19:15:32 -0800401 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
402 sq = &vi->sq[qp];
403
John Fastabend56434a02016-12-15 12:14:13 -0800404 /* Free up any pending old buffers before queueing new ones. */
405 while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Jason Wangf6b10202017-02-21 16:46:28 +0800406 struct page *sent_page = virt_to_head_page(xdp_sent);
Jason Wangbb91acc2016-12-23 22:37:32 +0800407
Jason Wangf6b10202017-02-21 16:46:28 +0800408 put_page(sent_page);
John Fastabend56434a02016-12-15 12:14:13 -0800409 }
410
Jason Wangf6b10202017-02-21 16:46:28 +0800411 xdp->data -= vi->hdr_len;
412 /* Zero header and leave csum up to XDP layers */
413 hdr = xdp->data;
414 memset(hdr, 0, vi->hdr_len);
John Fastabend56434a02016-12-15 12:14:13 -0800415
Jason Wangf6b10202017-02-21 16:46:28 +0800416 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800417
Jason Wangf6b10202017-02-21 16:46:28 +0800418 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp->data, GFP_ATOMIC);
John Fastabend56434a02016-12-15 12:14:13 -0800419 if (unlikely(err)) {
Jason Wangf6b10202017-02-21 16:46:28 +0800420 struct page *page = virt_to_head_page(xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800421
Jason Wangf6b10202017-02-21 16:46:28 +0800422 put_page(page);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100423 return false;
John Fastabend56434a02016-12-15 12:14:13 -0800424 }
425
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100426 return true;
John Fastabend56434a02016-12-15 12:14:13 -0800427}
428
Jason Wang186b3c92017-09-19 17:42:43 +0800429static int virtnet_xdp_xmit(struct net_device *dev, struct xdp_buff *xdp)
430{
431 struct virtnet_info *vi = netdev_priv(dev);
432 bool sent = __virtnet_xdp_xmit(vi, xdp);
433
434 if (!sent)
435 return -ENOSPC;
436 return 0;
437}
438
Jason Wangf6b10202017-02-21 16:46:28 +0800439static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
440{
441 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
442}
443
Jason Wang4941d472017-07-19 16:54:48 +0800444/* We copy the packet for XDP in the following cases:
445 *
446 * 1) Packet is scattered across multiple rx buffers.
447 * 2) Headroom space is insufficient.
448 *
449 * This is inefficient but it's a temporary condition that
450 * we hit right after XDP is enabled and until queue is refilled
451 * with large buffers with sufficient headroom - so it should affect
452 * at most queue size packets.
453 * Afterwards, the conditions to enable
454 * XDP should preclude the underlying device from sending packets
455 * across multiple buffers (num_buf > 1), and we make sure buffers
456 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800457 */
458static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800459 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800460 struct page *p,
461 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800462 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800463 unsigned int *len)
464{
465 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800466
467 if (!page)
468 return NULL;
469
470 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
471 page_off += *len;
472
Jason Wang56a86f82016-12-23 22:37:26 +0800473 while (--*num_buf) {
John Fastabend72979a62016-12-15 12:14:36 -0800474 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800475 void *buf;
476 int off;
477
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200478 buf = virtqueue_get_buf(rq->vq, &buflen);
479 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800480 goto err_buf;
481
John Fastabend72979a62016-12-15 12:14:36 -0800482 p = virt_to_head_page(buf);
483 off = buf - page_address(p);
484
Jason Wang56a86f82016-12-23 22:37:26 +0800485 /* guard against a misconfigured or uncooperative backend that
486 * is sending packet larger than the MTU.
487 */
488 if ((page_off + buflen) > PAGE_SIZE) {
489 put_page(p);
490 goto err_buf;
491 }
492
John Fastabend72979a62016-12-15 12:14:36 -0800493 memcpy(page_address(page) + page_off,
494 page_address(p) + off, buflen);
495 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800496 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800497 }
498
John Fastabend2de2f7f2017-02-02 19:16:29 -0800499 /* Headroom does not contribute to packet length */
500 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800501 return page;
502err_buf:
503 __free_pages(page, 0);
504 return NULL;
505}
506
Jason Wang4941d472017-07-19 16:54:48 +0800507static struct sk_buff *receive_small(struct net_device *dev,
508 struct virtnet_info *vi,
509 struct receive_queue *rq,
510 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800511 unsigned int len,
512 bool *xdp_xmit)
Jason Wang4941d472017-07-19 16:54:48 +0800513{
514 struct sk_buff *skb;
515 struct bpf_prog *xdp_prog;
516 unsigned int xdp_headroom = (unsigned long)ctx;
517 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
518 unsigned int headroom = vi->hdr_len + header_offset;
519 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
520 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
521 struct page *page = virt_to_head_page(buf);
Jason Wang186b3c92017-09-19 17:42:43 +0800522 unsigned int delta = 0, err;
Jason Wang4941d472017-07-19 16:54:48 +0800523 struct page *xdp_page;
524 len -= vi->hdr_len;
525
526 rcu_read_lock();
527 xdp_prog = rcu_dereference(rq->xdp_prog);
528 if (xdp_prog) {
529 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
530 struct xdp_buff xdp;
531 void *orig_data;
532 u32 act;
533
534 if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags))
535 goto err_xdp;
536
537 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
538 int offset = buf - page_address(page) + header_offset;
539 unsigned int tlen = len + vi->hdr_len;
540 u16 num_buf = 1;
541
542 xdp_headroom = virtnet_get_headroom(vi);
543 header_offset = VIRTNET_RX_PAD + xdp_headroom;
544 headroom = vi->hdr_len + header_offset;
545 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
546 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
547 xdp_page = xdp_linearize_page(rq, &num_buf, page,
548 offset, header_offset,
549 &tlen);
550 if (!xdp_page)
551 goto err_xdp;
552
553 buf = page_address(xdp_page);
554 put_page(page);
555 page = xdp_page;
556 }
557
558 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
559 xdp.data = xdp.data_hard_start + xdp_headroom;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200560 xdp_set_data_meta_invalid(&xdp);
Jason Wang4941d472017-07-19 16:54:48 +0800561 xdp.data_end = xdp.data + len;
562 orig_data = xdp.data;
563 act = bpf_prog_run_xdp(xdp_prog, &xdp);
564
565 switch (act) {
566 case XDP_PASS:
567 /* Recalculate length in case bpf program changed it */
568 delta = orig_data - xdp.data;
569 break;
570 case XDP_TX:
Jason Wang186b3c92017-09-19 17:42:43 +0800571 if (unlikely(!__virtnet_xdp_xmit(vi, &xdp)))
Jason Wang4941d472017-07-19 16:54:48 +0800572 trace_xdp_exception(vi->dev, xdp_prog, act);
Jason Wang186b3c92017-09-19 17:42:43 +0800573 else
574 *xdp_xmit = true;
575 rcu_read_unlock();
576 goto xdp_xmit;
577 case XDP_REDIRECT:
578 err = xdp_do_redirect(dev, &xdp, xdp_prog);
579 if (!err)
580 *xdp_xmit = true;
Jason Wang4941d472017-07-19 16:54:48 +0800581 rcu_read_unlock();
582 goto xdp_xmit;
583 default:
584 bpf_warn_invalid_xdp_action(act);
585 case XDP_ABORTED:
586 trace_xdp_exception(vi->dev, xdp_prog, act);
587 case XDP_DROP:
588 goto err_xdp;
589 }
590 }
591 rcu_read_unlock();
592
593 skb = build_skb(buf, buflen);
594 if (!skb) {
595 put_page(page);
596 goto err;
597 }
598 skb_reserve(skb, headroom - delta);
599 skb_put(skb, len + delta);
600 if (!delta) {
601 buf += header_offset;
602 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
603 } /* keep zeroed vnet hdr since packet was changed by bpf */
604
605err:
606 return skb;
607
608err_xdp:
609 rcu_read_unlock();
610 dev->stats.rx_dropped++;
611 put_page(page);
612xdp_xmit:
613 return NULL;
614}
615
616static struct sk_buff *receive_big(struct net_device *dev,
617 struct virtnet_info *vi,
618 struct receive_queue *rq,
619 void *buf,
620 unsigned int len)
621{
622 struct page *page = buf;
623 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
624
625 if (unlikely(!skb))
626 goto err;
627
628 return skb;
629
630err:
631 dev->stats.rx_dropped++;
632 give_pages(rq, page);
633 return NULL;
634}
635
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200636static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200637 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200638 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200639 void *buf,
640 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800641 unsigned int len,
642 bool *xdp_xmit)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000643{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300644 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
645 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200646 struct page *page = virt_to_head_page(buf);
647 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800648 struct sk_buff *head_skb, *curr_skb;
649 struct bpf_prog *xdp_prog;
650 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800651 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Jason Wang186b3c92017-09-19 17:42:43 +0800652 int err;
Michael Daltonab7db912014-01-16 22:23:27 -0800653
John Fastabend56434a02016-12-15 12:14:13 -0800654 head_skb = NULL;
655
John Fastabendf600b692016-12-15 12:13:24 -0800656 rcu_read_lock();
657 xdp_prog = rcu_dereference(rq->xdp_prog);
658 if (xdp_prog) {
John Fastabend72979a62016-12-15 12:14:36 -0800659 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800660 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800661 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800662 u32 act;
663
Jason Wang73b62bd2016-12-23 22:37:24 +0800664 /* This happens when rx buffer size is underestimated */
Jason Wang4941d472017-07-19 16:54:48 +0800665 if (unlikely(num_buf > 1 ||
666 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800667 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800668 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800669 page, offset,
670 VIRTIO_XDP_HEADROOM,
671 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800672 if (!xdp_page)
673 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800674 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800675 } else {
676 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800677 }
678
679 /* Transient failure which in theory could occur if
680 * in-flight packets from before XDP was enabled reach
681 * the receive path after XDP is loaded. In practice I
682 * was not able to create this condition.
683 */
Jason Wangb00f70b2016-12-23 22:37:28 +0800684 if (unlikely(hdr->hdr.gso_type))
John Fastabendf600b692016-12-15 12:13:24 -0800685 goto err_xdp;
686
John Fastabend2de2f7f2017-02-02 19:16:29 -0800687 /* Allow consuming headroom but reserve enough space to push
688 * the descriptor on if we get an XDP_TX return code.
689 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800690 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800691 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800692 xdp.data = data + vi->hdr_len;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200693 xdp_set_data_meta_invalid(&xdp);
John Fastabend0354e4d2017-02-02 19:15:01 -0800694 xdp.data_end = xdp.data + (len - vi->hdr_len);
695 act = bpf_prog_run_xdp(xdp_prog, &xdp);
696
Jason Wang31240342017-09-19 17:42:42 +0800697 if (act != XDP_PASS)
698 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
699
John Fastabend56434a02016-12-15 12:14:13 -0800700 switch (act) {
701 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800702 /* recalculate offset to account for any header
703 * adjustments. Note other cases do not build an
704 * skb and avoid using offset
705 */
706 offset = xdp.data -
707 page_address(xdp_page) - vi->hdr_len;
708
Jason Wang1830f892016-12-23 22:37:27 +0800709 /* We can only create skb based on xdp_page. */
710 if (unlikely(xdp_page != page)) {
711 rcu_read_unlock();
712 put_page(page);
713 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800714 offset, len, PAGE_SIZE);
Jason Wang1830f892016-12-23 22:37:27 +0800715 return head_skb;
716 }
John Fastabend56434a02016-12-15 12:14:13 -0800717 break;
718 case XDP_TX:
Jason Wang186b3c92017-09-19 17:42:43 +0800719 if (unlikely(!__virtnet_xdp_xmit(vi, &xdp)))
John Fastabend0354e4d2017-02-02 19:15:01 -0800720 trace_xdp_exception(vi->dev, xdp_prog, act);
Jason Wang186b3c92017-09-19 17:42:43 +0800721 else
722 *xdp_xmit = true;
John Fastabend72979a62016-12-15 12:14:36 -0800723 if (unlikely(xdp_page != page))
724 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800725 rcu_read_unlock();
726 goto xdp_xmit;
Jason Wang186b3c92017-09-19 17:42:43 +0800727 case XDP_REDIRECT:
728 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jason Wangdd543792017-09-22 14:38:58 +0800729 if (!err)
Jason Wang186b3c92017-09-19 17:42:43 +0800730 *xdp_xmit = true;
731 rcu_read_unlock();
732 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800733 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800734 bpf_warn_invalid_xdp_action(act);
735 case XDP_ABORTED:
736 trace_xdp_exception(vi->dev, xdp_prog, act);
737 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800738 if (unlikely(xdp_page != page))
739 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800740 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800741 }
John Fastabendf600b692016-12-15 12:13:24 -0800742 }
743 rcu_read_unlock();
744
Jason Wang28b39bc2017-07-19 16:54:46 +0800745 truesize = mergeable_ctx_to_truesize(ctx);
746 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300747 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200748 dev->name, len, (unsigned long)ctx);
749 dev->stats.rx_length_errors++;
750 goto err_skb;
751 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800752
John Fastabendf600b692016-12-15 12:13:24 -0800753 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
754 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000755
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200756 if (unlikely(!curr_skb))
757 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000758 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200759 int num_skb_frags;
760
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200761 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Yunjian Wang03e9f8a2017-12-04 14:02:19 +0800762 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200763 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200764 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300765 virtio16_to_cpu(vi->vdev,
766 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200767 dev->stats.rx_length_errors++;
768 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000769 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200770
771 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800772
773 truesize = mergeable_ctx_to_truesize(ctx);
774 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300775 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200776 dev->name, len, (unsigned long)ctx);
777 dev->stats.rx_length_errors++;
778 goto err_skb;
779 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200780
781 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700782 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
783 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200784
785 if (unlikely(!nskb))
786 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700787 if (curr_skb == head_skb)
788 skb_shinfo(curr_skb)->frag_list = nskb;
789 else
790 curr_skb->next = nskb;
791 curr_skb = nskb;
792 head_skb->truesize += nskb->truesize;
793 num_skb_frags = 0;
794 }
795 if (curr_skb != head_skb) {
796 head_skb->data_len += len;
797 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800798 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700799 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200800 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800801 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
802 put_page(page);
803 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800804 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800805 } else {
806 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800807 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800808 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200809 }
810
Johannes Berg5377d7582015-08-19 09:48:40 +0200811 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200812 return head_skb;
813
John Fastabendf600b692016-12-15 12:13:24 -0800814err_xdp:
815 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200816err_skb:
817 put_page(page);
818 while (--num_buf) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200819 buf = virtqueue_get_buf(rq->vq, &len);
820 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200821 pr_debug("%s: rx error: %d buffers missing\n",
822 dev->name, num_buf);
823 dev->stats.rx_length_errors++;
824 break;
825 }
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200826 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200827 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000828 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200829err_buf:
830 dev->stats.rx_dropped++;
831 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800832xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200833 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000834}
835
Jason Wang61845d22017-02-17 11:33:09 +0800836static int receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
Jason Wang186b3c92017-09-19 17:42:43 +0800837 void *buf, unsigned int len, void **ctx, bool *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +1000838{
Jason Wange9d74172012-12-07 07:04:55 +0000839 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000840 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300841 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wang61845d22017-02-17 11:33:09 +0800842 int ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000843
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300844 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000845 pr_debug("%s: short packet %i\n", dev->name, len);
846 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800847 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200848 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800849 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800850 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800851 } else {
Jason Wangf6b10202017-02-21 16:46:28 +0800852 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800853 }
Jason Wang61845d22017-02-17 11:33:09 +0800854 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000855 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000856
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200857 if (vi->mergeable_rx_bufs)
Jason Wang186b3c92017-09-19 17:42:43 +0800858 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200859 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300860 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200861 else
Jason Wang186b3c92017-09-19 17:42:43 +0800862 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200863
864 if (unlikely(!skb))
Jason Wang61845d22017-02-17 11:33:09 +0800865 return 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800866
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000867 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000868
Jason Wang61845d22017-02-17 11:33:09 +0800869 ret = skb->len;
Rusty Russell296f96f2007-10-22 11:03:37 +1000870
Mike Rapoporte858fae2016-06-08 16:09:21 +0300871 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000872 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000873
Mike Rapoporte858fae2016-06-08 16:09:21 +0300874 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
875 virtio_is_little_endian(vi->vdev))) {
876 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
877 dev->name, hdr->hdr.gso_type,
878 hdr->hdr.gso_size);
879 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000880 }
881
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300882 skb->protocol = eth_type_trans(skb, dev);
883 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
884 ntohs(skb->protocol), skb->len, skb->pkt_type);
885
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200886 napi_gro_receive(&rq->napi, skb);
Jason Wang61845d22017-02-17 11:33:09 +0800887 return ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000888
889frame_err:
890 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000891 dev_kfree_skb(skb);
Jason Wang61845d22017-02-17 11:33:09 +0800892 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000893}
894
Jason Wang192f68c2017-07-19 16:54:47 +0800895/* Unlike mergeable buffers, all buffers are allocated to the
896 * same size, except for the headroom. For this reason we do
897 * not need to use mergeable_len_to_ctx here - it is enough
898 * to store the headroom as the context ignoring the truesize.
899 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300900static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
901 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000902{
Jason Wangf6b10202017-02-21 16:46:28 +0800903 struct page_frag *alloc_frag = &rq->alloc_frag;
904 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800905 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +0800906 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +0800907 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000908 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000909
Jason Wangf6b10202017-02-21 16:46:28 +0800910 len = SKB_DATA_ALIGN(len) +
911 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
912 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000913 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800914
Jason Wangf6b10202017-02-21 16:46:28 +0800915 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
916 get_page(alloc_frag->page);
917 alloc_frag->offset += len;
918 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
919 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +0800920 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000921 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +0800922 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000923 return err;
924}
925
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300926static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
927 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000928{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000929 struct page *first, *list = NULL;
930 char *p;
931 int i, err, offset;
932
Rusty Russella5835442014-09-11 10:17:36 +0930933 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
934
Jason Wange9d74172012-12-07 07:04:55 +0000935 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000936 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000937 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000938 if (!first) {
939 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000940 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000941 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700942 }
Jason Wange9d74172012-12-07 07:04:55 +0000943 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000944
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000945 /* chain new page in list head to match sg */
946 first->private = (unsigned long)list;
947 list = first;
948 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800949
Jason Wange9d74172012-12-07 07:04:55 +0000950 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000951 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000952 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000953 return -ENOMEM;
954 }
955 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800956
Jason Wange9d74172012-12-07 07:04:55 +0000957 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300958 /* a separated rq->sg[0] for header - required in case !any_header_sg */
959 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +0800960
Jason Wange9d74172012-12-07 07:04:55 +0000961 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000962 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000963 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800964
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000965 /* chain first in list head */
966 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030967 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
968 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000969 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +0000970 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +0800971
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000972 return err;
973}
Herbert Xu97402b92008-04-18 11:24:27 +0800974
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200975static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
976 struct ewma_pkt_len *avg_pkt_len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000977{
Michael Daltonab7db912014-01-16 22:23:27 -0800978 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800979 unsigned int len;
980
Johannes Berg5377d7582015-08-19 09:48:40 +0200981 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +0300982 rq->min_buf_len, PAGE_SIZE - hdr_len);
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +0200983 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800984}
985
John Fastabend2de2f7f2017-02-02 19:16:29 -0800986static int add_recvbuf_mergeable(struct virtnet_info *vi,
987 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -0800988{
Michael Daltonfb518792014-01-16 22:23:26 -0800989 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800990 unsigned int headroom = virtnet_get_headroom(vi);
Michael Daltonfb518792014-01-16 22:23:26 -0800991 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200992 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000993 int err;
Michael Daltonfb518792014-01-16 22:23:26 -0800994 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +1000995
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200996 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800997 if (unlikely(!skb_page_frag_refill(len + headroom, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000998 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -0800999
Michael Daltonfb518792014-01-16 22:23:26 -08001000 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001001 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -08001002 get_page(alloc_frag->page);
John Fastabend2de2f7f2017-02-02 19:16:29 -08001003 alloc_frag->offset += len + headroom;
Michael Daltonfb518792014-01-16 22:23:26 -08001004 hole = alloc_frag->size - alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001005 if (hole < len + headroom) {
Michael Daltonab7db912014-01-16 22:23:27 -08001006 /* To avoid internal fragmentation, if there is very likely not
1007 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001008 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001009 */
Michael Daltonfb518792014-01-16 22:23:26 -08001010 len += hole;
1011 alloc_frag->offset += hole;
1012 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001013
Michael Daltonfb518792014-01-16 22:23:26 -08001014 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001015 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001016 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001017 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001018 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001019
1020 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001021}
1022
Rusty Russellb2baed62011-12-29 00:42:38 +00001023/*
1024 * Returns false if we couldn't fill entirely (OOM).
1025 *
1026 * Normally run in the receive path, but can also be run from ndo_open
1027 * before we're receiving packets, or from refill_work which is
1028 * careful to disable receiving (using napi_disable).
1029 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001030static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1031 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001032{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001033 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001034 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001035
Amit Shah0aea51c2009-08-26 14:58:28 +05301036 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001037 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001038 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001039 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001040 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001041 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001042 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001043
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001044 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301045 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001046 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001047 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +08001048 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -07001049 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001050}
1051
Rusty Russell18445c42008-02-04 23:49:57 -05001052static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001053{
1054 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001055 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001056
Willem de Bruijne4e84522017-04-24 13:49:26 -04001057 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001058}
1059
Willem de Bruijne4e84522017-04-24 13:49:26 -04001060static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001061{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001062 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001063
1064 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001065 * won't get another interrupt, so process any outstanding packets now.
1066 * Call local_bh_enable after to trigger softIRQ processing.
1067 */
1068 local_bh_disable();
1069 virtqueue_napi_schedule(napi, vq);
1070 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001071}
1072
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001073static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1074 struct virtqueue *vq,
1075 struct napi_struct *napi)
1076{
1077 if (!napi->weight)
1078 return;
1079
1080 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1081 * enable the feature if this is likely affine with the transmit path.
1082 */
1083 if (!vi->affinity_hint_set) {
1084 napi->weight = 0;
1085 return;
1086 }
1087
1088 return virtnet_napi_enable(vq, napi);
1089}
1090
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001091static void virtnet_napi_tx_disable(struct napi_struct *napi)
1092{
1093 if (napi->weight)
1094 napi_disable(napi);
1095}
1096
Rusty Russell3161e452009-08-26 12:22:32 -07001097static void refill_work(struct work_struct *work)
1098{
Jason Wange9d74172012-12-07 07:04:55 +00001099 struct virtnet_info *vi =
1100 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001101 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001102 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001103
Sasha Levin55257d72013-04-29 12:00:08 +09301104 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001105 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001106
Jason Wang986a4f42012-12-07 07:04:56 +00001107 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001108 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001109 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001110
1111 /* In theory, this can happen: if we don't get any buffers in
1112 * we will *never* try to fill again.
1113 */
1114 if (still_empty)
1115 schedule_delayed_work(&vi->refill, HZ/2);
1116 }
Rusty Russell3161e452009-08-26 12:22:32 -07001117}
1118
Jason Wang186b3c92017-09-19 17:42:43 +08001119static int virtnet_receive(struct receive_queue *rq, int budget, bool *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001120{
Jason Wange9d74172012-12-07 07:04:55 +00001121 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang61845d22017-02-17 11:33:09 +08001122 unsigned int len, received = 0, bytes = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001123 void *buf;
Jason Wang61845d22017-02-17 11:33:09 +08001124 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10001125
Jason Wang192f68c2017-07-19 16:54:47 +08001126 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001127 void *ctx;
1128
1129 while (received < budget &&
1130 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Jason Wang186b3c92017-09-19 17:42:43 +08001131 bytes += receive_buf(vi, rq, buf, len, ctx, xdp_xmit);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001132 received++;
1133 }
1134 } else {
1135 while (received < budget &&
1136 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Jason Wang186b3c92017-09-19 17:42:43 +08001137 bytes += receive_buf(vi, rq, buf, len, NULL, xdp_xmit);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001138 received++;
1139 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001140 }
1141
Jason Wangbe121f42014-01-16 14:45:24 +08001142 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001143 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001144 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001145 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001146
Jason Wang61845d22017-02-17 11:33:09 +08001147 u64_stats_update_begin(&stats->rx_syncp);
1148 stats->rx_bytes += bytes;
1149 stats->rx_packets += received;
1150 u64_stats_update_end(&stats->rx_syncp);
1151
Jason Wang2ffa7592014-07-23 16:33:54 +08001152 return received;
1153}
1154
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001155static void free_old_xmit_skbs(struct send_queue *sq)
1156{
1157 struct sk_buff *skb;
1158 unsigned int len;
1159 struct virtnet_info *vi = sq->vq->vdev->priv;
1160 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
1161 unsigned int packets = 0;
1162 unsigned int bytes = 0;
1163
1164 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1165 pr_debug("Sent skb %p\n", skb);
1166
1167 bytes += skb->len;
1168 packets++;
1169
Eric Dumazetdadc0732017-08-24 09:02:49 -07001170 dev_consume_skb_any(skb);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001171 }
1172
1173 /* Avoid overhead when no packets have been processed
1174 * happens when called speculatively from start_xmit.
1175 */
1176 if (!packets)
1177 return;
1178
1179 u64_stats_update_begin(&stats->tx_syncp);
1180 stats->tx_bytes += bytes;
1181 stats->tx_packets += packets;
1182 u64_stats_update_end(&stats->tx_syncp);
1183}
1184
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001185static void virtnet_poll_cleantx(struct receive_queue *rq)
1186{
1187 struct virtnet_info *vi = rq->vq->vdev->priv;
1188 unsigned int index = vq2rxq(rq->vq);
1189 struct send_queue *sq = &vi->sq[index];
1190 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1191
1192 if (!sq->napi.weight)
1193 return;
1194
1195 if (__netif_tx_trylock(txq)) {
1196 free_old_xmit_skbs(sq);
1197 __netif_tx_unlock(txq);
1198 }
1199
1200 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1201 netif_tx_wake_queue(txq);
1202}
1203
Jason Wang2ffa7592014-07-23 16:33:54 +08001204static int virtnet_poll(struct napi_struct *napi, int budget)
1205{
1206 struct receive_queue *rq =
1207 container_of(napi, struct receive_queue, napi);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001208 unsigned int received;
Jason Wang186b3c92017-09-19 17:42:43 +08001209 bool xdp_xmit = false;
Jason Wang2ffa7592014-07-23 16:33:54 +08001210
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001211 virtnet_poll_cleantx(rq);
1212
Jason Wang186b3c92017-09-19 17:42:43 +08001213 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001214
Rusty Russell8329d982007-11-19 11:20:43 -05001215 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001216 if (received < budget)
1217 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001218
Jason Wang186b3c92017-09-19 17:42:43 +08001219 if (xdp_xmit)
1220 xdp_do_flush_map();
1221
Rusty Russell296f96f2007-10-22 11:03:37 +10001222 return received;
1223}
1224
Jason Wang986a4f42012-12-07 07:04:56 +00001225static int virtnet_open(struct net_device *dev)
1226{
1227 struct virtnet_info *vi = netdev_priv(dev);
1228 int i;
1229
Jason Wange4166622013-05-21 20:03:58 +00001230 for (i = 0; i < vi->max_queue_pairs; i++) {
1231 if (i < vi->curr_queue_pairs)
1232 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001233 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001234 schedule_delayed_work(&vi->refill, 0);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001235 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001236 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001237 }
1238
1239 return 0;
1240}
1241
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001242static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1243{
1244 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1245 struct virtnet_info *vi = sq->vq->vdev->priv;
1246 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1247
1248 __netif_tx_lock(txq, raw_smp_processor_id());
1249 free_old_xmit_skbs(sq);
1250 __netif_tx_unlock(txq);
1251
1252 virtqueue_napi_complete(napi, sq->vq, 0);
1253
1254 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1255 netif_tx_wake_queue(txq);
1256
1257 return 0;
1258}
1259
Jason Wange9d74172012-12-07 07:04:55 +00001260static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001261{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001262 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001263 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001264 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001265 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001266 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301267 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001268
Johannes Berge1749612008-10-27 15:59:26 -07001269 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301270
1271 can_push = vi->any_header_sg &&
1272 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1273 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1274 /* Even if we can, don't push here yet as this would skew
1275 * csum_start offset below. */
1276 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001277 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301278 else
1279 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001280
Mike Rapoporte858fae2016-06-08 16:09:21 +03001281 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Jason Wang6391a442017-01-20 14:32:42 +08001282 virtio_is_little_endian(vi->vdev), false))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001283 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001284
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001285 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001286 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001287
Jason Wang547c8902015-08-27 14:53:06 +08001288 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301289 if (can_push) {
1290 __skb_push(skb, hdr_len);
1291 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001292 if (unlikely(num_sg < 0))
1293 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301294 /* Pull header back to avoid skew in tx bytes calculations. */
1295 __skb_pull(skb, hdr_len);
1296 } else {
1297 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001298 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1299 if (unlikely(num_sg < 0))
1300 return num_sg;
1301 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301302 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301303 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001304}
1305
Stephen Hemminger424efe92009-08-31 19:50:51 +00001306static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001307{
1308 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001309 int qnum = skb_get_queue_mapping(skb);
1310 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301311 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001312 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1313 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001314 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001315
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001316 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001317 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001318
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001319 if (use_napi && kick)
1320 virtqueue_enable_cb_delayed(sq->vq);
1321
Jacob Keller074c3582014-06-25 02:37:13 +00001322 /* timestamp packet in software */
1323 skb_tx_timestamp(skb);
1324
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001325 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001326 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001327
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301328 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001329 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301330 dev->stats.tx_fifo_errors++;
1331 if (net_ratelimit())
1332 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001333 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001334 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001335 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001336 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001337 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001338
Rusty Russell48925e32009-09-24 09:59:20 -06001339 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001340 if (!use_napi) {
1341 skb_orphan(skb);
1342 nf_reset(skb);
1343 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001344
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001345 /* If running out of space, stop queue to avoid getting packets that we
1346 * are then unable to transmit.
1347 * An alternative would be to force queuing layer to requeue the skb by
1348 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1349 * returned in a normal path of operation: it means that driver is not
1350 * maintaining the TX queue stop/start state properly, and causes
1351 * the stack to do a non-trivial amount of useless work.
1352 * Since most packets only take 1 or 2 ring slots, stopping the queue
1353 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001354 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001355 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001356 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001357 if (!use_napi &&
1358 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001359 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001360 free_old_xmit_skbs(sq);
1361 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001362 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001363 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001364 }
1365 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001366 }
Rusty Russell48925e32009-09-24 09:59:20 -06001367
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001368 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001369 virtqueue_kick(sq->vq);
1370
Rusty Russell48925e32009-09-24 09:59:20 -06001371 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001372}
1373
Amos Kong40cbfc32013-01-21 01:17:21 +00001374/*
1375 * Send command via the control virtqueue and check status. Commands
1376 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001377 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001378 */
1379static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001380 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001381{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301382 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001383 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001384
1385 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301386 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001387
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001388 vi->ctrl_status = ~0;
1389 vi->ctrl_hdr.class = class;
1390 vi->ctrl_hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301391 /* Add header */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001392 sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301393 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001394
Rusty Russellf7bc9592013-03-20 15:44:28 +10301395 if (out)
1396 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001397
Rusty Russellf7bc9592013-03-20 15:44:28 +10301398 /* Add return status. */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001399 sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001400 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001401
stephen hemmingerd24bae32013-12-09 16:17:40 -08001402 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301403 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001404
Heinz Graalfs67975902013-10-29 09:40:02 +10301405 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001406 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001407
1408 /* Spin for a response, the kick causes an ioport write, trapping
1409 * into the hypervisor, so the request should be handled immediately.
1410 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301411 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1412 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001413 cpu_relax();
1414
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001415 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001416}
1417
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001418static int virtnet_set_mac_address(struct net_device *dev, void *p)
1419{
1420 struct virtnet_info *vi = netdev_priv(dev);
1421 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001422 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001423 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001424 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001425
Shyam Saini801822d2016-12-24 00:44:58 +05301426 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001427 if (!addr)
1428 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001429
1430 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001431 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001432 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001433
Amos Kong7e58d5a2013-01-21 01:17:23 +00001434 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1435 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1436 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001437 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001438 dev_warn(&vdev->dev,
1439 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001440 ret = -EINVAL;
1441 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001442 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001443 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1444 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301445 unsigned int i;
1446
1447 /* Naturally, this has an atomicity problem. */
1448 for (i = 0; i < dev->addr_len; i++)
1449 virtio_cwrite8(vdev,
1450 offsetof(struct virtio_net_config, mac) +
1451 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001452 }
1453
1454 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001455 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001456
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001457out:
1458 kfree(addr);
1459 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001460}
1461
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001462static void virtnet_stats(struct net_device *dev,
1463 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001464{
1465 struct virtnet_info *vi = netdev_priv(dev);
1466 int cpu;
1467 unsigned int start;
1468
1469 for_each_possible_cpu(cpu) {
Eric Dumazet58472a72012-02-13 06:53:41 +00001470 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001471 u64 tpackets, tbytes, rpackets, rbytes;
1472
1473 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001474 start = u64_stats_fetch_begin_irq(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001475 tpackets = stats->tx_packets;
1476 tbytes = stats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001477 } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001478
1479 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001480 start = u64_stats_fetch_begin_irq(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001481 rpackets = stats->rx_packets;
1482 rbytes = stats->rx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001483 } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001484
1485 tot->rx_packets += rpackets;
1486 tot->tx_packets += tpackets;
1487 tot->rx_bytes += rbytes;
1488 tot->tx_bytes += tbytes;
1489 }
1490
1491 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001492 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001493 tot->rx_dropped = dev->stats.rx_dropped;
1494 tot->rx_length_errors = dev->stats.rx_length_errors;
1495 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001496}
1497
Amit Shahda74e892008-02-29 16:24:50 +05301498#ifdef CONFIG_NET_POLL_CONTROLLER
1499static void virtnet_netpoll(struct net_device *dev)
1500{
1501 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001502 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301503
Jason Wang986a4f42012-12-07 07:04:56 +00001504 for (i = 0; i < vi->curr_queue_pairs; i++)
1505 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301506}
1507#endif
1508
Jason Wang586d17c2012-04-11 20:43:52 +00001509static void virtnet_ack_link_announce(struct virtnet_info *vi)
1510{
1511 rtnl_lock();
1512 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001513 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001514 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1515 rtnl_unlock();
1516}
1517
John Fastabend473153292017-02-02 19:14:32 -08001518static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001519{
1520 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001521 struct net_device *dev = vi->dev;
1522
1523 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1524 return 0;
1525
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001526 vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1527 sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001528
1529 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001530 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001531 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1532 queue_pairs);
1533 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301534 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001535 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001536 /* virtnet_open() will refill when device is going to up. */
1537 if (dev->flags & IFF_UP)
1538 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301539 }
Jason Wang986a4f42012-12-07 07:04:56 +00001540
1541 return 0;
1542}
1543
John Fastabend473153292017-02-02 19:14:32 -08001544static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1545{
1546 int err;
1547
1548 rtnl_lock();
1549 err = _virtnet_set_queues(vi, queue_pairs);
1550 rtnl_unlock();
1551 return err;
1552}
1553
Rusty Russell296f96f2007-10-22 11:03:37 +10001554static int virtnet_close(struct net_device *dev)
1555{
1556 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001557 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001558
Rusty Russellb2baed62011-12-29 00:42:38 +00001559 /* Make sure refill_work doesn't re-enable napi! */
1560 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001561
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001562 for (i = 0; i < vi->max_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001563 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001564 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001565 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001566
Rusty Russell296f96f2007-10-22 11:03:37 +10001567 return 0;
1568}
1569
Alex Williamson2af76982009-02-04 09:02:40 +00001570static void virtnet_set_rx_mode(struct net_device *dev)
1571{
1572 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001573 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001574 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001575 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001576 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001577 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001578 void *buf;
1579 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001580
stephen hemminger788a8b62013-12-09 16:18:45 -08001581 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001582 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1583 return;
1584
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001585 vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0);
1586 vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001587
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001588 sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001589
1590 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001591 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001592 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001593 vi->ctrl_promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001594
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001595 sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001596
1597 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001598 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001599 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001600 vi->ctrl_allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001601
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001602 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001603 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001604 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001605 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1606 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1607 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001608 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001609 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001610
Alex Williamson23e258e2009-05-01 17:27:56 +00001611 sg_init_table(sg, 2);
1612
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001613 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001614 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001615 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001616 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001617 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001618
1619 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001620 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001621
1622 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001623 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001624
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001625 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001626 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001627 netdev_for_each_mc_addr(ha, dev)
1628 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001629
1630 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001631 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001632
1633 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001634 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001635 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001636
1637 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001638}
1639
Patrick McHardy80d5c362013-04-19 02:04:28 +00001640static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1641 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001642{
1643 struct virtnet_info *vi = netdev_priv(dev);
1644 struct scatterlist sg;
1645
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001646 vi->ctrl_vid = vid;
1647 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001648
1649 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001650 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001651 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001652 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001653}
1654
Patrick McHardy80d5c362013-04-19 02:04:28 +00001655static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1656 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001657{
1658 struct virtnet_info *vi = netdev_priv(dev);
1659 struct scatterlist sg;
1660
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001661 vi->ctrl_vid = vid;
1662 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001663
1664 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001665 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001666 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001667 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001668}
1669
Wanlong Gao8898c212013-01-24 23:51:30 +00001670static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001671{
1672 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001673
1674 if (vi->affinity_hint_set) {
1675 for (i = 0; i < vi->max_queue_pairs; i++) {
1676 virtqueue_set_affinity(vi->rq[i].vq, -1);
1677 virtqueue_set_affinity(vi->sq[i].vq, -1);
1678 }
1679
1680 vi->affinity_hint_set = false;
1681 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001682}
1683
1684static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001685{
1686 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001687 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001688
1689 /* In multiqueue mode, when the number of cpu is equal to the number of
1690 * queue pairs, we let the queue pairs to be private to one cpu by
1691 * setting the affinity hint to eliminate the contention.
1692 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001693 if (vi->curr_queue_pairs == 1 ||
1694 vi->max_queue_pairs != num_online_cpus()) {
1695 virtnet_clean_affinity(vi, -1);
1696 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001697 }
1698
Wanlong Gao8898c212013-01-24 23:51:30 +00001699 i = 0;
1700 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001701 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1702 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001703 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001704 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001705 }
1706
Wanlong Gao8898c212013-01-24 23:51:30 +00001707 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001708}
1709
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001710static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001711{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001712 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1713 node);
1714 virtnet_set_affinity(vi);
1715 return 0;
1716}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001717
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001718static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1719{
1720 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1721 node_dead);
1722 virtnet_set_affinity(vi);
1723 return 0;
1724}
Jason Wang3ab098d2013-10-15 11:18:58 +08001725
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001726static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1727{
1728 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1729 node);
1730
1731 virtnet_clean_affinity(vi, cpu);
1732 return 0;
1733}
1734
1735static enum cpuhp_state virtionet_online;
1736
1737static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1738{
1739 int ret;
1740
1741 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1742 if (ret)
1743 return ret;
1744 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1745 &vi->node_dead);
1746 if (!ret)
1747 return ret;
1748 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1749 return ret;
1750}
1751
1752static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1753{
1754 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1755 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1756 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001757}
1758
Rick Jones8f9f4662011-10-19 08:10:59 +00001759static void virtnet_get_ringparam(struct net_device *dev,
1760 struct ethtool_ringparam *ring)
1761{
1762 struct virtnet_info *vi = netdev_priv(dev);
1763
Jason Wang986a4f42012-12-07 07:04:56 +00001764 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1765 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001766 ring->rx_pending = ring->rx_max_pending;
1767 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001768}
1769
Rick Jones66846042011-11-14 14:17:08 +00001770
1771static void virtnet_get_drvinfo(struct net_device *dev,
1772 struct ethtool_drvinfo *info)
1773{
1774 struct virtnet_info *vi = netdev_priv(dev);
1775 struct virtio_device *vdev = vi->vdev;
1776
1777 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1778 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1779 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1780
1781}
1782
Jason Wangd73bcd22012-12-07 07:04:57 +00001783/* TODO: Eliminate OOO packets during switching */
1784static int virtnet_set_channels(struct net_device *dev,
1785 struct ethtool_channels *channels)
1786{
1787 struct virtnet_info *vi = netdev_priv(dev);
1788 u16 queue_pairs = channels->combined_count;
1789 int err;
1790
1791 /* We don't support separate rx/tx channels.
1792 * We don't allow setting 'other' channels.
1793 */
1794 if (channels->rx_count || channels->tx_count || channels->other_count)
1795 return -EINVAL;
1796
Amos Kongc18e9cd2014-04-18 13:45:41 +08001797 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001798 return -EINVAL;
1799
John Fastabendf600b692016-12-15 12:13:24 -08001800 /* For now we don't support modifying channels while XDP is loaded
1801 * also when XDP is loaded all RX queues have XDP programs so we only
1802 * need to check a single RX queue.
1803 */
1804 if (vi->rq[0].xdp_prog)
1805 return -EINVAL;
1806
Wanlong Gao47be2472013-01-24 23:51:29 +00001807 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08001808 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00001809 if (!err) {
1810 netif_set_real_num_tx_queues(dev, queue_pairs);
1811 netif_set_real_num_rx_queues(dev, queue_pairs);
1812
Wanlong Gao8898c212013-01-24 23:51:30 +00001813 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001814 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001815 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001816
1817 return err;
1818}
1819
1820static void virtnet_get_channels(struct net_device *dev,
1821 struct ethtool_channels *channels)
1822{
1823 struct virtnet_info *vi = netdev_priv(dev);
1824
1825 channels->combined_count = vi->curr_queue_pairs;
1826 channels->max_combined = vi->max_queue_pairs;
1827 channels->max_other = 0;
1828 channels->rx_count = 0;
1829 channels->tx_count = 0;
1830 channels->other_count = 0;
1831}
1832
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001833/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001834static bool
1835virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001836{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001837 struct ethtool_link_ksettings diff1 = *cmd;
1838 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001839
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001840 /* cmd is always set so we need to clear it, validate the port type
1841 * and also without autonegotiation we can ignore advertising
1842 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001843 diff1.base.speed = 0;
1844 diff2.base.port = PORT_OTHER;
1845 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
1846 diff1.base.duplex = 0;
1847 diff1.base.cmd = 0;
1848 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001849
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001850 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
1851 bitmap_empty(diff1.link_modes.supported,
1852 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1853 bitmap_empty(diff1.link_modes.advertising,
1854 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1855 bitmap_empty(diff1.link_modes.lp_advertising,
1856 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001857}
1858
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001859static int virtnet_set_link_ksettings(struct net_device *dev,
1860 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001861{
1862 struct virtnet_info *vi = netdev_priv(dev);
1863 u32 speed;
1864
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001865 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001866 /* don't allow custom speed and duplex */
1867 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001868 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001869 !virtnet_validate_ethtool_cmd(cmd))
1870 return -EINVAL;
1871 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001872 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001873
1874 return 0;
1875}
1876
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001877static int virtnet_get_link_ksettings(struct net_device *dev,
1878 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001879{
1880 struct virtnet_info *vi = netdev_priv(dev);
1881
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001882 cmd->base.speed = vi->speed;
1883 cmd->base.duplex = vi->duplex;
1884 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001885
1886 return 0;
1887}
1888
1889static void virtnet_init_settings(struct net_device *dev)
1890{
1891 struct virtnet_info *vi = netdev_priv(dev);
1892
1893 vi->speed = SPEED_UNKNOWN;
1894 vi->duplex = DUPLEX_UNKNOWN;
1895}
1896
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001897static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00001898 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001899 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00001900 .get_ringparam = virtnet_get_ringparam,
Jason Wangd73bcd22012-12-07 07:04:57 +00001901 .set_channels = virtnet_set_channels,
1902 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00001903 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001904 .get_link_ksettings = virtnet_get_link_ksettings,
1905 .set_link_ksettings = virtnet_set_link_ksettings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001906};
1907
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001908static void virtnet_freeze_down(struct virtio_device *vdev)
1909{
1910 struct virtnet_info *vi = vdev->priv;
1911 int i;
1912
1913 /* Make sure no work handler is accessing the device */
1914 flush_work(&vi->config_work);
1915
1916 netif_device_detach(vi->dev);
Jason Wang713a98d2017-06-28 09:51:03 +08001917 netif_tx_disable(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001918 cancel_delayed_work_sync(&vi->refill);
1919
1920 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001921 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001922 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001923 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001924 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001925 }
1926}
1927
1928static int init_vqs(struct virtnet_info *vi);
1929
1930static int virtnet_restore_up(struct virtio_device *vdev)
1931{
1932 struct virtnet_info *vi = vdev->priv;
1933 int err, i;
1934
1935 err = init_vqs(vi);
1936 if (err)
1937 return err;
1938
1939 virtio_device_ready(vdev);
1940
1941 if (netif_running(vi->dev)) {
1942 for (i = 0; i < vi->curr_queue_pairs; i++)
1943 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
1944 schedule_delayed_work(&vi->refill, 0);
1945
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001946 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04001947 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001948 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
1949 &vi->sq[i].napi);
1950 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001951 }
1952
1953 netif_device_attach(vi->dev);
1954 return err;
1955}
1956
Jason Wang3f935222017-07-19 16:54:49 +08001957static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
1958{
1959 struct scatterlist sg;
1960 vi->ctrl_offloads = cpu_to_virtio64(vi->vdev, offloads);
1961
1962 sg_init_one(&sg, &vi->ctrl_offloads, sizeof(vi->ctrl_offloads));
1963
1964 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
1965 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
1966 dev_warn(&vi->dev->dev, "Fail to set guest offload. \n");
1967 return -EINVAL;
1968 }
1969
1970 return 0;
1971}
1972
1973static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
1974{
1975 u64 offloads = 0;
1976
1977 if (!vi->guest_offloads)
1978 return 0;
1979
1980 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
1981 offloads = 1ULL << VIRTIO_NET_F_GUEST_CSUM;
1982
1983 return virtnet_set_guest_offloads(vi, offloads);
1984}
1985
1986static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
1987{
1988 u64 offloads = vi->guest_offloads;
1989
1990 if (!vi->guest_offloads)
1991 return 0;
1992 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
1993 offloads |= 1ULL << VIRTIO_NET_F_GUEST_CSUM;
1994
1995 return virtnet_set_guest_offloads(vi, offloads);
1996}
1997
Jakub Kicinski9861ce02017-04-30 21:46:48 -07001998static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
1999 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08002000{
2001 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2002 struct virtnet_info *vi = netdev_priv(dev);
2003 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002004 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002005 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002006
Jason Wang3f935222017-07-19 16:54:49 +08002007 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2008 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2009 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2010 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
2011 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO))) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002012 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 -08002013 return -EOPNOTSUPP;
2014 }
2015
2016 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002017 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002018 return -EINVAL;
2019 }
2020
2021 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002022 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002023 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2024 return -EINVAL;
2025 }
2026
John Fastabend672aafd2016-12-15 12:13:49 -08002027 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2028 if (prog)
2029 xdp_qp = nr_cpu_ids;
2030
2031 /* XDP requires extra queues for XDP_TX */
2032 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002033 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002034 netdev_warn(dev, "request %i queues but max is %i\n",
2035 curr_qp + xdp_qp, vi->max_queue_pairs);
2036 return -ENOMEM;
2037 }
2038
John Fastabend2de2f7f2017-02-02 19:16:29 -08002039 if (prog) {
2040 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
2041 if (IS_ERR(prog))
2042 return PTR_ERR(prog);
2043 }
2044
Jason Wang4941d472017-07-19 16:54:48 +08002045 /* Make sure NAPI is not using any XDP TX queues for RX. */
2046 for (i = 0; i < vi->max_queue_pairs; i++)
2047 napi_disable(&vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002048
John Fastabend672aafd2016-12-15 12:13:49 -08002049 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002050 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2051 if (err)
2052 goto err;
2053 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002054
John Fastabendf600b692016-12-15 12:13:24 -08002055 for (i = 0; i < vi->max_queue_pairs; i++) {
2056 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2057 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
Jason Wang3f935222017-07-19 16:54:49 +08002058 if (i == 0) {
2059 if (!old_prog)
2060 virtnet_clear_guest_offloads(vi);
2061 if (!prog)
2062 virtnet_restore_guest_offloads(vi);
2063 }
John Fastabendf600b692016-12-15 12:13:24 -08002064 if (old_prog)
2065 bpf_prog_put(old_prog);
Jason Wang4941d472017-07-19 16:54:48 +08002066 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002067 }
2068
2069 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002070
Jason Wang4941d472017-07-19 16:54:48 +08002071err:
2072 for (i = 0; i < vi->max_queue_pairs; i++)
2073 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08002074 if (prog)
2075 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2076 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002077}
2078
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002079static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08002080{
2081 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002082 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08002083 int i;
2084
2085 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002086 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2087 if (xdp_prog)
2088 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08002089 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002090 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08002091}
2092
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002093static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
John Fastabendf600b692016-12-15 12:13:24 -08002094{
2095 switch (xdp->command) {
2096 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002097 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002098 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002099 xdp->prog_id = virtnet_xdp_query(dev);
2100 xdp->prog_attached = !!xdp->prog_id;
John Fastabendf600b692016-12-15 12:13:24 -08002101 return 0;
2102 default:
2103 return -EINVAL;
2104 }
2105}
2106
Stephen Hemminger76288b42009-01-06 10:44:22 -08002107static const struct net_device_ops virtnet_netdev = {
2108 .ndo_open = virtnet_open,
2109 .ndo_stop = virtnet_close,
2110 .ndo_start_xmit = start_xmit,
2111 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002112 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002113 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002114 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002115 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2116 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002117#ifdef CONFIG_NET_POLL_CONTROLLER
2118 .ndo_poll_controller = virtnet_netpoll,
2119#endif
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002120 .ndo_bpf = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002121 .ndo_xdp_xmit = virtnet_xdp_xmit,
2122 .ndo_xdp_flush = virtnet_xdp_flush,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002123 .ndo_features_check = passthru_features_check,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002124};
2125
Jason Wang586d17c2012-04-11 20:43:52 +00002126static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002127{
Jason Wang586d17c2012-04-11 20:43:52 +00002128 struct virtnet_info *vi =
2129 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002130 u16 v;
2131
Rusty Russell855e0c52013-10-14 18:11:51 +10302132 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2133 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302134 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002135
2136 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002137 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002138 virtnet_ack_link_announce(vi);
2139 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002140
2141 /* Ignore unknown (future) status bits */
2142 v &= VIRTIO_NET_S_LINK_UP;
2143
2144 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302145 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002146
2147 vi->status = v;
2148
2149 if (vi->status & VIRTIO_NET_S_LINK_UP) {
2150 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002151 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002152 } else {
2153 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002154 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002155 }
2156}
2157
2158static void virtnet_config_changed(struct virtio_device *vdev)
2159{
2160 struct virtnet_info *vi = vdev->priv;
2161
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002162 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002163}
2164
Jason Wang986a4f42012-12-07 07:04:56 +00002165static void virtnet_free_queues(struct virtnet_info *vi)
2166{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002167 int i;
2168
Jason Wangab3971b2015-03-12 13:57:44 +08002169 for (i = 0; i < vi->max_queue_pairs; i++) {
2170 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002171 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002172 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002173 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002174
Eric Dumazet963abe52016-11-15 22:24:12 -08002175 /* We called napi_hash_del() before netif_napi_del(),
2176 * we need to respect an RCU grace period before freeing vi->rq
2177 */
2178 synchronize_net();
2179
Jason Wang986a4f42012-12-07 07:04:56 +00002180 kfree(vi->rq);
2181 kfree(vi->sq);
2182}
2183
John Fastabend473153292017-02-02 19:14:32 -08002184static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002185{
John Fastabendf600b692016-12-15 12:13:24 -08002186 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002187 int i;
2188
2189 for (i = 0; i < vi->max_queue_pairs; i++) {
2190 while (vi->rq[i].pages)
2191 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002192
2193 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2194 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2195 if (old_prog)
2196 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002197 }
John Fastabend473153292017-02-02 19:14:32 -08002198}
2199
2200static void free_receive_bufs(struct virtnet_info *vi)
2201{
2202 rtnl_lock();
2203 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002204 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002205}
2206
Michael Daltonfb518792014-01-16 22:23:26 -08002207static void free_receive_page_frags(struct virtnet_info *vi)
2208{
2209 int i;
2210 for (i = 0; i < vi->max_queue_pairs; i++)
2211 if (vi->rq[i].alloc_frag.page)
2212 put_page(vi->rq[i].alloc_frag.page);
2213}
2214
John Fastabendb68df012017-01-25 18:22:48 -08002215static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002216{
2217 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2218 return false;
2219 else if (q < vi->curr_queue_pairs)
2220 return true;
2221 else
2222 return false;
2223}
2224
Jason Wang986a4f42012-12-07 07:04:56 +00002225static void free_unused_bufs(struct virtnet_info *vi)
2226{
2227 void *buf;
2228 int i;
2229
2230 for (i = 0; i < vi->max_queue_pairs; i++) {
2231 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002232 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002233 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002234 dev_kfree_skb(buf);
2235 else
2236 put_page(virt_to_head_page(buf));
2237 }
Jason Wang986a4f42012-12-07 07:04:56 +00002238 }
2239
2240 for (i = 0; i < vi->max_queue_pairs; i++) {
2241 struct virtqueue *vq = vi->rq[i].vq;
2242
2243 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002244 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002245 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002246 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002247 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002248 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002249 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002250 }
Jason Wang986a4f42012-12-07 07:04:56 +00002251 }
Jason Wang986a4f42012-12-07 07:04:56 +00002252 }
2253}
2254
Jason Wange9d74172012-12-07 07:04:55 +00002255static void virtnet_del_vqs(struct virtnet_info *vi)
2256{
2257 struct virtio_device *vdev = vi->vdev;
2258
Wanlong Gao8898c212013-01-24 23:51:30 +00002259 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002260
Jason Wange9d74172012-12-07 07:04:55 +00002261 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002262
2263 virtnet_free_queues(vi);
2264}
2265
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002266/* How large should a single buffer be so a queue full of these can fit at
2267 * least one full packet?
2268 * Logic below assumes the mergeable buffer header is used.
2269 */
2270static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2271{
2272 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2273 unsigned int rq_size = virtqueue_get_vring_size(vq);
2274 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2275 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2276 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2277
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002278 return max(max(min_buf_len, hdr_len) - hdr_len,
2279 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002280}
2281
Jason Wang986a4f42012-12-07 07:04:56 +00002282static int virtnet_find_vqs(struct virtnet_info *vi)
2283{
2284 vq_callback_t **callbacks;
2285 struct virtqueue **vqs;
2286 int ret = -ENOMEM;
2287 int i, total_vqs;
2288 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002289 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002290
2291 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2292 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2293 * possible control vq.
2294 */
2295 total_vqs = vi->max_queue_pairs * 2 +
2296 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2297
2298 /* Allocate space for find_vqs parameters */
2299 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
2300 if (!vqs)
2301 goto err_vq;
2302 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
2303 if (!callbacks)
2304 goto err_callback;
2305 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
2306 if (!names)
2307 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002308 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002309 ctx = kzalloc(total_vqs * sizeof(*ctx), GFP_KERNEL);
2310 if (!ctx)
2311 goto err_ctx;
2312 } else {
2313 ctx = NULL;
2314 }
Jason Wang986a4f42012-12-07 07:04:56 +00002315
2316 /* Parameters for control virtqueue, if any */
2317 if (vi->has_cvq) {
2318 callbacks[total_vqs - 1] = NULL;
2319 names[total_vqs - 1] = "control";
2320 }
2321
2322 /* Allocate/initialize parameters for send/receive virtqueues */
2323 for (i = 0; i < vi->max_queue_pairs; i++) {
2324 callbacks[rxq2vq(i)] = skb_recv_done;
2325 callbacks[txq2vq(i)] = skb_xmit_done;
2326 sprintf(vi->rq[i].name, "input.%d", i);
2327 sprintf(vi->sq[i].name, "output.%d", i);
2328 names[rxq2vq(i)] = vi->rq[i].name;
2329 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002330 if (ctx)
2331 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002332 }
2333
2334 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002335 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002336 if (ret)
2337 goto err_find;
2338
2339 if (vi->has_cvq) {
2340 vi->cvq = vqs[total_vqs - 1];
2341 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002342 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002343 }
2344
2345 for (i = 0; i < vi->max_queue_pairs; i++) {
2346 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002347 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002348 vi->sq[i].vq = vqs[txq2vq(i)];
2349 }
2350
2351 kfree(names);
2352 kfree(callbacks);
2353 kfree(vqs);
Jason Wang55281622017-07-07 19:56:09 +08002354 kfree(ctx);
Jason Wang986a4f42012-12-07 07:04:56 +00002355
2356 return 0;
2357
2358err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002359 kfree(ctx);
2360err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002361 kfree(names);
2362err_names:
2363 kfree(callbacks);
2364err_callback:
2365 kfree(vqs);
2366err_vq:
2367 return ret;
2368}
2369
2370static int virtnet_alloc_queues(struct virtnet_info *vi)
2371{
2372 int i;
2373
2374 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
2375 if (!vi->sq)
2376 goto err_sq;
2377 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002378 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002379 goto err_rq;
2380
2381 INIT_DELAYED_WORK(&vi->refill, refill_work);
2382 for (i = 0; i < vi->max_queue_pairs; i++) {
2383 vi->rq[i].pages = NULL;
2384 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2385 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002386 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2387 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002388
2389 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002390 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002391 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
2392 }
2393
2394 return 0;
2395
2396err_rq:
2397 kfree(vi->sq);
2398err_sq:
2399 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002400}
2401
Amit Shah3f9c10b2011-12-22 16:58:31 +05302402static int init_vqs(struct virtnet_info *vi)
2403{
Jason Wang986a4f42012-12-07 07:04:56 +00002404 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302405
Jason Wang986a4f42012-12-07 07:04:56 +00002406 /* Allocate send & receive queues */
2407 ret = virtnet_alloc_queues(vi);
2408 if (ret)
2409 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302410
Jason Wang986a4f42012-12-07 07:04:56 +00002411 ret = virtnet_find_vqs(vi);
2412 if (ret)
2413 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302414
Wanlong Gao47be2472013-01-24 23:51:29 +00002415 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002416 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002417 put_online_cpus();
2418
Amit Shah3f9c10b2011-12-22 16:58:31 +05302419 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002420
2421err_free:
2422 virtnet_free_queues(vi);
2423err:
2424 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302425}
2426
Michael Daltonfbf28d72014-01-16 22:23:30 -08002427#ifdef CONFIG_SYSFS
2428static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002429 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002430{
2431 struct virtnet_info *vi = netdev_priv(queue->dev);
2432 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Johannes Berg5377d7582015-08-19 09:48:40 +02002433 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002434
2435 BUG_ON(queue_index >= vi->max_queue_pairs);
2436 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002437 return sprintf(buf, "%u\n",
2438 get_mergeable_buf_len(&vi->rq[queue_index], avg));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002439}
2440
2441static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2442 __ATTR_RO(mergeable_rx_buffer_size);
2443
2444static struct attribute *virtio_net_mrg_rx_attrs[] = {
2445 &mergeable_rx_buffer_size_attribute.attr,
2446 NULL
2447};
2448
2449static const struct attribute_group virtio_net_mrg_rx_group = {
2450 .name = "virtio_net",
2451 .attrs = virtio_net_mrg_rx_attrs
2452};
2453#endif
2454
Jason Wang892d6eb2014-11-20 17:03:05 +08002455static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2456 unsigned int fbit,
2457 const char *fname, const char *dname)
2458{
2459 if (!virtio_has_feature(vdev, fbit))
2460 return false;
2461
2462 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2463 fname, dname);
2464
2465 return true;
2466}
2467
2468#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2469 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2470
2471static bool virtnet_validate_features(struct virtio_device *vdev)
2472{
2473 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2474 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2475 "VIRTIO_NET_F_CTRL_VQ") ||
2476 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2477 "VIRTIO_NET_F_CTRL_VQ") ||
2478 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2479 "VIRTIO_NET_F_CTRL_VQ") ||
2480 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2481 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2482 "VIRTIO_NET_F_CTRL_VQ"))) {
2483 return false;
2484 }
2485
2486 return true;
2487}
2488
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002489#define MIN_MTU ETH_MIN_MTU
2490#define MAX_MTU ETH_MAX_MTU
2491
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002492static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002493{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002494 if (!vdev->config->get) {
2495 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2496 __func__);
2497 return -EINVAL;
2498 }
2499
Jason Wang892d6eb2014-11-20 17:03:05 +08002500 if (!virtnet_validate_features(vdev))
2501 return -EINVAL;
2502
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002503 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2504 int mtu = virtio_cread16(vdev,
2505 offsetof(struct virtio_net_config,
2506 mtu));
2507 if (mtu < MIN_MTU)
2508 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2509 }
2510
2511 return 0;
2512}
2513
2514static int virtnet_probe(struct virtio_device *vdev)
2515{
2516 int i, err;
2517 struct net_device *dev;
2518 struct virtnet_info *vi;
2519 u16 max_queue_pairs;
2520 int mtu;
2521
Jason Wang986a4f42012-12-07 07:04:56 +00002522 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302523 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2524 struct virtio_net_config,
2525 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002526
2527 /* We need at least 2 queue's */
2528 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2529 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2530 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2531 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002532
2533 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002534 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002535 if (!dev)
2536 return -ENOMEM;
2537
2538 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002539 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002540 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002541 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002542
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002543 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002544 SET_NETDEV_DEV(dev, &vdev->dev);
2545
2546 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002547 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002548 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002549 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002550 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002551 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002552
2553 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002554 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002555 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2556 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002557 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002558 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2559 dev->hw_features |= NETIF_F_TSO;
2560 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2561 dev->hw_features |= NETIF_F_TSO6;
2562 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2563 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002564
Jason Wang41f2f122014-12-24 11:03:52 +08002565 dev->features |= NETIF_F_GSO_ROBUST;
2566
Michał Mirosław98e778c2011-03-31 01:01:35 +00002567 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07002568 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002569 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002570 }
Thomas Huth4f491292013-08-27 17:09:02 +02002571 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2572 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002573
Jason Wang4fda8302013-04-10 23:32:21 +00002574 dev->vlan_features = dev->features;
2575
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002576 /* MTU range: 68 - 65535 */
2577 dev->min_mtu = MIN_MTU;
2578 dev->max_mtu = MAX_MTU;
2579
Rusty Russell296f96f2007-10-22 11:03:37 +10002580 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302581 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2582 virtio_cread_bytes(vdev,
2583 offsetof(struct virtio_net_config, mac),
2584 dev->dev_addr, dev->addr_len);
2585 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002586 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002587
2588 /* Set up our device-specific information */
2589 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002590 vi->dev = dev;
2591 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002592 vdev->priv = vi;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002593 vi->stats = alloc_percpu(struct virtnet_stats);
2594 err = -ENOMEM;
2595 if (vi->stats == NULL)
2596 goto free;
2597
John Stultz827da442013-10-07 15:51:58 -07002598 for_each_possible_cpu(i) {
2599 struct virtnet_stats *virtnet_stats;
2600 virtnet_stats = per_cpu_ptr(vi->stats, i);
2601 u64_stats_init(&virtnet_stats->tx_syncp);
2602 u64_stats_init(&virtnet_stats->rx_syncp);
2603 }
2604
Jason Wang586d17c2012-04-11 20:43:52 +00002605 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002606
Herbert Xu97402b92008-04-18 11:24:27 +08002607 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002608 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2609 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002610 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2611 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002612 vi->big_packets = true;
2613
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002614 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2615 vi->mergeable_rx_bufs = true;
2616
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002617 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2618 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002619 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2620 else
2621 vi->hdr_len = sizeof(struct virtio_net_hdr);
2622
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002623 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2624 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302625 vi->any_header_sg = true;
2626
Jason Wang986a4f42012-12-07 07:04:56 +00002627 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2628 vi->has_cvq = true;
2629
Aaron Conole14de9d12016-06-03 16:57:12 -04002630 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2631 mtu = virtio_cread16(vdev,
2632 offsetof(struct virtio_net_config,
2633 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002634 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002635 /* Should never trigger: MTU was previously validated
2636 * in virtnet_validate.
2637 */
2638 dev_err(&vdev->dev, "device MTU appears to have changed "
2639 "it is now %d < %d", mtu, dev->min_mtu);
2640 goto free_stats;
Aaron Conole93a205e2016-10-25 16:12:12 -04002641 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002642
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002643 dev->mtu = mtu;
2644 dev->max_mtu = mtu;
2645
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002646 /* TODO: size buffers correctly in this case. */
2647 if (dev->mtu > ETH_DATA_LEN)
2648 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04002649 }
2650
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002651 if (vi->any_header_sg)
2652 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002653
Jason Wang44900012016-11-25 12:37:26 +08002654 /* Enable multiqueue by default */
2655 if (num_online_cpus() >= max_queue_pairs)
2656 vi->curr_queue_pairs = max_queue_pairs;
2657 else
2658 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002659 vi->max_queue_pairs = max_queue_pairs;
2660
2661 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302662 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002663 if (err)
Jason Wang9bb8ca82013-11-05 18:19:45 +08002664 goto free_stats;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002665
Michael Daltonfbf28d72014-01-16 22:23:30 -08002666#ifdef CONFIG_SYSFS
2667 if (vi->mergeable_rx_bufs)
2668 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2669#endif
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08002670 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2671 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002672
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002673 virtnet_init_settings(dev);
2674
Rusty Russell296f96f2007-10-22 11:03:37 +10002675 err = register_netdev(dev);
2676 if (err) {
2677 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002678 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002679 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002680
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302681 virtio_device_ready(vdev);
2682
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002683 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002684 if (err) {
2685 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002686 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002687 }
2688
Jason Wanga2208712016-12-13 14:23:05 +08002689 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08002690
Jason Wang167c25e2010-11-10 14:45:41 +00002691 /* Assume link up if device can't report link status,
2692 otherwise get link status from config. */
2693 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2694 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002695 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002696 } else {
2697 vi->status = VIRTIO_NET_S_LINK_UP;
2698 netif_carrier_on(dev);
2699 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002700
Jason Wang3f935222017-07-19 16:54:49 +08002701 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
2702 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
2703 set_bit(guest_offloads[i], &vi->guest_offloads);
2704
Jason Wang986a4f42012-12-07 07:04:56 +00002705 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2706 dev->name, max_queue_pairs);
2707
Rusty Russell296f96f2007-10-22 11:03:37 +10002708 return 0;
2709
wangyunjianf00e35e2016-05-31 11:52:43 +08002710free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302711 vi->vdev->config->reset(vdev);
2712
Rusty Russellb3369c12008-02-04 23:50:02 -05002713 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002714free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002715 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002716 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002717 virtnet_del_vqs(vi);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002718free_stats:
2719 free_percpu(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10002720free:
2721 free_netdev(dev);
2722 return err;
2723}
2724
Amit Shah04486ed2011-12-22 16:58:32 +05302725static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002726{
Amit Shah04486ed2011-12-22 16:58:32 +05302727 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002728
2729 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002730 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002731
Jason Wang986a4f42012-12-07 07:04:56 +00002732 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002733
Michael Daltonfb518792014-01-16 22:23:26 -08002734 free_receive_page_frags(vi);
2735
Jason Wang986a4f42012-12-07 07:04:56 +00002736 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302737}
2738
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002739static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302740{
2741 struct virtnet_info *vi = vdev->priv;
2742
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002743 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002744
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302745 /* Make sure no work handler is accessing the device. */
2746 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002747
Amit Shah04486ed2011-12-22 16:58:32 +05302748 unregister_netdev(vi->dev);
2749
2750 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002751
Krishna Kumar2e66f552011-07-20 03:56:02 +00002752 free_percpu(vi->stats);
Rusty Russell74b25532007-11-19 11:20:42 -05002753 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002754}
2755
Arnd Bergmann67a75192017-07-25 17:35:50 +02002756static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05302757{
2758 struct virtnet_info *vi = vdev->priv;
2759
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002760 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002761 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302762 remove_vq_common(vi);
2763
2764 return 0;
2765}
2766
Arnd Bergmann67a75192017-07-25 17:35:50 +02002767static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05302768{
2769 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002770 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05302771
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002772 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302773 if (err)
2774 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00002775 virtnet_set_queues(vi, vi->curr_queue_pairs);
2776
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002777 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002778 if (err)
2779 return err;
2780
Amit Shah0741bcb2011-12-22 16:58:33 +05302781 return 0;
2782}
Amit Shah0741bcb2011-12-22 16:58:33 +05302783
Rusty Russell296f96f2007-10-22 11:03:37 +10002784static struct virtio_device_id id_table[] = {
2785 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2786 { 0 },
2787};
2788
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002789#define VIRTNET_FEATURES \
2790 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2791 VIRTIO_NET_F_MAC, \
2792 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2793 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2794 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2795 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2796 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2797 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2798 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Wang3f935222017-07-19 16:54:49 +08002799 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002800
Rusty Russellc45a6812008-05-02 21:50:50 -05002801static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002802 VIRTNET_FEATURES,
2803};
2804
2805static unsigned int features_legacy[] = {
2806 VIRTNET_FEATURES,
2807 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302808 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05002809};
2810
Uwe Kleine-König22402522009-11-05 01:32:44 -08002811static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05002812 .feature_table = features,
2813 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002814 .feature_table_legacy = features_legacy,
2815 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10002816 .driver.name = KBUILD_MODNAME,
2817 .driver.owner = THIS_MODULE,
2818 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002819 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10002820 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002821 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002822 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09302823#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302824 .freeze = virtnet_freeze,
2825 .restore = virtnet_restore,
2826#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10002827};
2828
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002829static __init int virtio_net_driver_init(void)
2830{
2831 int ret;
2832
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002833 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002834 virtnet_cpu_online,
2835 virtnet_cpu_down_prep);
2836 if (ret < 0)
2837 goto out;
2838 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002839 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002840 NULL, virtnet_cpu_dead);
2841 if (ret)
2842 goto err_dead;
2843
2844 ret = register_virtio_driver(&virtio_net_driver);
2845 if (ret)
2846 goto err_virtio;
2847 return 0;
2848err_virtio:
2849 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2850err_dead:
2851 cpuhp_remove_multi_state(virtionet_online);
2852out:
2853 return ret;
2854}
2855module_init(virtio_net_driver_init);
2856
2857static __exit void virtio_net_driver_exit(void)
2858{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02002859 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002860 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2861 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002862}
2863module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10002864
2865MODULE_DEVICE_TABLE(virtio, id_table);
2866MODULE_DESCRIPTION("Virtio network driver");
2867MODULE_LICENSE("GPL");