blob: 3e2c041d76ac1ac61fe5f6033c378feb4e3d6fd0 [file] [log] [blame]
Rusty Russell48925e32009-09-24 09:59:20 -06001/* A network driver using virtio.
Rusty Russell296f96f2007-10-22 11:03:37 +10002 *
3 * Copyright 2007 Rusty Russell <rusty@rustcorp.com.au> IBM Corporation
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
Jeff Kirsheradf8d3f2013-12-06 06:28:47 -080016 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Rusty Russell296f96f2007-10-22 11:03:37 +100017 */
18//#define DEBUG
19#include <linux/netdevice.h>
20#include <linux/etherdevice.h>
Herbert Xua9ea3fc2008-04-18 11:21:42 +080021#include <linux/ethtool.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100022#include <linux/module.h>
23#include <linux/virtio.h>
24#include <linux/virtio_net.h>
John Fastabendf600b692016-12-15 12:13:24 -080025#include <linux/bpf.h>
Daniel Borkmanna67edbf2017-01-25 02:28:18 +010026#include <linux/bpf_trace.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100027#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080028#include <linux/if_vlan.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Wanlong Gao8de4b2f2013-01-24 23:51:31 +000030#include <linux/cpu.h>
Michael Daltonab7db912014-01-16 22:23:27 -080031#include <linux/average.h>
Jason Wang186b3c92017-09-19 17:42:43 +080032#include <linux/filter.h>
Caleb Raitto2ca653d2018-08-09 17:28:40 -070033#include <linux/kernel.h>
Sridhar Samudralaba5e4422018-05-24 09:55:17 -070034#include <linux/pci.h>
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +020035#include <net/route.h>
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +010036#include <net/xdp.h>
Sridhar Samudralaba5e4422018-05-24 09:55:17 -070037#include <net/net_failover.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100038
Amerigo Wangd34710e2013-05-09 19:50:51 +000039static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020040module_param(napi_weight, int, 0444);
41
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040042static bool csum = true, gso = true, napi_tx;
Rusty Russell34a48572008-02-04 23:50:02 -050043module_param(csum, bool, 0444);
44module_param(gso, bool, 0444);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -040045module_param(napi_tx, bool, 0644);
Rusty Russell34a48572008-02-04 23:50:02 -050046
Rusty Russell296f96f2007-10-22 11:03:37 +100047/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080048#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080049#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100050
Jason Wangf6b10202017-02-21 16:46:28 +080051#define VIRTNET_RX_PAD (NET_IP_ALIGN + NET_SKB_PAD)
52
John Fastabend2de2f7f2017-02-02 19:16:29 -080053/* Amount of XDP headroom to prepend to packets for use by xdp_adjust_head */
54#define VIRTIO_XDP_HEADROOM 256
55
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +020056/* Separating two types of XDP xmit */
57#define VIRTIO_XDP_TX BIT(0)
58#define VIRTIO_XDP_REDIR BIT(1)
59
Johannes Berg5377d7582015-08-19 09:48:40 +020060/* RX packet size EWMA. The average packet size is used to determine the packet
61 * buffer size when refilling RX rings. As the entire RX ring may be refilled
62 * at once, the weight is chosen so that the EWMA will be insensitive to short-
63 * term, transient changes in packet size.
Michael Daltonab7db912014-01-16 22:23:27 -080064 */
Johannes Bergeb1e0112017-02-15 09:49:26 +010065DECLARE_EWMA(pkt_len, 0, 64)
Michael Daltonab7db912014-01-16 22:23:27 -080066
Rick Jones66846042011-11-14 14:17:08 +000067#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000068
Colin Ian King7acd4322017-08-12 22:45:53 +010069static const unsigned long guest_offloads[] = {
70 VIRTIO_NET_F_GUEST_TSO4,
71 VIRTIO_NET_F_GUEST_TSO6,
72 VIRTIO_NET_F_GUEST_ECN,
73 VIRTIO_NET_F_GUEST_UFO
74};
Jason Wang3f935222017-07-19 16:54:49 +080075
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090076struct virtnet_stat_desc {
77 char desc[ETH_GSTRING_LEN];
78 size_t offset;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000079};
80
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090081struct virtnet_sq_stats {
82 struct u64_stats_sync syncp;
83 u64 packets;
84 u64 bytes;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090085 u64 xdp_tx;
86 u64 xdp_tx_drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +090087 u64 kicks;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090088};
89
Jason Wangd46eeea2018-07-31 17:43:39 +080090struct virtnet_rq_stats {
91 struct u64_stats_sync syncp;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090092 u64 packets;
93 u64 bytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +090094 u64 drops;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090095 u64 xdp_packets;
96 u64 xdp_tx;
97 u64 xdp_redirects;
98 u64 xdp_drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +090099 u64 kicks;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900100};
101
102#define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
Jason Wangd46eeea2018-07-31 17:43:39 +0800103#define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900104
105static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900106 { "packets", VIRTNET_SQ_STAT(packets) },
107 { "bytes", VIRTNET_SQ_STAT(bytes) },
108 { "xdp_tx", VIRTNET_SQ_STAT(xdp_tx) },
109 { "xdp_tx_drops", VIRTNET_SQ_STAT(xdp_tx_drops) },
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900110 { "kicks", VIRTNET_SQ_STAT(kicks) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900111};
112
113static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900114 { "packets", VIRTNET_RQ_STAT(packets) },
115 { "bytes", VIRTNET_RQ_STAT(bytes) },
116 { "drops", VIRTNET_RQ_STAT(drops) },
117 { "xdp_packets", VIRTNET_RQ_STAT(xdp_packets) },
118 { "xdp_tx", VIRTNET_RQ_STAT(xdp_tx) },
119 { "xdp_redirects", VIRTNET_RQ_STAT(xdp_redirects) },
120 { "xdp_drops", VIRTNET_RQ_STAT(xdp_drops) },
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900121 { "kicks", VIRTNET_RQ_STAT(kicks) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900122};
123
124#define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
125#define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
126
Jason Wange9d74172012-12-07 07:04:55 +0000127/* Internal representation of a send virtqueue */
128struct send_queue {
129 /* Virtqueue associated with this send _queue */
130 struct virtqueue *vq;
131
132 /* TX: fragments + linear part + virtio header */
133 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000134
135 /* Name of the send queue: output.$index */
136 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400137
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900138 struct virtnet_sq_stats stats;
139
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400140 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +0000141};
142
143/* Internal representation of a receive virtqueue */
144struct receive_queue {
145 /* Virtqueue associated with this receive_queue */
146 struct virtqueue *vq;
147
Rusty Russell296f96f2007-10-22 11:03:37 +1000148 struct napi_struct napi;
149
John Fastabendf600b692016-12-15 12:13:24 -0800150 struct bpf_prog __rcu *xdp_prog;
151
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900152 struct virtnet_rq_stats stats;
153
Jason Wange9d74172012-12-07 07:04:55 +0000154 /* Chain pages by the private ptr. */
155 struct page *pages;
156
Michael Daltonab7db912014-01-16 22:23:27 -0800157 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200158 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800159
Michael Daltonfb518792014-01-16 22:23:26 -0800160 /* Page frag for packet buffer allocation. */
161 struct page_frag alloc_frag;
162
Jason Wange9d74172012-12-07 07:04:55 +0000163 /* RX: fragments + linear part + virtio header */
164 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000165
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200166 /* Min single buffer size for mergeable buffers case. */
167 unsigned int min_buf_len;
168
Jason Wang986a4f42012-12-07 07:04:56 +0000169 /* Name of this receive queue: input.$index */
170 char name[40];
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100171
172 struct xdp_rxq_info xdp_rxq;
Jason Wange9d74172012-12-07 07:04:55 +0000173};
174
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300175/* Control VQ buffers: protected by the rtnl lock */
176struct control_buf {
177 struct virtio_net_ctrl_hdr hdr;
178 virtio_net_ctrl_ack status;
179 struct virtio_net_ctrl_mq mq;
180 u8 promisc;
181 u8 allmulti;
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +0300182 __virtio16 vid;
Michael S. Tsirkinf4ee7032018-04-19 08:30:50 +0300183 __virtio64 offloads;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300184};
185
Jason Wange9d74172012-12-07 07:04:55 +0000186struct virtnet_info {
187 struct virtio_device *vdev;
188 struct virtqueue *cvq;
189 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000190 struct send_queue *sq;
191 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000192 unsigned int status;
193
Jason Wang986a4f42012-12-07 07:04:56 +0000194 /* Max # of queue pairs supported by the device */
195 u16 max_queue_pairs;
196
197 /* # of queue pairs currently used by the driver */
198 u16 curr_queue_pairs;
199
John Fastabend672aafd2016-12-15 12:13:49 -0800200 /* # of XDP queue pairs currently used by the driver */
201 u16 xdp_queue_pairs;
202
Herbert Xu97402b92008-04-18 11:24:27 +0800203 /* I like... big packets and I cannot lie! */
204 bool big_packets;
205
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800206 /* Host will merge rx buffers for big packets (shake it! shake it!) */
207 bool mergeable_rx_bufs;
208
Jason Wang986a4f42012-12-07 07:04:56 +0000209 /* Has control virtqueue */
210 bool has_cvq;
211
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930212 /* Host can handle any s/g split between our header and packet data */
213 bool any_header_sg;
214
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300215 /* Packet virtio header size */
216 u8 hdr_len;
217
Rusty Russell3161e452009-08-26 12:22:32 -0700218 /* Work struct for refilling if we run low on memory. */
219 struct delayed_work refill;
220
Jason Wang586d17c2012-04-11 20:43:52 +0000221 /* Work struct for config space updates */
222 struct work_struct config_work;
223
Jason Wang986a4f42012-12-07 07:04:56 +0000224 /* Does the affinity hint is set for virtqueues? */
225 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000226
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200227 /* CPU hotplug instances for online & dead */
228 struct hlist_node node;
229 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200230
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300231 struct control_buf *ctrl;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100232
233 /* Ethtool settings */
234 u8 duplex;
235 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800236
237 unsigned long guest_offloads;
Sridhar Samudralaba5e4422018-05-24 09:55:17 -0700238
239 /* failover when STANDBY feature enabled */
240 struct failover *failover;
Rusty Russell296f96f2007-10-22 11:03:37 +1000241};
242
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000243struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300244 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000245 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300246 * hdr is in a separate sg buffer, and data sg buffer shares same page
247 * with this header sg. This padding makes next sg 16 byte aligned
248 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000249 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300250 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000251};
252
Jason Wang986a4f42012-12-07 07:04:56 +0000253/* Converting between virtqueue no. and kernel tx/rx queue no.
254 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
255 */
256static int vq2txq(struct virtqueue *vq)
257{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000258 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000259}
260
261static int txq2vq(int txq)
262{
263 return txq * 2 + 1;
264}
265
266static int vq2rxq(struct virtqueue *vq)
267{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000268 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000269}
270
271static int rxq2vq(int rxq)
272{
273 return rxq * 2;
274}
275
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300276static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000277{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300278 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000279}
280
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000281/*
282 * private is used to chain pages for big packets, put the whole
283 * most recent used list in the beginning for reuse
284 */
Jason Wange9d74172012-12-07 07:04:55 +0000285static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500286{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000287 struct page *end;
288
Jason Wange9d74172012-12-07 07:04:55 +0000289 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000290 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000291 end->private = (unsigned long)rq->pages;
292 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500293}
294
Jason Wange9d74172012-12-07 07:04:55 +0000295static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500296{
Jason Wange9d74172012-12-07 07:04:55 +0000297 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500298
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000299 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000300 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000301 /* clear private here, it is used to chain pages */
302 p->private = 0;
303 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500304 p = alloc_page(gfp_mask);
305 return p;
306}
307
Willem de Bruijne4e84522017-04-24 13:49:26 -0400308static void virtqueue_napi_schedule(struct napi_struct *napi,
309 struct virtqueue *vq)
310{
311 if (napi_schedule_prep(napi)) {
312 virtqueue_disable_cb(vq);
313 __napi_schedule(napi);
314 }
315}
316
317static void virtqueue_napi_complete(struct napi_struct *napi,
318 struct virtqueue *vq, int processed)
319{
320 int opaque;
321
322 opaque = virtqueue_enable_cb_prepare(vq);
Toshiaki Makitafdaa7672017-12-07 13:15:15 +0900323 if (napi_complete_done(napi, processed)) {
324 if (unlikely(virtqueue_poll(vq, opaque)))
325 virtqueue_napi_schedule(napi, vq);
326 } else {
327 virtqueue_disable_cb(vq);
328 }
Willem de Bruijne4e84522017-04-24 13:49:26 -0400329}
330
Jason Wange9d74172012-12-07 07:04:55 +0000331static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000332{
Jason Wange9d74172012-12-07 07:04:55 +0000333 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400334 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000335
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500336 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000337 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000338
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400339 if (napi->weight)
340 virtqueue_napi_schedule(napi, vq);
341 else
342 /* We were probably waiting for more output buffers. */
343 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000344}
345
Jason Wang28b39bc2017-07-19 16:54:46 +0800346#define MRG_CTX_HEADER_SHIFT 22
347static void *mergeable_len_to_ctx(unsigned int truesize,
348 unsigned int headroom)
349{
350 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
351}
352
353static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
354{
355 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
356}
357
358static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
359{
360 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
361}
362
Mike Waychison34646452012-01-04 12:52:32 +0000363/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300364static struct sk_buff *page_to_skb(struct virtnet_info *vi,
365 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700366 struct page *page, unsigned int offset,
367 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000368{
369 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300370 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700371 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000372 char *p;
373
Michael Dalton2613af02013-10-28 15:44:18 -0700374 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000375
376 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100377 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000378 if (unlikely(!skb))
379 return NULL;
380
381 hdr = skb_vnet_hdr(skb);
382
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300383 hdr_len = vi->hdr_len;
384 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700385 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300386 else
Michael Dalton2613af02013-10-28 15:44:18 -0700387 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000388
389 memcpy(hdr, p, hdr_len);
390
391 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700392 offset += hdr_padded_len;
393 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000394
395 copy = len;
396 if (copy > skb_tailroom(skb))
397 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200398 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000399
400 len -= copy;
401 offset += copy;
402
Michael Dalton2613af02013-10-28 15:44:18 -0700403 if (vi->mergeable_rx_bufs) {
404 if (len)
405 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
406 else
407 put_page(page);
408 return skb;
409 }
410
Sasha Levine878d782011-09-28 04:40:54 +0000411 /*
412 * Verify that we can indeed put this data into a skb.
413 * This is here to handle cases when the device erroneously
414 * tries to receive more than is possible. This is usually
415 * the case of a broken device.
416 */
417 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000418 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000419 dev_kfree_skb(skb);
420 return NULL;
421 }
Michael Dalton2613af02013-10-28 15:44:18 -0700422 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000423 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700424 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
425 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
426 frag_size, truesize);
427 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000428 page = (struct page *)page->private;
429 offset = 0;
430 }
431
432 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000433 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000434
435 return skb;
436}
437
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200438static int __virtnet_xdp_xmit_one(struct virtnet_info *vi,
439 struct send_queue *sq,
440 struct xdp_frame *xdpf)
John Fastabend56434a02016-12-15 12:14:13 -0800441{
John Fastabend56434a02016-12-15 12:14:13 -0800442 struct virtio_net_hdr_mrg_rxbuf *hdr;
John Fastabend56434a02016-12-15 12:14:13 -0800443 int err;
444
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200445 /* virtqueue want to use data area in-front of packet */
446 if (unlikely(xdpf->metasize > 0))
447 return -EOPNOTSUPP;
448
449 if (unlikely(xdpf->headroom < vi->hdr_len))
450 return -EOVERFLOW;
451
452 /* Make room for virtqueue hdr (also change xdpf->headroom?) */
453 xdpf->data -= vi->hdr_len;
Jason Wangf6b10202017-02-21 16:46:28 +0800454 /* Zero header and leave csum up to XDP layers */
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200455 hdr = xdpf->data;
Jason Wangf6b10202017-02-21 16:46:28 +0800456 memset(hdr, 0, vi->hdr_len);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200457 xdpf->len += vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800458
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200459 sg_init_one(sq->sg, xdpf->data, xdpf->len);
Jason Wangbb91acc2016-12-23 22:37:32 +0800460
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200461 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdpf, GFP_ATOMIC);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100462 if (unlikely(err))
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200463 return -ENOSPC; /* Caller handle free/refcnt */
John Fastabend56434a02016-12-15 12:14:13 -0800464
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200465 return 0;
John Fastabend56434a02016-12-15 12:14:13 -0800466}
467
Toshiaki Makita2a435652018-07-23 23:36:07 +0900468static struct send_queue *virtnet_xdp_sq(struct virtnet_info *vi)
469{
470 unsigned int qp;
471
472 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
473 return &vi->sq[qp];
474}
475
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200476static int virtnet_xdp_xmit(struct net_device *dev,
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +0200477 int n, struct xdp_frame **frames, u32 flags)
Jason Wang186b3c92017-09-19 17:42:43 +0800478{
479 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100480 struct receive_queue *rq = vi->rq;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200481 struct xdp_frame *xdpf_sent;
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100482 struct bpf_prog *xdp_prog;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200483 struct send_queue *sq;
484 unsigned int len;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200485 int drops = 0;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900486 int kicks = 0;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900487 int ret, err;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200488 int i;
489
Toshiaki Makita2a435652018-07-23 23:36:07 +0900490 sq = virtnet_xdp_sq(vi);
Jason Wang186b3c92017-09-19 17:42:43 +0800491
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900492 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) {
493 ret = -EINVAL;
494 drops = n;
495 goto out;
496 }
497
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100498 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this
499 * indicate XDP resources have been successfully allocated.
500 */
501 xdp_prog = rcu_dereference(rq->xdp_prog);
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900502 if (!xdp_prog) {
503 ret = -ENXIO;
504 drops = n;
505 goto out;
506 }
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100507
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200508 /* Free up any pending old buffers before queueing new ones. */
509 while ((xdpf_sent = virtqueue_get_buf(sq->vq, &len)) != NULL)
510 xdp_return_frame(xdpf_sent);
511
512 for (i = 0; i < n; i++) {
513 struct xdp_frame *xdpf = frames[i];
514
515 err = __virtnet_xdp_xmit_one(vi, sq, xdpf);
516 if (err) {
517 xdp_return_frame_rx_napi(xdpf);
518 drops++;
519 }
520 }
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900521 ret = n - drops;
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200522
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900523 if (flags & XDP_XMIT_FLUSH) {
524 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq))
525 kicks = 1;
526 }
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900527out:
528 u64_stats_update_begin(&sq->stats.syncp);
529 sq->stats.xdp_tx += n;
530 sq->stats.xdp_tx_drops += drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900531 sq->stats.kicks += kicks;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900532 u64_stats_update_end(&sq->stats.syncp);
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200533
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900534 return ret;
Jason Wang186b3c92017-09-19 17:42:43 +0800535}
536
Jason Wangf6b10202017-02-21 16:46:28 +0800537static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
538{
539 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
540}
541
Jason Wang4941d472017-07-19 16:54:48 +0800542/* We copy the packet for XDP in the following cases:
543 *
544 * 1) Packet is scattered across multiple rx buffers.
545 * 2) Headroom space is insufficient.
546 *
547 * This is inefficient but it's a temporary condition that
548 * we hit right after XDP is enabled and until queue is refilled
549 * with large buffers with sufficient headroom - so it should affect
550 * at most queue size packets.
551 * Afterwards, the conditions to enable
552 * XDP should preclude the underlying device from sending packets
553 * across multiple buffers (num_buf > 1), and we make sure buffers
554 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800555 */
556static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800557 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800558 struct page *p,
559 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800560 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800561 unsigned int *len)
562{
563 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800564
565 if (!page)
566 return NULL;
567
568 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
569 page_off += *len;
570
Jason Wang56a86f82016-12-23 22:37:26 +0800571 while (--*num_buf) {
Jason Wang3cc81a92018-03-02 17:29:14 +0800572 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
John Fastabend72979a62016-12-15 12:14:36 -0800573 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800574 void *buf;
575 int off;
576
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200577 buf = virtqueue_get_buf(rq->vq, &buflen);
578 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800579 goto err_buf;
580
John Fastabend72979a62016-12-15 12:14:36 -0800581 p = virt_to_head_page(buf);
582 off = buf - page_address(p);
583
Jason Wang56a86f82016-12-23 22:37:26 +0800584 /* guard against a misconfigured or uncooperative backend that
585 * is sending packet larger than the MTU.
586 */
Jason Wang3cc81a92018-03-02 17:29:14 +0800587 if ((page_off + buflen + tailroom) > PAGE_SIZE) {
Jason Wang56a86f82016-12-23 22:37:26 +0800588 put_page(p);
589 goto err_buf;
590 }
591
John Fastabend72979a62016-12-15 12:14:36 -0800592 memcpy(page_address(page) + page_off,
593 page_address(p) + off, buflen);
594 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800595 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800596 }
597
John Fastabend2de2f7f2017-02-02 19:16:29 -0800598 /* Headroom does not contribute to packet length */
599 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800600 return page;
601err_buf:
602 __free_pages(page, 0);
603 return NULL;
604}
605
Jason Wang4941d472017-07-19 16:54:48 +0800606static struct sk_buff *receive_small(struct net_device *dev,
607 struct virtnet_info *vi,
608 struct receive_queue *rq,
609 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800610 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900611 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800612 struct virtnet_rq_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800613{
614 struct sk_buff *skb;
615 struct bpf_prog *xdp_prog;
616 unsigned int xdp_headroom = (unsigned long)ctx;
617 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
618 unsigned int headroom = vi->hdr_len + header_offset;
619 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
620 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
621 struct page *page = virt_to_head_page(buf);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100622 unsigned int delta = 0;
Jason Wang4941d472017-07-19 16:54:48 +0800623 struct page *xdp_page;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100624 int err;
625
Jason Wang4941d472017-07-19 16:54:48 +0800626 len -= vi->hdr_len;
Jason Wangd46eeea2018-07-31 17:43:39 +0800627 stats->bytes += len;
Jason Wang4941d472017-07-19 16:54:48 +0800628
629 rcu_read_lock();
630 xdp_prog = rcu_dereference(rq->xdp_prog);
631 if (xdp_prog) {
632 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200633 struct xdp_frame *xdpf;
Jason Wang4941d472017-07-19 16:54:48 +0800634 struct xdp_buff xdp;
635 void *orig_data;
636 u32 act;
637
Jesper Dangaard Brouer95dbe9e2018-02-20 14:32:10 +0100638 if (unlikely(hdr->hdr.gso_type))
Jason Wang4941d472017-07-19 16:54:48 +0800639 goto err_xdp;
640
641 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
642 int offset = buf - page_address(page) + header_offset;
643 unsigned int tlen = len + vi->hdr_len;
644 u16 num_buf = 1;
645
646 xdp_headroom = virtnet_get_headroom(vi);
647 header_offset = VIRTNET_RX_PAD + xdp_headroom;
648 headroom = vi->hdr_len + header_offset;
649 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
650 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
651 xdp_page = xdp_linearize_page(rq, &num_buf, page,
652 offset, header_offset,
653 &tlen);
654 if (!xdp_page)
655 goto err_xdp;
656
657 buf = page_address(xdp_page);
658 put_page(page);
659 page = xdp_page;
660 }
661
662 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
663 xdp.data = xdp.data_hard_start + xdp_headroom;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200664 xdp_set_data_meta_invalid(&xdp);
Jason Wang4941d472017-07-19 16:54:48 +0800665 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100666 xdp.rxq = &rq->xdp_rxq;
Jason Wang4941d472017-07-19 16:54:48 +0800667 orig_data = xdp.data;
668 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Jason Wangd46eeea2018-07-31 17:43:39 +0800669 stats->xdp_packets++;
Jason Wang4941d472017-07-19 16:54:48 +0800670
671 switch (act) {
672 case XDP_PASS:
673 /* Recalculate length in case bpf program changed it */
674 delta = orig_data - xdp.data;
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700675 len = xdp.data_end - xdp.data;
Jason Wang4941d472017-07-19 16:54:48 +0800676 break;
677 case XDP_TX:
Jason Wangd46eeea2018-07-31 17:43:39 +0800678 stats->xdp_tx++;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200679 xdpf = convert_to_xdp_frame(&xdp);
680 if (unlikely(!xdpf))
681 goto err_xdp;
Jason Wangca9e83b2018-07-31 17:43:38 +0800682 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
683 if (unlikely(err < 0)) {
Jason Wang4941d472017-07-19 16:54:48 +0800684 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100685 goto err_xdp;
686 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200687 *xdp_xmit |= VIRTIO_XDP_TX;
Jason Wang186b3c92017-09-19 17:42:43 +0800688 rcu_read_unlock();
689 goto xdp_xmit;
690 case XDP_REDIRECT:
Jason Wangd46eeea2018-07-31 17:43:39 +0800691 stats->xdp_redirects++;
Jason Wang186b3c92017-09-19 17:42:43 +0800692 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100693 if (err)
694 goto err_xdp;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200695 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang4941d472017-07-19 16:54:48 +0800696 rcu_read_unlock();
697 goto xdp_xmit;
698 default:
699 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvab633d442018-08-04 21:42:05 -0500700 /* fall through */
Jason Wang4941d472017-07-19 16:54:48 +0800701 case XDP_ABORTED:
702 trace_xdp_exception(vi->dev, xdp_prog, act);
703 case XDP_DROP:
704 goto err_xdp;
705 }
706 }
707 rcu_read_unlock();
708
709 skb = build_skb(buf, buflen);
710 if (!skb) {
711 put_page(page);
712 goto err;
713 }
714 skb_reserve(skb, headroom - delta);
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700715 skb_put(skb, len);
Jason Wang4941d472017-07-19 16:54:48 +0800716 if (!delta) {
717 buf += header_offset;
718 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
719 } /* keep zeroed vnet hdr since packet was changed by bpf */
720
721err:
722 return skb;
723
724err_xdp:
725 rcu_read_unlock();
Jason Wangd46eeea2018-07-31 17:43:39 +0800726 stats->xdp_drops++;
727 stats->drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800728 put_page(page);
729xdp_xmit:
730 return NULL;
731}
732
733static struct sk_buff *receive_big(struct net_device *dev,
734 struct virtnet_info *vi,
735 struct receive_queue *rq,
736 void *buf,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900737 unsigned int len,
Jason Wangd46eeea2018-07-31 17:43:39 +0800738 struct virtnet_rq_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800739{
740 struct page *page = buf;
741 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len, PAGE_SIZE);
742
Jason Wangd46eeea2018-07-31 17:43:39 +0800743 stats->bytes += len - vi->hdr_len;
Jason Wang4941d472017-07-19 16:54:48 +0800744 if (unlikely(!skb))
745 goto err;
746
747 return skb;
748
749err:
Jason Wangd46eeea2018-07-31 17:43:39 +0800750 stats->drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800751 give_pages(rq, page);
752 return NULL;
753}
754
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200755static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200756 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200757 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200758 void *buf,
759 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800760 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900761 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800762 struct virtnet_rq_stats *stats)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000763{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300764 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
765 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200766 struct page *page = virt_to_head_page(buf);
767 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800768 struct sk_buff *head_skb, *curr_skb;
769 struct bpf_prog *xdp_prog;
770 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800771 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Jason Wang3cc81a92018-03-02 17:29:14 +0800772 int err;
Michael Daltonab7db912014-01-16 22:23:27 -0800773
John Fastabend56434a02016-12-15 12:14:13 -0800774 head_skb = NULL;
Jason Wangd46eeea2018-07-31 17:43:39 +0800775 stats->bytes += len - vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800776
John Fastabendf600b692016-12-15 12:13:24 -0800777 rcu_read_lock();
778 xdp_prog = rcu_dereference(rq->xdp_prog);
779 if (xdp_prog) {
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200780 struct xdp_frame *xdpf;
John Fastabend72979a62016-12-15 12:14:36 -0800781 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800782 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800783 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800784 u32 act;
785
Jason Wang3d62b2a2018-05-22 11:44:31 +0800786 /* Transient failure which in theory could occur if
787 * in-flight packets from before XDP was enabled reach
788 * the receive path after XDP is loaded.
789 */
790 if (unlikely(hdr->hdr.gso_type))
791 goto err_xdp;
792
Jason Wang3cc81a92018-03-02 17:29:14 +0800793 /* This happens when rx buffer size is underestimated
794 * or headroom is not enough because of the buffer
795 * was refilled before XDP is set. This should only
796 * happen for the first several packets, so we don't
797 * care much about its performance.
798 */
Jason Wang4941d472017-07-19 16:54:48 +0800799 if (unlikely(num_buf > 1 ||
800 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800801 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800802 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800803 page, offset,
804 VIRTIO_XDP_HEADROOM,
805 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800806 if (!xdp_page)
807 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800808 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800809 } else {
810 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800811 }
812
John Fastabend2de2f7f2017-02-02 19:16:29 -0800813 /* Allow consuming headroom but reserve enough space to push
814 * the descriptor on if we get an XDP_TX return code.
815 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800816 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800817 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800818 xdp.data = data + vi->hdr_len;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200819 xdp_set_data_meta_invalid(&xdp);
John Fastabend0354e4d2017-02-02 19:15:01 -0800820 xdp.data_end = xdp.data + (len - vi->hdr_len);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100821 xdp.rxq = &rq->xdp_rxq;
822
John Fastabend0354e4d2017-02-02 19:15:01 -0800823 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Jason Wangd46eeea2018-07-31 17:43:39 +0800824 stats->xdp_packets++;
John Fastabend0354e4d2017-02-02 19:15:01 -0800825
John Fastabend56434a02016-12-15 12:14:13 -0800826 switch (act) {
827 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800828 /* recalculate offset to account for any header
829 * adjustments. Note other cases do not build an
830 * skb and avoid using offset
831 */
832 offset = xdp.data -
833 page_address(xdp_page) - vi->hdr_len;
834
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700835 /* recalculate len if xdp.data or xdp.data_end were
836 * adjusted
837 */
Nikita V. Shirokovaaa64522018-04-22 21:16:48 -0700838 len = xdp.data_end - xdp.data + vi->hdr_len;
Jason Wang1830f892016-12-23 22:37:27 +0800839 /* We can only create skb based on xdp_page. */
840 if (unlikely(xdp_page != page)) {
841 rcu_read_unlock();
842 put_page(page);
843 head_skb = page_to_skb(vi, rq, xdp_page,
John Fastabend2de2f7f2017-02-02 19:16:29 -0800844 offset, len, PAGE_SIZE);
Jason Wang1830f892016-12-23 22:37:27 +0800845 return head_skb;
846 }
John Fastabend56434a02016-12-15 12:14:13 -0800847 break;
848 case XDP_TX:
Jason Wangd46eeea2018-07-31 17:43:39 +0800849 stats->xdp_tx++;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200850 xdpf = convert_to_xdp_frame(&xdp);
851 if (unlikely(!xdpf))
852 goto err_xdp;
Jason Wangca9e83b2018-07-31 17:43:38 +0800853 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
854 if (unlikely(err < 0)) {
John Fastabend0354e4d2017-02-02 19:15:01 -0800855 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100856 if (unlikely(xdp_page != page))
857 put_page(xdp_page);
858 goto err_xdp;
859 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200860 *xdp_xmit |= VIRTIO_XDP_TX;
John Fastabend72979a62016-12-15 12:14:36 -0800861 if (unlikely(xdp_page != page))
Jason Wang5d458a12018-05-22 11:44:29 +0800862 put_page(page);
John Fastabend56434a02016-12-15 12:14:13 -0800863 rcu_read_unlock();
864 goto xdp_xmit;
Jason Wang3cc81a92018-03-02 17:29:14 +0800865 case XDP_REDIRECT:
Jason Wangd46eeea2018-07-31 17:43:39 +0800866 stats->xdp_redirects++;
Jason Wang3cc81a92018-03-02 17:29:14 +0800867 err = xdp_do_redirect(dev, &xdp, xdp_prog);
868 if (err) {
869 if (unlikely(xdp_page != page))
870 put_page(xdp_page);
871 goto err_xdp;
872 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200873 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang3cc81a92018-03-02 17:29:14 +0800874 if (unlikely(xdp_page != page))
Jason Wang68904182018-05-22 11:44:28 +0800875 put_page(page);
Jason Wang3cc81a92018-03-02 17:29:14 +0800876 rcu_read_unlock();
877 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800878 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800879 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvab633d442018-08-04 21:42:05 -0500880 /* fall through */
John Fastabend0354e4d2017-02-02 19:15:01 -0800881 case XDP_ABORTED:
882 trace_xdp_exception(vi->dev, xdp_prog, act);
Gustavo A. R. Silvab633d442018-08-04 21:42:05 -0500883 /* fall through */
John Fastabend0354e4d2017-02-02 19:15:01 -0800884 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800885 if (unlikely(xdp_page != page))
886 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800887 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800888 }
John Fastabendf600b692016-12-15 12:13:24 -0800889 }
890 rcu_read_unlock();
891
Jason Wang28b39bc2017-07-19 16:54:46 +0800892 truesize = mergeable_ctx_to_truesize(ctx);
893 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300894 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200895 dev->name, len, (unsigned long)ctx);
896 dev->stats.rx_length_errors++;
897 goto err_skb;
898 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800899
John Fastabendf600b692016-12-15 12:13:24 -0800900 head_skb = page_to_skb(vi, rq, page, offset, len, truesize);
901 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000902
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200903 if (unlikely(!curr_skb))
904 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000905 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200906 int num_skb_frags;
907
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200908 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Yunjian Wang03e9f8a2017-12-04 14:02:19 +0800909 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200910 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200911 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300912 virtio16_to_cpu(vi->vdev,
913 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200914 dev->stats.rx_length_errors++;
915 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000916 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200917
Jason Wangd46eeea2018-07-31 17:43:39 +0800918 stats->bytes += len;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200919 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800920
921 truesize = mergeable_ctx_to_truesize(ctx);
922 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300923 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200924 dev->name, len, (unsigned long)ctx);
925 dev->stats.rx_length_errors++;
926 goto err_skb;
927 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200928
929 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700930 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
931 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200932
933 if (unlikely(!nskb))
934 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700935 if (curr_skb == head_skb)
936 skb_shinfo(curr_skb)->frag_list = nskb;
937 else
938 curr_skb->next = nskb;
939 curr_skb = nskb;
940 head_skb->truesize += nskb->truesize;
941 num_skb_frags = 0;
942 }
943 if (curr_skb != head_skb) {
944 head_skb->data_len += len;
945 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800946 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700947 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200948 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800949 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
950 put_page(page);
951 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800952 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800953 } else {
954 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800955 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800956 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200957 }
958
Johannes Berg5377d7582015-08-19 09:48:40 +0200959 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200960 return head_skb;
961
John Fastabendf600b692016-12-15 12:13:24 -0800962err_xdp:
963 rcu_read_unlock();
Jason Wangd46eeea2018-07-31 17:43:39 +0800964 stats->xdp_drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200965err_skb:
966 put_page(page);
Jason Wang850e0882018-05-22 11:44:30 +0800967 while (num_buf-- > 1) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200968 buf = virtqueue_get_buf(rq->vq, &len);
969 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200970 pr_debug("%s: rx error: %d buffers missing\n",
971 dev->name, num_buf);
972 dev->stats.rx_length_errors++;
973 break;
974 }
Jason Wangd46eeea2018-07-31 17:43:39 +0800975 stats->bytes += len;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200976 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200977 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000978 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200979err_buf:
Jason Wangd46eeea2018-07-31 17:43:39 +0800980 stats->drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200981 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800982xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200983 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000984}
985
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900986static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
987 void *buf, unsigned int len, void **ctx,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900988 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800989 struct virtnet_rq_stats *stats)
Rusty Russell296f96f2007-10-22 11:03:37 +1000990{
Jason Wange9d74172012-12-07 07:04:55 +0000991 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000992 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300993 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000994
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300995 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000996 pr_debug("%s: short packet %i\n", dev->name, len);
997 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -0800998 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200999 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08001000 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -08001001 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001002 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08001003 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08001004 }
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001005 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001006 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001007
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001008 if (vi->mergeable_rx_bufs)
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001009 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001010 stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001011 else if (vi->big_packets)
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001012 skb = receive_big(dev, vi, rq, buf, len, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001013 else
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001014 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001015
1016 if (unlikely(!skb))
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001017 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001018
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001019 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001020
Mike Rapoporte858fae2016-06-08 16:09:21 +03001021 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +00001022 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +10001023
Mike Rapoporte858fae2016-06-08 16:09:21 +03001024 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
1025 virtio_is_little_endian(vi->vdev))) {
1026 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
1027 dev->name, hdr->hdr.gso_type,
1028 hdr->hdr.gso_size);
1029 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001030 }
1031
Mike Rapoportd1dc06d2016-06-14 08:29:38 +03001032 skb->protocol = eth_type_trans(skb, dev);
1033 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
1034 ntohs(skb->protocol), skb->len, skb->pkt_type);
1035
Eric Dumazet0fbd0502015-07-31 18:25:17 +02001036 napi_gro_receive(&rq->napi, skb);
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001037 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001038
1039frame_err:
1040 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +10001041 dev_kfree_skb(skb);
1042}
1043
Jason Wang192f68c2017-07-19 16:54:47 +08001044/* Unlike mergeable buffers, all buffers are allocated to the
1045 * same size, except for the headroom. For this reason we do
1046 * not need to use mergeable_len_to_ctx here - it is enough
1047 * to store the headroom as the context ignoring the truesize.
1048 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001049static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
1050 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +10001051{
Jason Wangf6b10202017-02-21 16:46:28 +08001052 struct page_frag *alloc_frag = &rq->alloc_frag;
1053 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001054 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +08001055 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +08001056 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001057 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001058
Jason Wangf6b10202017-02-21 16:46:28 +08001059 len = SKB_DATA_ALIGN(len) +
1060 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1061 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001062 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001063
Jason Wangf6b10202017-02-21 16:46:28 +08001064 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1065 get_page(alloc_frag->page);
1066 alloc_frag->offset += len;
1067 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
1068 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +08001069 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001070 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +08001071 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001072 return err;
1073}
1074
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001075static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
1076 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001077{
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001078 struct page *first, *list = NULL;
1079 char *p;
1080 int i, err, offset;
1081
Rusty Russella5835442014-09-11 10:17:36 +09301082 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
1083
Jason Wange9d74172012-12-07 07:04:55 +00001084 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001085 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +00001086 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001087 if (!first) {
1088 if (list)
Jason Wange9d74172012-12-07 07:04:55 +00001089 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001090 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -07001091 }
Jason Wange9d74172012-12-07 07:04:55 +00001092 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +10001093
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001094 /* chain new page in list head to match sg */
1095 first->private = (unsigned long)list;
1096 list = first;
1097 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001098
Jason Wange9d74172012-12-07 07:04:55 +00001099 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001100 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +00001101 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001102 return -ENOMEM;
1103 }
1104 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +08001105
Jason Wange9d74172012-12-07 07:04:55 +00001106 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001107 /* a separated rq->sg[0] for header - required in case !any_header_sg */
1108 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +08001109
Jason Wange9d74172012-12-07 07:04:55 +00001110 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001111 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +00001112 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +08001113
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001114 /* chain first in list head */
1115 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301116 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
1117 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001118 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +00001119 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +08001120
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001121 return err;
1122}
Herbert Xu97402b92008-04-18 11:24:27 +08001123
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02001124static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
Jason Wang3cc81a92018-03-02 17:29:14 +08001125 struct ewma_pkt_len *avg_pkt_len,
1126 unsigned int room)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001127{
Michael Daltonab7db912014-01-16 22:23:27 -08001128 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001129 unsigned int len;
1130
Jason Wang3cc81a92018-03-02 17:29:14 +08001131 if (room)
1132 return PAGE_SIZE - room;
1133
1134 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03001135 rq->min_buf_len, PAGE_SIZE - hdr_len);
Jason Wang3cc81a92018-03-02 17:29:14 +08001136
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +02001137 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001138}
1139
John Fastabend2de2f7f2017-02-02 19:16:29 -08001140static int add_recvbuf_mergeable(struct virtnet_info *vi,
1141 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -08001142{
Michael Daltonfb518792014-01-16 22:23:26 -08001143 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001144 unsigned int headroom = virtnet_get_headroom(vi);
Jason Wang3cc81a92018-03-02 17:29:14 +08001145 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1146 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
Michael Daltonfb518792014-01-16 22:23:26 -08001147 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001148 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001149 int err;
Michael Daltonfb518792014-01-16 22:23:26 -08001150 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +10001151
Jason Wang3cc81a92018-03-02 17:29:14 +08001152 /* Extra tailroom is needed to satisfy XDP's assumption. This
1153 * means rx frags coalescing won't work, but consider we've
1154 * disabled GSO for XDP, it won't be a big issue.
1155 */
1156 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room);
1157 if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001158 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -08001159
Michael Daltonfb518792014-01-16 22:23:26 -08001160 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001161 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -08001162 get_page(alloc_frag->page);
Jason Wang3cc81a92018-03-02 17:29:14 +08001163 alloc_frag->offset += len + room;
Michael Daltonfb518792014-01-16 22:23:26 -08001164 hole = alloc_frag->size - alloc_frag->offset;
Jason Wang3cc81a92018-03-02 17:29:14 +08001165 if (hole < len + room) {
Michael Daltonab7db912014-01-16 22:23:27 -08001166 /* To avoid internal fragmentation, if there is very likely not
1167 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001168 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001169 */
Michael Daltonfb518792014-01-16 22:23:26 -08001170 len += hole;
1171 alloc_frag->offset += hole;
1172 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001173
Michael Daltonfb518792014-01-16 22:23:26 -08001174 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001175 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001176 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001177 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001178 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001179
1180 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001181}
1182
Rusty Russellb2baed62011-12-29 00:42:38 +00001183/*
1184 * Returns false if we couldn't fill entirely (OOM).
1185 *
1186 * Normally run in the receive path, but can also be run from ndo_open
1187 * before we're receiving packets, or from refill_work which is
1188 * careful to disable receiving (using napi_disable).
1189 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001190static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1191 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001192{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001193 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001194 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001195
Amit Shah0aea51c2009-08-26 14:58:28 +05301196 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001197 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001198 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001199 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001200 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001201 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001202 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001203
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001204 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301205 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001206 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001207 } while (rq->vq->num_free);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001208 if (virtqueue_kick_prepare(rq->vq) && virtqueue_notify(rq->vq)) {
1209 u64_stats_update_begin(&rq->stats.syncp);
Jason Wangd46eeea2018-07-31 17:43:39 +08001210 rq->stats.kicks++;
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001211 u64_stats_update_end(&rq->stats.syncp);
1212 }
1213
Rusty Russell3161e452009-08-26 12:22:32 -07001214 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001215}
1216
Rusty Russell18445c42008-02-04 23:49:57 -05001217static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001218{
1219 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001220 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001221
Willem de Bruijne4e84522017-04-24 13:49:26 -04001222 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001223}
1224
Willem de Bruijne4e84522017-04-24 13:49:26 -04001225static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001226{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001227 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001228
1229 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001230 * won't get another interrupt, so process any outstanding packets now.
1231 * Call local_bh_enable after to trigger softIRQ processing.
1232 */
1233 local_bh_disable();
1234 virtqueue_napi_schedule(napi, vq);
1235 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001236}
1237
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001238static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1239 struct virtqueue *vq,
1240 struct napi_struct *napi)
1241{
1242 if (!napi->weight)
1243 return;
1244
1245 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1246 * enable the feature if this is likely affine with the transmit path.
1247 */
1248 if (!vi->affinity_hint_set) {
1249 napi->weight = 0;
1250 return;
1251 }
1252
1253 return virtnet_napi_enable(vq, napi);
1254}
1255
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001256static void virtnet_napi_tx_disable(struct napi_struct *napi)
1257{
1258 if (napi->weight)
1259 napi_disable(napi);
1260}
1261
Rusty Russell3161e452009-08-26 12:22:32 -07001262static void refill_work(struct work_struct *work)
1263{
Jason Wange9d74172012-12-07 07:04:55 +00001264 struct virtnet_info *vi =
1265 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001266 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001267 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001268
Sasha Levin55257d72013-04-29 12:00:08 +09301269 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001270 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001271
Jason Wang986a4f42012-12-07 07:04:56 +00001272 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001273 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001274 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001275
1276 /* In theory, this can happen: if we don't get any buffers in
1277 * we will *never* try to fill again.
1278 */
1279 if (still_empty)
1280 schedule_delayed_work(&vi->refill, HZ/2);
1281 }
Rusty Russell3161e452009-08-26 12:22:32 -07001282}
1283
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001284static int virtnet_receive(struct receive_queue *rq, int budget,
1285 unsigned int *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001286{
Jason Wange9d74172012-12-07 07:04:55 +00001287 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wangd46eeea2018-07-31 17:43:39 +08001288 struct virtnet_rq_stats stats = {};
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001289 unsigned int len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001290 void *buf;
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001291 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001292
Jason Wang192f68c2017-07-19 16:54:47 +08001293 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001294 void *ctx;
1295
Jason Wangd46eeea2018-07-31 17:43:39 +08001296 while (stats.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001297 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001298 receive_buf(vi, rq, buf, len, ctx, xdp_xmit, &stats);
Jason Wangd46eeea2018-07-31 17:43:39 +08001299 stats.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001300 }
1301 } else {
Jason Wangd46eeea2018-07-31 17:43:39 +08001302 while (stats.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001303 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001304 receive_buf(vi, rq, buf, len, NULL, xdp_xmit, &stats);
Jason Wangd46eeea2018-07-31 17:43:39 +08001305 stats.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001306 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001307 }
1308
Jason Wangbe121f42014-01-16 14:45:24 +08001309 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001310 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001311 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001312 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001313
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001314 u64_stats_update_begin(&rq->stats.syncp);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001315 for (i = 0; i < VIRTNET_RQ_STATS_LEN; i++) {
1316 size_t offset = virtnet_rq_stats_desc[i].offset;
1317 u64 *item;
1318
Jason Wangd46eeea2018-07-31 17:43:39 +08001319 item = (u64 *)((u8 *)&rq->stats + offset);
1320 *item += *(u64 *)((u8 *)&stats + offset);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001321 }
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001322 u64_stats_update_end(&rq->stats.syncp);
Jason Wang61845d22017-02-17 11:33:09 +08001323
Jason Wangd46eeea2018-07-31 17:43:39 +08001324 return stats.packets;
Jason Wang2ffa7592014-07-23 16:33:54 +08001325}
1326
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001327static void free_old_xmit_skbs(struct send_queue *sq)
1328{
1329 struct sk_buff *skb;
1330 unsigned int len;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001331 unsigned int packets = 0;
1332 unsigned int bytes = 0;
1333
1334 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1335 pr_debug("Sent skb %p\n", skb);
1336
1337 bytes += skb->len;
1338 packets++;
1339
Eric Dumazetdadc0732017-08-24 09:02:49 -07001340 dev_consume_skb_any(skb);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001341 }
1342
1343 /* Avoid overhead when no packets have been processed
1344 * happens when called speculatively from start_xmit.
1345 */
1346 if (!packets)
1347 return;
1348
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001349 u64_stats_update_begin(&sq->stats.syncp);
1350 sq->stats.bytes += bytes;
1351 sq->stats.packets += packets;
1352 u64_stats_update_end(&sq->stats.syncp);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001353}
1354
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001355static void virtnet_poll_cleantx(struct receive_queue *rq)
1356{
1357 struct virtnet_info *vi = rq->vq->vdev->priv;
1358 unsigned int index = vq2rxq(rq->vq);
1359 struct send_queue *sq = &vi->sq[index];
1360 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1361
1362 if (!sq->napi.weight)
1363 return;
1364
1365 if (__netif_tx_trylock(txq)) {
1366 free_old_xmit_skbs(sq);
1367 __netif_tx_unlock(txq);
1368 }
1369
1370 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1371 netif_tx_wake_queue(txq);
1372}
1373
Jason Wang2ffa7592014-07-23 16:33:54 +08001374static int virtnet_poll(struct napi_struct *napi, int budget)
1375{
1376 struct receive_queue *rq =
1377 container_of(napi, struct receive_queue, napi);
Jason Wang9267c432018-04-13 14:58:25 +08001378 struct virtnet_info *vi = rq->vq->vdev->priv;
1379 struct send_queue *sq;
Toshiaki Makita2a435652018-07-23 23:36:07 +09001380 unsigned int received;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001381 unsigned int xdp_xmit = 0;
Jason Wang2ffa7592014-07-23 16:33:54 +08001382
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001383 virtnet_poll_cleantx(rq);
1384
Jason Wang186b3c92017-09-19 17:42:43 +08001385 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001386
Rusty Russell8329d982007-11-19 11:20:43 -05001387 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001388 if (received < budget)
1389 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001390
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001391 if (xdp_xmit & VIRTIO_XDP_REDIR)
1392 xdp_do_flush_map();
1393
1394 if (xdp_xmit & VIRTIO_XDP_TX) {
Toshiaki Makita2a435652018-07-23 23:36:07 +09001395 sq = virtnet_xdp_sq(vi);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001396 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1397 u64_stats_update_begin(&sq->stats.syncp);
1398 sq->stats.kicks++;
1399 u64_stats_update_end(&sq->stats.syncp);
1400 }
Jason Wang9267c432018-04-13 14:58:25 +08001401 }
Jason Wang186b3c92017-09-19 17:42:43 +08001402
Rusty Russell296f96f2007-10-22 11:03:37 +10001403 return received;
1404}
1405
Jason Wang986a4f42012-12-07 07:04:56 +00001406static int virtnet_open(struct net_device *dev)
1407{
1408 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001409 int i, err;
Jason Wang986a4f42012-12-07 07:04:56 +00001410
Jason Wange4166622013-05-21 20:03:58 +00001411 for (i = 0; i < vi->max_queue_pairs; i++) {
1412 if (i < vi->curr_queue_pairs)
1413 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001414 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001415 schedule_delayed_work(&vi->refill, 0);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001416
1417 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i);
1418 if (err < 0)
1419 return err;
1420
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +02001421 err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq,
1422 MEM_TYPE_PAGE_SHARED, NULL);
1423 if (err < 0) {
1424 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
1425 return err;
1426 }
1427
Willem de Bruijne4e84522017-04-24 13:49:26 -04001428 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001429 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001430 }
1431
1432 return 0;
1433}
1434
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001435static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1436{
1437 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1438 struct virtnet_info *vi = sq->vq->vdev->priv;
1439 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, vq2txq(sq->vq));
1440
1441 __netif_tx_lock(txq, raw_smp_processor_id());
1442 free_old_xmit_skbs(sq);
1443 __netif_tx_unlock(txq);
1444
1445 virtqueue_napi_complete(napi, sq->vq, 0);
1446
1447 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1448 netif_tx_wake_queue(txq);
1449
1450 return 0;
1451}
1452
Jason Wange9d74172012-12-07 07:04:55 +00001453static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001454{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001455 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001456 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001457 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001458 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001459 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301460 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001461
Johannes Berge1749612008-10-27 15:59:26 -07001462 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301463
1464 can_push = vi->any_header_sg &&
1465 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1466 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1467 /* Even if we can, don't push here yet as this would skew
1468 * csum_start offset below. */
1469 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001470 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301471 else
1472 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001473
Mike Rapoporte858fae2016-06-08 16:09:21 +03001474 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Willem de Bruijnfd3a8862018-06-06 11:23:01 -04001475 virtio_is_little_endian(vi->vdev), false,
1476 0))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001477 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001478
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001479 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001480 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001481
Jason Wang547c8902015-08-27 14:53:06 +08001482 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301483 if (can_push) {
1484 __skb_push(skb, hdr_len);
1485 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001486 if (unlikely(num_sg < 0))
1487 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301488 /* Pull header back to avoid skew in tx bytes calculations. */
1489 __skb_pull(skb, hdr_len);
1490 } else {
1491 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001492 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1493 if (unlikely(num_sg < 0))
1494 return num_sg;
1495 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301496 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301497 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001498}
1499
Stephen Hemminger424efe92009-08-31 19:50:51 +00001500static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001501{
1502 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001503 int qnum = skb_get_queue_mapping(skb);
1504 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301505 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001506 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1507 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001508 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001509
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001510 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +00001511 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001512
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001513 if (use_napi && kick)
1514 virtqueue_enable_cb_delayed(sq->vq);
1515
Jacob Keller074c3582014-06-25 02:37:13 +00001516 /* timestamp packet in software */
1517 skb_tx_timestamp(skb);
1518
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001519 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001520 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001521
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301522 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001523 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301524 dev->stats.tx_fifo_errors++;
1525 if (net_ratelimit())
1526 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001527 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001528 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001529 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001530 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001531 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001532
Rusty Russell48925e32009-09-24 09:59:20 -06001533 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001534 if (!use_napi) {
1535 skb_orphan(skb);
1536 nf_reset(skb);
1537 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001538
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001539 /* If running out of space, stop queue to avoid getting packets that we
1540 * are then unable to transmit.
1541 * An alternative would be to force queuing layer to requeue the skb by
1542 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1543 * returned in a normal path of operation: it means that driver is not
1544 * maintaining the TX queue stop/start state properly, and causes
1545 * the stack to do a non-trivial amount of useless work.
1546 * Since most packets only take 1 or 2 ring slots, stopping the queue
1547 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001548 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001549 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001550 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001551 if (!use_napi &&
1552 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001553 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001554 free_old_xmit_skbs(sq);
1555 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001556 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001557 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001558 }
1559 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001560 }
Rusty Russell48925e32009-09-24 09:59:20 -06001561
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001562 if (kick || netif_xmit_stopped(txq)) {
1563 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1564 u64_stats_update_begin(&sq->stats.syncp);
1565 sq->stats.kicks++;
1566 u64_stats_update_end(&sq->stats.syncp);
1567 }
1568 }
David S. Miller0b725a22014-08-25 15:51:53 -07001569
Rusty Russell48925e32009-09-24 09:59:20 -06001570 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001571}
1572
Amos Kong40cbfc32013-01-21 01:17:21 +00001573/*
1574 * Send command via the control virtqueue and check status. Commands
1575 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001576 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001577 */
1578static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001579 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001580{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301581 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001582 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001583
1584 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301585 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001586
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001587 vi->ctrl->status = ~0;
1588 vi->ctrl->hdr.class = class;
1589 vi->ctrl->hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301590 /* Add header */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001591 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301592 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001593
Rusty Russellf7bc9592013-03-20 15:44:28 +10301594 if (out)
1595 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001596
Rusty Russellf7bc9592013-03-20 15:44:28 +10301597 /* Add return status. */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001598 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001599 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001600
stephen hemmingerd24bae32013-12-09 16:17:40 -08001601 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301602 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001603
Heinz Graalfs67975902013-10-29 09:40:02 +10301604 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001605 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001606
1607 /* Spin for a response, the kick causes an ioport write, trapping
1608 * into the hypervisor, so the request should be handled immediately.
1609 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301610 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1611 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001612 cpu_relax();
1613
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001614 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001615}
1616
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001617static int virtnet_set_mac_address(struct net_device *dev, void *p)
1618{
1619 struct virtnet_info *vi = netdev_priv(dev);
1620 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001621 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001622 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001623 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001624
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07001625 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
1626 return -EOPNOTSUPP;
1627
Shyam Saini801822d2016-12-24 00:44:58 +05301628 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001629 if (!addr)
1630 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001631
1632 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001633 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001634 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001635
Amos Kong7e58d5a2013-01-21 01:17:23 +00001636 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1637 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1638 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001639 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001640 dev_warn(&vdev->dev,
1641 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001642 ret = -EINVAL;
1643 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001644 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001645 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1646 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301647 unsigned int i;
1648
1649 /* Naturally, this has an atomicity problem. */
1650 for (i = 0; i < dev->addr_len; i++)
1651 virtio_cwrite8(vdev,
1652 offsetof(struct virtio_net_config, mac) +
1653 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001654 }
1655
1656 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001657 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001658
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001659out:
1660 kfree(addr);
1661 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001662}
1663
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001664static void virtnet_stats(struct net_device *dev,
1665 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001666{
1667 struct virtnet_info *vi = netdev_priv(dev);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001668 unsigned int start;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001669 int i;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001670
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001671 for (i = 0; i < vi->max_queue_pairs; i++) {
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001672 u64 tpackets, tbytes, rpackets, rbytes, rdrops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001673 struct receive_queue *rq = &vi->rq[i];
1674 struct send_queue *sq = &vi->sq[i];
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001675
1676 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001677 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1678 tpackets = sq->stats.packets;
1679 tbytes = sq->stats.bytes;
1680 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001681
1682 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001683 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
Jason Wangd46eeea2018-07-31 17:43:39 +08001684 rpackets = rq->stats.packets;
1685 rbytes = rq->stats.bytes;
1686 rdrops = rq->stats.drops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001687 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001688
1689 tot->rx_packets += rpackets;
1690 tot->tx_packets += tpackets;
1691 tot->rx_bytes += rbytes;
1692 tot->tx_bytes += tbytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001693 tot->rx_dropped += rdrops;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001694 }
1695
1696 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001697 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001698 tot->rx_length_errors = dev->stats.rx_length_errors;
1699 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001700}
1701
Jason Wang586d17c2012-04-11 20:43:52 +00001702static void virtnet_ack_link_announce(struct virtnet_info *vi)
1703{
1704 rtnl_lock();
1705 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001706 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001707 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1708 rtnl_unlock();
1709}
1710
John Fastabend473153292017-02-02 19:14:32 -08001711static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001712{
1713 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001714 struct net_device *dev = vi->dev;
1715
1716 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1717 return 0;
1718
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001719 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1720 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001721
1722 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001723 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001724 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1725 queue_pairs);
1726 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301727 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001728 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001729 /* virtnet_open() will refill when device is going to up. */
1730 if (dev->flags & IFF_UP)
1731 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301732 }
Jason Wang986a4f42012-12-07 07:04:56 +00001733
1734 return 0;
1735}
1736
John Fastabend473153292017-02-02 19:14:32 -08001737static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1738{
1739 int err;
1740
1741 rtnl_lock();
1742 err = _virtnet_set_queues(vi, queue_pairs);
1743 rtnl_unlock();
1744 return err;
1745}
1746
Rusty Russell296f96f2007-10-22 11:03:37 +10001747static int virtnet_close(struct net_device *dev)
1748{
1749 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001750 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001751
Rusty Russellb2baed62011-12-29 00:42:38 +00001752 /* Make sure refill_work doesn't re-enable napi! */
1753 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001754
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001755 for (i = 0; i < vi->max_queue_pairs; i++) {
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001756 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
Jason Wang986a4f42012-12-07 07:04:56 +00001757 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001758 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001759 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001760
Rusty Russell296f96f2007-10-22 11:03:37 +10001761 return 0;
1762}
1763
Alex Williamson2af76982009-02-04 09:02:40 +00001764static void virtnet_set_rx_mode(struct net_device *dev)
1765{
1766 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001767 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001768 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001769 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001770 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001771 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001772 void *buf;
1773 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001774
stephen hemminger788a8b62013-12-09 16:18:45 -08001775 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001776 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1777 return;
1778
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001779 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0);
1780 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001781
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001782 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001783
1784 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001785 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001786 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001787 vi->ctrl->promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001788
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001789 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001790
1791 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001792 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001793 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001794 vi->ctrl->allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001795
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001796 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001797 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001798 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001799 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1800 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1801 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001802 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001803 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001804
Alex Williamson23e258e2009-05-01 17:27:56 +00001805 sg_init_table(sg, 2);
1806
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001807 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001808 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001809 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001810 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001811 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001812
1813 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001814 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001815
1816 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001817 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001818
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001819 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001820 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001821 netdev_for_each_mc_addr(ha, dev)
1822 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001823
1824 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001825 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001826
1827 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001828 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001829 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001830
1831 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001832}
1833
Patrick McHardy80d5c362013-04-19 02:04:28 +00001834static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1835 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001836{
1837 struct virtnet_info *vi = netdev_priv(dev);
1838 struct scatterlist sg;
1839
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001840 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001841 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001842
1843 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001844 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001845 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001846 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001847}
1848
Patrick McHardy80d5c362013-04-19 02:04:28 +00001849static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1850 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001851{
1852 struct virtnet_info *vi = netdev_priv(dev);
1853 struct scatterlist sg;
1854
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001855 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001856 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001857
1858 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001859 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001860 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001861 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001862}
1863
Wanlong Gao8898c212013-01-24 23:51:30 +00001864static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001865{
1866 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001867
1868 if (vi->affinity_hint_set) {
1869 for (i = 0; i < vi->max_queue_pairs; i++) {
Caleb Raitto19e226e2018-08-09 18:18:28 -07001870 virtqueue_set_affinity(vi->rq[i].vq, NULL);
1871 virtqueue_set_affinity(vi->sq[i].vq, NULL);
Wanlong Gao8898c212013-01-24 23:51:30 +00001872 }
1873
1874 vi->affinity_hint_set = false;
1875 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001876}
1877
1878static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001879{
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001880 cpumask_var_t mask;
1881 int stragglers;
1882 int group_size;
1883 int i, j, cpu;
1884 int num_cpu;
1885 int stride;
Jason Wang986a4f42012-12-07 07:04:56 +00001886
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001887 if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) {
Wanlong Gao8898c212013-01-24 23:51:30 +00001888 virtnet_clean_affinity(vi, -1);
1889 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001890 }
1891
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001892 num_cpu = num_online_cpus();
1893 stride = max_t(int, num_cpu / vi->curr_queue_pairs, 1);
1894 stragglers = num_cpu >= vi->curr_queue_pairs ?
1895 num_cpu % vi->curr_queue_pairs :
1896 0;
1897 cpu = cpumask_next(-1, cpu_online_mask);
Andrei Vagin4d99f662018-08-08 20:07:35 -07001898
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001899 for (i = 0; i < vi->curr_queue_pairs; i++) {
1900 group_size = stride + (i < stragglers ? 1 : 0);
1901
1902 for (j = 0; j < group_size; j++) {
1903 cpumask_set_cpu(cpu, mask);
1904 cpu = cpumask_next_wrap(cpu, cpu_online_mask,
1905 nr_cpu_ids, false);
1906 }
1907 virtqueue_set_affinity(vi->rq[i].vq, mask);
1908 virtqueue_set_affinity(vi->sq[i].vq, mask);
1909 __netif_set_xps_queue(vi->dev, cpumask_bits(mask), i, false);
1910 cpumask_clear(mask);
Jason Wang986a4f42012-12-07 07:04:56 +00001911 }
1912
Wanlong Gao8898c212013-01-24 23:51:30 +00001913 vi->affinity_hint_set = true;
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001914 free_cpumask_var(mask);
Jason Wang986a4f42012-12-07 07:04:56 +00001915}
1916
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001917static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001918{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001919 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1920 node);
1921 virtnet_set_affinity(vi);
1922 return 0;
1923}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001924
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001925static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1926{
1927 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1928 node_dead);
1929 virtnet_set_affinity(vi);
1930 return 0;
1931}
Jason Wang3ab098d2013-10-15 11:18:58 +08001932
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001933static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1934{
1935 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1936 node);
1937
1938 virtnet_clean_affinity(vi, cpu);
1939 return 0;
1940}
1941
1942static enum cpuhp_state virtionet_online;
1943
1944static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1945{
1946 int ret;
1947
1948 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1949 if (ret)
1950 return ret;
1951 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1952 &vi->node_dead);
1953 if (!ret)
1954 return ret;
1955 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1956 return ret;
1957}
1958
1959static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1960{
1961 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1962 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1963 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001964}
1965
Rick Jones8f9f4662011-10-19 08:10:59 +00001966static void virtnet_get_ringparam(struct net_device *dev,
1967 struct ethtool_ringparam *ring)
1968{
1969 struct virtnet_info *vi = netdev_priv(dev);
1970
Jason Wang986a4f42012-12-07 07:04:56 +00001971 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1972 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001973 ring->rx_pending = ring->rx_max_pending;
1974 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001975}
1976
Rick Jones66846042011-11-14 14:17:08 +00001977
1978static void virtnet_get_drvinfo(struct net_device *dev,
1979 struct ethtool_drvinfo *info)
1980{
1981 struct virtnet_info *vi = netdev_priv(dev);
1982 struct virtio_device *vdev = vi->vdev;
1983
1984 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1985 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1986 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1987
1988}
1989
Jason Wangd73bcd22012-12-07 07:04:57 +00001990/* TODO: Eliminate OOO packets during switching */
1991static int virtnet_set_channels(struct net_device *dev,
1992 struct ethtool_channels *channels)
1993{
1994 struct virtnet_info *vi = netdev_priv(dev);
1995 u16 queue_pairs = channels->combined_count;
1996 int err;
1997
1998 /* We don't support separate rx/tx channels.
1999 * We don't allow setting 'other' channels.
2000 */
2001 if (channels->rx_count || channels->tx_count || channels->other_count)
2002 return -EINVAL;
2003
Amos Kongc18e9cd2014-04-18 13:45:41 +08002004 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00002005 return -EINVAL;
2006
John Fastabendf600b692016-12-15 12:13:24 -08002007 /* For now we don't support modifying channels while XDP is loaded
2008 * also when XDP is loaded all RX queues have XDP programs so we only
2009 * need to check a single RX queue.
2010 */
2011 if (vi->rq[0].xdp_prog)
2012 return -EINVAL;
2013
Wanlong Gao47be2472013-01-24 23:51:29 +00002014 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08002015 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00002016 if (!err) {
2017 netif_set_real_num_tx_queues(dev, queue_pairs);
2018 netif_set_real_num_rx_queues(dev, queue_pairs);
2019
Wanlong Gao8898c212013-01-24 23:51:30 +00002020 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00002021 }
Wanlong Gao47be2472013-01-24 23:51:29 +00002022 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00002023
2024 return err;
2025}
2026
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002027static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2028{
2029 struct virtnet_info *vi = netdev_priv(dev);
2030 char *p = (char *)data;
2031 unsigned int i, j;
2032
2033 switch (stringset) {
2034 case ETH_SS_STATS:
2035 for (i = 0; i < vi->curr_queue_pairs; i++) {
2036 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2037 snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s",
2038 i, virtnet_rq_stats_desc[j].desc);
2039 p += ETH_GSTRING_LEN;
2040 }
2041 }
2042
2043 for (i = 0; i < vi->curr_queue_pairs; i++) {
2044 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2045 snprintf(p, ETH_GSTRING_LEN, "tx_queue_%u_%s",
2046 i, virtnet_sq_stats_desc[j].desc);
2047 p += ETH_GSTRING_LEN;
2048 }
2049 }
2050 break;
2051 }
2052}
2053
2054static int virtnet_get_sset_count(struct net_device *dev, int sset)
2055{
2056 struct virtnet_info *vi = netdev_priv(dev);
2057
2058 switch (sset) {
2059 case ETH_SS_STATS:
2060 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN +
2061 VIRTNET_SQ_STATS_LEN);
2062 default:
2063 return -EOPNOTSUPP;
2064 }
2065}
2066
2067static void virtnet_get_ethtool_stats(struct net_device *dev,
2068 struct ethtool_stats *stats, u64 *data)
2069{
2070 struct virtnet_info *vi = netdev_priv(dev);
2071 unsigned int idx = 0, start, i, j;
2072 const u8 *stats_base;
2073 size_t offset;
2074
2075 for (i = 0; i < vi->curr_queue_pairs; i++) {
2076 struct receive_queue *rq = &vi->rq[i];
2077
Jason Wangd46eeea2018-07-31 17:43:39 +08002078 stats_base = (u8 *)&rq->stats;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002079 do {
2080 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
2081 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2082 offset = virtnet_rq_stats_desc[j].offset;
2083 data[idx + j] = *(u64 *)(stats_base + offset);
2084 }
2085 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
2086 idx += VIRTNET_RQ_STATS_LEN;
2087 }
2088
2089 for (i = 0; i < vi->curr_queue_pairs; i++) {
2090 struct send_queue *sq = &vi->sq[i];
2091
2092 stats_base = (u8 *)&sq->stats;
2093 do {
2094 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
2095 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2096 offset = virtnet_sq_stats_desc[j].offset;
2097 data[idx + j] = *(u64 *)(stats_base + offset);
2098 }
2099 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
2100 idx += VIRTNET_SQ_STATS_LEN;
2101 }
2102}
2103
Jason Wangd73bcd22012-12-07 07:04:57 +00002104static void virtnet_get_channels(struct net_device *dev,
2105 struct ethtool_channels *channels)
2106{
2107 struct virtnet_info *vi = netdev_priv(dev);
2108
2109 channels->combined_count = vi->curr_queue_pairs;
2110 channels->max_combined = vi->max_queue_pairs;
2111 channels->max_other = 0;
2112 channels->rx_count = 0;
2113 channels->tx_count = 0;
2114 channels->other_count = 0;
2115}
2116
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002117/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002118static bool
2119virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002120{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002121 struct ethtool_link_ksettings diff1 = *cmd;
2122 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002123
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01002124 /* cmd is always set so we need to clear it, validate the port type
2125 * and also without autonegotiation we can ignore advertising
2126 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002127 diff1.base.speed = 0;
2128 diff2.base.port = PORT_OTHER;
2129 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
2130 diff1.base.duplex = 0;
2131 diff1.base.cmd = 0;
2132 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002133
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002134 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
2135 bitmap_empty(diff1.link_modes.supported,
2136 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2137 bitmap_empty(diff1.link_modes.advertising,
2138 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2139 bitmap_empty(diff1.link_modes.lp_advertising,
2140 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002141}
2142
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002143static int virtnet_set_link_ksettings(struct net_device *dev,
2144 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002145{
2146 struct virtnet_info *vi = netdev_priv(dev);
2147 u32 speed;
2148
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002149 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002150 /* don't allow custom speed and duplex */
2151 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002152 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002153 !virtnet_validate_ethtool_cmd(cmd))
2154 return -EINVAL;
2155 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002156 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002157
2158 return 0;
2159}
2160
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002161static int virtnet_get_link_ksettings(struct net_device *dev,
2162 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002163{
2164 struct virtnet_info *vi = netdev_priv(dev);
2165
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002166 cmd->base.speed = vi->speed;
2167 cmd->base.duplex = vi->duplex;
2168 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002169
2170 return 0;
2171}
2172
Jason Wang0c465be2018-10-09 10:06:26 +08002173static int virtnet_set_coalesce(struct net_device *dev,
2174 struct ethtool_coalesce *ec)
2175{
2176 struct ethtool_coalesce ec_default = {
2177 .cmd = ETHTOOL_SCOALESCE,
2178 .rx_max_coalesced_frames = 1,
2179 };
2180 struct virtnet_info *vi = netdev_priv(dev);
2181 int i, napi_weight;
2182
2183 if (ec->tx_max_coalesced_frames > 1)
2184 return -EINVAL;
2185
2186 ec_default.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
2187 napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0;
2188
2189 /* disallow changes to fields not explicitly tested above */
2190 if (memcmp(ec, &ec_default, sizeof(ec_default)))
2191 return -EINVAL;
2192
2193 if (napi_weight ^ vi->sq[0].napi.weight) {
2194 if (dev->flags & IFF_UP)
2195 return -EBUSY;
2196 for (i = 0; i < vi->max_queue_pairs; i++)
2197 vi->sq[i].napi.weight = napi_weight;
2198 }
2199
2200 return 0;
2201}
2202
2203static int virtnet_get_coalesce(struct net_device *dev,
2204 struct ethtool_coalesce *ec)
2205{
2206 struct ethtool_coalesce ec_default = {
2207 .cmd = ETHTOOL_GCOALESCE,
2208 .rx_max_coalesced_frames = 1,
2209 };
2210 struct virtnet_info *vi = netdev_priv(dev);
2211
2212 memcpy(ec, &ec_default, sizeof(ec_default));
2213
2214 if (vi->sq[0].napi.weight)
2215 ec->tx_max_coalesced_frames = 1;
2216
2217 return 0;
2218}
2219
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002220static void virtnet_init_settings(struct net_device *dev)
2221{
2222 struct virtnet_info *vi = netdev_priv(dev);
2223
2224 vi->speed = SPEED_UNKNOWN;
2225 vi->duplex = DUPLEX_UNKNOWN;
2226}
2227
Jason Baronfaa9b392018-01-05 17:44:54 -05002228static void virtnet_update_settings(struct virtnet_info *vi)
2229{
2230 u32 speed;
2231 u8 duplex;
2232
2233 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
2234 return;
2235
2236 speed = virtio_cread32(vi->vdev, offsetof(struct virtio_net_config,
2237 speed));
2238 if (ethtool_validate_speed(speed))
2239 vi->speed = speed;
2240 duplex = virtio_cread8(vi->vdev, offsetof(struct virtio_net_config,
2241 duplex));
2242 if (ethtool_validate_duplex(duplex))
2243 vi->duplex = duplex;
2244}
2245
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07002246static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00002247 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002248 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00002249 .get_ringparam = virtnet_get_ringparam,
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002250 .get_strings = virtnet_get_strings,
2251 .get_sset_count = virtnet_get_sset_count,
2252 .get_ethtool_stats = virtnet_get_ethtool_stats,
Jason Wangd73bcd22012-12-07 07:04:57 +00002253 .set_channels = virtnet_set_channels,
2254 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00002255 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002256 .get_link_ksettings = virtnet_get_link_ksettings,
2257 .set_link_ksettings = virtnet_set_link_ksettings,
Jason Wang0c465be2018-10-09 10:06:26 +08002258 .set_coalesce = virtnet_set_coalesce,
2259 .get_coalesce = virtnet_get_coalesce,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002260};
2261
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002262static void virtnet_freeze_down(struct virtio_device *vdev)
2263{
2264 struct virtnet_info *vi = vdev->priv;
2265 int i;
2266
2267 /* Make sure no work handler is accessing the device */
2268 flush_work(&vi->config_work);
2269
Ake Koomsin05c998b2018-10-17 19:44:12 +09002270 netif_tx_lock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002271 netif_device_detach(vi->dev);
Ake Koomsin05c998b2018-10-17 19:44:12 +09002272 netif_tx_unlock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002273 cancel_delayed_work_sync(&vi->refill);
2274
2275 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002276 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002277 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04002278 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002279 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002280 }
2281}
2282
2283static int init_vqs(struct virtnet_info *vi);
2284
2285static int virtnet_restore_up(struct virtio_device *vdev)
2286{
2287 struct virtnet_info *vi = vdev->priv;
2288 int err, i;
2289
2290 err = init_vqs(vi);
2291 if (err)
2292 return err;
2293
2294 virtio_device_ready(vdev);
2295
2296 if (netif_running(vi->dev)) {
2297 for (i = 0; i < vi->curr_queue_pairs; i++)
2298 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
2299 schedule_delayed_work(&vi->refill, 0);
2300
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002301 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04002302 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002303 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2304 &vi->sq[i].napi);
2305 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002306 }
2307
Ake Koomsin05c998b2018-10-17 19:44:12 +09002308 netif_tx_lock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002309 netif_device_attach(vi->dev);
Ake Koomsin05c998b2018-10-17 19:44:12 +09002310 netif_tx_unlock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002311 return err;
2312}
2313
Jason Wang3f935222017-07-19 16:54:49 +08002314static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
2315{
2316 struct scatterlist sg;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002317 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads);
Jason Wang3f935222017-07-19 16:54:49 +08002318
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002319 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads));
Jason Wang3f935222017-07-19 16:54:49 +08002320
2321 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
2322 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
2323 dev_warn(&vi->dev->dev, "Fail to set guest offload. \n");
2324 return -EINVAL;
2325 }
2326
2327 return 0;
2328}
2329
2330static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
2331{
2332 u64 offloads = 0;
2333
2334 if (!vi->guest_offloads)
2335 return 0;
2336
2337 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2338 offloads = 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2339
2340 return virtnet_set_guest_offloads(vi, offloads);
2341}
2342
2343static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
2344{
2345 u64 offloads = vi->guest_offloads;
2346
2347 if (!vi->guest_offloads)
2348 return 0;
2349 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))
2350 offloads |= 1ULL << VIRTIO_NET_F_GUEST_CSUM;
2351
2352 return virtnet_set_guest_offloads(vi, offloads);
2353}
2354
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002355static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
2356 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08002357{
2358 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2359 struct virtnet_info *vi = netdev_priv(dev);
2360 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002361 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002362 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002363
Jason Wang3f935222017-07-19 16:54:49 +08002364 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2365 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2366 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2367 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
2368 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO))) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002369 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing LRO, disable LRO first");
John Fastabendf600b692016-12-15 12:13:24 -08002370 return -EOPNOTSUPP;
2371 }
2372
2373 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002374 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002375 return -EINVAL;
2376 }
2377
2378 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002379 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002380 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2381 return -EINVAL;
2382 }
2383
John Fastabend672aafd2016-12-15 12:13:49 -08002384 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2385 if (prog)
2386 xdp_qp = nr_cpu_ids;
2387
2388 /* XDP requires extra queues for XDP_TX */
2389 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002390 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002391 netdev_warn(dev, "request %i queues but max is %i\n",
2392 curr_qp + xdp_qp, vi->max_queue_pairs);
2393 return -ENOMEM;
2394 }
2395
John Fastabend2de2f7f2017-02-02 19:16:29 -08002396 if (prog) {
2397 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
2398 if (IS_ERR(prog))
2399 return PTR_ERR(prog);
2400 }
2401
Jason Wang4941d472017-07-19 16:54:48 +08002402 /* Make sure NAPI is not using any XDP TX queues for RX. */
Jason Wang4e09ff52018-02-28 18:20:04 +08002403 if (netif_running(dev))
2404 for (i = 0; i < vi->max_queue_pairs; i++)
2405 napi_disable(&vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002406
John Fastabend672aafd2016-12-15 12:13:49 -08002407 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002408 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2409 if (err)
2410 goto err;
2411 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002412
John Fastabendf600b692016-12-15 12:13:24 -08002413 for (i = 0; i < vi->max_queue_pairs; i++) {
2414 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2415 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
Jason Wang3f935222017-07-19 16:54:49 +08002416 if (i == 0) {
2417 if (!old_prog)
2418 virtnet_clear_guest_offloads(vi);
2419 if (!prog)
2420 virtnet_restore_guest_offloads(vi);
2421 }
John Fastabendf600b692016-12-15 12:13:24 -08002422 if (old_prog)
2423 bpf_prog_put(old_prog);
Jason Wang4e09ff52018-02-28 18:20:04 +08002424 if (netif_running(dev))
2425 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabendf600b692016-12-15 12:13:24 -08002426 }
2427
2428 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002429
Jason Wang4941d472017-07-19 16:54:48 +08002430err:
2431 for (i = 0; i < vi->max_queue_pairs; i++)
2432 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
John Fastabend2de2f7f2017-02-02 19:16:29 -08002433 if (prog)
2434 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2435 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002436}
2437
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002438static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08002439{
2440 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002441 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08002442 int i;
2443
2444 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002445 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2446 if (xdp_prog)
2447 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08002448 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002449 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08002450}
2451
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002452static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
John Fastabendf600b692016-12-15 12:13:24 -08002453{
2454 switch (xdp->command) {
2455 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002456 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002457 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002458 xdp->prog_id = virtnet_xdp_query(dev);
John Fastabendf600b692016-12-15 12:13:24 -08002459 return 0;
2460 default:
2461 return -EINVAL;
2462 }
2463}
2464
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002465static int virtnet_get_phys_port_name(struct net_device *dev, char *buf,
2466 size_t len)
2467{
2468 struct virtnet_info *vi = netdev_priv(dev);
2469 int ret;
2470
2471 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
2472 return -EOPNOTSUPP;
2473
2474 ret = snprintf(buf, len, "sby");
2475 if (ret >= len)
2476 return -EOPNOTSUPP;
2477
2478 return 0;
2479}
2480
Stephen Hemminger76288b42009-01-06 10:44:22 -08002481static const struct net_device_ops virtnet_netdev = {
2482 .ndo_open = virtnet_open,
2483 .ndo_stop = virtnet_close,
2484 .ndo_start_xmit = start_xmit,
2485 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002486 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002487 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002488 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002489 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2490 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002491 .ndo_bpf = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002492 .ndo_xdp_xmit = virtnet_xdp_xmit,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002493 .ndo_features_check = passthru_features_check,
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002494 .ndo_get_phys_port_name = virtnet_get_phys_port_name,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002495};
2496
Jason Wang586d17c2012-04-11 20:43:52 +00002497static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002498{
Jason Wang586d17c2012-04-11 20:43:52 +00002499 struct virtnet_info *vi =
2500 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002501 u16 v;
2502
Rusty Russell855e0c52013-10-14 18:11:51 +10302503 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2504 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302505 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002506
2507 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002508 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002509 virtnet_ack_link_announce(vi);
2510 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002511
2512 /* Ignore unknown (future) status bits */
2513 v &= VIRTIO_NET_S_LINK_UP;
2514
2515 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302516 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002517
2518 vi->status = v;
2519
2520 if (vi->status & VIRTIO_NET_S_LINK_UP) {
Jason Baronfaa9b392018-01-05 17:44:54 -05002521 virtnet_update_settings(vi);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002522 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002523 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002524 } else {
2525 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002526 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002527 }
2528}
2529
2530static void virtnet_config_changed(struct virtio_device *vdev)
2531{
2532 struct virtnet_info *vi = vdev->priv;
2533
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002534 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002535}
2536
Jason Wang986a4f42012-12-07 07:04:56 +00002537static void virtnet_free_queues(struct virtnet_info *vi)
2538{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002539 int i;
2540
Jason Wangab3971b2015-03-12 13:57:44 +08002541 for (i = 0; i < vi->max_queue_pairs; i++) {
2542 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002543 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002544 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002545 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002546
Eric Dumazet963abe52016-11-15 22:24:12 -08002547 /* We called napi_hash_del() before netif_napi_del(),
2548 * we need to respect an RCU grace period before freeing vi->rq
2549 */
2550 synchronize_net();
2551
Jason Wang986a4f42012-12-07 07:04:56 +00002552 kfree(vi->rq);
2553 kfree(vi->sq);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002554 kfree(vi->ctrl);
Jason Wang986a4f42012-12-07 07:04:56 +00002555}
2556
John Fastabend473153292017-02-02 19:14:32 -08002557static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002558{
John Fastabendf600b692016-12-15 12:13:24 -08002559 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002560 int i;
2561
2562 for (i = 0; i < vi->max_queue_pairs; i++) {
2563 while (vi->rq[i].pages)
2564 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002565
2566 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2567 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2568 if (old_prog)
2569 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002570 }
John Fastabend473153292017-02-02 19:14:32 -08002571}
2572
2573static void free_receive_bufs(struct virtnet_info *vi)
2574{
2575 rtnl_lock();
2576 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002577 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002578}
2579
Michael Daltonfb518792014-01-16 22:23:26 -08002580static void free_receive_page_frags(struct virtnet_info *vi)
2581{
2582 int i;
2583 for (i = 0; i < vi->max_queue_pairs; i++)
2584 if (vi->rq[i].alloc_frag.page)
2585 put_page(vi->rq[i].alloc_frag.page);
2586}
2587
John Fastabendb68df012017-01-25 18:22:48 -08002588static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
John Fastabend56434a02016-12-15 12:14:13 -08002589{
2590 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
2591 return false;
2592 else if (q < vi->curr_queue_pairs)
2593 return true;
2594 else
2595 return false;
2596}
2597
Jason Wang986a4f42012-12-07 07:04:56 +00002598static void free_unused_bufs(struct virtnet_info *vi)
2599{
2600 void *buf;
2601 int i;
2602
2603 for (i = 0; i < vi->max_queue_pairs; i++) {
2604 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002605 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002606 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002607 dev_kfree_skb(buf);
2608 else
2609 put_page(virt_to_head_page(buf));
2610 }
Jason Wang986a4f42012-12-07 07:04:56 +00002611 }
2612
2613 for (i = 0; i < vi->max_queue_pairs; i++) {
2614 struct virtqueue *vq = vi->rq[i].vq;
2615
2616 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002617 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002618 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002619 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002620 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002621 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002622 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002623 }
Jason Wang986a4f42012-12-07 07:04:56 +00002624 }
Jason Wang986a4f42012-12-07 07:04:56 +00002625 }
2626}
2627
Jason Wange9d74172012-12-07 07:04:55 +00002628static void virtnet_del_vqs(struct virtnet_info *vi)
2629{
2630 struct virtio_device *vdev = vi->vdev;
2631
Wanlong Gao8898c212013-01-24 23:51:30 +00002632 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002633
Jason Wange9d74172012-12-07 07:04:55 +00002634 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002635
2636 virtnet_free_queues(vi);
2637}
2638
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002639/* How large should a single buffer be so a queue full of these can fit at
2640 * least one full packet?
2641 * Logic below assumes the mergeable buffer header is used.
2642 */
2643static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2644{
2645 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2646 unsigned int rq_size = virtqueue_get_vring_size(vq);
2647 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2648 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2649 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2650
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002651 return max(max(min_buf_len, hdr_len) - hdr_len,
2652 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002653}
2654
Jason Wang986a4f42012-12-07 07:04:56 +00002655static int virtnet_find_vqs(struct virtnet_info *vi)
2656{
2657 vq_callback_t **callbacks;
2658 struct virtqueue **vqs;
2659 int ret = -ENOMEM;
2660 int i, total_vqs;
2661 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002662 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002663
2664 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2665 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2666 * possible control vq.
2667 */
2668 total_vqs = vi->max_queue_pairs * 2 +
2669 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2670
2671 /* Allocate space for find_vqs parameters */
Kees Cook6396bb22018-06-12 14:03:40 -07002672 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002673 if (!vqs)
2674 goto err_vq;
Kees Cook6da2ec52018-06-12 13:55:00 -07002675 callbacks = kmalloc_array(total_vqs, sizeof(*callbacks), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002676 if (!callbacks)
2677 goto err_callback;
Kees Cook6da2ec52018-06-12 13:55:00 -07002678 names = kmalloc_array(total_vqs, sizeof(*names), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002679 if (!names)
2680 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002681 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Kees Cook6396bb22018-06-12 14:03:40 -07002682 ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL);
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002683 if (!ctx)
2684 goto err_ctx;
2685 } else {
2686 ctx = NULL;
2687 }
Jason Wang986a4f42012-12-07 07:04:56 +00002688
2689 /* Parameters for control virtqueue, if any */
2690 if (vi->has_cvq) {
2691 callbacks[total_vqs - 1] = NULL;
2692 names[total_vqs - 1] = "control";
2693 }
2694
2695 /* Allocate/initialize parameters for send/receive virtqueues */
2696 for (i = 0; i < vi->max_queue_pairs; i++) {
2697 callbacks[rxq2vq(i)] = skb_recv_done;
2698 callbacks[txq2vq(i)] = skb_xmit_done;
2699 sprintf(vi->rq[i].name, "input.%d", i);
2700 sprintf(vi->sq[i].name, "output.%d", i);
2701 names[rxq2vq(i)] = vi->rq[i].name;
2702 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002703 if (ctx)
2704 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002705 }
2706
2707 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002708 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002709 if (ret)
2710 goto err_find;
2711
2712 if (vi->has_cvq) {
2713 vi->cvq = vqs[total_vqs - 1];
2714 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002715 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002716 }
2717
2718 for (i = 0; i < vi->max_queue_pairs; i++) {
2719 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002720 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002721 vi->sq[i].vq = vqs[txq2vq(i)];
2722 }
2723
Tonghao Zhang2fa3c8a2018-05-31 07:16:32 -07002724 /* run here: ret == 0. */
Jason Wang986a4f42012-12-07 07:04:56 +00002725
Jason Wang986a4f42012-12-07 07:04:56 +00002726
2727err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002728 kfree(ctx);
2729err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002730 kfree(names);
2731err_names:
2732 kfree(callbacks);
2733err_callback:
2734 kfree(vqs);
2735err_vq:
2736 return ret;
2737}
2738
2739static int virtnet_alloc_queues(struct virtnet_info *vi)
2740{
2741 int i;
2742
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002743 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
2744 if (!vi->ctrl)
2745 goto err_ctrl;
Kees Cook6396bb22018-06-12 14:03:40 -07002746 vi->sq = kcalloc(vi->max_queue_pairs, sizeof(*vi->sq), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002747 if (!vi->sq)
2748 goto err_sq;
Kees Cook6396bb22018-06-12 14:03:40 -07002749 vi->rq = kcalloc(vi->max_queue_pairs, sizeof(*vi->rq), GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002750 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002751 goto err_rq;
2752
2753 INIT_DELAYED_WORK(&vi->refill, refill_work);
2754 for (i = 0; i < vi->max_queue_pairs; i++) {
2755 vi->rq[i].pages = NULL;
2756 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2757 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002758 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2759 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002760
2761 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002762 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002763 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002764
2765 u64_stats_init(&vi->rq[i].stats.syncp);
2766 u64_stats_init(&vi->sq[i].stats.syncp);
Jason Wang986a4f42012-12-07 07:04:56 +00002767 }
2768
2769 return 0;
2770
2771err_rq:
2772 kfree(vi->sq);
2773err_sq:
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002774 kfree(vi->ctrl);
2775err_ctrl:
Jason Wang986a4f42012-12-07 07:04:56 +00002776 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002777}
2778
Amit Shah3f9c10b2011-12-22 16:58:31 +05302779static int init_vqs(struct virtnet_info *vi)
2780{
Jason Wang986a4f42012-12-07 07:04:56 +00002781 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302782
Jason Wang986a4f42012-12-07 07:04:56 +00002783 /* Allocate send & receive queues */
2784 ret = virtnet_alloc_queues(vi);
2785 if (ret)
2786 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302787
Jason Wang986a4f42012-12-07 07:04:56 +00002788 ret = virtnet_find_vqs(vi);
2789 if (ret)
2790 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302791
Wanlong Gao47be2472013-01-24 23:51:29 +00002792 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002793 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002794 put_online_cpus();
2795
Amit Shah3f9c10b2011-12-22 16:58:31 +05302796 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002797
2798err_free:
2799 virtnet_free_queues(vi);
2800err:
2801 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302802}
2803
Michael Daltonfbf28d72014-01-16 22:23:30 -08002804#ifdef CONFIG_SYSFS
2805static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002806 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002807{
2808 struct virtnet_info *vi = netdev_priv(queue->dev);
2809 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Jason Wang3cc81a92018-03-02 17:29:14 +08002810 unsigned int headroom = virtnet_get_headroom(vi);
2811 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
Johannes Berg5377d7582015-08-19 09:48:40 +02002812 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002813
2814 BUG_ON(queue_index >= vi->max_queue_pairs);
2815 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002816 return sprintf(buf, "%u\n",
Jason Wang3cc81a92018-03-02 17:29:14 +08002817 get_mergeable_buf_len(&vi->rq[queue_index], avg,
2818 SKB_DATA_ALIGN(headroom + tailroom)));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002819}
2820
2821static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2822 __ATTR_RO(mergeable_rx_buffer_size);
2823
2824static struct attribute *virtio_net_mrg_rx_attrs[] = {
2825 &mergeable_rx_buffer_size_attribute.attr,
2826 NULL
2827};
2828
2829static const struct attribute_group virtio_net_mrg_rx_group = {
2830 .name = "virtio_net",
2831 .attrs = virtio_net_mrg_rx_attrs
2832};
2833#endif
2834
Jason Wang892d6eb2014-11-20 17:03:05 +08002835static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2836 unsigned int fbit,
2837 const char *fname, const char *dname)
2838{
2839 if (!virtio_has_feature(vdev, fbit))
2840 return false;
2841
2842 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2843 fname, dname);
2844
2845 return true;
2846}
2847
2848#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2849 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2850
2851static bool virtnet_validate_features(struct virtio_device *vdev)
2852{
2853 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2854 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2855 "VIRTIO_NET_F_CTRL_VQ") ||
2856 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2857 "VIRTIO_NET_F_CTRL_VQ") ||
2858 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2859 "VIRTIO_NET_F_CTRL_VQ") ||
2860 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2861 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2862 "VIRTIO_NET_F_CTRL_VQ"))) {
2863 return false;
2864 }
2865
2866 return true;
2867}
2868
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002869#define MIN_MTU ETH_MIN_MTU
2870#define MAX_MTU ETH_MAX_MTU
2871
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002872static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002873{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002874 if (!vdev->config->get) {
2875 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2876 __func__);
2877 return -EINVAL;
2878 }
2879
Jason Wang892d6eb2014-11-20 17:03:05 +08002880 if (!virtnet_validate_features(vdev))
2881 return -EINVAL;
2882
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002883 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2884 int mtu = virtio_cread16(vdev,
2885 offsetof(struct virtio_net_config,
2886 mtu));
2887 if (mtu < MIN_MTU)
2888 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2889 }
2890
2891 return 0;
2892}
2893
2894static int virtnet_probe(struct virtio_device *vdev)
2895{
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002896 int i, err = -ENOMEM;
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002897 struct net_device *dev;
2898 struct virtnet_info *vi;
2899 u16 max_queue_pairs;
2900 int mtu;
2901
Jason Wang986a4f42012-12-07 07:04:56 +00002902 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302903 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2904 struct virtio_net_config,
2905 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002906
2907 /* We need at least 2 queue's */
2908 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2909 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2910 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2911 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002912
2913 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002914 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002915 if (!dev)
2916 return -ENOMEM;
2917
2918 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002919 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002920 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002921 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002922
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002923 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002924 SET_NETDEV_DEV(dev, &vdev->dev);
2925
2926 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002927 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002928 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002929 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002930 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002931 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002932
2933 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002934 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002935 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2936 }
Rusty Russell5539ae962008-05-02 21:50:46 -05002937 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002938 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
2939 dev->hw_features |= NETIF_F_TSO;
2940 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
2941 dev->hw_features |= NETIF_F_TSO6;
2942 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
2943 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002944
Jason Wang41f2f122014-12-24 11:03:52 +08002945 dev->features |= NETIF_F_GSO_ROBUST;
2946
Michał Mirosław98e778c2011-03-31 01:01:35 +00002947 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07002948 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002949 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10002950 }
Thomas Huth4f491292013-08-27 17:09:02 +02002951 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
2952 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10002953
Jason Wang4fda8302013-04-10 23:32:21 +00002954 dev->vlan_features = dev->features;
2955
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002956 /* MTU range: 68 - 65535 */
2957 dev->min_mtu = MIN_MTU;
2958 dev->max_mtu = MAX_MTU;
2959
Rusty Russell296f96f2007-10-22 11:03:37 +10002960 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10302961 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
2962 virtio_cread_bytes(vdev,
2963 offsetof(struct virtio_net_config, mac),
2964 dev->dev_addr, dev->addr_len);
2965 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00002966 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002967
2968 /* Set up our device-specific information */
2969 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10002970 vi->dev = dev;
2971 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01002972 vdev->priv = vi;
John Stultz827da442013-10-07 15:51:58 -07002973
Jason Wang586d17c2012-04-11 20:43:52 +00002974 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10002975
Herbert Xu97402b92008-04-18 11:24:27 +08002976 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00002977 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2978 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05002979 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
2980 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08002981 vi->big_packets = true;
2982
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08002983 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
2984 vi->mergeable_rx_bufs = true;
2985
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03002986 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
2987 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03002988 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2989 else
2990 vi->hdr_len = sizeof(struct virtio_net_hdr);
2991
Michael S. Tsirkin75993302015-07-15 15:26:19 +03002992 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
2993 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09302994 vi->any_header_sg = true;
2995
Jason Wang986a4f42012-12-07 07:04:56 +00002996 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2997 vi->has_cvq = true;
2998
Aaron Conole14de9d12016-06-03 16:57:12 -04002999 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
3000 mtu = virtio_cread16(vdev,
3001 offsetof(struct virtio_net_config,
3002 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04003003 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003004 /* Should never trigger: MTU was previously validated
3005 * in virtnet_validate.
3006 */
3007 dev_err(&vdev->dev, "device MTU appears to have changed "
3008 "it is now %d < %d", mtu, dev->min_mtu);
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09003009 goto free;
Aaron Conole93a205e2016-10-25 16:12:12 -04003010 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02003011
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003012 dev->mtu = mtu;
3013 dev->max_mtu = mtu;
3014
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02003015 /* TODO: size buffers correctly in this case. */
3016 if (dev->mtu > ETH_DATA_LEN)
3017 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04003018 }
3019
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03003020 if (vi->any_header_sg)
3021 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08003022
Jason Wang44900012016-11-25 12:37:26 +08003023 /* Enable multiqueue by default */
3024 if (num_online_cpus() >= max_queue_pairs)
3025 vi->curr_queue_pairs = max_queue_pairs;
3026 else
3027 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00003028 vi->max_queue_pairs = max_queue_pairs;
3029
3030 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05303031 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003032 if (err)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09003033 goto free;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003034
Michael Daltonfbf28d72014-01-16 22:23:30 -08003035#ifdef CONFIG_SYSFS
3036 if (vi->mergeable_rx_bufs)
3037 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
3038#endif
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08003039 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
3040 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00003041
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01003042 virtnet_init_settings(dev);
3043
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003044 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
3045 vi->failover = net_failover_create(vi->dev);
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00003046 if (IS_ERR(vi->failover)) {
3047 err = PTR_ERR(vi->failover);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003048 goto free_vqs;
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00003049 }
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003050 }
3051
Rusty Russell296f96f2007-10-22 11:03:37 +10003052 err = register_netdev(dev);
3053 if (err) {
3054 pr_debug("virtio_net: registering device failed\n");
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003055 goto free_failover;
Rusty Russell296f96f2007-10-22 11:03:37 +10003056 }
Rusty Russellb3369c12008-02-04 23:50:02 -05003057
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10303058 virtio_device_ready(vdev);
3059
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003060 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003061 if (err) {
3062 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08003063 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003064 }
3065
Jason Wanga2208712016-12-13 14:23:05 +08003066 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08003067
Jason Wang167c25e2010-11-10 14:45:41 +00003068 /* Assume link up if device can't report link status,
3069 otherwise get link status from config. */
Jay Vosburghbda7fab2018-03-22 14:42:41 +00003070 netif_carrier_off(dev);
Jason Wang167c25e2010-11-10 14:45:41 +00003071 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
Tejun Heo3b07e9c2012-08-20 14:51:24 -07003072 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00003073 } else {
3074 vi->status = VIRTIO_NET_S_LINK_UP;
Jason Baronfaa9b392018-01-05 17:44:54 -05003075 virtnet_update_settings(vi);
Jason Wang167c25e2010-11-10 14:45:41 +00003076 netif_carrier_on(dev);
3077 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003078
Jason Wang3f935222017-07-19 16:54:49 +08003079 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
3080 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
3081 set_bit(guest_offloads[i], &vi->guest_offloads);
3082
Jason Wang986a4f42012-12-07 07:04:56 +00003083 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
3084 dev->name, max_queue_pairs);
3085
Rusty Russell296f96f2007-10-22 11:03:37 +10003086 return 0;
3087
wangyunjianf00e35e2016-05-31 11:52:43 +08003088free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10303089 vi->vdev->config->reset(vdev);
3090
Rusty Russellb3369c12008-02-04 23:50:02 -05003091 unregister_netdev(dev);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003092free_failover:
3093 net_failover_destroy(vi->failover);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003094free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00003095 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08003096 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00003097 virtnet_del_vqs(vi);
Rusty Russell296f96f2007-10-22 11:03:37 +10003098free:
3099 free_netdev(dev);
3100 return err;
3101}
3102
Amit Shah04486ed2011-12-22 16:58:32 +05303103static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10003104{
Amit Shah04486ed2011-12-22 16:58:32 +05303105 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00003106
3107 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00003108 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003109
Jason Wang986a4f42012-12-07 07:04:56 +00003110 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003111
Michael Daltonfb518792014-01-16 22:23:26 -08003112 free_receive_page_frags(vi);
3113
Jason Wang986a4f42012-12-07 07:04:56 +00003114 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05303115}
3116
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003117static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05303118{
3119 struct virtnet_info *vi = vdev->priv;
3120
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003121 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003122
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10303123 /* Make sure no work handler is accessing the device. */
3124 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00003125
Amit Shah04486ed2011-12-22 16:58:32 +05303126 unregister_netdev(vi->dev);
3127
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003128 net_failover_destroy(vi->failover);
3129
Amit Shah04486ed2011-12-22 16:58:32 +05303130 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003131
Rusty Russell74b25532007-11-19 11:20:42 -05003132 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003133}
3134
Arnd Bergmann67a75192017-07-25 17:35:50 +02003135static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303136{
3137 struct virtnet_info *vi = vdev->priv;
3138
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003139 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003140 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303141 remove_vq_common(vi);
3142
3143 return 0;
3144}
3145
Arnd Bergmann67a75192017-07-25 17:35:50 +02003146static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303147{
3148 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003149 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05303150
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003151 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303152 if (err)
3153 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00003154 virtnet_set_queues(vi, vi->curr_queue_pairs);
3155
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003156 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08003157 if (err)
3158 return err;
3159
Amit Shah0741bcb2011-12-22 16:58:33 +05303160 return 0;
3161}
Amit Shah0741bcb2011-12-22 16:58:33 +05303162
Rusty Russell296f96f2007-10-22 11:03:37 +10003163static struct virtio_device_id id_table[] = {
3164 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
3165 { 0 },
3166};
3167
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003168#define VIRTNET_FEATURES \
3169 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
3170 VIRTIO_NET_F_MAC, \
3171 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
3172 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
3173 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
3174 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
3175 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
3176 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
3177 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Baronfaa9b392018-01-05 17:44:54 -05003178 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
Sridhar Samudrala98050692018-05-24 09:55:16 -07003179 VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003180
Rusty Russellc45a6812008-05-02 21:50:50 -05003181static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003182 VIRTNET_FEATURES,
3183};
3184
3185static unsigned int features_legacy[] = {
3186 VIRTNET_FEATURES,
3187 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303188 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05003189};
3190
Uwe Kleine-König22402522009-11-05 01:32:44 -08003191static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05003192 .feature_table = features,
3193 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003194 .feature_table_legacy = features_legacy,
3195 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10003196 .driver.name = KBUILD_MODNAME,
3197 .driver.owner = THIS_MODULE,
3198 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003199 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10003200 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003201 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003202 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09303203#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05303204 .freeze = virtnet_freeze,
3205 .restore = virtnet_restore,
3206#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10003207};
3208
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003209static __init int virtio_net_driver_init(void)
3210{
3211 int ret;
3212
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003213 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003214 virtnet_cpu_online,
3215 virtnet_cpu_down_prep);
3216 if (ret < 0)
3217 goto out;
3218 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003219 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003220 NULL, virtnet_cpu_dead);
3221 if (ret)
3222 goto err_dead;
3223
3224 ret = register_virtio_driver(&virtio_net_driver);
3225 if (ret)
3226 goto err_virtio;
3227 return 0;
3228err_virtio:
3229 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3230err_dead:
3231 cpuhp_remove_multi_state(virtionet_online);
3232out:
3233 return ret;
3234}
3235module_init(virtio_net_driver_init);
3236
3237static __exit void virtio_net_driver_exit(void)
3238{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02003239 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003240 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3241 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003242}
3243module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10003244
3245MODULE_DEVICE_TABLE(virtio, id_table);
3246MODULE_DESCRIPTION("Virtio network driver");
3247MODULE_LICENSE("GPL");