blob: 003143835766e81880f131bc11e7ef94db311178 [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>
Rusty Russell296f96f2007-10-22 11:03:37 +100032
Amerigo Wangd34710e2013-05-09 19:50:51 +000033static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020034module_param(napi_weight, int, 0444);
35
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040036static bool csum = true, gso = true, napi_tx;
Rusty Russell34a48572008-02-04 23:50:02 -050037module_param(csum, bool, 0444);
38module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040039module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050040
Rusty Russell296f96f2007-10-22 11:03:37 +100041/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080042#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080043#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100044
Jason Wangf6b10202017-02-21 16:46:28 +080045#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
46
John Fastabend2de2f7f2017-02-02 19:16:29 -080047/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
48#define VIRTIO_XDP_HEADROOM 256
49
Johannes Berg5377d7582015-08-19 09:48:40 +020050/* RX packet size EWMA. The average packet size is used to determine the packet
51 * buffer size when refilling RX rings. As the entire RX ring may be refilled
52 * at once, the weight is chosen so that the EWMA will be insensitive to short-
53 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080054 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010055DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080056
Michael S. Tsirkind0fa28f2017-01-23 21:37:52 +020057/* With mergeable buffers we align buffer address and use the low bits to
58 * encode its true size. Buffer size is up to 1 page so we need to align to
59 * square root of page size to ensure we reserve enough bits to encode the true
60 * size.
61 */
62#define MERGEABLE_BUFFER_MIN_ALIGN_SHIFT ((PAGE_SHIFT + 1) / 2)
63
Michael Daltonab7db912014-01-16 22:23:27 -080064/* Minimum alignment for mergeable packet buffers. */
Michael S. Tsirkind0fa28f2017-01-23 21:37:52 +020065#define MERGEABLE_BUFFER_ALIGN max(L1_CACHE_BYTES, \
66 1 << MERGEABLE_BUFFER_MIN_ALIGN_SHIFT)
Michael Daltonab7db912014-01-16 22:23:27 -080067
Rick Jones66846042011-11-14 14:17:08 +000068#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000069
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000070struct virtnet_stats {
Eric Dumazet83a27052012-06-05 22:35:24 +000071 struct u64_stats_sync tx_syncp;
72 struct u64_stats_sync rx_syncp;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000073 u64 tx_bytes;
74 u64 tx_packets;
75
76 u64 rx_bytes;
77 u64 rx_packets;
78};
79
Jason Wange9d74172012-12-07 07:04:55 +000080/* Internal representation of a send virtqueue */
81struct send_queue {
82 /* Virtqueue associated with this send _queue */
83 struct virtqueue *vq;
84
85 /* TX: fragments + linear part + virtio header */
86 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +000087
88 /* Name of the send queue: output.$index */
89 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040090
91 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +000092};
93
94/* Internal representation of a receive virtqueue */
95struct receive_queue {
96 /* Virtqueue associated with this receive_queue */
97 struct virtqueue *vq;
98
Rusty Russell296f96f2007-10-22 11:03:37 +100099 struct napi_struct napi;
100
John Fastabendf600b692016-12-15 12:13:24 -0800101 struct bpf_prog __rcu *xdp_prog;
102
Jason Wange9d74172012-12-07 07:04:55 +0000103 /* Chain pages by the private ptr. */
104 struct page *pages;
105
Michael Daltonab7db912014-01-16 22:23:27 -0800106 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200107 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800108
Michael Daltonfb518792014-01-16 22:23:26 -0800109 /* Page frag for packet buffer allocation. */
110 struct page_frag alloc_frag;
111
Jason Wange9d74172012-12-07 07:04:55 +0000112 /* RX: fragments + linear part + virtio header */
113 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000114
115 /* Name of this receive queue: input.$index */
116 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +0000117};
118
119struct virtnet_info {
120 struct virtio_device *vdev;
121 struct virtqueue *cvq;
122 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000123 struct send_queue *sq;
124 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000125 unsigned int status;
126
Jason Wang986a4f42012-12-07 07:04:56 +0000127 /* Max # of queue pairs supported by the device */
128 u16 max_queue_pairs;
129
130 /* # of queue pairs currently used by the driver */
131 u16 curr_queue_pairs;
132
John Fastabend672aafd2016-12-15 12:13:49 -0800133 /* # of XDP queue pairs currently used by the driver */
134 u16 xdp_queue_pairs;
135
Herbert Xu97402b92008-04-18 11:24:27 +0800136 /* I like... big packets and I cannot lie! */
137 bool big_packets;
138
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800139 /* Host will merge rx buffers for big packets (shake it! shake it!) */
140 bool mergeable_rx_bufs;
141
Jason Wang986a4f42012-12-07 07:04:56 +0000142 /* Has control virtqueue */
143 bool has_cvq;
144
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930145 /* Host can handle any s/g split between our header and packet data */
146 bool any_header_sg;
147
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300148 /* Packet virtio header size */
149 u8 hdr_len;
150
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000151 /* Active statistics */
152 struct virtnet_stats __percpu *stats;
153
Rusty Russell3161e452009-08-26 12:22:32 -0700154 /* Work struct for refilling if we run low on memory. */
155 struct delayed_work refill;
156
Jason Wang586d17c2012-04-11 20:43:52 +0000157 /* Work struct for config space updates */
158 struct work_struct config_work;
159
Jason Wang986a4f42012-12-07 07:04:56 +0000160 /* Does the affinity hint is set for virtqueues? */
161 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000162
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200163 /* CPU hotplug instances for online & dead */
164 struct hlist_node node;
165 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200166
167 /* Control VQ buffers: protected by the rtnl lock */
168 struct virtio_net_ctrl_hdr ctrl_hdr;
169 virtio_net_ctrl_ack ctrl_status;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700170 struct virtio_net_ctrl_mq ctrl_mq;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200171 u8 ctrl_promisc;
172 u8 ctrl_allmulti;
Andy Lutomirskia725ee32016-07-18 15:34:49 -0700173 u16 ctrl_vid;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100174
175 /* Ethtool settings */
176 u8 duplex;
177 u32 speed;
Rusty Russell296f96f2007-10-22 11:03:37 +1000178};
179
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000180struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300181 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000182 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300183 * hdr is in a separate sg buffer, and data sg buffer shares same page
184 * with this header sg. This padding makes next sg 16 byte aligned
185 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000186 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300187 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000188};
189
Jason Wang986a4f42012-12-07 07:04:56 +0000190/* Converting between virtqueue no. and kernel tx/rx queue no.
191 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
192 */
193static int vq2txq(struct virtqueue *vq)
194{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000195 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000196}
197
198static int txq2vq(int txq)
199{
200 return txq * 2 + 1;
201}
202
203static int vq2rxq(struct virtqueue *vq)
204{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000205 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000206}
207
208static int rxq2vq(int rxq)
209{
210 return rxq * 2;
211}
212
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300213static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000214{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300215 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000216}
217
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000218/*
219 * private is used to chain pages for big packets, put the whole
220 * most recent used list in the beginning for reuse
221 */
Jason Wange9d74172012-12-07 07:04:55 +0000222static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500223{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000224 struct page *end;
225
Jason Wange9d74172012-12-07 07:04:55 +0000226 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000227 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000228 end->private = (unsigned long)rq->pages;
229 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500230}
231
Jason Wange9d74172012-12-07 07:04:55 +0000232static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500233{
Jason Wange9d74172012-12-07 07:04:55 +0000234 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500235
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000236 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000237 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000238 /* clear private here, it is used to chain pages */
239 p->private = 0;
240 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500241 p = alloc_page(gfp_mask);
242 return p;
243}
244
Willem de Bruijne4e84522017-04-24 13:49:26 -0400245static void virtqueue_napi_schedule(struct napi_struct *napi,
246 struct virtqueue *vq)
247{
248 if (napi_schedule_prep(napi)) {
249 virtqueue_disable_cb(vq);
250 __napi_schedule(napi);
251 }
252}
253
254static void virtqueue_napi_complete(struct napi_struct *napi,
255 struct virtqueue *vq, int processed)
256{
257 int opaque;
258
259 opaque = virtqueue_enable_cb_prepare(vq);
260 if (napi_complete_done(napi, processed) &&
261 unlikely(virtqueue_poll(vq, opaque)))
262 virtqueue_napi_schedule(napi, vq);
263}
264
Jason Wange9d74172012-12-07 07:04:55 +0000265static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000266{
Jason Wange9d74172012-12-07 07:04:55 +0000267 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400268 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000269
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500270 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000271 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000272
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400273 if (napi->weight)
274 virtqueue_napi_schedule(napi, vq);
275 else
276 /* We were probably waiting for more output buffers. */
277 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000278}
279
Michael Daltonab7db912014-01-16 22:23:27 -0800280static unsigned int mergeable_ctx_to_buf_truesize(unsigned long mrg_ctx)
281{
282 unsigned int truesize = mrg_ctx & (MERGEABLE_BUFFER_ALIGN - 1);
283 return (truesize + 1) * MERGEABLE_BUFFER_ALIGN;
284}
285
286static void *mergeable_ctx_to_buf_address(unsigned long mrg_ctx)
287{
288 return (void *)(mrg_ctx & -MERGEABLE_BUFFER_ALIGN);
289
290}
291
292static unsigned long mergeable_buf_to_ctx(void *buf, unsigned int truesize)
293{
294 unsigned int size = truesize / MERGEABLE_BUFFER_ALIGN;
295 return (unsigned long)buf | (size - 1);
296}
297
Mike Waychison34646452012-01-04 12:52:32 +0000298/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300299static struct sk_buff *page_to_skb(struct virtnet_info *vi,
300 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700301 struct page *page, unsigned int offset,
302 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000303{
304 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300305 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700306 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000307 char *p;
308
Michael Dalton2613af02013-10-28 15:44:18 -0700309 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000310
311 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100312 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000313 if (unlikely(!skb))
314 return NULL;
315
316 hdr = skb_vnet_hdr(skb);
317
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300318 hdr_len = vi->hdr_len;
319 if (vi->mergeable_rx_bufs)
320 hdr_padded_len = sizeof *hdr;
321 else
Michael Dalton2613af02013-10-28 15:44:18 -0700322 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000323
324 memcpy(hdr, p, hdr_len);
325
326 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700327 offset += hdr_padded_len;
328 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000329
330 copy = len;
331 if (copy > skb_tailroom(skb))
332 copy = skb_tailroom(skb);
333 memcpy(skb_put(skb, copy), p, copy);
334
335 len -= copy;
336 offset += copy;
337
Michael Dalton2613af02013-10-28 15:44:18 -0700338 if (vi->mergeable_rx_bufs) {
339 if (len)
340 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
341 else
342 put_page(page);
343 return skb;
344 }
345
Sasha Levine878d782011-09-28 04:40:54 +0000346 /*
347 * Verify that we can indeed put this data into a skb.
348 * This is here to handle cases when the device erroneously
349 * tries to receive more than is possible. This is usually
350 * the case of a broken device.
351 */
352 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000353 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000354 dev_kfree_skb(skb);
355 return NULL;
356 }
Michael Dalton2613af02013-10-28 15:44:18 -0700357 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000358 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700359 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
360 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
361 frag_size, truesize);
362 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000363 page = (struct page *)page->private;
364 offset = 0;
365 }
366
367 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000368 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000369
370 return skb;
371}
372
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100373static bool virtnet_xdp_xmit(struct virtnet_info *vi,
John Fastabend56434a02016-12-15 12:14:13 -0800374 struct receive_queue *rq,
Jason Wangf6b10202017-02-21 16:46:28 +0800375 struct xdp_buff *xdp)
John Fastabend56434a02016-12-15 12:14:13 -0800376{
John Fastabend56434a02016-12-15 12:14:13 -0800377 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wangf6b10202017-02-21 16:46:28 +0800378 unsigned int len;
John Fastabend722d8282017-02-02 19:15:32 -0800379 struct send_queue *sq;
380 unsigned int qp;
John Fastabend56434a02016-12-15 12:14:13 -0800381 void *xdp_sent;
382 int err;
383
John Fastabend722d8282017-02-02 19:15:32 -0800384 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
385 sq = &vi->sq[qp];
386
John Fastabend56434a02016-12-15 12:14:13 -0800387 /* Free up any pending old buffers before queueing new ones. */
388 while ((xdp_sent = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Jason Wangf6b10202017-02-21 16:46:28 +0800389 struct page *sent_page = virt_to_head_page(xdp_sent);
Jason Wangbb91acc2016-12-23 22:37:32 +0800390
Jason Wangf6b10202017-02-21 16:46:28 +0800391 put_page(sent_page);
John Fastabend56434a02016-12-15 12:14:13 -0800392 }
393
Jason Wangf6b10202017-02-21 16:46:28 +0800394 xdp->data -= vi->hdr_len;
395 /* Zero header and leave csum up to XDP layers */
396 hdr = xdp->data;
397 memset(hdr, 0, vi->hdr_len);
John Fastabend56434a02016-12-15 12:14:13 -0800398
Jason Wangf6b10202017-02-21 16:46:28 +0800399 sg_init_one(sq->sg, xdp->data, xdp->data_end - xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800400
Jason Wangf6b10202017-02-21 16:46:28 +0800401 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdp->data, GFP_ATOMIC);
John Fastabend56434a02016-12-15 12:14:13 -0800402 if (unlikely(err)) {
Jason Wangf6b10202017-02-21 16:46:28 +0800403 struct page *page = virt_to_head_page(xdp->data);
Jason Wangbb91acc2016-12-23 22:37:32 +0800404
Jason Wangf6b10202017-02-21 16:46:28 +0800405 put_page(page);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100406 return false;
John Fastabend56434a02016-12-15 12:14:13 -0800407 }
408
409 virtqueue_kick(sq->vq);
Daniel Borkmanna67edbf2017-01-25 02:28:18 +0100410 return true;
John Fastabend56434a02016-12-15 12:14:13 -0800411}
412
Jason Wangf6b10202017-02-21 16:46:28 +0800413static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
414{
415 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
416}
417
Jason Wangbb91acc2016-12-23 22:37:32 +0800418static struct sk_buff *receive_small(struct net_device *dev,
419 struct virtnet_info *vi,
420 struct receive_queue *rq,
421 void *buf, unsigned int len)
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200422{
Jason Wangf6b10202017-02-21 16:46:28 +0800423 struct sk_buff *skb;
Jason Wangbb91acc2016-12-23 22:37:32 +0800424 struct bpf_prog *xdp_prog;
Jason Wangf6b10202017-02-21 16:46:28 +0800425 unsigned int xdp_headroom = virtnet_get_headroom(vi);
426 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
427 unsigned int headroom = vi->hdr_len + header_offset;
428 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
429 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
430 unsigned int delta = 0;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300431 len -= vi->hdr_len;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200432
Jason Wangbb91acc2016-12-23 22:37:32 +0800433 rcu_read_lock();
434 xdp_prog = rcu_dereference(rq->xdp_prog);
435 if (xdp_prog) {
Jason Wangf6b10202017-02-21 16:46:28 +0800436 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
John Fastabend0354e4d2017-02-02 19:15:01 -0800437 struct xdp_buff xdp;
Jason Wangf6b10202017-02-21 16:46:28 +0800438 void *orig_data;
Jason Wangbb91acc2016-12-23 22:37:32 +0800439 u32 act;
440
441 if (unlikely(hdr->hdr.gso_type || hdr->hdr.flags))
442 goto err_xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800443
Jason Wangf6b10202017-02-21 16:46:28 +0800444 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
445 xdp.data = xdp.data_hard_start + xdp_headroom;
John Fastabend0354e4d2017-02-02 19:15:01 -0800446 xdp.data_end = xdp.data + len;
Jason Wangf6b10202017-02-21 16:46:28 +0800447 orig_data = xdp.data;
John Fastabend0354e4d2017-02-02 19:15:01 -0800448 act = bpf_prog_run_xdp(xdp_prog, &xdp);
449
Jason Wangbb91acc2016-12-23 22:37:32 +0800450 switch (act) {
451 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800452 /* Recalculate length in case bpf program changed it */
Jason Wangf6b10202017-02-21 16:46:28 +0800453 delta = orig_data - xdp.data;
Jason Wangbb91acc2016-12-23 22:37:32 +0800454 break;
455 case XDP_TX:
Jason Wangf6b10202017-02-21 16:46:28 +0800456 if (unlikely(!virtnet_xdp_xmit(vi, rq, &xdp)))
John Fastabend0354e4d2017-02-02 19:15:01 -0800457 trace_xdp_exception(vi->dev, xdp_prog, act);
Jason Wangbb91acc2016-12-23 22:37:32 +0800458 rcu_read_unlock();
459 goto xdp_xmit;
Jason Wangbb91acc2016-12-23 22:37:32 +0800460 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800461 bpf_warn_invalid_xdp_action(act);
462 case XDP_ABORTED:
463 trace_xdp_exception(vi->dev, xdp_prog, act);
464 case XDP_DROP:
Jason Wangbb91acc2016-12-23 22:37:32 +0800465 goto err_xdp;
466 }
467 }
468 rcu_read_unlock();
469
Jason Wangf6b10202017-02-21 16:46:28 +0800470 skb = build_skb(buf, buflen);
471 if (!skb) {
472 put_page(virt_to_head_page(buf));
473 goto err;
474 }
475 skb_reserve(skb, headroom - delta);
476 skb_put(skb, len + delta);
477 if (!delta) {
478 buf += header_offset;
479 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
480 } /* keep zeroed vnet hdr since packet was changed by bpf */
481
482err:
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200483 return skb;
Jason Wangbb91acc2016-12-23 22:37:32 +0800484
485err_xdp:
486 rcu_read_unlock();
487 dev->stats.rx_dropped++;
Jason Wangf6b10202017-02-21 16:46:28 +0800488 put_page(virt_to_head_page(buf));
Jason Wangbb91acc2016-12-23 22:37:32 +0800489xdp_xmit:
490 return NULL;
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200491}
492
493static struct sk_buff *receive_big(struct net_device *dev,
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300494 struct virtnet_info *vi,
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200495 struct receive_queue *rq,
496 void *buf,
497 unsigned int len)
498{
499 struct page *page = buf;
Jason Wangc47a43d2016-12-23 22:37:31 +0800500 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200501
502 if (unlikely(!skb))
503 goto err;
504
505 return skb;
506
507err:
508 dev->stats.rx_dropped++;
509 give_pages(rq, page);
510 return NULL;
511}
512
John Fastabend72979a62016-12-15 12:14:36 -0800513/* The conditions to enable XDP should preclude the underlying device from
514 * sending packets across multiple buffers (num_buf > 1). However per spec
515 * it does not appear to be illegal to do so but rather just against convention.
516 * So in order to avoid making a system unresponsive the packets are pushed
517 * into a page and the XDP program is run. This will be extremely slow and we
518 * push a warning to the user to fix this as soon as possible. Fixing this may
519 * require resolving the underlying hardware to determine why multiple buffers
520 * are being received or simply loading the XDP program in the ingress stack
521 * after the skb is built because there is no advantage to running it here
522 * anymore.
523 */
524static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800525 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800526 struct page *p,
527 int offset,
528 unsigned int *len)
529{
530 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800531 unsigned int page_off = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800532
533 if (!page)
534 return NULL;
535
536 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
537 page_off += *len;
538
Jason Wang56a86f82016-12-23 22:37:26 +0800539 while (--*num_buf) {
John Fastabend72979a62016-12-15 12:14:36 -0800540 unsigned int buflen;
541 unsigned long ctx;
542 void *buf;
543 int off;
544
545 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &buflen);
546 if (unlikely(!ctx))
547 goto err_buf;
548
John Fastabend72979a62016-12-15 12:14:36 -0800549 buf = mergeable_ctx_to_buf_address(ctx);
550 p = virt_to_head_page(buf);
551 off = buf - page_address(p);
552
Jason Wang56a86f82016-12-23 22:37:26 +0800553 /* guard against a misconfigured or uncooperative backend that
554 * is sending packet larger than the MTU.
555 */
556 if ((page_off + buflen) > PAGE_SIZE) {
557 put_page(p);
558 goto err_buf;
559 }
560
John Fastabend72979a62016-12-15 12:14:36 -0800561 memcpy(page_address(page) + page_off,
562 page_address(p) + off, buflen);
563 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800564 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800565 }
566
John Fastabend2de2f7f2017-02-02 19:16:29 -0800567 /* Headroom does not contribute to packet length */
568 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800569 return page;
570err_buf:
571 __free_pages(page, 0);
572 return NULL;
573}
574
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200575static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200576 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200577 struct receive_queue *rq,
Michael Daltonab7db912014-01-16 22:23:27 -0800578 unsigned long ctx,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200579 unsigned int len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000580{
Michael Daltonab7db912014-01-16 22:23:27 -0800581 void *buf = mergeable_ctx_to_buf_address(ctx);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300582 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
583 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200584 struct page *page = virt_to_head_page(buf);
585 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800586 struct sk_buff *head_skb, *curr_skb;
587 struct bpf_prog *xdp_prog;
588 unsigned int truesize;
Michael Daltonab7db912014-01-16 22:23:27 -0800589
John Fastabend56434a02016-12-15 12:14:13 -0800590 head_skb = NULL;
591
John Fastabendf600b692016-12-15 12:13:24 -0800592 rcu_read_lock();
593 xdp_prog = rcu_dereference(rq->xdp_prog);
594 if (xdp_prog) {
John Fastabend72979a62016-12-15 12:14:36 -0800595 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800596 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800597 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800598 u32 act;
599
Jason Wang73b62bd2016-12-23 22:37:24 +0800600 /* This happens when rx buffer size is underestimated */
John Fastabendf600b692016-12-15 12:13:24 -0800601 if (unlikely(num_buf > 1)) {
John Fastabend72979a62016-12-15 12:14:36 -0800602 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800603 xdp_page = xdp_linearize_page(rq, &num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800604 page, offset, &len);
605 if (!xdp_page)
606 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800607 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800608 } else {
609 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800610 }
611
612 /* Transient failure which in theory could occur if
613 * in-flight packets from before XDP was enabled reach
614 * the receive path after XDP is loaded. In practice I
615 * was not able to create this condition.
616 */
Jason Wangb00f70b2016-12-23 22:37:28 +0800617 if (unlikely(hdr->hdr.gso_type))
John Fastabendf600b692016-12-15 12:13:24 -0800618 goto err_xdp;
619
John Fastabend2de2f7f2017-02-02 19:16:29 -0800620 /* Allow consuming headroom but reserve enough space to push
621 * the descriptor on if we get an XDP_TX return code.
622 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800623 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800624 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800625 xdp.data = data + vi->hdr_len;
626 xdp.data_end = xdp.data + (len - vi->hdr_len);
627 act = bpf_prog_run_xdp(xdp_prog, &xdp);
628
John Fastabend56434a02016-12-15 12:14:13 -0800629 switch (act) {
630 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800631 /* recalculate offset to account for any header
632 * adjustments. Note other cases do not build an
633 * skb and avoid using offset
634 */
635 offset = xdp.data -
636 page_address(xdp_page) - vi->hdr_len;
637
Jason Wang1830f892016-12-23 22:37:27 +0800638 /* We can only create skb based on xdp_page. */
639 if (unlikely(xdp_page != page)) {
640 rcu_read_unlock();
641 put_page(page);
642 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800643 offset, len, PAGE_SIZE);
Jason Wang5c334742016-12-23 22:37:29 +0800644 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
Jason Wang1830f892016-12-23 22:37:27 +0800645 return head_skb;
646 }
John Fastabend56434a02016-12-15 12:14:13 -0800647 break;
648 case XDP_TX:
Jason Wangf6b10202017-02-21 16:46:28 +0800649 if (unlikely(!virtnet_xdp_xmit(vi, rq, &xdp)))
John Fastabend0354e4d2017-02-02 19:15:01 -0800650 trace_xdp_exception(vi->dev, xdp_prog, act);
Jason Wang5c334742016-12-23 22:37:29 +0800651 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabend72979a62016-12-15 12:14:36 -0800652 if (unlikely(xdp_page != page))
653 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800654 rcu_read_unlock();
655 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800656 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800657 bpf_warn_invalid_xdp_action(act);
658 case XDP_ABORTED:
659 trace_xdp_exception(vi->dev, xdp_prog, act);
660 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800661 if (unlikely(xdp_page != page))
662 __free_pages(xdp_page, 0);
Jason Wang5c334742016-12-23 22:37:29 +0800663 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, len);
John Fastabendf600b692016-12-15 12:13:24 -0800664 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800665 }
John Fastabendf600b692016-12-15 12:13:24 -0800666 }
667 rcu_read_unlock();
668
669 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
670 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
671 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000672
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200673 if (unlikely(!curr_skb))
674 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000675 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200676 int num_skb_frags;
677
Michael Daltonab7db912014-01-16 22:23:27 -0800678 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
679 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200680 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200681 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300682 virtio16_to_cpu(vi->vdev,
683 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200684 dev->stats.rx_length_errors++;
685 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000686 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200687
Michael Daltonab7db912014-01-16 22:23:27 -0800688 buf = mergeable_ctx_to_buf_address(ctx);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200689 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200690
691 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700692 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
693 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200694
695 if (unlikely(!nskb))
696 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700697 if (curr_skb == head_skb)
698 skb_shinfo(curr_skb)->frag_list = nskb;
699 else
700 curr_skb->next = nskb;
701 curr_skb = nskb;
702 head_skb->truesize += nskb->truesize;
703 num_skb_frags = 0;
704 }
Michael Daltonab7db912014-01-16 22:23:27 -0800705 truesize = max(len, mergeable_ctx_to_buf_truesize(ctx));
Michael Dalton2613af02013-10-28 15:44:18 -0700706 if (curr_skb != head_skb) {
707 head_skb->data_len += len;
708 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800709 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700710 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200711 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800712 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
713 put_page(page);
714 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800715 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800716 } else {
717 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800718 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800719 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200720 }
721
Johannes Berg5377d7582015-08-19 09:48:40 +0200722 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200723 return head_skb;
724
John Fastabendf600b692016-12-15 12:13:24 -0800725err_xdp:
726 rcu_read_unlock();
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200727err_skb:
728 put_page(page);
729 while (--num_buf) {
Michael Daltonab7db912014-01-16 22:23:27 -0800730 ctx = (unsigned long)virtqueue_get_buf(rq->vq, &len);
731 if (unlikely(!ctx)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200732 pr_debug("%s: rx error: %d buffers missing\n",
733 dev->name, num_buf);
734 dev->stats.rx_length_errors++;
735 break;
736 }
Michael Daltonab7db912014-01-16 22:23:27 -0800737 page = virt_to_head_page(mergeable_ctx_to_buf_address(ctx));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200738 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000739 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200740err_buf:
741 dev->stats.rx_dropped++;
742 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800743xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200744 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000745}
746
Jason Wang61845d22017-02-17 11:33:09 +0800747static int receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
748 void *buf, unsigned int len)
Rusty Russell296f96f2007-10-22 11:03:37 +1000749{
Jason Wange9d74172012-12-07 07:04:55 +0000750 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000751 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300752 struct virtio_net_hdr_mrg_rxbuf *hdr;
Jason Wang61845d22017-02-17 11:33:09 +0800753 int ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000754
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300755 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000756 pr_debug("%s: short packet %i\n", dev->name, len);
757 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800758 if (vi->mergeable_rx_bufs) {
759 unsigned long ctx = (unsigned long)buf;
760 void *base = mergeable_ctx_to_buf_address(ctx);
761 put_page(virt_to_head_page(base));
762 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -0800763 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -0800764 } else {
Jason Wangf6b10202017-02-21 16:46:28 +0800765 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -0800766 }
Jason Wang61845d22017-02-17 11:33:09 +0800767 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000768 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000769
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200770 if (vi->mergeable_rx_bufs)
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200771 skb = receive_mergeable(dev, vi, rq, (unsigned long)buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200772 else if (vi->big_packets)
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300773 skb = receive_big(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200774 else
Jason Wangbb91acc2016-12-23 22:37:32 +0800775 skb = receive_small(dev, vi, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200776
777 if (unlikely(!skb))
Jason Wang61845d22017-02-17 11:33:09 +0800778 return 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800779
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000780 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000781
Jason Wang61845d22017-02-17 11:33:09 +0800782 ret = skb->len;
Rusty Russell296f96f2007-10-22 11:03:37 +1000783
Mike Rapoporte858fae2016-06-08 16:09:21 +0300784 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +0000785 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000786
Mike Rapoporte858fae2016-06-08 16:09:21 +0300787 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
788 virtio_is_little_endian(vi->vdev))) {
789 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
790 dev->name, hdr->hdr.gso_type,
791 hdr->hdr.gso_size);
792 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000793 }
794
Mike Rapoportd1dc06d2016-06-14 08:29:38 +0300795 skb->protocol = eth_type_trans(skb, dev);
796 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
797 ntohs(skb->protocol), skb->len, skb->pkt_type);
798
Eric Dumazet0fbd0502015-07-31 18:25:17 +0200799 napi_gro_receive(&rq->napi, skb);
Jason Wang61845d22017-02-17 11:33:09 +0800800 return ret;
Rusty Russell296f96f2007-10-22 11:03:37 +1000801
802frame_err:
803 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000804 dev_kfree_skb(skb);
Jason Wang61845d22017-02-17 11:33:09 +0800805 return 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000806}
807
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300808static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
809 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000810{
Jason Wangf6b10202017-02-21 16:46:28 +0800811 struct page_frag *alloc_frag = &rq->alloc_frag;
812 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800813 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wangf6b10202017-02-21 16:46:28 +0800814 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000815 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000816
Jason Wangf6b10202017-02-21 16:46:28 +0800817 len = SKB_DATA_ALIGN(len) +
818 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
819 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000820 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800821
Jason Wangf6b10202017-02-21 16:46:28 +0800822 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
823 get_page(alloc_frag->page);
824 alloc_frag->offset += len;
825 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
826 vi->hdr_len + GOOD_PACKET_LEN);
827 err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, buf, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000828 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +0800829 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000830
831 return err;
832}
833
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300834static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
835 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000836{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000837 struct page *first, *list = NULL;
838 char *p;
839 int i, err, offset;
840
Rusty Russella5835442014-09-11 10:17:36 +0930841 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
842
Jason Wange9d74172012-12-07 07:04:55 +0000843 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000844 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000845 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000846 if (!first) {
847 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000848 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000849 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700850 }
Jason Wange9d74172012-12-07 07:04:55 +0000851 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000852
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000853 /* chain new page in list head to match sg */
854 first->private = (unsigned long)list;
855 list = first;
856 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800857
Jason Wange9d74172012-12-07 07:04:55 +0000858 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000859 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000860 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000861 return -ENOMEM;
862 }
863 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800864
Jason Wange9d74172012-12-07 07:04:55 +0000865 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300866 /* a separated rq->sg[0] for header - required in case !any_header_sg */
867 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +0800868
Jason Wange9d74172012-12-07 07:04:55 +0000869 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000870 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000871 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800872
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000873 /* chain first in list head */
874 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030875 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
876 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000877 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +0000878 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +0800879
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000880 return err;
881}
Herbert Xu97402b92008-04-18 11:24:27 +0800882
Johannes Berg5377d7582015-08-19 09:48:40 +0200883static unsigned int get_mergeable_buf_len(struct ewma_pkt_len *avg_pkt_len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000884{
Michael Daltonab7db912014-01-16 22:23:27 -0800885 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -0800886 unsigned int len;
887
Johannes Berg5377d7582015-08-19 09:48:40 +0200888 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael Daltonfbf28d72014-01-16 22:23:30 -0800889 GOOD_PACKET_LEN, PAGE_SIZE - hdr_len);
890 return ALIGN(len, MERGEABLE_BUFFER_ALIGN);
891}
892
John Fastabend2de2f7f2017-02-02 19:16:29 -0800893static int add_recvbuf_mergeable(struct virtnet_info *vi,
894 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -0800895{
Michael Daltonfb518792014-01-16 22:23:26 -0800896 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800897 unsigned int headroom = virtnet_get_headroom(vi);
Michael Daltonfb518792014-01-16 22:23:26 -0800898 char *buf;
Michael Daltonab7db912014-01-16 22:23:27 -0800899 unsigned long ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000900 int err;
Michael Daltonfb518792014-01-16 22:23:26 -0800901 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +1000902
Michael Daltonfbf28d72014-01-16 22:23:30 -0800903 len = get_mergeable_buf_len(&rq->mrg_avg_pkt_len);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800904 if (unlikely(!skb_page_frag_refill(len + headroom, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000905 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -0800906
Michael Daltonfb518792014-01-16 22:23:26 -0800907 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800908 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonab7db912014-01-16 22:23:27 -0800909 ctx = mergeable_buf_to_ctx(buf, len);
Michael Daltonfb518792014-01-16 22:23:26 -0800910 get_page(alloc_frag->page);
John Fastabend2de2f7f2017-02-02 19:16:29 -0800911 alloc_frag->offset += len + headroom;
Michael Daltonfb518792014-01-16 22:23:26 -0800912 hole = alloc_frag->size - alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800913 if (hole < len + headroom) {
Michael Daltonab7db912014-01-16 22:23:27 -0800914 /* To avoid internal fragmentation, if there is very likely not
915 * enough space for another buffer, add the remaining space to
916 * the current buffer. This extra space is not included in
917 * the truesize stored in ctx.
918 */
Michael Daltonfb518792014-01-16 22:23:26 -0800919 len += hole;
920 alloc_frag->offset += hole;
921 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000922
Michael Daltonfb518792014-01-16 22:23:26 -0800923 sg_init_one(rq->sg, buf, len);
Michael Daltonab7db912014-01-16 22:23:27 -0800924 err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, (void *)ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000925 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -0700926 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000927
928 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000929}
930
Rusty Russellb2baed62011-12-29 00:42:38 +0000931/*
932 * Returns false if we couldn't fill entirely (OOM).
933 *
934 * Normally run in the receive path, but can also be run from ndo_open
935 * before we're receiving packets, or from refill_work which is
936 * careful to disable receiving (using napi_disable).
937 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300938static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
939 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800940{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800941 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000942 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800943
Michael Daltonfb518792014-01-16 22:23:26 -0800944 gfp |= __GFP_COLD;
Amit Shah0aea51c2009-08-26 14:58:28 +0530945 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000946 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -0800947 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000948 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300949 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000950 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300951 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800952
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000953 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030954 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800955 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800956 } while (rq->vq->num_free);
Jason Wang681daee22014-03-26 13:03:00 +0800957 virtqueue_kick(rq->vq);
Rusty Russell3161e452009-08-26 12:22:32 -0700958 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800959}
960
Rusty Russell18445c42008-02-04 23:49:57 -0500961static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000962{
963 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +0000964 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +0000965
Willem de Bruijne4e84522017-04-24 13:49:26 -0400966 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +1000967}
968
Willem de Bruijne4e84522017-04-24 13:49:26 -0400969static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800970{
Willem de Bruijne4e84522017-04-24 13:49:26 -0400971 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800972
973 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -0400974 * won't get another interrupt, so process any outstanding packets now.
975 * Call local_bh_enable after to trigger softIRQ processing.
976 */
977 local_bh_disable();
978 virtqueue_napi_schedule(napi, vq);
979 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800980}
981
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400982static void virtnet_napi_tx_enable(struct virtnet_info *vi,
983 struct virtqueue *vq,
984 struct napi_struct *napi)
985{
986 if (!napi->weight)
987 return;
988
989 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
990 * enable the feature if this is likely affine with the transmit path.
991 */
992 if (!vi->affinity_hint_set) {
993 napi->weight = 0;
994 return;
995 }
996
997 return virtnet_napi_enable(vq, napi);
998}
999
Rusty Russell3161e452009-08-26 12:22:32 -07001000static void refill_work(struct work_struct *work)
1001{
Jason Wange9d74172012-12-07 07:04:55 +00001002 struct virtnet_info *vi =
1003 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001004 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001005 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001006
Sasha Levin55257d72013-04-29 12:00:08 +09301007 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001008 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001009
Jason Wang986a4f42012-12-07 07:04:56 +00001010 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001011 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001012 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001013
1014 /* In theory, this can happen: if we don't get any buffers in
1015 * we will *never* try to fill again.
1016 */
1017 if (still_empty)
1018 schedule_delayed_work(&vi->refill, HZ/2);
1019 }
Rusty Russell3161e452009-08-26 12:22:32 -07001020}
1021
Jason Wang2ffa7592014-07-23 16:33:54 +08001022static int virtnet_receive(struct receive_queue *rq, int budget)
Rusty Russell296f96f2007-10-22 11:03:37 +10001023{
Jason Wange9d74172012-12-07 07:04:55 +00001024 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wang61845d22017-02-17 11:33:09 +08001025 unsigned int len, received = 0, bytes = 0;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001026 void *buf;
Jason Wang61845d22017-02-17 11:33:09 +08001027 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10001028
Rusty Russell296f96f2007-10-22 11:03:37 +10001029 while (received < budget &&
Jason Wange9d74172012-12-07 07:04:55 +00001030 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Jason Wang61845d22017-02-17 11:33:09 +08001031 bytes += receive_buf(vi, rq, buf, len);
Rusty Russell296f96f2007-10-22 11:03:37 +10001032 received++;
1033 }
1034
Jason Wangbe121f42014-01-16 14:45:24 +08001035 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001036 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001037 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001038 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001039
Jason Wang61845d22017-02-17 11:33:09 +08001040 u64_stats_update_begin(&stats->rx_syncp);
1041 stats->rx_bytes += bytes;
1042 stats->rx_packets += received;
1043 u64_stats_update_end(&stats->rx_syncp);
1044
Jason Wang2ffa7592014-07-23 16:33:54 +08001045 return received;
1046}
1047
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001048static void free_old_xmit_skbs(struct send_queue *sq)
1049{
1050 struct sk_buff *skb;
1051 unsigned int len;
1052 struct virtnet_info *vi = sq->vq->vdev->priv;
1053 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
1054 unsigned int packets = 0;
1055 unsigned int bytes = 0;
1056
1057 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1058 pr_debug("Sent skb %p\n", skb);
1059
1060 bytes += skb->len;
1061 packets++;
1062
1063 dev_kfree_skb_any(skb);
1064 }
1065
1066 /* Avoid overhead when no packets have been processed
1067 * happens when called speculatively from start_xmit.
1068 */
1069 if (!packets)
1070 return;
1071
1072 u64_stats_update_begin(&stats->tx_syncp);
1073 stats->tx_bytes += bytes;
1074 stats->tx_packets += packets;
1075 u64_stats_update_end(&stats->tx_syncp);
1076}
1077
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001078static void virtnet_poll_cleantx(struct receive_queue *rq)
1079{
1080 struct virtnet_info *vi = rq->vq->vdev->priv;
1081 unsigned int index = vq2rxq(rq->vq);
1082 struct send_queue *sq = &vi->sq[index];
1083 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1084
1085 if (!sq->napi.weight)
1086 return;
1087
1088 if (__netif_tx_trylock(txq)) {
1089 free_old_xmit_skbs(sq);
1090 __netif_tx_unlock(txq);
1091 }
1092
1093 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1094 netif_tx_wake_queue(txq);
1095}
1096
Jason Wang2ffa7592014-07-23 16:33:54 +08001097static int virtnet_poll(struct napi_struct *napi, int budget)
1098{
1099 struct receive_queue *rq =
1100 container_of(napi, struct receive_queue, napi);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001101 unsigned int received;
Jason Wang2ffa7592014-07-23 16:33:54 +08001102
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001103 virtnet_poll_cleantx(rq);
1104
Li RongQingfaadb052015-03-26 15:39:45 +08001105 received = virtnet_receive(rq, budget);
Jason Wang2ffa7592014-07-23 16:33:54 +08001106
Rusty Russell8329d982007-11-19 11:20:43 -05001107 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001108 if (received < budget)
1109 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001110
1111 return received;
1112}
1113
Jason Wang986a4f42012-12-07 07:04:56 +00001114static int virtnet_open(struct net_device *dev)
1115{
1116 struct virtnet_info *vi = netdev_priv(dev);
1117 int i;
1118
Jason Wange4166622013-05-21 20:03:58 +00001119 for (i = 0; i < vi->max_queue_pairs; i++) {
1120 if (i < vi->curr_queue_pairs)
1121 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001122 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001123 schedule_delayed_work(&vi->refill, 0);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001124 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001125 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001126 }
1127
1128 return 0;
1129}
1130
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001131static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1132{
1133 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1134 struct virtnet_info *vi = sq->vq->vdev->priv;
1135 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1136
1137 __netif_tx_lock(txq, raw_smp_processor_id());
1138 free_old_xmit_skbs(sq);
1139 __netif_tx_unlock(txq);
1140
1141 virtqueue_napi_complete(napi, sq->vq, 0);
1142
1143 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1144 netif_tx_wake_queue(txq);
1145
1146 return 0;
1147}
1148
Jason Wange9d74172012-12-07 07:04:55 +00001149static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001150{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001151 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001152 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001153 struct virtnet_info *vi = sq->vq->vdev->priv;
Michael S. Tsirkin7bedc7d2012-10-16 23:56:14 +10301154 unsigned num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001155 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301156 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001157
Johannes Berge1749612008-10-27 15:59:26 -07001158 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301159
1160 can_push = vi->any_header_sg &&
1161 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1162 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1163 /* Even if we can, don't push here yet as this would skew
1164 * csum_start offset below. */
1165 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001166 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301167 else
1168 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001169
Mike Rapoporte858fae2016-06-08 16:09:21 +03001170 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Jason Wang6391a442017-01-20 14:32:42 +08001171 virtio_is_little_endian(vi->vdev), false))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001172 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001173
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001174 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001175 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001176
Jason Wang547c8902015-08-27 14:53:06 +08001177 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301178 if (can_push) {
1179 __skb_push(skb, hdr_len);
1180 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
1181 /* Pull header back to avoid skew in tx bytes calculations. */
1182 __skb_pull(skb, hdr_len);
1183 } else {
1184 sg_set_buf(sq->sg, hdr, hdr_len);
1185 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len) + 1;
1186 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301187 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001188}
1189
Stephen Hemminger424efe92009-08-31 19:50:51 +00001190static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001191{
1192 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001193 int qnum = skb_get_queue_mapping(skb);
1194 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301195 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001196 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1197 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001198 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001199
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001200 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001201 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001202
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001203 if (use_napi && kick)
1204 virtqueue_enable_cb_delayed(sq->vq);
1205
Jacob Keller074c3582014-06-25 02:37:13 +00001206 /* timestamp packet in software */
1207 skb_tx_timestamp(skb);
1208
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001209 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001210 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001211
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301212 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001213 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301214 dev->stats.tx_fifo_errors++;
1215 if (net_ratelimit())
1216 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001217 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001218 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001219 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001220 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001221 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001222
Rusty Russell48925e32009-09-24 09:59:20 -06001223 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001224 if (!use_napi) {
1225 skb_orphan(skb);
1226 nf_reset(skb);
1227 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001228
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001229 /* If running out of space, stop queue to avoid getting packets that we
1230 * are then unable to transmit.
1231 * An alternative would be to force queuing layer to requeue the skb by
1232 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1233 * returned in a normal path of operation: it means that driver is not
1234 * maintaining the TX queue stop/start state properly, and causes
1235 * the stack to do a non-trivial amount of useless work.
1236 * Since most packets only take 1 or 2 ring slots, stopping the queue
1237 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001238 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001239 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001240 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001241 if (!use_napi &&
1242 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001243 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001244 free_old_xmit_skbs(sq);
1245 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001246 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001247 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001248 }
1249 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001250 }
Rusty Russell48925e32009-09-24 09:59:20 -06001251
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001252 if (kick || netif_xmit_stopped(txq))
David S. Miller0b725a22014-08-25 15:51:53 -07001253 virtqueue_kick(sq->vq);
1254
Rusty Russell48925e32009-09-24 09:59:20 -06001255 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001256}
1257
Amos Kong40cbfc32013-01-21 01:17:21 +00001258/*
1259 * Send command via the control virtqueue and check status. Commands
1260 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001261 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001262 */
1263static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001264 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001265{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301266 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001267 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001268
1269 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301270 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001271
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001272 vi->ctrl_status = ~0;
1273 vi->ctrl_hdr.class = class;
1274 vi->ctrl_hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301275 /* Add header */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001276 sg_init_one(&hdr, &vi->ctrl_hdr, sizeof(vi->ctrl_hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301277 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001278
Rusty Russellf7bc9592013-03-20 15:44:28 +10301279 if (out)
1280 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001281
Rusty Russellf7bc9592013-03-20 15:44:28 +10301282 /* Add return status. */
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001283 sg_init_one(&stat, &vi->ctrl_status, sizeof(vi->ctrl_status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001284 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001285
stephen hemmingerd24bae32013-12-09 16:17:40 -08001286 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301287 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001288
Heinz Graalfs67975902013-10-29 09:40:02 +10301289 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001290 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001291
1292 /* Spin for a response, the kick causes an ioport write, trapping
1293 * into the hypervisor, so the request should be handled immediately.
1294 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301295 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1296 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001297 cpu_relax();
1298
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001299 return vi->ctrl_status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001300}
1301
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001302static int virtnet_set_mac_address(struct net_device *dev, void *p)
1303{
1304 struct virtnet_info *vi = netdev_priv(dev);
1305 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001306 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001307 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001308 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001309
Shyam Saini801822d2016-12-24 00:44:58 +05301310 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001311 if (!addr)
1312 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001313
1314 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001315 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001316 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001317
Amos Kong7e58d5a2013-01-21 01:17:23 +00001318 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1319 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1320 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001321 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001322 dev_warn(&vdev->dev,
1323 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001324 ret = -EINVAL;
1325 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001326 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001327 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1328 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301329 unsigned int i;
1330
1331 /* Naturally, this has an atomicity problem. */
1332 for (i = 0; i < dev->addr_len; i++)
1333 virtio_cwrite8(vdev,
1334 offsetof(struct virtio_net_config, mac) +
1335 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001336 }
1337
1338 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001339 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001340
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001341out:
1342 kfree(addr);
1343 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001344}
1345
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001346static void virtnet_stats(struct net_device *dev,
1347 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001348{
1349 struct virtnet_info *vi = netdev_priv(dev);
1350 int cpu;
1351 unsigned int start;
1352
1353 for_each_possible_cpu(cpu) {
Eric Dumazet58472a72012-02-13 06:53:41 +00001354 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001355 u64 tpackets, tbytes, rpackets, rbytes;
1356
1357 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001358 start = u64_stats_fetch_begin_irq(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001359 tpackets = stats->tx_packets;
1360 tbytes = stats->tx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001361 } while (u64_stats_fetch_retry_irq(&stats->tx_syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001362
1363 do {
Eric W. Biederman57a77442014-03-13 21:26:42 -07001364 start = u64_stats_fetch_begin_irq(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001365 rpackets = stats->rx_packets;
1366 rbytes = stats->rx_bytes;
Eric W. Biederman57a77442014-03-13 21:26:42 -07001367 } while (u64_stats_fetch_retry_irq(&stats->rx_syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001368
1369 tot->rx_packets += rpackets;
1370 tot->tx_packets += tpackets;
1371 tot->rx_bytes += rbytes;
1372 tot->tx_bytes += tbytes;
1373 }
1374
1375 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001376 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001377 tot->rx_dropped = dev->stats.rx_dropped;
1378 tot->rx_length_errors = dev->stats.rx_length_errors;
1379 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001380}
1381
Amit Shahda74e892008-02-29 16:24:50 +05301382#ifdef CONFIG_NET_POLL_CONTROLLER
1383static void virtnet_netpoll(struct net_device *dev)
1384{
1385 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001386 int i;
Amit Shahda74e892008-02-29 16:24:50 +05301387
Jason Wang986a4f42012-12-07 07:04:56 +00001388 for (i = 0; i < vi->curr_queue_pairs; i++)
1389 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +05301390}
1391#endif
1392
Jason Wang586d17c2012-04-11 20:43:52 +00001393static void virtnet_ack_link_announce(struct virtnet_info *vi)
1394{
1395 rtnl_lock();
1396 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001397 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001398 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1399 rtnl_unlock();
1400}
1401
John Fastabend473153292017-02-02 19:14:32 -08001402static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001403{
1404 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001405 struct net_device *dev = vi->dev;
1406
1407 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1408 return 0;
1409
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001410 vi->ctrl_mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1411 sg_init_one(&sg, &vi->ctrl_mq, sizeof(vi->ctrl_mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001412
1413 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001414 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001415 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1416 queue_pairs);
1417 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301418 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001419 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001420 /* virtnet_open() will refill when device is going to up. */
1421 if (dev->flags & IFF_UP)
1422 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301423 }
Jason Wang986a4f42012-12-07 07:04:56 +00001424
1425 return 0;
1426}
1427
John Fastabend473153292017-02-02 19:14:32 -08001428static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1429{
1430 int err;
1431
1432 rtnl_lock();
1433 err = _virtnet_set_queues(vi, queue_pairs);
1434 rtnl_unlock();
1435 return err;
1436}
1437
Rusty Russell296f96f2007-10-22 11:03:37 +10001438static int virtnet_close(struct net_device *dev)
1439{
1440 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001441 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001442
Rusty Russellb2baed62011-12-29 00:42:38 +00001443 /* Make sure refill_work doesn't re-enable napi! */
1444 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001445
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001446 for (i = 0; i < vi->max_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001447 napi_disable(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001448 napi_disable(&vi->sq[i].napi);
1449 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001450
Rusty Russell296f96f2007-10-22 11:03:37 +10001451 return 0;
1452}
1453
Alex Williamson2af76982009-02-04 09:02:40 +00001454static void virtnet_set_rx_mode(struct net_device *dev)
1455{
1456 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001457 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001458 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001459 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001460 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001461 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001462 void *buf;
1463 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001464
stephen hemminger788a8b62013-12-09 16:18:45 -08001465 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001466 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1467 return;
1468
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001469 vi->ctrl_promisc = ((dev->flags & IFF_PROMISC) != 0);
1470 vi->ctrl_allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001471
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001472 sg_init_one(sg, &vi->ctrl_promisc, sizeof(vi->ctrl_promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001473
1474 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001475 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001476 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001477 vi->ctrl_promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001478
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001479 sg_init_one(sg, &vi->ctrl_allmulti, sizeof(vi->ctrl_allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001480
1481 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001482 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001483 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +02001484 vi->ctrl_allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001485
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001486 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001487 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001488 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001489 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1490 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1491 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001492 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001493 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001494
Alex Williamson23e258e2009-05-01 17:27:56 +00001495 sg_init_table(sg, 2);
1496
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001497 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001498 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001499 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001500 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001501 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001502
1503 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001504 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001505
1506 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001507 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001508
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001509 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001510 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001511 netdev_for_each_mc_addr(ha, dev)
1512 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001513
1514 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001515 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001516
1517 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001518 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001519 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001520
1521 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001522}
1523
Patrick McHardy80d5c362013-04-19 02:04:28 +00001524static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1525 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001526{
1527 struct virtnet_info *vi = netdev_priv(dev);
1528 struct scatterlist sg;
1529
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001530 vi->ctrl_vid = vid;
1531 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001532
1533 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001534 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001535 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001536 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001537}
1538
Patrick McHardy80d5c362013-04-19 02:04:28 +00001539static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1540 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001541{
1542 struct virtnet_info *vi = netdev_priv(dev);
1543 struct scatterlist sg;
1544
Andy Lutomirskia725ee32016-07-18 15:34:49 -07001545 vi->ctrl_vid = vid;
1546 sg_init_one(&sg, &vi->ctrl_vid, sizeof(vi->ctrl_vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001547
1548 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001549 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001550 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001551 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001552}
1553
Wanlong Gao8898c212013-01-24 23:51:30 +00001554static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001555{
1556 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001557
1558 if (vi->affinity_hint_set) {
1559 for (i = 0; i < vi->max_queue_pairs; i++) {
1560 virtqueue_set_affinity(vi->rq[i].vq, -1);
1561 virtqueue_set_affinity(vi->sq[i].vq, -1);
1562 }
1563
1564 vi->affinity_hint_set = false;
1565 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001566}
1567
1568static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001569{
1570 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001571 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001572
1573 /* In multiqueue mode, when the number of cpu is equal to the number of
1574 * queue pairs, we let the queue pairs to be private to one cpu by
1575 * setting the affinity hint to eliminate the contention.
1576 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001577 if (vi->curr_queue_pairs == 1 ||
1578 vi->max_queue_pairs != num_online_cpus()) {
1579 virtnet_clean_affinity(vi, -1);
1580 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001581 }
1582
Wanlong Gao8898c212013-01-24 23:51:30 +00001583 i = 0;
1584 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001585 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1586 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001587 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001588 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001589 }
1590
Wanlong Gao8898c212013-01-24 23:51:30 +00001591 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001592}
1593
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001594static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001595{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001596 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1597 node);
1598 virtnet_set_affinity(vi);
1599 return 0;
1600}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001601
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001602static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1603{
1604 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1605 node_dead);
1606 virtnet_set_affinity(vi);
1607 return 0;
1608}
Jason Wang3ab098d2013-10-15 11:18:58 +08001609
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001610static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1611{
1612 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1613 node);
1614
1615 virtnet_clean_affinity(vi, cpu);
1616 return 0;
1617}
1618
1619static enum cpuhp_state virtionet_online;
1620
1621static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1622{
1623 int ret;
1624
1625 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1626 if (ret)
1627 return ret;
1628 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1629 &vi->node_dead);
1630 if (!ret)
1631 return ret;
1632 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1633 return ret;
1634}
1635
1636static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1637{
1638 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1639 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1640 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001641}
1642
Rick Jones8f9f4662011-10-19 08:10:59 +00001643static void virtnet_get_ringparam(struct net_device *dev,
1644 struct ethtool_ringparam *ring)
1645{
1646 struct virtnet_info *vi = netdev_priv(dev);
1647
Jason Wang986a4f42012-12-07 07:04:56 +00001648 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1649 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001650 ring->rx_pending = ring->rx_max_pending;
1651 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001652}
1653
Rick Jones66846042011-11-14 14:17:08 +00001654
1655static void virtnet_get_drvinfo(struct net_device *dev,
1656 struct ethtool_drvinfo *info)
1657{
1658 struct virtnet_info *vi = netdev_priv(dev);
1659 struct virtio_device *vdev = vi->vdev;
1660
1661 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1662 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1663 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1664
1665}
1666
Jason Wangd73bcd22012-12-07 07:04:57 +00001667/* TODO: Eliminate OOO packets during switching */
1668static int virtnet_set_channels(struct net_device *dev,
1669 struct ethtool_channels *channels)
1670{
1671 struct virtnet_info *vi = netdev_priv(dev);
1672 u16 queue_pairs = channels->combined_count;
1673 int err;
1674
1675 /* We don't support separate rx/tx channels.
1676 * We don't allow setting 'other' channels.
1677 */
1678 if (channels->rx_count || channels->tx_count || channels->other_count)
1679 return -EINVAL;
1680
Amos Kongc18e9cd2014-04-18 13:45:41 +08001681 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00001682 return -EINVAL;
1683
John Fastabendf600b692016-12-15 12:13:24 -08001684 /* For now we don't support modifying channels while XDP is loaded
1685 * also when XDP is loaded all RX queues have XDP programs so we only
1686 * need to check a single RX queue.
1687 */
1688 if (vi->rq[0].xdp_prog)
1689 return -EINVAL;
1690
Wanlong Gao47be2472013-01-24 23:51:29 +00001691 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08001692 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00001693 if (!err) {
1694 netif_set_real_num_tx_queues(dev, queue_pairs);
1695 netif_set_real_num_rx_queues(dev, queue_pairs);
1696
Wanlong Gao8898c212013-01-24 23:51:30 +00001697 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001698 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001699 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001700
1701 return err;
1702}
1703
1704static void virtnet_get_channels(struct net_device *dev,
1705 struct ethtool_channels *channels)
1706{
1707 struct virtnet_info *vi = netdev_priv(dev);
1708
1709 channels->combined_count = vi->curr_queue_pairs;
1710 channels->max_combined = vi->max_queue_pairs;
1711 channels->max_other = 0;
1712 channels->rx_count = 0;
1713 channels->tx_count = 0;
1714 channels->other_count = 0;
1715}
1716
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001717/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001718static bool
1719virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001720{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001721 struct ethtool_link_ksettings diff1 = *cmd;
1722 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001723
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01001724 /* cmd is always set so we need to clear it, validate the port type
1725 * and also without autonegotiation we can ignore advertising
1726 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001727 diff1.base.speed = 0;
1728 diff2.base.port = PORT_OTHER;
1729 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
1730 diff1.base.duplex = 0;
1731 diff1.base.cmd = 0;
1732 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001733
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001734 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
1735 bitmap_empty(diff1.link_modes.supported,
1736 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1737 bitmap_empty(diff1.link_modes.advertising,
1738 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
1739 bitmap_empty(diff1.link_modes.lp_advertising,
1740 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001741}
1742
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001743static int virtnet_set_link_ksettings(struct net_device *dev,
1744 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001745{
1746 struct virtnet_info *vi = netdev_priv(dev);
1747 u32 speed;
1748
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001749 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001750 /* don't allow custom speed and duplex */
1751 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001752 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001753 !virtnet_validate_ethtool_cmd(cmd))
1754 return -EINVAL;
1755 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001756 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001757
1758 return 0;
1759}
1760
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001761static int virtnet_get_link_ksettings(struct net_device *dev,
1762 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001763{
1764 struct virtnet_info *vi = netdev_priv(dev);
1765
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001766 cmd->base.speed = vi->speed;
1767 cmd->base.duplex = vi->duplex;
1768 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01001769
1770 return 0;
1771}
1772
1773static void virtnet_init_settings(struct net_device *dev)
1774{
1775 struct virtnet_info *vi = netdev_priv(dev);
1776
1777 vi->speed = SPEED_UNKNOWN;
1778 vi->duplex = DUPLEX_UNKNOWN;
1779}
1780
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001781static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00001782 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001783 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00001784 .get_ringparam = virtnet_get_ringparam,
Jason Wangd73bcd22012-12-07 07:04:57 +00001785 .set_channels = virtnet_set_channels,
1786 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00001787 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01001788 .get_link_ksettings = virtnet_get_link_ksettings,
1789 .set_link_ksettings = virtnet_set_link_ksettings,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001790};
1791
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001792static void virtnet_freeze_down(struct virtio_device *vdev)
1793{
1794 struct virtnet_info *vi = vdev->priv;
1795 int i;
1796
1797 /* Make sure no work handler is accessing the device */
1798 flush_work(&vi->config_work);
1799
1800 netif_device_detach(vi->dev);
1801 cancel_delayed_work_sync(&vi->refill);
1802
1803 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001804 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001805 napi_disable(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001806 napi_disable(&vi->sq[i].napi);
1807 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001808 }
1809}
1810
1811static int init_vqs(struct virtnet_info *vi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08001812static void _remove_vq_common(struct virtnet_info *vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001813
1814static int virtnet_restore_up(struct virtio_device *vdev)
1815{
1816 struct virtnet_info *vi = vdev->priv;
1817 int err, i;
1818
1819 err = init_vqs(vi);
1820 if (err)
1821 return err;
1822
1823 virtio_device_ready(vdev);
1824
1825 if (netif_running(vi->dev)) {
1826 for (i = 0; i < vi->curr_queue_pairs; i++)
1827 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
1828 schedule_delayed_work(&vi->refill, 0);
1829
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001830 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04001831 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001832 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
1833 &vi->sq[i].napi);
1834 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08001835 }
1836
1837 netif_device_attach(vi->dev);
1838 return err;
1839}
1840
Jason Wang017b29c2017-02-20 11:50:20 +08001841static int virtnet_reset(struct virtnet_info *vi, int curr_qp, int xdp_qp)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001842{
1843 struct virtio_device *dev = vi->vdev;
1844 int ret;
1845
1846 virtio_config_disable(dev);
1847 dev->failed = dev->config->get_status(dev) & VIRTIO_CONFIG_S_FAILED;
1848 virtnet_freeze_down(dev);
1849 _remove_vq_common(vi);
1850
1851 dev->config->reset(dev);
1852 virtio_add_status(dev, VIRTIO_CONFIG_S_ACKNOWLEDGE);
1853 virtio_add_status(dev, VIRTIO_CONFIG_S_DRIVER);
1854
1855 ret = virtio_finalize_features(dev);
1856 if (ret)
1857 goto err;
1858
Jason Wang017b29c2017-02-20 11:50:20 +08001859 vi->xdp_queue_pairs = xdp_qp;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001860 ret = virtnet_restore_up(dev);
1861 if (ret)
1862 goto err;
Jason Wang017b29c2017-02-20 11:50:20 +08001863 ret = _virtnet_set_queues(vi, curr_qp);
John Fastabend2de2f7f2017-02-02 19:16:29 -08001864 if (ret)
1865 goto err;
1866
1867 virtio_add_status(dev, VIRTIO_CONFIG_S_DRIVER_OK);
1868 virtio_config_enable(dev);
1869 return 0;
1870err:
1871 virtio_add_status(dev, VIRTIO_CONFIG_S_FAILED);
1872 return ret;
1873}
1874
John Fastabendf600b692016-12-15 12:13:24 -08001875static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog)
1876{
1877 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
1878 struct virtnet_info *vi = netdev_priv(dev);
1879 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08001880 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08001881 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08001882
1883 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
Jason Wang92502fe2016-12-23 22:37:30 +08001884 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
1885 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
1886 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO)) {
John Fastabendf600b692016-12-15 12:13:24 -08001887 netdev_warn(dev, "can't set XDP while host is implementing LRO, disable LRO first\n");
1888 return -EOPNOTSUPP;
1889 }
1890
1891 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
1892 netdev_warn(dev, "XDP expects header/data in single page, any_header_sg required\n");
1893 return -EINVAL;
1894 }
1895
1896 if (dev->mtu > max_sz) {
1897 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
1898 return -EINVAL;
1899 }
1900
John Fastabend672aafd2016-12-15 12:13:49 -08001901 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
1902 if (prog)
1903 xdp_qp = nr_cpu_ids;
1904
1905 /* XDP requires extra queues for XDP_TX */
1906 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
1907 netdev_warn(dev, "request %i queues but max is %i\n",
1908 curr_qp + xdp_qp, vi->max_queue_pairs);
1909 return -ENOMEM;
1910 }
1911
John Fastabend2de2f7f2017-02-02 19:16:29 -08001912 if (prog) {
1913 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
1914 if (IS_ERR(prog))
1915 return PTR_ERR(prog);
1916 }
1917
John Fastabend2de2f7f2017-02-02 19:16:29 -08001918 /* Changing the headroom in buffers is a disruptive operation because
1919 * existing buffers must be flushed and reallocated. This will happen
1920 * when a xdp program is initially added or xdp is disabled by removing
1921 * the xdp program resulting in number of XDP queues changing.
1922 */
1923 if (vi->xdp_queue_pairs != xdp_qp) {
Jason Wang017b29c2017-02-20 11:50:20 +08001924 err = virtnet_reset(vi, curr_qp + xdp_qp, xdp_qp);
1925 if (err) {
1926 dev_warn(&dev->dev, "XDP reset failure.\n");
John Fastabend2de2f7f2017-02-02 19:16:29 -08001927 goto virtio_reset_err;
Jason Wang017b29c2017-02-20 11:50:20 +08001928 }
John Fastabendf600b692016-12-15 12:13:24 -08001929 }
1930
John Fastabend672aafd2016-12-15 12:13:49 -08001931 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
1932
John Fastabendf600b692016-12-15 12:13:24 -08001933 for (i = 0; i < vi->max_queue_pairs; i++) {
1934 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
1935 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
1936 if (old_prog)
1937 bpf_prog_put(old_prog);
1938 }
1939
1940 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001941
1942virtio_reset_err:
1943 /* On reset error do our best to unwind XDP changes inflight and return
1944 * error up to user space for resolution. The underlying reset hung on
1945 * us so not much we can do here.
1946 */
John Fastabend2de2f7f2017-02-02 19:16:29 -08001947 if (prog)
1948 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
1949 return err;
John Fastabendf600b692016-12-15 12:13:24 -08001950}
1951
1952static bool virtnet_xdp_query(struct net_device *dev)
1953{
1954 struct virtnet_info *vi = netdev_priv(dev);
1955 int i;
1956
1957 for (i = 0; i < vi->max_queue_pairs; i++) {
1958 if (vi->rq[i].xdp_prog)
1959 return true;
1960 }
1961 return false;
1962}
1963
1964static int virtnet_xdp(struct net_device *dev, struct netdev_xdp *xdp)
1965{
1966 switch (xdp->command) {
1967 case XDP_SETUP_PROG:
1968 return virtnet_xdp_set(dev, xdp->prog);
1969 case XDP_QUERY_PROG:
1970 xdp->prog_attached = virtnet_xdp_query(dev);
1971 return 0;
1972 default:
1973 return -EINVAL;
1974 }
1975}
1976
Stephen Hemminger76288b42009-01-06 10:44:22 -08001977static const struct net_device_ops virtnet_netdev = {
1978 .ndo_open = virtnet_open,
1979 .ndo_stop = virtnet_close,
1980 .ndo_start_xmit = start_xmit,
1981 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001982 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00001983 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001984 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00001985 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
1986 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001987#ifdef CONFIG_NET_POLL_CONTROLLER
1988 .ndo_poll_controller = virtnet_netpoll,
1989#endif
John Fastabendf600b692016-12-15 12:13:24 -08001990 .ndo_xdp = virtnet_xdp,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001991};
1992
Jason Wang586d17c2012-04-11 20:43:52 +00001993static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001994{
Jason Wang586d17c2012-04-11 20:43:52 +00001995 struct virtnet_info *vi =
1996 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001997 u16 v;
1998
Rusty Russell855e0c52013-10-14 18:11:51 +10301999 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2000 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302001 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002002
2003 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002004 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002005 virtnet_ack_link_announce(vi);
2006 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002007
2008 /* Ignore unknown (future) status bits */
2009 v &= VIRTIO_NET_S_LINK_UP;
2010
2011 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302012 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002013
2014 vi->status = v;
2015
2016 if (vi->status & VIRTIO_NET_S_LINK_UP) {
2017 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002018 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002019 } else {
2020 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002021 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002022 }
2023}
2024
2025static void virtnet_config_changed(struct virtio_device *vdev)
2026{
2027 struct virtnet_info *vi = vdev->priv;
2028
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002029 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002030}
2031
Jason Wang986a4f42012-12-07 07:04:56 +00002032static void virtnet_free_queues(struct virtnet_info *vi)
2033{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002034 int i;
2035
Jason Wangab3971b2015-03-12 13:57:44 +08002036 for (i = 0; i < vi->max_queue_pairs; i++) {
2037 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002038 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002039 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002040 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002041
Eric Dumazet963abe52016-11-15 22:24:12 -08002042 /* We called napi_hash_del() before netif_napi_del(),
2043 * we need to respect an RCU grace period before freeing vi->rq
2044 */
2045 synchronize_net();
2046
Jason Wang986a4f42012-12-07 07:04:56 +00002047 kfree(vi->rq);
2048 kfree(vi->sq);
2049}
2050
John Fastabend473153292017-02-02 19:14:32 -08002051static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002052{
John Fastabendf600b692016-12-15 12:13:24 -08002053 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002054 int i;
2055
2056 for (i = 0; i < vi->max_queue_pairs; i++) {
2057 while (vi->rq[i].pages)
2058 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002059
2060 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2061 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2062 if (old_prog)
2063 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002064 }
John Fastabend473153292017-02-02 19:14:32 -08002065}
2066
2067static void free_receive_bufs(struct virtnet_info *vi)
2068{
2069 rtnl_lock();
2070 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002071 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002072}
2073
Michael Daltonfb518792014-01-16 22:23:26 -08002074static void free_receive_page_frags(struct virtnet_info *vi)
2075{
2076 int i;
2077 for (i = 0; i < vi->max_queue_pairs; i++)
2078 if (vi->rq[i].alloc_frag.page)
2079 put_page(vi->rq[i].alloc_frag.page);
2080}
2081
John Fastabendb68df012017-01-25 18:22:48 -08002082static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002083{
2084 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2085 return false;
2086 else if (q < vi->curr_queue_pairs)
2087 return true;
2088 else
2089 return false;
2090}
2091
Jason Wang986a4f42012-12-07 07:04:56 +00002092static void free_unused_bufs(struct virtnet_info *vi)
2093{
2094 void *buf;
2095 int i;
2096
2097 for (i = 0; i < vi->max_queue_pairs; i++) {
2098 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002099 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002100 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002101 dev_kfree_skb(buf);
2102 else
2103 put_page(virt_to_head_page(buf));
2104 }
Jason Wang986a4f42012-12-07 07:04:56 +00002105 }
2106
2107 for (i = 0; i < vi->max_queue_pairs; i++) {
2108 struct virtqueue *vq = vi->rq[i].vq;
2109
2110 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002111 if (vi->mergeable_rx_bufs) {
2112 unsigned long ctx = (unsigned long)buf;
2113 void *base = mergeable_ctx_to_buf_address(ctx);
2114 put_page(virt_to_head_page(base));
2115 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002116 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002117 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002118 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002119 }
Jason Wang986a4f42012-12-07 07:04:56 +00002120 }
Jason Wang986a4f42012-12-07 07:04:56 +00002121 }
2122}
2123
Jason Wange9d74172012-12-07 07:04:55 +00002124static void virtnet_del_vqs(struct virtnet_info *vi)
2125{
2126 struct virtio_device *vdev = vi->vdev;
2127
Wanlong Gao8898c212013-01-24 23:51:30 +00002128 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002129
Jason Wange9d74172012-12-07 07:04:55 +00002130 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002131
2132 virtnet_free_queues(vi);
2133}
2134
2135static int virtnet_find_vqs(struct virtnet_info *vi)
2136{
2137 vq_callback_t **callbacks;
2138 struct virtqueue **vqs;
2139 int ret = -ENOMEM;
2140 int i, total_vqs;
2141 const char **names;
2142
2143 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2144 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2145 * possible control vq.
2146 */
2147 total_vqs = vi->max_queue_pairs * 2 +
2148 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2149
2150 /* Allocate space for find_vqs parameters */
2151 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
2152 if (!vqs)
2153 goto err_vq;
2154 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
2155 if (!callbacks)
2156 goto err_callback;
2157 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
2158 if (!names)
2159 goto err_names;
2160
2161 /* Parameters for control virtqueue, if any */
2162 if (vi->has_cvq) {
2163 callbacks[total_vqs - 1] = NULL;
2164 names[total_vqs - 1] = "control";
2165 }
2166
2167 /* Allocate/initialize parameters for send/receive virtqueues */
2168 for (i = 0; i < vi->max_queue_pairs; i++) {
2169 callbacks[rxq2vq(i)] = skb_recv_done;
2170 callbacks[txq2vq(i)] = skb_xmit_done;
2171 sprintf(vi->rq[i].name, "input.%d", i);
2172 sprintf(vi->sq[i].name, "output.%d", i);
2173 names[rxq2vq(i)] = vi->rq[i].name;
2174 names[txq2vq(i)] = vi->sq[i].name;
2175 }
2176
2177 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Christoph Hellwigfb5e31d2017-02-05 18:15:22 +01002178 names, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002179 if (ret)
2180 goto err_find;
2181
2182 if (vi->has_cvq) {
2183 vi->cvq = vqs[total_vqs - 1];
2184 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002185 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002186 }
2187
2188 for (i = 0; i < vi->max_queue_pairs; i++) {
2189 vi->rq[i].vq = vqs[rxq2vq(i)];
2190 vi->sq[i].vq = vqs[txq2vq(i)];
2191 }
2192
2193 kfree(names);
2194 kfree(callbacks);
2195 kfree(vqs);
2196
2197 return 0;
2198
2199err_find:
2200 kfree(names);
2201err_names:
2202 kfree(callbacks);
2203err_callback:
2204 kfree(vqs);
2205err_vq:
2206 return ret;
2207}
2208
2209static int virtnet_alloc_queues(struct virtnet_info *vi)
2210{
2211 int i;
2212
2213 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
2214 if (!vi->sq)
2215 goto err_sq;
2216 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002217 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002218 goto err_rq;
2219
2220 INIT_DELAYED_WORK(&vi->refill, refill_work);
2221 for (i = 0; i < vi->max_queue_pairs; i++) {
2222 vi->rq[i].pages = NULL;
2223 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2224 napi_weight);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002225 netif_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2226 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002227
2228 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002229 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002230 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
2231 }
2232
2233 return 0;
2234
2235err_rq:
2236 kfree(vi->sq);
2237err_sq:
2238 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002239}
2240
Amit Shah3f9c10b2011-12-22 16:58:31 +05302241static int init_vqs(struct virtnet_info *vi)
2242{
Jason Wang986a4f42012-12-07 07:04:56 +00002243 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302244
Jason Wang986a4f42012-12-07 07:04:56 +00002245 /* Allocate send & receive queues */
2246 ret = virtnet_alloc_queues(vi);
2247 if (ret)
2248 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302249
Jason Wang986a4f42012-12-07 07:04:56 +00002250 ret = virtnet_find_vqs(vi);
2251 if (ret)
2252 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302253
Wanlong Gao47be2472013-01-24 23:51:29 +00002254 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002255 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002256 put_online_cpus();
2257
Amit Shah3f9c10b2011-12-22 16:58:31 +05302258 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002259
2260err_free:
2261 virtnet_free_queues(vi);
2262err:
2263 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302264}
2265
Michael Daltonfbf28d72014-01-16 22:23:30 -08002266#ifdef CONFIG_SYSFS
2267static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
2268 struct rx_queue_attribute *attribute, char *buf)
2269{
2270 struct virtnet_info *vi = netdev_priv(queue->dev);
2271 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Johannes Berg5377d7582015-08-19 09:48:40 +02002272 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002273
2274 BUG_ON(queue_index >= vi->max_queue_pairs);
2275 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
2276 return sprintf(buf, "%u\n", get_mergeable_buf_len(avg));
2277}
2278
2279static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2280 __ATTR_RO(mergeable_rx_buffer_size);
2281
2282static struct attribute *virtio_net_mrg_rx_attrs[] = {
2283 &mergeable_rx_buffer_size_attribute.attr,
2284 NULL
2285};
2286
2287static const struct attribute_group virtio_net_mrg_rx_group = {
2288 .name = "virtio_net",
2289 .attrs = virtio_net_mrg_rx_attrs
2290};
2291#endif
2292
Jason Wang892d6eb2014-11-20 17:03:05 +08002293static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2294 unsigned int fbit,
2295 const char *fname, const char *dname)
2296{
2297 if (!virtio_has_feature(vdev, fbit))
2298 return false;
2299
2300 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2301 fname, dname);
2302
2303 return true;
2304}
2305
2306#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2307 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2308
2309static bool virtnet_validate_features(struct virtio_device *vdev)
2310{
2311 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2312 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2313 "VIRTIO_NET_F_CTRL_VQ") ||
2314 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2315 "VIRTIO_NET_F_CTRL_VQ") ||
2316 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2317 "VIRTIO_NET_F_CTRL_VQ") ||
2318 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2319 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2320 "VIRTIO_NET_F_CTRL_VQ"))) {
2321 return false;
2322 }
2323
2324 return true;
2325}
2326
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002327#define MIN_MTU ETH_MIN_MTU
2328#define MAX_MTU ETH_MAX_MTU
2329
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002330static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002331{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002332 if (!vdev->config->get) {
2333 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2334 __func__);
2335 return -EINVAL;
2336 }
2337
Jason Wang892d6eb2014-11-20 17:03:05 +08002338 if (!virtnet_validate_features(vdev))
2339 return -EINVAL;
2340
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002341 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2342 int mtu = virtio_cread16(vdev,
2343 offsetof(struct virtio_net_config,
2344 mtu));
2345 if (mtu < MIN_MTU)
2346 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2347 }
2348
2349 return 0;
2350}
2351
2352static int virtnet_probe(struct virtio_device *vdev)
2353{
2354 int i, err;
2355 struct net_device *dev;
2356 struct virtnet_info *vi;
2357 u16 max_queue_pairs;
2358 int mtu;
2359
Jason Wang986a4f42012-12-07 07:04:56 +00002360 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302361 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2362 struct virtio_net_config,
2363 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002364
2365 /* We need at least 2 queue's */
2366 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2367 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2368 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2369 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002370
2371 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002372 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002373 if (!dev)
2374 return -ENOMEM;
2375
2376 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002377 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002378 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002379 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002380
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002381 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002382 SET_NETDEV_DEV(dev, &vdev->dev);
2383
2384 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002385 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002386 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002387 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002388 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002389 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002390
2391 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002392 dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO
Rusty Russell34a48572008-02-04 23:50:02 -05002393 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2394 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002395 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002396 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2397 dev->hw_features |= NETIF_F_TSO;
2398 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2399 dev->hw_features |= NETIF_F_TSO6;
2400 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2401 dev->hw_features |= NETIF_F_TSO_ECN;
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002402 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
2403 dev->hw_features |= NETIF_F_UFO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002404
Jason Wang41f2f122014-12-24 11:03:52 +08002405 dev->features |= NETIF_F_GSO_ROBUST;
2406
Michał Mirosław98e778c2011-03-31 01:01:35 +00002407 if (gso)
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002408 dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO);
Michał Mirosław98e778c2011-03-31 01:01:35 +00002409 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002410 }
Thomas Huth4f491292013-08-27 17:09:02 +02002411 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2412 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002413
Jason Wang4fda8302013-04-10 23:32:21 +00002414 dev->vlan_features = dev->features;
2415
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002416 /* MTU range: 68 - 65535 */
2417 dev->min_mtu = MIN_MTU;
2418 dev->max_mtu = MAX_MTU;
2419
Rusty Russell296f96f2007-10-22 11:03:37 +10002420 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302421 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2422 virtio_cread_bytes(vdev,
2423 offsetof(struct virtio_net_config, mac),
2424 dev->dev_addr, dev->addr_len);
2425 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002426 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002427
2428 /* Set up our device-specific information */
2429 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002430 vi->dev = dev;
2431 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002432 vdev->priv = vi;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002433 vi->stats = alloc_percpu(struct virtnet_stats);
2434 err = -ENOMEM;
2435 if (vi->stats == NULL)
2436 goto free;
2437
John Stultz827da442013-10-07 15:51:58 -07002438 for_each_possible_cpu(i) {
2439 struct virtnet_stats *virtnet_stats;
2440 virtnet_stats = per_cpu_ptr(vi->stats, i);
2441 u64_stats_init(&virtnet_stats->tx_syncp);
2442 u64_stats_init(&virtnet_stats->rx_syncp);
2443 }
2444
Jason Wang586d17c2012-04-11 20:43:52 +00002445 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002446
Herbert Xu97402b92008-04-18 11:24:27 +08002447 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002448 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2449 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002450 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2451 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002452 vi->big_packets = true;
2453
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002454 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2455 vi->mergeable_rx_bufs = true;
2456
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002457 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2458 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002459 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2460 else
2461 vi->hdr_len = sizeof(struct virtio_net_hdr);
2462
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002463 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2464 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302465 vi->any_header_sg = true;
2466
Jason Wang986a4f42012-12-07 07:04:56 +00002467 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2468 vi->has_cvq = true;
2469
Aaron Conole14de9d12016-06-03 16:57:12 -04002470 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2471 mtu = virtio_cread16(vdev,
2472 offsetof(struct virtio_net_config,
2473 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04002474 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002475 /* Should never trigger: MTU was previously validated
2476 * in virtnet_validate.
2477 */
2478 dev_err(&vdev->dev, "device MTU appears to have changed "
2479 "it is now %d < %d", mtu, dev->min_mtu);
2480 goto free_stats;
Aaron Conole93a205e2016-10-25 16:12:12 -04002481 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002482
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002483 dev->mtu = mtu;
2484 dev->max_mtu = mtu;
2485
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02002486 /* TODO: size buffers correctly in this case. */
2487 if (dev->mtu > ETH_DATA_LEN)
2488 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04002489 }
2490
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002491 if (vi->any_header_sg)
2492 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08002493
Jason Wang44900012016-11-25 12:37:26 +08002494 /* Enable multiqueue by default */
2495 if (num_online_cpus() >= max_queue_pairs)
2496 vi->curr_queue_pairs = max_queue_pairs;
2497 else
2498 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00002499 vi->max_queue_pairs = max_queue_pairs;
2500
2501 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05302502 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002503 if (err)
Jason Wang9bb8ca82013-11-05 18:19:45 +08002504 goto free_stats;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002505
Michael Daltonfbf28d72014-01-16 22:23:30 -08002506#ifdef CONFIG_SYSFS
2507 if (vi->mergeable_rx_bufs)
2508 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
2509#endif
Zhi Yong Wu0f13b66b2013-11-18 21:19:27 +08002510 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
2511 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002512
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002513 virtnet_init_settings(dev);
2514
Rusty Russell296f96f2007-10-22 11:03:37 +10002515 err = register_netdev(dev);
2516 if (err) {
2517 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002518 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10002519 }
Rusty Russellb3369c12008-02-04 23:50:02 -05002520
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10302521 virtio_device_ready(vdev);
2522
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002523 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002524 if (err) {
2525 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08002526 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002527 }
2528
Jason Wanga2208712016-12-13 14:23:05 +08002529 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08002530
Jason Wang167c25e2010-11-10 14:45:41 +00002531 /* Assume link up if device can't report link status,
2532 otherwise get link status from config. */
2533 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
2534 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002535 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00002536 } else {
2537 vi->status = VIRTIO_NET_S_LINK_UP;
2538 netif_carrier_on(dev);
2539 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002540
Jason Wang986a4f42012-12-07 07:04:56 +00002541 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
2542 dev->name, max_queue_pairs);
2543
Rusty Russell296f96f2007-10-22 11:03:37 +10002544 return 0;
2545
wangyunjianf00e35e2016-05-31 11:52:43 +08002546free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10302547 vi->vdev->config->reset(vdev);
2548
Rusty Russellb3369c12008-02-04 23:50:02 -05002549 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002550free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00002551 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08002552 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00002553 virtnet_del_vqs(vi);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002554free_stats:
2555 free_percpu(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10002556free:
2557 free_netdev(dev);
2558 return err;
2559}
2560
John Fastabend2de2f7f2017-02-02 19:16:29 -08002561static void _remove_vq_common(struct virtnet_info *vi)
2562{
2563 vi->vdev->config->reset(vi->vdev);
2564 free_unused_bufs(vi);
2565 _free_receive_bufs(vi);
2566 free_receive_page_frags(vi);
2567 virtnet_del_vqs(vi);
2568}
2569
Amit Shah04486ed2011-12-22 16:58:32 +05302570static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10002571{
Amit Shah04486ed2011-12-22 16:58:32 +05302572 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00002573
2574 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00002575 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002576
Jason Wang986a4f42012-12-07 07:04:56 +00002577 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06002578
Michael Daltonfb518792014-01-16 22:23:26 -08002579 free_receive_page_frags(vi);
2580
Jason Wang986a4f42012-12-07 07:04:56 +00002581 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05302582}
2583
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002584static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05302585{
2586 struct virtnet_info *vi = vdev->priv;
2587
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002588 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00002589
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10302590 /* Make sure no work handler is accessing the device. */
2591 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00002592
Amit Shah04486ed2011-12-22 16:58:32 +05302593 unregister_netdev(vi->dev);
2594
2595 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05002596
Krishna Kumar2e66f552011-07-20 03:56:02 +00002597 free_percpu(vi->stats);
Rusty Russell74b25532007-11-19 11:20:42 -05002598 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002599}
2600
Aaron Lu89107002013-09-17 09:25:23 +09302601#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302602static int virtnet_freeze(struct virtio_device *vdev)
2603{
2604 struct virtnet_info *vi = vdev->priv;
2605
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002606 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002607 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302608 remove_vq_common(vi);
2609
2610 return 0;
2611}
2612
2613static int virtnet_restore(struct virtio_device *vdev)
2614{
2615 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002616 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05302617
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002618 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05302619 if (err)
2620 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00002621 virtnet_set_queues(vi, vi->curr_queue_pairs);
2622
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002623 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08002624 if (err)
2625 return err;
2626
Amit Shah0741bcb2011-12-22 16:58:33 +05302627 return 0;
2628}
2629#endif
2630
Rusty Russell296f96f2007-10-22 11:03:37 +10002631static struct virtio_device_id id_table[] = {
2632 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
2633 { 0 },
2634};
2635
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002636#define VIRTNET_FEATURES \
2637 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
2638 VIRTIO_NET_F_MAC, \
2639 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
2640 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
2641 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
2642 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
2643 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
2644 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
2645 VIRTIO_NET_F_CTRL_MAC_ADDR, \
2646 VIRTIO_NET_F_MTU
2647
Rusty Russellc45a6812008-05-02 21:50:50 -05002648static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002649 VIRTNET_FEATURES,
2650};
2651
2652static unsigned int features_legacy[] = {
2653 VIRTNET_FEATURES,
2654 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302655 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05002656};
2657
Uwe Kleine-König22402522009-11-05 01:32:44 -08002658static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05002659 .feature_table = features,
2660 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02002661 .feature_table_legacy = features_legacy,
2662 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10002663 .driver.name = KBUILD_MODNAME,
2664 .driver.owner = THIS_MODULE,
2665 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002666 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10002667 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05002668 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002669 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09302670#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05302671 .freeze = virtnet_freeze,
2672 .restore = virtnet_restore,
2673#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10002674};
2675
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002676static __init int virtio_net_driver_init(void)
2677{
2678 int ret;
2679
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002680 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002681 virtnet_cpu_online,
2682 virtnet_cpu_down_prep);
2683 if (ret < 0)
2684 goto out;
2685 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01002686 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02002687 NULL, virtnet_cpu_dead);
2688 if (ret)
2689 goto err_dead;
2690
2691 ret = register_virtio_driver(&virtio_net_driver);
2692 if (ret)
2693 goto err_virtio;
2694 return 0;
2695err_virtio:
2696 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2697err_dead:
2698 cpuhp_remove_multi_state(virtionet_online);
2699out:
2700 return ret;
2701}
2702module_init(virtio_net_driver_init);
2703
2704static __exit void virtio_net_driver_exit(void)
2705{
2706 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
2707 cpuhp_remove_multi_state(virtionet_online);
2708 unregister_virtio_driver(&virtio_net_driver);
2709}
2710module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10002711
2712MODULE_DEVICE_TABLE(virtio, id_table);
2713MODULE_DESCRIPTION("Virtio network driver");
2714MODULE_LICENSE("GPL");