blob: cea52e47dc65f6bd3dfe54540a097fc4b270c70b [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,
Jason Wange59ff2c2018-11-22 14:36:30 +080073 VIRTIO_NET_F_GUEST_UFO,
74 VIRTIO_NET_F_GUEST_CSUM
Colin Ian King7acd4322017-08-12 22:45:53 +010075};
Jason Wang3f935222017-07-19 16:54:49 +080076
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090077struct virtnet_stat_desc {
78 char desc[ETH_GSTRING_LEN];
79 size_t offset;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000080};
81
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090082struct virtnet_sq_stats {
83 struct u64_stats_sync syncp;
84 u64 packets;
85 u64 bytes;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090086 u64 xdp_tx;
87 u64 xdp_tx_drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +090088 u64 kicks;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090089};
90
Jason Wangd46eeea2018-07-31 17:43:39 +080091struct virtnet_rq_stats {
92 struct u64_stats_sync syncp;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +090093 u64 packets;
94 u64 bytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +090095 u64 drops;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +090096 u64 xdp_packets;
97 u64 xdp_tx;
98 u64 xdp_redirects;
99 u64 xdp_drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900100 u64 kicks;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900101};
102
103#define VIRTNET_SQ_STAT(m) offsetof(struct virtnet_sq_stats, m)
Jason Wangd46eeea2018-07-31 17:43:39 +0800104#define VIRTNET_RQ_STAT(m) offsetof(struct virtnet_rq_stats, m)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900105
106static const struct virtnet_stat_desc virtnet_sq_stats_desc[] = {
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900107 { "packets", VIRTNET_SQ_STAT(packets) },
108 { "bytes", VIRTNET_SQ_STAT(bytes) },
109 { "xdp_tx", VIRTNET_SQ_STAT(xdp_tx) },
110 { "xdp_tx_drops", VIRTNET_SQ_STAT(xdp_tx_drops) },
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900111 { "kicks", VIRTNET_SQ_STAT(kicks) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900112};
113
114static const struct virtnet_stat_desc virtnet_rq_stats_desc[] = {
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900115 { "packets", VIRTNET_RQ_STAT(packets) },
116 { "bytes", VIRTNET_RQ_STAT(bytes) },
117 { "drops", VIRTNET_RQ_STAT(drops) },
118 { "xdp_packets", VIRTNET_RQ_STAT(xdp_packets) },
119 { "xdp_tx", VIRTNET_RQ_STAT(xdp_tx) },
120 { "xdp_redirects", VIRTNET_RQ_STAT(xdp_redirects) },
121 { "xdp_drops", VIRTNET_RQ_STAT(xdp_drops) },
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900122 { "kicks", VIRTNET_RQ_STAT(kicks) },
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900123};
124
125#define VIRTNET_SQ_STATS_LEN ARRAY_SIZE(virtnet_sq_stats_desc)
126#define VIRTNET_RQ_STATS_LEN ARRAY_SIZE(virtnet_rq_stats_desc)
127
Jason Wange9d74172012-12-07 07:04:55 +0000128/* Internal representation of a send virtqueue */
129struct send_queue {
130 /* Virtqueue associated with this send _queue */
131 struct virtqueue *vq;
132
133 /* TX: fragments + linear part + virtio header */
134 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000135
136 /* Name of the send queue: output.$index */
137 char name[40];
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400138
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900139 struct virtnet_sq_stats stats;
140
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400141 struct napi_struct napi;
Jason Wange9d74172012-12-07 07:04:55 +0000142};
143
144/* Internal representation of a receive virtqueue */
145struct receive_queue {
146 /* Virtqueue associated with this receive_queue */
147 struct virtqueue *vq;
148
Rusty Russell296f96f2007-10-22 11:03:37 +1000149 struct napi_struct napi;
150
John Fastabendf600b692016-12-15 12:13:24 -0800151 struct bpf_prog __rcu *xdp_prog;
152
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +0900153 struct virtnet_rq_stats stats;
154
Jason Wange9d74172012-12-07 07:04:55 +0000155 /* Chain pages by the private ptr. */
156 struct page *pages;
157
Michael Daltonab7db912014-01-16 22:23:27 -0800158 /* Average packet length for mergeable receive buffers. */
Johannes Berg5377d7582015-08-19 09:48:40 +0200159 struct ewma_pkt_len mrg_avg_pkt_len;
Michael Daltonab7db912014-01-16 22:23:27 -0800160
Michael Daltonfb518792014-01-16 22:23:26 -0800161 /* Page frag for packet buffer allocation. */
162 struct page_frag alloc_frag;
163
Jason Wange9d74172012-12-07 07:04:55 +0000164 /* RX: fragments + linear part + virtio header */
165 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +0000166
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +0200167 /* Min single buffer size for mergeable buffers case. */
168 unsigned int min_buf_len;
169
Jason Wang986a4f42012-12-07 07:04:56 +0000170 /* Name of this receive queue: input.$index */
171 char name[40];
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100172
173 struct xdp_rxq_info xdp_rxq;
Jason Wange9d74172012-12-07 07:04:55 +0000174};
175
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300176/* Control VQ buffers: protected by the rtnl lock */
177struct control_buf {
178 struct virtio_net_ctrl_hdr hdr;
179 virtio_net_ctrl_ack status;
180 struct virtio_net_ctrl_mq mq;
181 u8 promisc;
182 u8 allmulti;
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +0300183 __virtio16 vid;
Michael S. Tsirkinf4ee7032018-04-19 08:30:50 +0300184 __virtio64 offloads;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300185};
186
Jason Wange9d74172012-12-07 07:04:55 +0000187struct virtnet_info {
188 struct virtio_device *vdev;
189 struct virtqueue *cvq;
190 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +0000191 struct send_queue *sq;
192 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +0000193 unsigned int status;
194
Jason Wang986a4f42012-12-07 07:04:56 +0000195 /* Max # of queue pairs supported by the device */
196 u16 max_queue_pairs;
197
198 /* # of queue pairs currently used by the driver */
199 u16 curr_queue_pairs;
200
John Fastabend672aafd2016-12-15 12:13:49 -0800201 /* # of XDP queue pairs currently used by the driver */
202 u16 xdp_queue_pairs;
203
Herbert Xu97402b92008-04-18 11:24:27 +0800204 /* I like... big packets and I cannot lie! */
205 bool big_packets;
206
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800207 /* Host will merge rx buffers for big packets (shake it! shake it!) */
208 bool mergeable_rx_bufs;
209
Jason Wang986a4f42012-12-07 07:04:56 +0000210 /* Has control virtqueue */
211 bool has_cvq;
212
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930213 /* Host can handle any s/g split between our header and packet data */
214 bool any_header_sg;
215
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300216 /* Packet virtio header size */
217 u8 hdr_len;
218
Rusty Russell3161e452009-08-26 12:22:32 -0700219 /* Work struct for refilling if we run low on memory. */
220 struct delayed_work refill;
221
Jason Wang586d17c2012-04-11 20:43:52 +0000222 /* Work struct for config space updates */
223 struct work_struct config_work;
224
Jason Wang986a4f42012-12-07 07:04:56 +0000225 /* Does the affinity hint is set for virtqueues? */
226 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000227
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +0200228 /* CPU hotplug instances for online & dead */
229 struct hlist_node node;
230 struct hlist_node node_dead;
Michael S. Tsirkin2ac46032015-11-15 15:11:00 +0200231
Michael S. Tsirkin12e57162018-04-19 08:30:48 +0300232 struct control_buf *ctrl;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +0100233
234 /* Ethtool settings */
235 u8 duplex;
236 u32 speed;
Jason Wang3f935222017-07-19 16:54:49 +0800237
238 unsigned long guest_offloads;
Willem de Bruijna02e8962018-12-20 17:14:54 -0500239 unsigned long guest_offloads_capable;
Sridhar Samudralaba5e4422018-05-24 09:55:17 -0700240
241 /* failover when STANDBY feature enabled */
242 struct failover *failover;
Rusty Russell296f96f2007-10-22 11:03:37 +1000243};
244
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000245struct padded_vnet_hdr {
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300246 struct virtio_net_hdr_mrg_rxbuf hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000247 /*
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300248 * hdr is in a separate sg buffer, and data sg buffer shares same page
249 * with this header sg. This padding makes next sg 16 byte aligned
250 * after the header.
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000251 */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300252 char padding[4];
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000253};
254
Jason Wang986a4f42012-12-07 07:04:56 +0000255/* Converting between virtqueue no. and kernel tx/rx queue no.
256 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
257 */
258static int vq2txq(struct virtqueue *vq)
259{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000260 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000261}
262
263static int txq2vq(int txq)
264{
265 return txq * 2 + 1;
266}
267
268static int vq2rxq(struct virtqueue *vq)
269{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000270 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000271}
272
273static int rxq2vq(int rxq)
274{
275 return rxq * 2;
276}
277
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300278static inline struct virtio_net_hdr_mrg_rxbuf *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000279{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300280 return (struct virtio_net_hdr_mrg_rxbuf *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000281}
282
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000283/*
284 * private is used to chain pages for big packets, put the whole
285 * most recent used list in the beginning for reuse
286 */
Jason Wange9d74172012-12-07 07:04:55 +0000287static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500288{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000289 struct page *end;
290
Jason Wange9d74172012-12-07 07:04:55 +0000291 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000292 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000293 end->private = (unsigned long)rq->pages;
294 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500295}
296
Jason Wange9d74172012-12-07 07:04:55 +0000297static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500298{
Jason Wange9d74172012-12-07 07:04:55 +0000299 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500300
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000301 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000302 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000303 /* clear private here, it is used to chain pages */
304 p->private = 0;
305 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500306 p = alloc_page(gfp_mask);
307 return p;
308}
309
Willem de Bruijne4e84522017-04-24 13:49:26 -0400310static void virtqueue_napi_schedule(struct napi_struct *napi,
311 struct virtqueue *vq)
312{
313 if (napi_schedule_prep(napi)) {
314 virtqueue_disable_cb(vq);
315 __napi_schedule(napi);
316 }
317}
318
319static void virtqueue_napi_complete(struct napi_struct *napi,
320 struct virtqueue *vq, int processed)
321{
322 int opaque;
323
324 opaque = virtqueue_enable_cb_prepare(vq);
Toshiaki Makitafdaa7672017-12-07 13:15:15 +0900325 if (napi_complete_done(napi, processed)) {
326 if (unlikely(virtqueue_poll(vq, opaque)))
327 virtqueue_napi_schedule(napi, vq);
328 } else {
329 virtqueue_disable_cb(vq);
330 }
Willem de Bruijne4e84522017-04-24 13:49:26 -0400331}
332
Jason Wange9d74172012-12-07 07:04:55 +0000333static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000334{
Jason Wange9d74172012-12-07 07:04:55 +0000335 struct virtnet_info *vi = vq->vdev->priv;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400336 struct napi_struct *napi = &vi->sq[vq2txq(vq)].napi;
Rusty Russell296f96f2007-10-22 11:03:37 +1000337
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500338 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000339 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000340
Willem de Bruijnb92f1e62017-04-24 13:49:27 -0400341 if (napi->weight)
342 virtqueue_napi_schedule(napi, vq);
343 else
344 /* We were probably waiting for more output buffers. */
345 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000346}
347
Jason Wang28b39bc2017-07-19 16:54:46 +0800348#define MRG_CTX_HEADER_SHIFT 22
349static void *mergeable_len_to_ctx(unsigned int truesize,
350 unsigned int headroom)
351{
352 return (void *)(unsigned long)((headroom << MRG_CTX_HEADER_SHIFT) | truesize);
353}
354
355static unsigned int mergeable_ctx_to_headroom(void *mrg_ctx)
356{
357 return (unsigned long)mrg_ctx >> MRG_CTX_HEADER_SHIFT;
358}
359
360static unsigned int mergeable_ctx_to_truesize(void *mrg_ctx)
361{
362 return (unsigned long)mrg_ctx & ((1 << MRG_CTX_HEADER_SHIFT) - 1);
363}
364
Mike Waychison34646452012-01-04 12:52:32 +0000365/* Called from bottom half context */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +0300366static struct sk_buff *page_to_skb(struct virtnet_info *vi,
367 struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700368 struct page *page, unsigned int offset,
Jason Wang436c9452018-11-29 13:53:16 +0800369 unsigned int len, unsigned int truesize,
370 bool hdr_valid)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000371{
372 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300373 struct virtio_net_hdr_mrg_rxbuf *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700374 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000375 char *p;
376
Michael Dalton2613af02013-10-28 15:44:18 -0700377 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000378
379 /* copy small packet so we can reuse these pages for small data */
Paolo Abenic67f5db2016-03-17 15:44:00 +0100380 skb = napi_alloc_skb(&rq->napi, GOOD_COPY_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000381 if (unlikely(!skb))
382 return NULL;
383
384 hdr = skb_vnet_hdr(skb);
385
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300386 hdr_len = vi->hdr_len;
387 if (vi->mergeable_rx_bufs)
stephen hemmingera4a76502017-08-15 10:29:17 -0700388 hdr_padded_len = sizeof(*hdr);
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300389 else
Michael Dalton2613af02013-10-28 15:44:18 -0700390 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000391
Jason Wang436c9452018-11-29 13:53:16 +0800392 if (hdr_valid)
393 memcpy(hdr, p, hdr_len);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000394
395 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700396 offset += hdr_padded_len;
397 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000398
399 copy = len;
400 if (copy > skb_tailroom(skb))
401 copy = skb_tailroom(skb);
Johannes Berg59ae1d12017-06-16 14:29:20 +0200402 skb_put_data(skb, p, copy);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000403
404 len -= copy;
405 offset += copy;
406
Michael Dalton2613af02013-10-28 15:44:18 -0700407 if (vi->mergeable_rx_bufs) {
408 if (len)
409 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
410 else
411 put_page(page);
412 return skb;
413 }
414
Sasha Levine878d782011-09-28 04:40:54 +0000415 /*
416 * Verify that we can indeed put this data into a skb.
417 * This is here to handle cases when the device erroneously
418 * tries to receive more than is possible. This is usually
419 * the case of a broken device.
420 */
421 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000422 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000423 dev_kfree_skb(skb);
424 return NULL;
425 }
Michael Dalton2613af02013-10-28 15:44:18 -0700426 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000427 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700428 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
429 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
430 frag_size, truesize);
431 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000432 page = (struct page *)page->private;
433 offset = 0;
434 }
435
436 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000437 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000438
439 return skb;
440}
441
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200442static int __virtnet_xdp_xmit_one(struct virtnet_info *vi,
443 struct send_queue *sq,
444 struct xdp_frame *xdpf)
John Fastabend56434a02016-12-15 12:14:13 -0800445{
John Fastabend56434a02016-12-15 12:14:13 -0800446 struct virtio_net_hdr_mrg_rxbuf *hdr;
John Fastabend56434a02016-12-15 12:14:13 -0800447 int err;
448
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200449 /* virtqueue want to use data area in-front of packet */
450 if (unlikely(xdpf->metasize > 0))
451 return -EOPNOTSUPP;
452
453 if (unlikely(xdpf->headroom < vi->hdr_len))
454 return -EOVERFLOW;
455
456 /* Make room for virtqueue hdr (also change xdpf->headroom?) */
457 xdpf->data -= vi->hdr_len;
Jason Wangf6b10202017-02-21 16:46:28 +0800458 /* Zero header and leave csum up to XDP layers */
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200459 hdr = xdpf->data;
Jason Wangf6b10202017-02-21 16:46:28 +0800460 memset(hdr, 0, vi->hdr_len);
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200461 xdpf->len += vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800462
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200463 sg_init_one(sq->sg, xdpf->data, xdpf->len);
Jason Wangbb91acc2016-12-23 22:37:32 +0800464
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200465 err = virtqueue_add_outbuf(sq->vq, sq->sg, 1, xdpf, GFP_ATOMIC);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100466 if (unlikely(err))
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200467 return -ENOSPC; /* Caller handle free/refcnt */
John Fastabend56434a02016-12-15 12:14:13 -0800468
Jesper Dangaard Brouercac320c2018-04-17 16:45:52 +0200469 return 0;
John Fastabend56434a02016-12-15 12:14:13 -0800470}
471
Toshiaki Makita2a435652018-07-23 23:36:07 +0900472static struct send_queue *virtnet_xdp_sq(struct virtnet_info *vi)
473{
474 unsigned int qp;
475
476 qp = vi->curr_queue_pairs - vi->xdp_queue_pairs + smp_processor_id();
477 return &vi->sq[qp];
478}
479
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200480static int virtnet_xdp_xmit(struct net_device *dev,
Jesper Dangaard Brouer42b33462018-05-31 10:59:47 +0200481 int n, struct xdp_frame **frames, u32 flags)
Jason Wang186b3c92017-09-19 17:42:43 +0800482{
483 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100484 struct receive_queue *rq = vi->rq;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200485 struct xdp_frame *xdpf_sent;
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100486 struct bpf_prog *xdp_prog;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200487 struct send_queue *sq;
488 unsigned int len;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200489 int drops = 0;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900490 int kicks = 0;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900491 int ret, err;
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200492 int i;
493
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100494 /* Only allow ndo_xdp_xmit if XDP is loaded on dev, as this
495 * indicate XDP resources have been successfully allocated.
496 */
497 xdp_prog = rcu_dereference(rq->xdp_prog);
Toshiaki Makita1667c082019-01-29 09:45:56 +0900498 if (!xdp_prog)
499 return -ENXIO;
500
501 sq = virtnet_xdp_sq(vi);
502
503 if (unlikely(flags & ~XDP_XMIT_FLAGS_MASK)) {
504 ret = -EINVAL;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900505 drops = n;
506 goto out;
507 }
Jesper Dangaard Brouer8dcc5b02018-02-20 14:32:20 +0100508
Jesper Dangaard Brouer735fc402018-05-24 16:46:12 +0200509 /* Free up any pending old buffers before queueing new ones. */
510 while ((xdpf_sent = virtqueue_get_buf(sq->vq, &len)) != NULL)
511 xdp_return_frame(xdpf_sent);
512
513 for (i = 0; i < n; i++) {
514 struct xdp_frame *xdpf = frames[i];
515
516 err = __virtnet_xdp_xmit_one(vi, sq, xdpf);
517 if (err) {
518 xdp_return_frame_rx_napi(xdpf);
519 drops++;
520 }
521 }
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900522 ret = n - drops;
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200523
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900524 if (flags & XDP_XMIT_FLUSH) {
525 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq))
526 kicks = 1;
527 }
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900528out:
529 u64_stats_update_begin(&sq->stats.syncp);
530 sq->stats.xdp_tx += n;
531 sq->stats.xdp_tx_drops += drops;
Toshiaki Makita461f03d2018-07-23 23:36:09 +0900532 sq->stats.kicks += kicks;
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900533 u64_stats_update_end(&sq->stats.syncp);
Jesper Dangaard Brouer5d274cb2018-05-31 11:00:08 +0200534
Toshiaki Makita5b8f3c82018-07-23 23:36:08 +0900535 return ret;
Jason Wang186b3c92017-09-19 17:42:43 +0800536}
537
Jason Wangf6b10202017-02-21 16:46:28 +0800538static unsigned int virtnet_get_headroom(struct virtnet_info *vi)
539{
540 return vi->xdp_queue_pairs ? VIRTIO_XDP_HEADROOM : 0;
541}
542
Jason Wang4941d472017-07-19 16:54:48 +0800543/* We copy the packet for XDP in the following cases:
544 *
545 * 1) Packet is scattered across multiple rx buffers.
546 * 2) Headroom space is insufficient.
547 *
548 * This is inefficient but it's a temporary condition that
549 * we hit right after XDP is enabled and until queue is refilled
550 * with large buffers with sufficient headroom - so it should affect
551 * at most queue size packets.
552 * Afterwards, the conditions to enable
553 * XDP should preclude the underlying device from sending packets
554 * across multiple buffers (num_buf > 1), and we make sure buffers
555 * have enough headroom.
John Fastabend72979a62016-12-15 12:14:36 -0800556 */
557static struct page *xdp_linearize_page(struct receive_queue *rq,
Jason Wang56a86f82016-12-23 22:37:26 +0800558 u16 *num_buf,
John Fastabend72979a62016-12-15 12:14:36 -0800559 struct page *p,
560 int offset,
Jason Wang4941d472017-07-19 16:54:48 +0800561 int page_off,
John Fastabend72979a62016-12-15 12:14:36 -0800562 unsigned int *len)
563{
564 struct page *page = alloc_page(GFP_ATOMIC);
John Fastabend72979a62016-12-15 12:14:36 -0800565
566 if (!page)
567 return NULL;
568
569 memcpy(page_address(page) + page_off, page_address(p) + offset, *len);
570 page_off += *len;
571
Jason Wang56a86f82016-12-23 22:37:26 +0800572 while (--*num_buf) {
Jason Wang3cc81a92018-03-02 17:29:14 +0800573 int tailroom = SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
John Fastabend72979a62016-12-15 12:14:36 -0800574 unsigned int buflen;
John Fastabend72979a62016-12-15 12:14:36 -0800575 void *buf;
576 int off;
577
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200578 buf = virtqueue_get_buf(rq->vq, &buflen);
579 if (unlikely(!buf))
John Fastabend72979a62016-12-15 12:14:36 -0800580 goto err_buf;
581
John Fastabend72979a62016-12-15 12:14:36 -0800582 p = virt_to_head_page(buf);
583 off = buf - page_address(p);
584
Jason Wang56a86f82016-12-23 22:37:26 +0800585 /* guard against a misconfigured or uncooperative backend that
586 * is sending packet larger than the MTU.
587 */
Jason Wang3cc81a92018-03-02 17:29:14 +0800588 if ((page_off + buflen + tailroom) > PAGE_SIZE) {
Jason Wang56a86f82016-12-23 22:37:26 +0800589 put_page(p);
590 goto err_buf;
591 }
592
John Fastabend72979a62016-12-15 12:14:36 -0800593 memcpy(page_address(page) + page_off,
594 page_address(p) + off, buflen);
595 page_off += buflen;
Jason Wang56a86f82016-12-23 22:37:26 +0800596 put_page(p);
John Fastabend72979a62016-12-15 12:14:36 -0800597 }
598
John Fastabend2de2f7f2017-02-02 19:16:29 -0800599 /* Headroom does not contribute to packet length */
600 *len = page_off - VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800601 return page;
602err_buf:
603 __free_pages(page, 0);
604 return NULL;
605}
606
Jason Wang4941d472017-07-19 16:54:48 +0800607static struct sk_buff *receive_small(struct net_device *dev,
608 struct virtnet_info *vi,
609 struct receive_queue *rq,
610 void *buf, void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800611 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900612 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800613 struct virtnet_rq_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800614{
615 struct sk_buff *skb;
616 struct bpf_prog *xdp_prog;
617 unsigned int xdp_headroom = (unsigned long)ctx;
618 unsigned int header_offset = VIRTNET_RX_PAD + xdp_headroom;
619 unsigned int headroom = vi->hdr_len + header_offset;
620 unsigned int buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
621 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
622 struct page *page = virt_to_head_page(buf);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100623 unsigned int delta = 0;
Jason Wang4941d472017-07-19 16:54:48 +0800624 struct page *xdp_page;
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100625 int err;
626
Jason Wang4941d472017-07-19 16:54:48 +0800627 len -= vi->hdr_len;
Jason Wangd46eeea2018-07-31 17:43:39 +0800628 stats->bytes += len;
Jason Wang4941d472017-07-19 16:54:48 +0800629
630 rcu_read_lock();
631 xdp_prog = rcu_dereference(rq->xdp_prog);
632 if (xdp_prog) {
633 struct virtio_net_hdr_mrg_rxbuf *hdr = buf + header_offset;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200634 struct xdp_frame *xdpf;
Jason Wang4941d472017-07-19 16:54:48 +0800635 struct xdp_buff xdp;
636 void *orig_data;
637 u32 act;
638
Jesper Dangaard Brouer95dbe9e2018-02-20 14:32:10 +0100639 if (unlikely(hdr->hdr.gso_type))
Jason Wang4941d472017-07-19 16:54:48 +0800640 goto err_xdp;
641
642 if (unlikely(xdp_headroom < virtnet_get_headroom(vi))) {
643 int offset = buf - page_address(page) + header_offset;
644 unsigned int tlen = len + vi->hdr_len;
645 u16 num_buf = 1;
646
647 xdp_headroom = virtnet_get_headroom(vi);
648 header_offset = VIRTNET_RX_PAD + xdp_headroom;
649 headroom = vi->hdr_len + header_offset;
650 buflen = SKB_DATA_ALIGN(GOOD_PACKET_LEN + headroom) +
651 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
652 xdp_page = xdp_linearize_page(rq, &num_buf, page,
653 offset, header_offset,
654 &tlen);
655 if (!xdp_page)
656 goto err_xdp;
657
658 buf = page_address(xdp_page);
659 put_page(page);
660 page = xdp_page;
661 }
662
663 xdp.data_hard_start = buf + VIRTNET_RX_PAD + vi->hdr_len;
664 xdp.data = xdp.data_hard_start + xdp_headroom;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200665 xdp_set_data_meta_invalid(&xdp);
Jason Wang4941d472017-07-19 16:54:48 +0800666 xdp.data_end = xdp.data + len;
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100667 xdp.rxq = &rq->xdp_rxq;
Jason Wang4941d472017-07-19 16:54:48 +0800668 orig_data = xdp.data;
669 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Jason Wangd46eeea2018-07-31 17:43:39 +0800670 stats->xdp_packets++;
Jason Wang4941d472017-07-19 16:54:48 +0800671
672 switch (act) {
673 case XDP_PASS:
674 /* Recalculate length in case bpf program changed it */
675 delta = orig_data - xdp.data;
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700676 len = xdp.data_end - xdp.data;
Jason Wang4941d472017-07-19 16:54:48 +0800677 break;
678 case XDP_TX:
Jason Wangd46eeea2018-07-31 17:43:39 +0800679 stats->xdp_tx++;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200680 xdpf = convert_to_xdp_frame(&xdp);
681 if (unlikely(!xdpf))
682 goto err_xdp;
Jason Wangca9e83b2018-07-31 17:43:38 +0800683 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
684 if (unlikely(err < 0)) {
Jason Wang4941d472017-07-19 16:54:48 +0800685 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100686 goto err_xdp;
687 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200688 *xdp_xmit |= VIRTIO_XDP_TX;
Jason Wang186b3c92017-09-19 17:42:43 +0800689 rcu_read_unlock();
690 goto xdp_xmit;
691 case XDP_REDIRECT:
Jason Wangd46eeea2018-07-31 17:43:39 +0800692 stats->xdp_redirects++;
Jason Wang186b3c92017-09-19 17:42:43 +0800693 err = xdp_do_redirect(dev, &xdp, xdp_prog);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100694 if (err)
695 goto err_xdp;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200696 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang4941d472017-07-19 16:54:48 +0800697 rcu_read_unlock();
698 goto xdp_xmit;
699 default:
700 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvab633d442018-08-04 21:42:05 -0500701 /* fall through */
Jason Wang4941d472017-07-19 16:54:48 +0800702 case XDP_ABORTED:
703 trace_xdp_exception(vi->dev, xdp_prog, act);
704 case XDP_DROP:
705 goto err_xdp;
706 }
707 }
708 rcu_read_unlock();
709
710 skb = build_skb(buf, buflen);
711 if (!skb) {
712 put_page(page);
713 goto err;
714 }
715 skb_reserve(skb, headroom - delta);
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700716 skb_put(skb, len);
Jason Wang4941d472017-07-19 16:54:48 +0800717 if (!delta) {
718 buf += header_offset;
719 memcpy(skb_vnet_hdr(skb), buf, vi->hdr_len);
720 } /* keep zeroed vnet hdr since packet was changed by bpf */
721
722err:
723 return skb;
724
725err_xdp:
726 rcu_read_unlock();
Jason Wangd46eeea2018-07-31 17:43:39 +0800727 stats->xdp_drops++;
728 stats->drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800729 put_page(page);
730xdp_xmit:
731 return NULL;
732}
733
734static struct sk_buff *receive_big(struct net_device *dev,
735 struct virtnet_info *vi,
736 struct receive_queue *rq,
737 void *buf,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900738 unsigned int len,
Jason Wangd46eeea2018-07-31 17:43:39 +0800739 struct virtnet_rq_stats *stats)
Jason Wang4941d472017-07-19 16:54:48 +0800740{
741 struct page *page = buf;
Jason Wang436c9452018-11-29 13:53:16 +0800742 struct sk_buff *skb = page_to_skb(vi, rq, page, 0, len,
743 PAGE_SIZE, true);
Jason Wang4941d472017-07-19 16:54:48 +0800744
Jason Wangd46eeea2018-07-31 17:43:39 +0800745 stats->bytes += len - vi->hdr_len;
Jason Wang4941d472017-07-19 16:54:48 +0800746 if (unlikely(!skb))
747 goto err;
748
749 return skb;
750
751err:
Jason Wangd46eeea2018-07-31 17:43:39 +0800752 stats->drops++;
Jason Wang4941d472017-07-19 16:54:48 +0800753 give_pages(rq, page);
754 return NULL;
755}
756
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200757static struct sk_buff *receive_mergeable(struct net_device *dev,
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200758 struct virtnet_info *vi,
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200759 struct receive_queue *rq,
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200760 void *buf,
761 void *ctx,
Jason Wang186b3c92017-09-19 17:42:43 +0800762 unsigned int len,
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900763 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800764 struct virtnet_rq_stats *stats)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000765{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300766 struct virtio_net_hdr_mrg_rxbuf *hdr = buf;
767 u16 num_buf = virtio16_to_cpu(vi->vdev, hdr->num_buffers);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200768 struct page *page = virt_to_head_page(buf);
769 int offset = buf - page_address(page);
John Fastabendf600b692016-12-15 12:13:24 -0800770 struct sk_buff *head_skb, *curr_skb;
771 struct bpf_prog *xdp_prog;
772 unsigned int truesize;
Jason Wang4941d472017-07-19 16:54:48 +0800773 unsigned int headroom = mergeable_ctx_to_headroom(ctx);
Jason Wang3cc81a92018-03-02 17:29:14 +0800774 int err;
Michael Daltonab7db912014-01-16 22:23:27 -0800775
John Fastabend56434a02016-12-15 12:14:13 -0800776 head_skb = NULL;
Jason Wangd46eeea2018-07-31 17:43:39 +0800777 stats->bytes += len - vi->hdr_len;
John Fastabend56434a02016-12-15 12:14:13 -0800778
John Fastabendf600b692016-12-15 12:13:24 -0800779 rcu_read_lock();
780 xdp_prog = rcu_dereference(rq->xdp_prog);
781 if (xdp_prog) {
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200782 struct xdp_frame *xdpf;
John Fastabend72979a62016-12-15 12:14:36 -0800783 struct page *xdp_page;
John Fastabend0354e4d2017-02-02 19:15:01 -0800784 struct xdp_buff xdp;
John Fastabend0354e4d2017-02-02 19:15:01 -0800785 void *data;
John Fastabendf600b692016-12-15 12:13:24 -0800786 u32 act;
787
Jason Wang3d62b2a2018-05-22 11:44:31 +0800788 /* Transient failure which in theory could occur if
789 * in-flight packets from before XDP was enabled reach
790 * the receive path after XDP is loaded.
791 */
792 if (unlikely(hdr->hdr.gso_type))
793 goto err_xdp;
794
Jason Wang3cc81a92018-03-02 17:29:14 +0800795 /* This happens when rx buffer size is underestimated
796 * or headroom is not enough because of the buffer
797 * was refilled before XDP is set. This should only
798 * happen for the first several packets, so we don't
799 * care much about its performance.
800 */
Jason Wang4941d472017-07-19 16:54:48 +0800801 if (unlikely(num_buf > 1 ||
802 headroom < virtnet_get_headroom(vi))) {
John Fastabend72979a62016-12-15 12:14:36 -0800803 /* linearize data for XDP */
Jason Wang56a86f82016-12-23 22:37:26 +0800804 xdp_page = xdp_linearize_page(rq, &num_buf,
Jason Wang4941d472017-07-19 16:54:48 +0800805 page, offset,
806 VIRTIO_XDP_HEADROOM,
807 &len);
John Fastabend72979a62016-12-15 12:14:36 -0800808 if (!xdp_page)
809 goto err_xdp;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800810 offset = VIRTIO_XDP_HEADROOM;
John Fastabend72979a62016-12-15 12:14:36 -0800811 } else {
812 xdp_page = page;
John Fastabendf600b692016-12-15 12:13:24 -0800813 }
814
John Fastabend2de2f7f2017-02-02 19:16:29 -0800815 /* Allow consuming headroom but reserve enough space to push
816 * the descriptor on if we get an XDP_TX return code.
817 */
John Fastabend0354e4d2017-02-02 19:15:01 -0800818 data = page_address(xdp_page) + offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -0800819 xdp.data_hard_start = data - VIRTIO_XDP_HEADROOM + vi->hdr_len;
John Fastabend0354e4d2017-02-02 19:15:01 -0800820 xdp.data = data + vi->hdr_len;
Daniel Borkmannde8f3a82017-09-25 02:25:51 +0200821 xdp_set_data_meta_invalid(&xdp);
John Fastabend0354e4d2017-02-02 19:15:01 -0800822 xdp.data_end = xdp.data + (len - vi->hdr_len);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +0100823 xdp.rxq = &rq->xdp_rxq;
824
John Fastabend0354e4d2017-02-02 19:15:01 -0800825 act = bpf_prog_run_xdp(xdp_prog, &xdp);
Jason Wangd46eeea2018-07-31 17:43:39 +0800826 stats->xdp_packets++;
John Fastabend0354e4d2017-02-02 19:15:01 -0800827
John Fastabend56434a02016-12-15 12:14:13 -0800828 switch (act) {
829 case XDP_PASS:
John Fastabend2de2f7f2017-02-02 19:16:29 -0800830 /* recalculate offset to account for any header
831 * adjustments. Note other cases do not build an
832 * skb and avoid using offset
833 */
834 offset = xdp.data -
835 page_address(xdp_page) - vi->hdr_len;
836
Nikita V. Shirokov6870de42018-04-17 21:42:20 -0700837 /* recalculate len if xdp.data or xdp.data_end were
838 * adjusted
839 */
Nikita V. Shirokovaaa64522018-04-22 21:16:48 -0700840 len = xdp.data_end - xdp.data + vi->hdr_len;
Jason Wang1830f892016-12-23 22:37:27 +0800841 /* We can only create skb based on xdp_page. */
842 if (unlikely(xdp_page != page)) {
843 rcu_read_unlock();
844 put_page(page);
845 head_skb = page_to_skb(vi, rq, xdp_page,
Jason Wang436c9452018-11-29 13:53:16 +0800846 offset, len,
847 PAGE_SIZE, false);
Jason Wang1830f892016-12-23 22:37:27 +0800848 return head_skb;
849 }
John Fastabend56434a02016-12-15 12:14:13 -0800850 break;
851 case XDP_TX:
Jason Wangd46eeea2018-07-31 17:43:39 +0800852 stats->xdp_tx++;
Jesper Dangaard Brouer44fa2db2018-04-17 16:46:37 +0200853 xdpf = convert_to_xdp_frame(&xdp);
854 if (unlikely(!xdpf))
855 goto err_xdp;
Jason Wangca9e83b2018-07-31 17:43:38 +0800856 err = virtnet_xdp_xmit(dev, 1, &xdpf, 0);
857 if (unlikely(err < 0)) {
John Fastabend0354e4d2017-02-02 19:15:01 -0800858 trace_xdp_exception(vi->dev, xdp_prog, act);
Jesper Dangaard Brouer11b7d8972018-02-20 14:32:15 +0100859 if (unlikely(xdp_page != page))
860 put_page(xdp_page);
861 goto err_xdp;
862 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200863 *xdp_xmit |= VIRTIO_XDP_TX;
John Fastabend72979a62016-12-15 12:14:36 -0800864 if (unlikely(xdp_page != page))
Jason Wang5d458a12018-05-22 11:44:29 +0800865 put_page(page);
John Fastabend56434a02016-12-15 12:14:13 -0800866 rcu_read_unlock();
867 goto xdp_xmit;
Jason Wang3cc81a92018-03-02 17:29:14 +0800868 case XDP_REDIRECT:
Jason Wangd46eeea2018-07-31 17:43:39 +0800869 stats->xdp_redirects++;
Jason Wang3cc81a92018-03-02 17:29:14 +0800870 err = xdp_do_redirect(dev, &xdp, xdp_prog);
871 if (err) {
872 if (unlikely(xdp_page != page))
873 put_page(xdp_page);
874 goto err_xdp;
875 }
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +0200876 *xdp_xmit |= VIRTIO_XDP_REDIR;
Jason Wang3cc81a92018-03-02 17:29:14 +0800877 if (unlikely(xdp_page != page))
Jason Wang6890418b2018-05-22 11:44:28 +0800878 put_page(page);
Jason Wang3cc81a92018-03-02 17:29:14 +0800879 rcu_read_unlock();
880 goto xdp_xmit;
John Fastabend56434a02016-12-15 12:14:13 -0800881 default:
John Fastabend0354e4d2017-02-02 19:15:01 -0800882 bpf_warn_invalid_xdp_action(act);
Gustavo A. R. Silvab633d442018-08-04 21:42:05 -0500883 /* fall through */
John Fastabend0354e4d2017-02-02 19:15:01 -0800884 case XDP_ABORTED:
885 trace_xdp_exception(vi->dev, xdp_prog, act);
Gustavo A. R. Silvab633d442018-08-04 21:42:05 -0500886 /* fall through */
John Fastabend0354e4d2017-02-02 19:15:01 -0800887 case XDP_DROP:
John Fastabend72979a62016-12-15 12:14:36 -0800888 if (unlikely(xdp_page != page))
889 __free_pages(xdp_page, 0);
John Fastabendf600b692016-12-15 12:13:24 -0800890 goto err_xdp;
John Fastabend56434a02016-12-15 12:14:13 -0800891 }
John Fastabendf600b692016-12-15 12:13:24 -0800892 }
893 rcu_read_unlock();
894
Jason Wang28b39bc2017-07-19 16:54:46 +0800895 truesize = mergeable_ctx_to_truesize(ctx);
896 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300897 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200898 dev->name, len, (unsigned long)ctx);
899 dev->stats.rx_length_errors++;
900 goto err_skb;
901 }
Jason Wang28b39bc2017-07-19 16:54:46 +0800902
Jason Wang436c9452018-11-29 13:53:16 +0800903 head_skb = page_to_skb(vi, rq, page, offset, len, truesize, !xdp_prog);
John Fastabendf600b692016-12-15 12:13:24 -0800904 curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000905
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200906 if (unlikely(!curr_skb))
907 goto err_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000908 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200909 int num_skb_frags;
910
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200911 buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx);
Yunjian Wang03e9f8a2017-12-04 14:02:19 +0800912 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200913 pr_debug("%s: rx error: %d buffers out of %d missing\n",
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +0200914 dev->name, num_buf,
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300915 virtio16_to_cpu(vi->vdev,
916 hdr->num_buffers));
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200917 dev->stats.rx_length_errors++;
918 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000919 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200920
Jason Wangd46eeea2018-07-31 17:43:39 +0800921 stats->bytes += len;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200922 page = virt_to_head_page(buf);
Jason Wang28b39bc2017-07-19 16:54:46 +0800923
924 truesize = mergeable_ctx_to_truesize(ctx);
925 if (unlikely(len > truesize)) {
Dan Carpenter56da5fd2017-04-06 12:04:47 +0300926 pr_debug("%s: rx error: len %u exceeds truesize %lu\n",
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200927 dev->name, len, (unsigned long)ctx);
928 dev->stats.rx_length_errors++;
929 goto err_skb;
930 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200931
932 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700933 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
934 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200935
936 if (unlikely(!nskb))
937 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700938 if (curr_skb == head_skb)
939 skb_shinfo(curr_skb)->frag_list = nskb;
940 else
941 curr_skb->next = nskb;
942 curr_skb = nskb;
943 head_skb->truesize += nskb->truesize;
944 num_skb_frags = 0;
945 }
946 if (curr_skb != head_skb) {
947 head_skb->data_len += len;
948 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800949 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700950 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200951 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800952 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
953 put_page(page);
954 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800955 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800956 } else {
957 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800958 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800959 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200960 }
961
Johannes Berg5377d7582015-08-19 09:48:40 +0200962 ewma_pkt_len_add(&rq->mrg_avg_pkt_len, head_skb->len);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200963 return head_skb;
964
John Fastabendf600b692016-12-15 12:13:24 -0800965err_xdp:
966 rcu_read_unlock();
Jason Wangd46eeea2018-07-31 17:43:39 +0800967 stats->xdp_drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200968err_skb:
969 put_page(page);
Jason Wang850e0882018-05-22 11:44:30 +0800970 while (num_buf-- > 1) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200971 buf = virtqueue_get_buf(rq->vq, &len);
972 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200973 pr_debug("%s: rx error: %d buffers missing\n",
974 dev->name, num_buf);
975 dev->stats.rx_length_errors++;
976 break;
977 }
Jason Wangd46eeea2018-07-31 17:43:39 +0800978 stats->bytes += len;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +0200979 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200980 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000981 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200982err_buf:
Jason Wangd46eeea2018-07-31 17:43:39 +0800983 stats->drops++;
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200984 dev_kfree_skb(head_skb);
John Fastabend56434a02016-12-15 12:14:13 -0800985xdp_xmit:
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200986 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000987}
988
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +0900989static void receive_buf(struct virtnet_info *vi, struct receive_queue *rq,
990 void *buf, unsigned int len, void **ctx,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +0900991 unsigned int *xdp_xmit,
Jason Wangd46eeea2018-07-31 17:43:39 +0800992 struct virtnet_rq_stats *stats)
Rusty Russell296f96f2007-10-22 11:03:37 +1000993{
Jason Wange9d74172012-12-07 07:04:55 +0000994 struct net_device *dev = vi->dev;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000995 struct sk_buff *skb;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +0300996 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000997
Michael S. Tsirkinbcff3162014-10-24 00:22:11 +0300998 if (unlikely(len < vi->hdr_len + ETH_HLEN)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000999 pr_debug("%s: short packet %i\n", dev->name, len);
1000 dev->stats.rx_length_errors++;
Michael Daltonab7db912014-01-16 22:23:27 -08001001 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001002 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08001003 } else if (vi->big_packets) {
Michael Dalton98bfd232013-12-05 13:14:05 -08001004 give_pages(rq, buf);
Michael Daltonab7db912014-01-16 22:23:27 -08001005 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08001006 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08001007 }
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001008 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001009 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001010
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001011 if (vi->mergeable_rx_bufs)
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001012 skb = receive_mergeable(dev, vi, rq, buf, ctx, len, xdp_xmit,
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001013 stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001014 else if (vi->big_packets)
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001015 skb = receive_big(dev, vi, rq, buf, len, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001016 else
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001017 skb = receive_small(dev, vi, rq, buf, ctx, len, xdp_xmit, stats);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +02001018
1019 if (unlikely(!skb))
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001020 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001021
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001022 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001023
Mike Rapoporte858fae2016-06-08 16:09:21 +03001024 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID)
Jason Wang10a8d942011-06-10 00:56:17 +00001025 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +10001026
Mike Rapoporte858fae2016-06-08 16:09:21 +03001027 if (virtio_net_hdr_to_skb(skb, &hdr->hdr,
1028 virtio_is_little_endian(vi->vdev))) {
1029 net_warn_ratelimited("%s: bad gso: type: %u, size: %u\n",
1030 dev->name, hdr->hdr.gso_type,
1031 hdr->hdr.gso_size);
1032 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001033 }
1034
Mike Rapoportd1dc06d2016-06-14 08:29:38 +03001035 skb->protocol = eth_type_trans(skb, dev);
1036 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
1037 ntohs(skb->protocol), skb->len, skb->pkt_type);
1038
Eric Dumazet0fbd0502015-07-31 18:25:17 +02001039 napi_gro_receive(&rq->napi, skb);
Toshiaki Makita7d9d60f2018-07-23 23:36:04 +09001040 return;
Rusty Russell296f96f2007-10-22 11:03:37 +10001041
1042frame_err:
1043 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +10001044 dev_kfree_skb(skb);
1045}
1046
Jason Wang192f68c2017-07-19 16:54:47 +08001047/* Unlike mergeable buffers, all buffers are allocated to the
1048 * same size, except for the headroom. For this reason we do
1049 * not need to use mergeable_len_to_ctx here - it is enough
1050 * to store the headroom as the context ignoring the truesize.
1051 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001052static int add_recvbuf_small(struct virtnet_info *vi, struct receive_queue *rq,
1053 gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +10001054{
Jason Wangf6b10202017-02-21 16:46:28 +08001055 struct page_frag *alloc_frag = &rq->alloc_frag;
1056 char *buf;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001057 unsigned int xdp_headroom = virtnet_get_headroom(vi);
Jason Wang192f68c2017-07-19 16:54:47 +08001058 void *ctx = (void *)(unsigned long)xdp_headroom;
Jason Wangf6b10202017-02-21 16:46:28 +08001059 int len = vi->hdr_len + VIRTNET_RX_PAD + GOOD_PACKET_LEN + xdp_headroom;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001060 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001061
Jason Wangf6b10202017-02-21 16:46:28 +08001062 len = SKB_DATA_ALIGN(len) +
1063 SKB_DATA_ALIGN(sizeof(struct skb_shared_info));
1064 if (unlikely(!skb_page_frag_refill(len, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001065 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001066
Jason Wangf6b10202017-02-21 16:46:28 +08001067 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
1068 get_page(alloc_frag->page);
1069 alloc_frag->offset += len;
1070 sg_init_one(rq->sg, buf + VIRTNET_RX_PAD + xdp_headroom,
1071 vi->hdr_len + GOOD_PACKET_LEN);
Jason Wang192f68c2017-07-19 16:54:47 +08001072 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001073 if (err < 0)
Jason Wangf6b10202017-02-21 16:46:28 +08001074 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001075 return err;
1076}
1077
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001078static int add_recvbuf_big(struct virtnet_info *vi, struct receive_queue *rq,
1079 gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001080{
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001081 struct page *first, *list = NULL;
1082 char *p;
1083 int i, err, offset;
1084
Rusty Russella5835442014-09-11 10:17:36 +09301085 sg_init_table(rq->sg, MAX_SKB_FRAGS + 2);
1086
Jason Wange9d74172012-12-07 07:04:55 +00001087 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001088 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +00001089 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001090 if (!first) {
1091 if (list)
Jason Wange9d74172012-12-07 07:04:55 +00001092 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001093 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -07001094 }
Jason Wange9d74172012-12-07 07:04:55 +00001095 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +10001096
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001097 /* chain new page in list head to match sg */
1098 first->private = (unsigned long)list;
1099 list = first;
1100 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001101
Jason Wange9d74172012-12-07 07:04:55 +00001102 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001103 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +00001104 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001105 return -ENOMEM;
1106 }
1107 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +08001108
Jason Wange9d74172012-12-07 07:04:55 +00001109 /* rq->sg[0], rq->sg[1] share the same page */
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001110 /* a separated rq->sg[0] for header - required in case !any_header_sg */
1111 sg_set_buf(&rq->sg[0], p, vi->hdr_len);
Herbert Xu97402b92008-04-18 11:24:27 +08001112
Jason Wange9d74172012-12-07 07:04:55 +00001113 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001114 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +00001115 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +08001116
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001117 /* chain first in list head */
1118 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301119 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
1120 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001121 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +00001122 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +08001123
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001124 return err;
1125}
Herbert Xu97402b92008-04-18 11:24:27 +08001126
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02001127static unsigned int get_mergeable_buf_len(struct receive_queue *rq,
Jason Wang3cc81a92018-03-02 17:29:14 +08001128 struct ewma_pkt_len *avg_pkt_len,
1129 unsigned int room)
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001130{
Michael Daltonab7db912014-01-16 22:23:27 -08001131 const size_t hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001132 unsigned int len;
1133
Jason Wang3cc81a92018-03-02 17:29:14 +08001134 if (room)
1135 return PAGE_SIZE - room;
1136
1137 len = hdr_len + clamp_t(unsigned int, ewma_pkt_len_read(avg_pkt_len),
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03001138 rq->min_buf_len, PAGE_SIZE - hdr_len);
Jason Wang3cc81a92018-03-02 17:29:14 +08001139
Michael S. Tsirkine377fcc2017-03-06 22:21:35 +02001140 return ALIGN(len, L1_CACHE_BYTES);
Michael Daltonfbf28d72014-01-16 22:23:30 -08001141}
1142
John Fastabend2de2f7f2017-02-02 19:16:29 -08001143static int add_recvbuf_mergeable(struct virtnet_info *vi,
1144 struct receive_queue *rq, gfp_t gfp)
Michael Daltonfbf28d72014-01-16 22:23:30 -08001145{
Michael Daltonfb518792014-01-16 22:23:26 -08001146 struct page_frag *alloc_frag = &rq->alloc_frag;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001147 unsigned int headroom = virtnet_get_headroom(vi);
Jason Wang3cc81a92018-03-02 17:29:14 +08001148 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
1149 unsigned int room = SKB_DATA_ALIGN(headroom + tailroom);
Michael Daltonfb518792014-01-16 22:23:26 -08001150 char *buf;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001151 void *ctx;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001152 int err;
Michael Daltonfb518792014-01-16 22:23:26 -08001153 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +10001154
Jason Wang3cc81a92018-03-02 17:29:14 +08001155 /* Extra tailroom is needed to satisfy XDP's assumption. This
1156 * means rx frags coalescing won't work, but consider we've
1157 * disabled GSO for XDP, it won't be a big issue.
1158 */
1159 len = get_mergeable_buf_len(rq, &rq->mrg_avg_pkt_len, room);
1160 if (unlikely(!skb_page_frag_refill(len + room, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001161 return -ENOMEM;
Michael Daltonab7db912014-01-16 22:23:27 -08001162
Michael Daltonfb518792014-01-16 22:23:26 -08001163 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
John Fastabend2de2f7f2017-02-02 19:16:29 -08001164 buf += headroom; /* advance address leaving hole at front of pkt */
Michael Daltonfb518792014-01-16 22:23:26 -08001165 get_page(alloc_frag->page);
Jason Wang3cc81a92018-03-02 17:29:14 +08001166 alloc_frag->offset += len + room;
Michael Daltonfb518792014-01-16 22:23:26 -08001167 hole = alloc_frag->size - alloc_frag->offset;
Jason Wang3cc81a92018-03-02 17:29:14 +08001168 if (hole < len + room) {
Michael Daltonab7db912014-01-16 22:23:27 -08001169 /* To avoid internal fragmentation, if there is very likely not
1170 * enough space for another buffer, add the remaining space to
Michael S. Tsirkin1daa8792017-07-31 21:49:49 +03001171 * the current buffer.
Michael Daltonab7db912014-01-16 22:23:27 -08001172 */
Michael Daltonfb518792014-01-16 22:23:26 -08001173 len += hole;
1174 alloc_frag->offset += hole;
1175 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001176
Michael Daltonfb518792014-01-16 22:23:26 -08001177 sg_init_one(rq->sg, buf, len);
David S. Miller29fda252017-08-01 10:07:50 -07001178 ctx = mergeable_len_to_ctx(len, headroom);
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001179 err = virtqueue_add_inbuf_ctx(rq->vq, rq->sg, 1, buf, ctx, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001180 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -07001181 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001182
1183 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001184}
1185
Rusty Russellb2baed62011-12-29 00:42:38 +00001186/*
1187 * Returns false if we couldn't fill entirely (OOM).
1188 *
1189 * Normally run in the receive path, but can also be run from ndo_open
1190 * before we're receiving packets, or from refill_work which is
1191 * careful to disable receiving (using napi_disable).
1192 */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001193static bool try_fill_recv(struct virtnet_info *vi, struct receive_queue *rq,
1194 gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001195{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001196 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001197 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001198
Amit Shah0aea51c2009-08-26 14:58:28 +05301199 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001200 if (vi->mergeable_rx_bufs)
John Fastabend2de2f7f2017-02-02 19:16:29 -08001201 err = add_recvbuf_mergeable(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001202 else if (vi->big_packets)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001203 err = add_recvbuf_big(vi, rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001204 else
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001205 err = add_recvbuf_small(vi, rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001206
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +00001207 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301208 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001209 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001210 } while (rq->vq->num_free);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001211 if (virtqueue_kick_prepare(rq->vq) && virtqueue_notify(rq->vq)) {
1212 u64_stats_update_begin(&rq->stats.syncp);
Jason Wangd46eeea2018-07-31 17:43:39 +08001213 rq->stats.kicks++;
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001214 u64_stats_update_end(&rq->stats.syncp);
1215 }
1216
Rusty Russell3161e452009-08-26 12:22:32 -07001217 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001218}
1219
Rusty Russell18445c42008-02-04 23:49:57 -05001220static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +10001221{
1222 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001223 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +00001224
Willem de Bruijne4e84522017-04-24 13:49:26 -04001225 virtqueue_napi_schedule(&rq->napi, rvq);
Rusty Russell296f96f2007-10-22 11:03:37 +10001226}
1227
Willem de Bruijne4e84522017-04-24 13:49:26 -04001228static void virtnet_napi_enable(struct virtqueue *vq, struct napi_struct *napi)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001229{
Willem de Bruijne4e84522017-04-24 13:49:26 -04001230 napi_enable(napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001231
1232 /* If all buffers were filled by other side before we napi_enabled, we
Willem de Bruijne4e84522017-04-24 13:49:26 -04001233 * won't get another interrupt, so process any outstanding packets now.
1234 * Call local_bh_enable after to trigger softIRQ processing.
1235 */
1236 local_bh_disable();
1237 virtqueue_napi_schedule(napi, vq);
1238 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -08001239}
1240
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001241static void virtnet_napi_tx_enable(struct virtnet_info *vi,
1242 struct virtqueue *vq,
1243 struct napi_struct *napi)
1244{
1245 if (!napi->weight)
1246 return;
1247
1248 /* Tx napi touches cachelines on the cpu handling tx interrupts. Only
1249 * enable the feature if this is likely affine with the transmit path.
1250 */
1251 if (!vi->affinity_hint_set) {
1252 napi->weight = 0;
1253 return;
1254 }
1255
1256 return virtnet_napi_enable(vq, napi);
1257}
1258
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001259static void virtnet_napi_tx_disable(struct napi_struct *napi)
1260{
1261 if (napi->weight)
1262 napi_disable(napi);
1263}
1264
Rusty Russell3161e452009-08-26 12:22:32 -07001265static void refill_work(struct work_struct *work)
1266{
Jason Wange9d74172012-12-07 07:04:55 +00001267 struct virtnet_info *vi =
1268 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -07001269 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +00001270 int i;
Rusty Russell3161e452009-08-26 12:22:32 -07001271
Sasha Levin55257d72013-04-29 12:00:08 +09301272 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001273 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -07001274
Jason Wang986a4f42012-12-07 07:04:56 +00001275 napi_disable(&rq->napi);
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001276 still_empty = !try_fill_recv(vi, rq, GFP_KERNEL);
Willem de Bruijne4e84522017-04-24 13:49:26 -04001277 virtnet_napi_enable(rq->vq, &rq->napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001278
1279 /* In theory, this can happen: if we don't get any buffers in
1280 * we will *never* try to fill again.
1281 */
1282 if (still_empty)
1283 schedule_delayed_work(&vi->refill, HZ/2);
1284 }
Rusty Russell3161e452009-08-26 12:22:32 -07001285}
1286
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001287static int virtnet_receive(struct receive_queue *rq, int budget,
1288 unsigned int *xdp_xmit)
Rusty Russell296f96f2007-10-22 11:03:37 +10001289{
Jason Wange9d74172012-12-07 07:04:55 +00001290 struct virtnet_info *vi = rq->vq->vdev->priv;
Jason Wangd46eeea2018-07-31 17:43:39 +08001291 struct virtnet_rq_stats stats = {};
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001292 unsigned int len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001293 void *buf;
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001294 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001295
Jason Wang192f68c2017-07-19 16:54:47 +08001296 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001297 void *ctx;
1298
Jason Wangd46eeea2018-07-31 17:43:39 +08001299 while (stats.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001300 (buf = virtqueue_get_buf_ctx(rq->vq, &len, &ctx))) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001301 receive_buf(vi, rq, buf, len, ctx, xdp_xmit, &stats);
Jason Wangd46eeea2018-07-31 17:43:39 +08001302 stats.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001303 }
1304 } else {
Jason Wangd46eeea2018-07-31 17:43:39 +08001305 while (stats.packets < budget &&
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001306 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001307 receive_buf(vi, rq, buf, len, NULL, xdp_xmit, &stats);
Jason Wangd46eeea2018-07-31 17:43:39 +08001308 stats.packets++;
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02001309 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001310 }
1311
Jason Wangbe121f42014-01-16 14:45:24 +08001312 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001313 if (!try_fill_recv(vi, rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001314 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -07001315 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001316
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001317 u64_stats_update_begin(&rq->stats.syncp);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001318 for (i = 0; i < VIRTNET_RQ_STATS_LEN; i++) {
1319 size_t offset = virtnet_rq_stats_desc[i].offset;
1320 u64 *item;
1321
Jason Wangd46eeea2018-07-31 17:43:39 +08001322 item = (u64 *)((u8 *)&rq->stats + offset);
1323 *item += *(u64 *)((u8 *)&stats + offset);
Toshiaki Makitaa0929a42018-07-23 23:36:05 +09001324 }
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001325 u64_stats_update_end(&rq->stats.syncp);
Jason Wang61845d22017-02-17 11:33:09 +08001326
Jason Wangd46eeea2018-07-31 17:43:39 +08001327 return stats.packets;
Jason Wang2ffa7592014-07-23 16:33:54 +08001328}
1329
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001330static void free_old_xmit_skbs(struct send_queue *sq, bool in_napi)
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001331{
1332 struct sk_buff *skb;
1333 unsigned int len;
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001334 unsigned int packets = 0;
1335 unsigned int bytes = 0;
1336
1337 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
1338 pr_debug("Sent skb %p\n", skb);
1339
1340 bytes += skb->len;
1341 packets++;
1342
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001343 napi_consume_skb(skb, in_napi);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001344 }
1345
1346 /* Avoid overhead when no packets have been processed
1347 * happens when called speculatively from start_xmit.
1348 */
1349 if (!packets)
1350 return;
1351
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001352 u64_stats_update_begin(&sq->stats.syncp);
1353 sq->stats.bytes += bytes;
1354 sq->stats.packets += packets;
1355 u64_stats_update_end(&sq->stats.syncp);
Willem de Bruijnea7735d2017-04-24 13:49:28 -04001356}
1357
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001358static bool is_xdp_raw_buffer_queue(struct virtnet_info *vi, int q)
1359{
1360 if (q < (vi->curr_queue_pairs - vi->xdp_queue_pairs))
1361 return false;
1362 else if (q < vi->curr_queue_pairs)
1363 return true;
1364 else
1365 return false;
1366}
1367
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001368static void virtnet_poll_cleantx(struct receive_queue *rq)
1369{
1370 struct virtnet_info *vi = rq->vq->vdev->priv;
1371 unsigned int index = vq2rxq(rq->vq);
1372 struct send_queue *sq = &vi->sq[index];
1373 struct netdev_queue *txq = netdev_get_tx_queue(vi->dev, index);
1374
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001375 if (!sq->napi.weight || is_xdp_raw_buffer_queue(vi, index))
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001376 return;
1377
1378 if (__netif_tx_trylock(txq)) {
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001379 free_old_xmit_skbs(sq, true);
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001380 __netif_tx_unlock(txq);
1381 }
1382
1383 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1384 netif_tx_wake_queue(txq);
1385}
1386
Jason Wang2ffa7592014-07-23 16:33:54 +08001387static int virtnet_poll(struct napi_struct *napi, int budget)
1388{
1389 struct receive_queue *rq =
1390 container_of(napi, struct receive_queue, napi);
Jason Wang9267c432018-04-13 14:58:25 +08001391 struct virtnet_info *vi = rq->vq->vdev->priv;
1392 struct send_queue *sq;
Toshiaki Makita2a435652018-07-23 23:36:07 +09001393 unsigned int received;
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001394 unsigned int xdp_xmit = 0;
Jason Wang2ffa7592014-07-23 16:33:54 +08001395
Willem de Bruijn7b0411e2017-04-24 13:49:29 -04001396 virtnet_poll_cleantx(rq);
1397
Jason Wang186b3c92017-09-19 17:42:43 +08001398 received = virtnet_receive(rq, budget, &xdp_xmit);
Jason Wang2ffa7592014-07-23 16:33:54 +08001399
Rusty Russell8329d982007-11-19 11:20:43 -05001400 /* Out of packets? */
Willem de Bruijne4e84522017-04-24 13:49:26 -04001401 if (received < budget)
1402 virtqueue_napi_complete(napi, rq->vq, received);
Rusty Russell296f96f2007-10-22 11:03:37 +10001403
Jesper Dangaard Brouer2471c752018-06-26 17:39:58 +02001404 if (xdp_xmit & VIRTIO_XDP_REDIR)
1405 xdp_do_flush_map();
1406
1407 if (xdp_xmit & VIRTIO_XDP_TX) {
Toshiaki Makita2a435652018-07-23 23:36:07 +09001408 sq = virtnet_xdp_sq(vi);
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001409 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1410 u64_stats_update_begin(&sq->stats.syncp);
1411 sq->stats.kicks++;
1412 u64_stats_update_end(&sq->stats.syncp);
1413 }
Jason Wang9267c432018-04-13 14:58:25 +08001414 }
Jason Wang186b3c92017-09-19 17:42:43 +08001415
Rusty Russell296f96f2007-10-22 11:03:37 +10001416 return received;
1417}
1418
Jason Wang986a4f42012-12-07 07:04:56 +00001419static int virtnet_open(struct net_device *dev)
1420{
1421 struct virtnet_info *vi = netdev_priv(dev);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001422 int i, err;
Jason Wang986a4f42012-12-07 07:04:56 +00001423
Jason Wange4166622013-05-21 20:03:58 +00001424 for (i = 0; i < vi->max_queue_pairs; i++) {
1425 if (i < vi->curr_queue_pairs)
1426 /* Make sure we have some buffers: if oom use wq. */
Michael S. Tsirkin946fa562014-10-24 00:12:10 +03001427 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
Jason Wange4166622013-05-21 20:03:58 +00001428 schedule_delayed_work(&vi->refill, 0);
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001429
1430 err = xdp_rxq_info_reg(&vi->rq[i].xdp_rxq, dev, i);
1431 if (err < 0)
1432 return err;
1433
Jesper Dangaard Brouer8d5d8852018-04-17 16:46:12 +02001434 err = xdp_rxq_info_reg_mem_model(&vi->rq[i].xdp_rxq,
1435 MEM_TYPE_PAGE_SHARED, NULL);
1436 if (err < 0) {
1437 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
1438 return err;
1439 }
1440
Willem de Bruijne4e84522017-04-24 13:49:26 -04001441 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001442 virtnet_napi_tx_enable(vi, vi->sq[i].vq, &vi->sq[i].napi);
Jason Wang986a4f42012-12-07 07:04:56 +00001443 }
1444
1445 return 0;
1446}
1447
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001448static int virtnet_poll_tx(struct napi_struct *napi, int budget)
1449{
1450 struct send_queue *sq = container_of(napi, struct send_queue, napi);
1451 struct virtnet_info *vi = sq->vq->vdev->priv;
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001452 unsigned int index = vq2txq(sq->vq);
1453 struct netdev_queue *txq;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001454
Toshiaki Makita534da5e2019-01-29 09:45:54 +09001455 if (unlikely(is_xdp_raw_buffer_queue(vi, index))) {
1456 /* We don't need to enable cb for XDP */
1457 napi_complete_done(napi, 0);
1458 return 0;
1459 }
1460
1461 txq = netdev_get_tx_queue(vi->dev, index);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001462 __netif_tx_lock(txq, raw_smp_processor_id());
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001463 free_old_xmit_skbs(sq, true);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001464 __netif_tx_unlock(txq);
1465
1466 virtqueue_napi_complete(napi, sq->vq, 0);
1467
1468 if (sq->vq->num_free >= 2 + MAX_SKB_FRAGS)
1469 netif_tx_wake_queue(txq);
1470
1471 return 0;
1472}
1473
Jason Wange9d74172012-12-07 07:04:55 +00001474static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +10001475{
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001476 struct virtio_net_hdr_mrg_rxbuf *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +10001477 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +00001478 struct virtnet_info *vi = sq->vq->vdev->priv;
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001479 int num_sg;
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001480 unsigned hdr_len = vi->hdr_len;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301481 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +10001482
Johannes Berge1749612008-10-27 15:59:26 -07001483 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301484
1485 can_push = vi->any_header_sg &&
1486 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
1487 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
1488 /* Even if we can, don't push here yet as this would skew
1489 * csum_start offset below. */
1490 if (can_push)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001491 hdr = (struct virtio_net_hdr_mrg_rxbuf *)(skb->data - hdr_len);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301492 else
1493 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +10001494
Mike Rapoporte858fae2016-06-08 16:09:21 +03001495 if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
Willem de Bruijnfd3a8862018-06-06 11:23:01 -04001496 virtio_is_little_endian(vi->vdev), false,
1497 0))
Mike Rapoporte858fae2016-06-08 16:09:21 +03001498 BUG();
Rusty Russell296f96f2007-10-22 11:03:37 +10001499
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001500 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03001501 hdr->num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001502
Jason Wang547c8902015-08-27 14:53:06 +08001503 sg_init_table(sq->sg, skb_shinfo(skb)->nr_frags + (can_push ? 1 : 2));
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301504 if (can_push) {
1505 __skb_push(skb, hdr_len);
1506 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001507 if (unlikely(num_sg < 0))
1508 return num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301509 /* Pull header back to avoid skew in tx bytes calculations. */
1510 __skb_pull(skb, hdr_len);
1511 } else {
1512 sg_set_buf(sq->sg, hdr, hdr_len);
Jason A. Donenfelde2fcad52017-06-04 04:16:26 +02001513 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len);
1514 if (unlikely(num_sg < 0))
1515 return num_sg;
1516 num_sg++;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301517 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +10301518 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +10001519}
1520
Stephen Hemminger424efe92009-08-31 19:50:51 +00001521static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -05001522{
1523 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001524 int qnum = skb_get_queue_mapping(skb);
1525 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301526 int err;
Michael S. Tsirkin4b7fd2e62014-10-15 16:23:28 +03001527 struct netdev_queue *txq = netdev_get_tx_queue(dev, qnum);
1528 bool kick = !skb->xmit_more;
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001529 bool use_napi = sq->napi.weight;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001530
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001531 /* Free up any pending old buffers before queueing new ones. */
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001532 free_old_xmit_skbs(sq, false);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -05001533
Willem de Bruijnbdb12e02017-04-24 13:49:30 -04001534 if (use_napi && kick)
1535 virtqueue_enable_cb_delayed(sq->vq);
1536
Jacob Keller074c3582014-06-25 02:37:13 +00001537 /* timestamp packet in software */
1538 skb_tx_timestamp(skb);
1539
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001540 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001541 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -06001542
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301543 /* This should not happen! */
Jason Wang681daee22014-03-26 13:03:00 +08001544 if (unlikely(err)) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +10301545 dev->stats.tx_fifo_errors++;
1546 if (net_ratelimit())
1547 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001548 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001549 dev->stats.tx_dropped++;
Eric W. Biederman85e94522014-03-15 18:43:33 -07001550 dev_kfree_skb_any(skb);
Rusty Russell58eba97d2010-07-02 16:34:01 +00001551 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -05001552 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -07001553
Rusty Russell48925e32009-09-24 09:59:20 -06001554 /* Don't wait up for transmitted skbs to be freed. */
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001555 if (!use_napi) {
1556 skb_orphan(skb);
1557 nf_reset(skb);
1558 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001559
Michael S. Tsirkin60302ff2015-04-02 13:05:47 +02001560 /* If running out of space, stop queue to avoid getting packets that we
1561 * are then unable to transmit.
1562 * An alternative would be to force queuing layer to requeue the skb by
1563 * returning NETDEV_TX_BUSY. However, NETDEV_TX_BUSY should not be
1564 * returned in a normal path of operation: it means that driver is not
1565 * maintaining the TX queue stop/start state properly, and causes
1566 * the stack to do a non-trivial amount of useless work.
1567 * Since most packets only take 1 or 2 ring slots, stopping the queue
1568 * early means 16 slots are typically wasted.
stephen hemmingerd631b942015-03-24 16:22:07 -07001569 */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001570 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001571 netif_stop_subqueue(dev, qnum);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001572 if (!use_napi &&
1573 unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -06001574 /* More just got used, free them then recheck. */
Michael S. Tsirkindf133f32019-01-17 23:20:07 -05001575 free_old_xmit_skbs(sq, false);
Linus Torvaldsb7dfde92012-12-20 08:37:04 -08001576 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +00001577 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +00001578 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -06001579 }
1580 }
Rusty Russell99ffc692008-05-02 21:50:46 -05001581 }
Rusty Russell48925e32009-09-24 09:59:20 -06001582
Toshiaki Makita461f03d2018-07-23 23:36:09 +09001583 if (kick || netif_xmit_stopped(txq)) {
1584 if (virtqueue_kick_prepare(sq->vq) && virtqueue_notify(sq->vq)) {
1585 u64_stats_update_begin(&sq->stats.syncp);
1586 sq->stats.kicks++;
1587 u64_stats_update_end(&sq->stats.syncp);
1588 }
1589 }
David S. Miller0b725a22014-08-25 15:51:53 -07001590
Rusty Russell48925e32009-09-24 09:59:20 -06001591 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +10001592}
1593
Amos Kong40cbfc32013-01-21 01:17:21 +00001594/*
1595 * Send command via the control virtqueue and check status. Commands
1596 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -08001597 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +00001598 */
1599static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001600 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +00001601{
Rusty Russellf7bc9592013-03-20 15:44:28 +10301602 struct scatterlist *sgs[4], hdr, stat;
stephen hemmingerd24bae32013-12-09 16:17:40 -08001603 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +00001604
1605 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +10301606 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +00001607
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001608 vi->ctrl->status = ~0;
1609 vi->ctrl->hdr.class = class;
1610 vi->ctrl->hdr.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +10301611 /* Add header */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001612 sg_init_one(&hdr, &vi->ctrl->hdr, sizeof(vi->ctrl->hdr));
Rusty Russellf7bc9592013-03-20 15:44:28 +10301613 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +00001614
Rusty Russellf7bc9592013-03-20 15:44:28 +10301615 if (out)
1616 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +00001617
Rusty Russellf7bc9592013-03-20 15:44:28 +10301618 /* Add return status. */
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001619 sg_init_one(&stat, &vi->ctrl->status, sizeof(vi->ctrl->status));
stephen hemmingerd24bae32013-12-09 16:17:40 -08001620 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +00001621
stephen hemmingerd24bae32013-12-09 16:17:40 -08001622 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
Rusty Russella7c58142014-03-13 11:23:39 +10301623 virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC);
Amos Kong40cbfc32013-01-21 01:17:21 +00001624
Heinz Graalfs67975902013-10-29 09:40:02 +10301625 if (unlikely(!virtqueue_kick(vi->cvq)))
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001626 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001627
1628 /* Spin for a response, the kick causes an ioport write, trapping
1629 * into the hypervisor, so the request should be handled immediately.
1630 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +10301631 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
1632 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +00001633 cpu_relax();
1634
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001635 return vi->ctrl->status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +00001636}
1637
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001638static int virtnet_set_mac_address(struct net_device *dev, void *p)
1639{
1640 struct virtnet_info *vi = netdev_priv(dev);
1641 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001642 int ret;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001643 struct sockaddr *addr;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001644 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001645
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07001646 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
1647 return -EOPNOTSUPP;
1648
Shyam Saini801822d2016-12-24 00:44:58 +05301649 addr = kmemdup(p, sizeof(*addr), GFP_KERNEL);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001650 if (!addr)
1651 return -ENOMEM;
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001652
1653 ret = eth_prepare_mac_addr_change(dev, addr);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001654 if (ret)
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001655 goto out;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001656
Amos Kong7e58d5a2013-01-21 01:17:23 +00001657 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
1658 sg_init_one(&sg, addr->sa_data, dev->addr_len);
1659 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001660 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +00001661 dev_warn(&vdev->dev,
1662 "Failed to set mac address by vq command.\n");
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001663 ret = -EINVAL;
1664 goto out;
Amos Kong7e58d5a2013-01-21 01:17:23 +00001665 }
Michael S. Tsirkin7e93a022014-11-26 15:58:28 +02001666 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC) &&
1667 !virtio_has_feature(vdev, VIRTIO_F_VERSION_1)) {
Rusty Russell855e0c52013-10-14 18:11:51 +10301668 unsigned int i;
1669
1670 /* Naturally, this has an atomicity problem. */
1671 for (i = 0; i < dev->addr_len; i++)
1672 virtio_cwrite8(vdev,
1673 offsetof(struct virtio_net_config, mac) +
1674 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +00001675 }
1676
1677 eth_commit_mac_addr_change(dev, p);
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001678 ret = 0;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001679
Andy Lutomirskie37e2ff2016-12-05 18:10:58 -08001680out:
1681 kfree(addr);
1682 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001683}
1684
stephen hemmingerbc1f4472017-01-06 19:12:52 -08001685static void virtnet_stats(struct net_device *dev,
1686 struct rtnl_link_stats64 *tot)
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001687{
1688 struct virtnet_info *vi = netdev_priv(dev);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001689 unsigned int start;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001690 int i;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001691
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001692 for (i = 0; i < vi->max_queue_pairs; i++) {
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001693 u64 tpackets, tbytes, rpackets, rbytes, rdrops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001694 struct receive_queue *rq = &vi->rq[i];
1695 struct send_queue *sq = &vi->sq[i];
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001696
1697 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001698 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
1699 tpackets = sq->stats.packets;
1700 tbytes = sq->stats.bytes;
1701 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +00001702
1703 do {
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001704 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
Jason Wangd46eeea2018-07-31 17:43:39 +08001705 rpackets = rq->stats.packets;
1706 rbytes = rq->stats.bytes;
1707 rdrops = rq->stats.drops;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09001708 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001709
1710 tot->rx_packets += rpackets;
1711 tot->tx_packets += tpackets;
1712 tot->rx_bytes += rbytes;
1713 tot->tx_bytes += tbytes;
Toshiaki Makita2c4a2f72018-07-23 23:36:06 +09001714 tot->rx_dropped += rdrops;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001715 }
1716
1717 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +00001718 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001719 tot->rx_length_errors = dev->stats.rx_length_errors;
1720 tot->rx_frame_errors = dev->stats.rx_frame_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001721}
1722
Jason Wang586d17c2012-04-11 20:43:52 +00001723static void virtnet_ack_link_announce(struct virtnet_info *vi)
1724{
1725 rtnl_lock();
1726 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001727 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +00001728 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1729 rtnl_unlock();
1730}
1731
John Fastabend473153292017-02-02 19:14:32 -08001732static int _virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
Jason Wang986a4f42012-12-07 07:04:56 +00001733{
1734 struct scatterlist sg;
Jason Wang986a4f42012-12-07 07:04:56 +00001735 struct net_device *dev = vi->dev;
1736
1737 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1738 return 0;
1739
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001740 vi->ctrl->mq.virtqueue_pairs = cpu_to_virtio16(vi->vdev, queue_pairs);
1741 sg_init_one(&sg, &vi->ctrl->mq, sizeof(vi->ctrl->mq));
Jason Wang986a4f42012-12-07 07:04:56 +00001742
1743 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001744 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001745 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1746 queue_pairs);
1747 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301748 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001749 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001750 /* virtnet_open() will refill when device is going to up. */
1751 if (dev->flags & IFF_UP)
1752 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301753 }
Jason Wang986a4f42012-12-07 07:04:56 +00001754
1755 return 0;
1756}
1757
John Fastabend473153292017-02-02 19:14:32 -08001758static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1759{
1760 int err;
1761
1762 rtnl_lock();
1763 err = _virtnet_set_queues(vi, queue_pairs);
1764 rtnl_unlock();
1765 return err;
1766}
1767
Rusty Russell296f96f2007-10-22 11:03:37 +10001768static int virtnet_close(struct net_device *dev)
1769{
1770 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001771 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001772
Rusty Russellb2baed62011-12-29 00:42:38 +00001773 /* Make sure refill_work doesn't re-enable napi! */
1774 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001775
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001776 for (i = 0; i < vi->max_queue_pairs; i++) {
Jesper Dangaard Brouer754b8a22018-01-03 11:26:04 +01001777 xdp_rxq_info_unreg(&vi->rq[i].xdp_rxq);
Jason Wang986a4f42012-12-07 07:04:56 +00001778 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04001779 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04001780 }
Rusty Russell296f96f2007-10-22 11:03:37 +10001781
Rusty Russell296f96f2007-10-22 11:03:37 +10001782 return 0;
1783}
1784
Alex Williamson2af76982009-02-04 09:02:40 +00001785static void virtnet_set_rx_mode(struct net_device *dev)
1786{
1787 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001788 struct scatterlist sg[2];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001789 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001790 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001791 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001792 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001793 void *buf;
1794 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001795
stephen hemminger788a8b62013-12-09 16:18:45 -08001796 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001797 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1798 return;
1799
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001800 vi->ctrl->promisc = ((dev->flags & IFF_PROMISC) != 0);
1801 vi->ctrl->allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001802
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001803 sg_init_one(sg, &vi->ctrl->promisc, sizeof(vi->ctrl->promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001804
1805 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001806 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001807 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001808 vi->ctrl->promisc ? "en" : "dis");
Alex Williamson2af76982009-02-04 09:02:40 +00001809
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001810 sg_init_one(sg, &vi->ctrl->allmulti, sizeof(vi->ctrl->allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001811
1812 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001813 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001814 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001815 vi->ctrl->allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001816
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001817 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001818 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001819 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001820 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1821 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1822 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001823 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001824 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001825
Alex Williamson23e258e2009-05-01 17:27:56 +00001826 sg_init_table(sg, 2);
1827
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001828 /* Store the unicast list and count in the front of the buffer */
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001829 mac_data->entries = cpu_to_virtio32(vi->vdev, uc_count);
Jiri Pirkoccffad252009-05-22 23:22:17 +00001830 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001831 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001832 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001833
1834 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001835 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001836
1837 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001838 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001839
Michael S. Tsirkinfdd819b2014-10-07 16:39:48 +02001840 mac_data->entries = cpu_to_virtio32(vi->vdev, mc_count);
Jiri Pirko567ec872010-02-23 23:17:07 +00001841 i = 0;
Jiri Pirko22bedad32010-04-01 21:22:57 +00001842 netdev_for_each_mc_addr(ha, dev)
1843 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001844
1845 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001846 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001847
1848 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001849 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001850 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001851
1852 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001853}
1854
Patrick McHardy80d5c362013-04-19 02:04:28 +00001855static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1856 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001857{
1858 struct virtnet_info *vi = netdev_priv(dev);
1859 struct scatterlist sg;
1860
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001861 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001862 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001863
1864 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001865 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001866 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001867 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001868}
1869
Patrick McHardy80d5c362013-04-19 02:04:28 +00001870static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1871 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001872{
1873 struct virtnet_info *vi = netdev_priv(dev);
1874 struct scatterlist sg;
1875
Michael S. Tsirkind7fad4c2018-04-19 08:30:49 +03001876 vi->ctrl->vid = cpu_to_virtio16(vi->vdev, vid);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03001877 sg_init_one(&sg, &vi->ctrl->vid, sizeof(vi->ctrl->vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001878
1879 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001880 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001881 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001882 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001883}
1884
Wanlong Gao8898c212013-01-24 23:51:30 +00001885static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001886{
1887 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001888
1889 if (vi->affinity_hint_set) {
1890 for (i = 0; i < vi->max_queue_pairs; i++) {
Caleb Raitto19e226e2018-08-09 18:18:28 -07001891 virtqueue_set_affinity(vi->rq[i].vq, NULL);
1892 virtqueue_set_affinity(vi->sq[i].vq, NULL);
Wanlong Gao8898c212013-01-24 23:51:30 +00001893 }
1894
1895 vi->affinity_hint_set = false;
1896 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001897}
1898
1899static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001900{
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001901 cpumask_var_t mask;
1902 int stragglers;
1903 int group_size;
1904 int i, j, cpu;
1905 int num_cpu;
1906 int stride;
Jason Wang986a4f42012-12-07 07:04:56 +00001907
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001908 if (!zalloc_cpumask_var(&mask, GFP_KERNEL)) {
Wanlong Gao8898c212013-01-24 23:51:30 +00001909 virtnet_clean_affinity(vi, -1);
1910 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001911 }
1912
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001913 num_cpu = num_online_cpus();
1914 stride = max_t(int, num_cpu / vi->curr_queue_pairs, 1);
1915 stragglers = num_cpu >= vi->curr_queue_pairs ?
1916 num_cpu % vi->curr_queue_pairs :
1917 0;
1918 cpu = cpumask_next(-1, cpu_online_mask);
Andrei Vagin4d99f662018-08-08 20:07:35 -07001919
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001920 for (i = 0; i < vi->curr_queue_pairs; i++) {
1921 group_size = stride + (i < stragglers ? 1 : 0);
1922
1923 for (j = 0; j < group_size; j++) {
1924 cpumask_set_cpu(cpu, mask);
1925 cpu = cpumask_next_wrap(cpu, cpu_online_mask,
1926 nr_cpu_ids, false);
1927 }
1928 virtqueue_set_affinity(vi->rq[i].vq, mask);
1929 virtqueue_set_affinity(vi->sq[i].vq, mask);
1930 __netif_set_xps_queue(vi->dev, cpumask_bits(mask), i, false);
1931 cpumask_clear(mask);
Jason Wang986a4f42012-12-07 07:04:56 +00001932 }
1933
Wanlong Gao8898c212013-01-24 23:51:30 +00001934 vi->affinity_hint_set = true;
Caleb Raitto2ca653d2018-08-09 17:28:40 -07001935 free_cpumask_var(mask);
Jason Wang986a4f42012-12-07 07:04:56 +00001936}
1937
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001938static int virtnet_cpu_online(unsigned int cpu, struct hlist_node *node)
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001939{
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001940 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1941 node);
1942 virtnet_set_affinity(vi);
1943 return 0;
1944}
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001945
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001946static int virtnet_cpu_dead(unsigned int cpu, struct hlist_node *node)
1947{
1948 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1949 node_dead);
1950 virtnet_set_affinity(vi);
1951 return 0;
1952}
Jason Wang3ab098d2013-10-15 11:18:58 +08001953
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02001954static int virtnet_cpu_down_prep(unsigned int cpu, struct hlist_node *node)
1955{
1956 struct virtnet_info *vi = hlist_entry_safe(node, struct virtnet_info,
1957 node);
1958
1959 virtnet_clean_affinity(vi, cpu);
1960 return 0;
1961}
1962
1963static enum cpuhp_state virtionet_online;
1964
1965static int virtnet_cpu_notif_add(struct virtnet_info *vi)
1966{
1967 int ret;
1968
1969 ret = cpuhp_state_add_instance_nocalls(virtionet_online, &vi->node);
1970 if (ret)
1971 return ret;
1972 ret = cpuhp_state_add_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1973 &vi->node_dead);
1974 if (!ret)
1975 return ret;
1976 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1977 return ret;
1978}
1979
1980static void virtnet_cpu_notif_remove(struct virtnet_info *vi)
1981{
1982 cpuhp_state_remove_instance_nocalls(virtionet_online, &vi->node);
1983 cpuhp_state_remove_instance_nocalls(CPUHP_VIRT_NET_DEAD,
1984 &vi->node_dead);
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001985}
1986
Rick Jones8f9f4662011-10-19 08:10:59 +00001987static void virtnet_get_ringparam(struct net_device *dev,
1988 struct ethtool_ringparam *ring)
1989{
1990 struct virtnet_info *vi = netdev_priv(dev);
1991
Jason Wang986a4f42012-12-07 07:04:56 +00001992 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1993 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001994 ring->rx_pending = ring->rx_max_pending;
1995 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001996}
1997
Rick Jones66846042011-11-14 14:17:08 +00001998
1999static void virtnet_get_drvinfo(struct net_device *dev,
2000 struct ethtool_drvinfo *info)
2001{
2002 struct virtnet_info *vi = netdev_priv(dev);
2003 struct virtio_device *vdev = vi->vdev;
2004
2005 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
2006 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
2007 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
2008
2009}
2010
Jason Wangd73bcd22012-12-07 07:04:57 +00002011/* TODO: Eliminate OOO packets during switching */
2012static int virtnet_set_channels(struct net_device *dev,
2013 struct ethtool_channels *channels)
2014{
2015 struct virtnet_info *vi = netdev_priv(dev);
2016 u16 queue_pairs = channels->combined_count;
2017 int err;
2018
2019 /* We don't support separate rx/tx channels.
2020 * We don't allow setting 'other' channels.
2021 */
2022 if (channels->rx_count || channels->tx_count || channels->other_count)
2023 return -EINVAL;
2024
Amos Kongc18e9cd2014-04-18 13:45:41 +08002025 if (queue_pairs > vi->max_queue_pairs || queue_pairs == 0)
Jason Wangd73bcd22012-12-07 07:04:57 +00002026 return -EINVAL;
2027
John Fastabendf600b692016-12-15 12:13:24 -08002028 /* For now we don't support modifying channels while XDP is loaded
2029 * also when XDP is loaded all RX queues have XDP programs so we only
2030 * need to check a single RX queue.
2031 */
2032 if (vi->rq[0].xdp_prog)
2033 return -EINVAL;
2034
Wanlong Gao47be2472013-01-24 23:51:29 +00002035 get_online_cpus();
John Fastabend473153292017-02-02 19:14:32 -08002036 err = _virtnet_set_queues(vi, queue_pairs);
Jason Wangd73bcd22012-12-07 07:04:57 +00002037 if (!err) {
2038 netif_set_real_num_tx_queues(dev, queue_pairs);
2039 netif_set_real_num_rx_queues(dev, queue_pairs);
2040
Wanlong Gao8898c212013-01-24 23:51:30 +00002041 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00002042 }
Wanlong Gao47be2472013-01-24 23:51:29 +00002043 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00002044
2045 return err;
2046}
2047
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002048static void virtnet_get_strings(struct net_device *dev, u32 stringset, u8 *data)
2049{
2050 struct virtnet_info *vi = netdev_priv(dev);
2051 char *p = (char *)data;
2052 unsigned int i, j;
2053
2054 switch (stringset) {
2055 case ETH_SS_STATS:
2056 for (i = 0; i < vi->curr_queue_pairs; i++) {
2057 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2058 snprintf(p, ETH_GSTRING_LEN, "rx_queue_%u_%s",
2059 i, virtnet_rq_stats_desc[j].desc);
2060 p += ETH_GSTRING_LEN;
2061 }
2062 }
2063
2064 for (i = 0; i < vi->curr_queue_pairs; i++) {
2065 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2066 snprintf(p, ETH_GSTRING_LEN, "tx_queue_%u_%s",
2067 i, virtnet_sq_stats_desc[j].desc);
2068 p += ETH_GSTRING_LEN;
2069 }
2070 }
2071 break;
2072 }
2073}
2074
2075static int virtnet_get_sset_count(struct net_device *dev, int sset)
2076{
2077 struct virtnet_info *vi = netdev_priv(dev);
2078
2079 switch (sset) {
2080 case ETH_SS_STATS:
2081 return vi->curr_queue_pairs * (VIRTNET_RQ_STATS_LEN +
2082 VIRTNET_SQ_STATS_LEN);
2083 default:
2084 return -EOPNOTSUPP;
2085 }
2086}
2087
2088static void virtnet_get_ethtool_stats(struct net_device *dev,
2089 struct ethtool_stats *stats, u64 *data)
2090{
2091 struct virtnet_info *vi = netdev_priv(dev);
2092 unsigned int idx = 0, start, i, j;
2093 const u8 *stats_base;
2094 size_t offset;
2095
2096 for (i = 0; i < vi->curr_queue_pairs; i++) {
2097 struct receive_queue *rq = &vi->rq[i];
2098
Jason Wangd46eeea2018-07-31 17:43:39 +08002099 stats_base = (u8 *)&rq->stats;
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002100 do {
2101 start = u64_stats_fetch_begin_irq(&rq->stats.syncp);
2102 for (j = 0; j < VIRTNET_RQ_STATS_LEN; j++) {
2103 offset = virtnet_rq_stats_desc[j].offset;
2104 data[idx + j] = *(u64 *)(stats_base + offset);
2105 }
2106 } while (u64_stats_fetch_retry_irq(&rq->stats.syncp, start));
2107 idx += VIRTNET_RQ_STATS_LEN;
2108 }
2109
2110 for (i = 0; i < vi->curr_queue_pairs; i++) {
2111 struct send_queue *sq = &vi->sq[i];
2112
2113 stats_base = (u8 *)&sq->stats;
2114 do {
2115 start = u64_stats_fetch_begin_irq(&sq->stats.syncp);
2116 for (j = 0; j < VIRTNET_SQ_STATS_LEN; j++) {
2117 offset = virtnet_sq_stats_desc[j].offset;
2118 data[idx + j] = *(u64 *)(stats_base + offset);
2119 }
2120 } while (u64_stats_fetch_retry_irq(&sq->stats.syncp, start));
2121 idx += VIRTNET_SQ_STATS_LEN;
2122 }
2123}
2124
Jason Wangd73bcd22012-12-07 07:04:57 +00002125static void virtnet_get_channels(struct net_device *dev,
2126 struct ethtool_channels *channels)
2127{
2128 struct virtnet_info *vi = netdev_priv(dev);
2129
2130 channels->combined_count = vi->curr_queue_pairs;
2131 channels->max_combined = vi->max_queue_pairs;
2132 channels->max_other = 0;
2133 channels->rx_count = 0;
2134 channels->tx_count = 0;
2135 channels->other_count = 0;
2136}
2137
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002138/* Check if the user is trying to change anything besides speed/duplex */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002139static bool
2140virtnet_validate_ethtool_cmd(const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002141{
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002142 struct ethtool_link_ksettings diff1 = *cmd;
2143 struct ethtool_link_ksettings diff2 = {};
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002144
Nikolay Aleksandrov0cf3ace2016-02-07 21:52:24 +01002145 /* cmd is always set so we need to clear it, validate the port type
2146 * and also without autonegotiation we can ignore advertising
2147 */
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002148 diff1.base.speed = 0;
2149 diff2.base.port = PORT_OTHER;
2150 ethtool_link_ksettings_zero_link_mode(&diff1, advertising);
2151 diff1.base.duplex = 0;
2152 diff1.base.cmd = 0;
2153 diff1.base.link_mode_masks_nwords = 0;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002154
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002155 return !memcmp(&diff1.base, &diff2.base, sizeof(diff1.base)) &&
2156 bitmap_empty(diff1.link_modes.supported,
2157 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2158 bitmap_empty(diff1.link_modes.advertising,
2159 __ETHTOOL_LINK_MODE_MASK_NBITS) &&
2160 bitmap_empty(diff1.link_modes.lp_advertising,
2161 __ETHTOOL_LINK_MODE_MASK_NBITS);
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002162}
2163
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002164static int virtnet_set_link_ksettings(struct net_device *dev,
2165 const struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002166{
2167 struct virtnet_info *vi = netdev_priv(dev);
2168 u32 speed;
2169
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002170 speed = cmd->base.speed;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002171 /* don't allow custom speed and duplex */
2172 if (!ethtool_validate_speed(speed) ||
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002173 !ethtool_validate_duplex(cmd->base.duplex) ||
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002174 !virtnet_validate_ethtool_cmd(cmd))
2175 return -EINVAL;
2176 vi->speed = speed;
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002177 vi->duplex = cmd->base.duplex;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002178
2179 return 0;
2180}
2181
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002182static int virtnet_get_link_ksettings(struct net_device *dev,
2183 struct ethtool_link_ksettings *cmd)
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002184{
2185 struct virtnet_info *vi = netdev_priv(dev);
2186
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002187 cmd->base.speed = vi->speed;
2188 cmd->base.duplex = vi->duplex;
2189 cmd->base.port = PORT_OTHER;
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002190
2191 return 0;
2192}
2193
Jason Wang0c465be2018-10-09 10:06:26 +08002194static int virtnet_set_coalesce(struct net_device *dev,
2195 struct ethtool_coalesce *ec)
2196{
2197 struct ethtool_coalesce ec_default = {
2198 .cmd = ETHTOOL_SCOALESCE,
2199 .rx_max_coalesced_frames = 1,
2200 };
2201 struct virtnet_info *vi = netdev_priv(dev);
2202 int i, napi_weight;
2203
2204 if (ec->tx_max_coalesced_frames > 1)
2205 return -EINVAL;
2206
2207 ec_default.tx_max_coalesced_frames = ec->tx_max_coalesced_frames;
2208 napi_weight = ec->tx_max_coalesced_frames ? NAPI_POLL_WEIGHT : 0;
2209
2210 /* disallow changes to fields not explicitly tested above */
2211 if (memcmp(ec, &ec_default, sizeof(ec_default)))
2212 return -EINVAL;
2213
2214 if (napi_weight ^ vi->sq[0].napi.weight) {
2215 if (dev->flags & IFF_UP)
2216 return -EBUSY;
2217 for (i = 0; i < vi->max_queue_pairs; i++)
2218 vi->sq[i].napi.weight = napi_weight;
2219 }
2220
2221 return 0;
2222}
2223
2224static int virtnet_get_coalesce(struct net_device *dev,
2225 struct ethtool_coalesce *ec)
2226{
2227 struct ethtool_coalesce ec_default = {
2228 .cmd = ETHTOOL_GCOALESCE,
2229 .rx_max_coalesced_frames = 1,
2230 };
2231 struct virtnet_info *vi = netdev_priv(dev);
2232
2233 memcpy(ec, &ec_default, sizeof(ec_default));
2234
2235 if (vi->sq[0].napi.weight)
2236 ec->tx_max_coalesced_frames = 1;
2237
2238 return 0;
2239}
2240
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01002241static void virtnet_init_settings(struct net_device *dev)
2242{
2243 struct virtnet_info *vi = netdev_priv(dev);
2244
2245 vi->speed = SPEED_UNKNOWN;
2246 vi->duplex = DUPLEX_UNKNOWN;
2247}
2248
Jason Baronfaa9b392018-01-05 17:44:54 -05002249static void virtnet_update_settings(struct virtnet_info *vi)
2250{
2251 u32 speed;
2252 u8 duplex;
2253
2254 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_SPEED_DUPLEX))
2255 return;
2256
2257 speed = virtio_cread32(vi->vdev, offsetof(struct virtio_net_config,
2258 speed));
2259 if (ethtool_validate_speed(speed))
2260 vi->speed = speed;
2261 duplex = virtio_cread8(vi->vdev, offsetof(struct virtio_net_config,
2262 duplex));
2263 if (ethtool_validate_duplex(duplex))
2264 vi->duplex = duplex;
2265}
2266
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07002267static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00002268 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002269 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00002270 .get_ringparam = virtnet_get_ringparam,
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002271 .get_strings = virtnet_get_strings,
2272 .get_sset_count = virtnet_get_sset_count,
2273 .get_ethtool_stats = virtnet_get_ethtool_stats,
Jason Wangd73bcd22012-12-07 07:04:57 +00002274 .set_channels = virtnet_set_channels,
2275 .get_channels = virtnet_get_channels,
Jacob Keller074c3582014-06-25 02:37:13 +00002276 .get_ts_info = ethtool_op_get_ts_info,
Philippe Reynesebb6b4b2017-03-21 23:24:24 +01002277 .get_link_ksettings = virtnet_get_link_ksettings,
2278 .set_link_ksettings = virtnet_set_link_ksettings,
Jason Wang0c465be2018-10-09 10:06:26 +08002279 .set_coalesce = virtnet_set_coalesce,
2280 .get_coalesce = virtnet_get_coalesce,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08002281};
2282
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002283static void virtnet_freeze_down(struct virtio_device *vdev)
2284{
2285 struct virtnet_info *vi = vdev->priv;
2286 int i;
2287
2288 /* Make sure no work handler is accessing the device */
2289 flush_work(&vi->config_work);
2290
Ake Koomsin05c998b2018-10-17 19:44:12 +09002291 netif_tx_lock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002292 netif_device_detach(vi->dev);
Ake Koomsin05c998b2018-10-17 19:44:12 +09002293 netif_tx_unlock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002294 cancel_delayed_work_sync(&vi->refill);
2295
2296 if (netif_running(vi->dev)) {
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002297 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002298 napi_disable(&vi->rq[i].napi);
Willem de Bruijn78a57b42017-04-25 15:59:17 -04002299 virtnet_napi_tx_disable(&vi->sq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002300 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002301 }
2302}
2303
2304static int init_vqs(struct virtnet_info *vi);
2305
2306static int virtnet_restore_up(struct virtio_device *vdev)
2307{
2308 struct virtnet_info *vi = vdev->priv;
2309 int err, i;
2310
2311 err = init_vqs(vi);
2312 if (err)
2313 return err;
2314
2315 virtio_device_ready(vdev);
2316
2317 if (netif_running(vi->dev)) {
2318 for (i = 0; i < vi->curr_queue_pairs; i++)
2319 if (!try_fill_recv(vi, &vi->rq[i], GFP_KERNEL))
2320 schedule_delayed_work(&vi->refill, 0);
2321
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002322 for (i = 0; i < vi->max_queue_pairs; i++) {
Willem de Bruijne4e84522017-04-24 13:49:26 -04002323 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002324 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2325 &vi->sq[i].napi);
2326 }
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002327 }
2328
Ake Koomsin05c998b2018-10-17 19:44:12 +09002329 netif_tx_lock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002330 netif_device_attach(vi->dev);
Ake Koomsin05c998b2018-10-17 19:44:12 +09002331 netif_tx_unlock_bh(vi->dev);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08002332 return err;
2333}
2334
Jason Wang3f935222017-07-19 16:54:49 +08002335static int virtnet_set_guest_offloads(struct virtnet_info *vi, u64 offloads)
2336{
2337 struct scatterlist sg;
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002338 vi->ctrl->offloads = cpu_to_virtio64(vi->vdev, offloads);
Jason Wang3f935222017-07-19 16:54:49 +08002339
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002340 sg_init_one(&sg, &vi->ctrl->offloads, sizeof(vi->ctrl->offloads));
Jason Wang3f935222017-07-19 16:54:49 +08002341
2342 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_GUEST_OFFLOADS,
2343 VIRTIO_NET_CTRL_GUEST_OFFLOADS_SET, &sg)) {
2344 dev_warn(&vi->dev->dev, "Fail to set guest offload. \n");
2345 return -EINVAL;
2346 }
2347
2348 return 0;
2349}
2350
2351static int virtnet_clear_guest_offloads(struct virtnet_info *vi)
2352{
2353 u64 offloads = 0;
2354
2355 if (!vi->guest_offloads)
2356 return 0;
2357
Jason Wang3f935222017-07-19 16:54:49 +08002358 return virtnet_set_guest_offloads(vi, offloads);
2359}
2360
2361static int virtnet_restore_guest_offloads(struct virtnet_info *vi)
2362{
2363 u64 offloads = vi->guest_offloads;
2364
2365 if (!vi->guest_offloads)
2366 return 0;
Jason Wang3f935222017-07-19 16:54:49 +08002367
2368 return virtnet_set_guest_offloads(vi, offloads);
2369}
2370
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002371static int virtnet_xdp_set(struct net_device *dev, struct bpf_prog *prog,
2372 struct netlink_ext_ack *extack)
John Fastabendf600b692016-12-15 12:13:24 -08002373{
2374 unsigned long int max_sz = PAGE_SIZE - sizeof(struct padded_vnet_hdr);
2375 struct virtnet_info *vi = netdev_priv(dev);
2376 struct bpf_prog *old_prog;
Jason Wang017b29c2017-02-20 11:50:20 +08002377 u16 xdp_qp = 0, curr_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002378 int i, err;
John Fastabendf600b692016-12-15 12:13:24 -08002379
Jason Wang3f935222017-07-19 16:54:49 +08002380 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS)
2381 && (virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO4) ||
2382 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_TSO6) ||
2383 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_ECN) ||
Jason Wang18ba58e2018-11-22 14:36:31 +08002384 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_UFO) ||
2385 virtio_has_feature(vi->vdev, VIRTIO_NET_F_GUEST_CSUM))) {
2386 NL_SET_ERR_MSG_MOD(extack, "Can't set XDP while host is implementing LRO/CSUM, disable LRO/CSUM first");
John Fastabendf600b692016-12-15 12:13:24 -08002387 return -EOPNOTSUPP;
2388 }
2389
2390 if (vi->mergeable_rx_bufs && !vi->any_header_sg) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002391 NL_SET_ERR_MSG_MOD(extack, "XDP expects header/data in single page, any_header_sg required");
John Fastabendf600b692016-12-15 12:13:24 -08002392 return -EINVAL;
2393 }
2394
2395 if (dev->mtu > max_sz) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002396 NL_SET_ERR_MSG_MOD(extack, "MTU too large to enable XDP");
John Fastabendf600b692016-12-15 12:13:24 -08002397 netdev_warn(dev, "XDP requires MTU less than %lu\n", max_sz);
2398 return -EINVAL;
2399 }
2400
John Fastabend672aafd2016-12-15 12:13:49 -08002401 curr_qp = vi->curr_queue_pairs - vi->xdp_queue_pairs;
2402 if (prog)
2403 xdp_qp = nr_cpu_ids;
2404
2405 /* XDP requires extra queues for XDP_TX */
2406 if (curr_qp + xdp_qp > vi->max_queue_pairs) {
Daniel Borkmann4d463c42017-05-03 00:39:17 +02002407 NL_SET_ERR_MSG_MOD(extack, "Too few free TX rings available");
John Fastabend672aafd2016-12-15 12:13:49 -08002408 netdev_warn(dev, "request %i queues but max is %i\n",
2409 curr_qp + xdp_qp, vi->max_queue_pairs);
2410 return -ENOMEM;
2411 }
2412
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002413 old_prog = rtnl_dereference(vi->rq[0].xdp_prog);
2414 if (!prog && !old_prog)
2415 return 0;
2416
John Fastabend2de2f7f2017-02-02 19:16:29 -08002417 if (prog) {
2418 prog = bpf_prog_add(prog, vi->max_queue_pairs - 1);
2419 if (IS_ERR(prog))
2420 return PTR_ERR(prog);
2421 }
2422
Jason Wang4941d472017-07-19 16:54:48 +08002423 /* Make sure NAPI is not using any XDP TX queues for RX. */
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002424 if (netif_running(dev)) {
2425 for (i = 0; i < vi->max_queue_pairs; i++) {
Jason Wang4e09ff52018-02-28 18:20:04 +08002426 napi_disable(&vi->rq[i].napi);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002427 virtnet_napi_tx_disable(&vi->sq[i].napi);
2428 }
2429 }
John Fastabendf600b692016-12-15 12:13:24 -08002430
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002431 if (!prog) {
2432 for (i = 0; i < vi->max_queue_pairs; i++) {
2433 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
2434 if (i == 0)
2435 virtnet_restore_guest_offloads(vi);
2436 }
2437 synchronize_net();
2438 }
2439
Jason Wang4941d472017-07-19 16:54:48 +08002440 err = _virtnet_set_queues(vi, curr_qp + xdp_qp);
2441 if (err)
2442 goto err;
Toshiaki Makita188313c2019-01-29 09:45:55 +09002443 netif_set_real_num_rx_queues(dev, curr_qp + xdp_qp);
Jason Wang4941d472017-07-19 16:54:48 +08002444 vi->xdp_queue_pairs = xdp_qp;
John Fastabend672aafd2016-12-15 12:13:49 -08002445
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002446 if (prog) {
2447 for (i = 0; i < vi->max_queue_pairs; i++) {
2448 rcu_assign_pointer(vi->rq[i].xdp_prog, prog);
2449 if (i == 0 && !old_prog)
Jason Wang3f935222017-07-19 16:54:49 +08002450 virtnet_clear_guest_offloads(vi);
Jason Wang3f935222017-07-19 16:54:49 +08002451 }
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002452 }
2453
2454 for (i = 0; i < vi->max_queue_pairs; i++) {
John Fastabendf600b692016-12-15 12:13:24 -08002455 if (old_prog)
2456 bpf_prog_put(old_prog);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002457 if (netif_running(dev)) {
Jason Wang4e09ff52018-02-28 18:20:04 +08002458 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002459 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2460 &vi->sq[i].napi);
2461 }
John Fastabendf600b692016-12-15 12:13:24 -08002462 }
2463
2464 return 0;
John Fastabend2de2f7f2017-02-02 19:16:29 -08002465
Jason Wang4941d472017-07-19 16:54:48 +08002466err:
Toshiaki Makita03aa6d32019-01-29 09:45:57 +09002467 if (!prog) {
2468 virtnet_clear_guest_offloads(vi);
2469 for (i = 0; i < vi->max_queue_pairs; i++)
2470 rcu_assign_pointer(vi->rq[i].xdp_prog, old_prog);
2471 }
2472
Toshiaki Makita8be4d9a2019-01-29 09:45:53 +09002473 if (netif_running(dev)) {
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002474 for (i = 0; i < vi->max_queue_pairs; i++) {
Toshiaki Makita8be4d9a2019-01-29 09:45:53 +09002475 virtnet_napi_enable(vi->rq[i].vq, &vi->rq[i].napi);
Toshiaki Makita534da5e2019-01-29 09:45:54 +09002476 virtnet_napi_tx_enable(vi, vi->sq[i].vq,
2477 &vi->sq[i].napi);
2478 }
Toshiaki Makita8be4d9a2019-01-29 09:45:53 +09002479 }
John Fastabend2de2f7f2017-02-02 19:16:29 -08002480 if (prog)
2481 bpf_prog_sub(prog, vi->max_queue_pairs - 1);
2482 return err;
John Fastabendf600b692016-12-15 12:13:24 -08002483}
2484
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002485static u32 virtnet_xdp_query(struct net_device *dev)
John Fastabendf600b692016-12-15 12:13:24 -08002486{
2487 struct virtnet_info *vi = netdev_priv(dev);
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002488 const struct bpf_prog *xdp_prog;
John Fastabendf600b692016-12-15 12:13:24 -08002489 int i;
2490
2491 for (i = 0; i < vi->max_queue_pairs; i++) {
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002492 xdp_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2493 if (xdp_prog)
2494 return xdp_prog->aux->id;
John Fastabendf600b692016-12-15 12:13:24 -08002495 }
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002496 return 0;
John Fastabendf600b692016-12-15 12:13:24 -08002497}
2498
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002499static int virtnet_xdp(struct net_device *dev, struct netdev_bpf *xdp)
John Fastabendf600b692016-12-15 12:13:24 -08002500{
2501 switch (xdp->command) {
2502 case XDP_SETUP_PROG:
Jakub Kicinski9861ce02017-04-30 21:46:48 -07002503 return virtnet_xdp_set(dev, xdp->prog, xdp->extack);
John Fastabendf600b692016-12-15 12:13:24 -08002504 case XDP_QUERY_PROG:
Martin KaFai Lau5b0e6622017-06-15 17:29:12 -07002505 xdp->prog_id = virtnet_xdp_query(dev);
John Fastabendf600b692016-12-15 12:13:24 -08002506 return 0;
2507 default:
2508 return -EINVAL;
2509 }
2510}
2511
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002512static int virtnet_get_phys_port_name(struct net_device *dev, char *buf,
2513 size_t len)
2514{
2515 struct virtnet_info *vi = netdev_priv(dev);
2516 int ret;
2517
2518 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STANDBY))
2519 return -EOPNOTSUPP;
2520
2521 ret = snprintf(buf, len, "sby");
2522 if (ret >= len)
2523 return -EOPNOTSUPP;
2524
2525 return 0;
2526}
2527
Willem de Bruijna02e8962018-12-20 17:14:54 -05002528static int virtnet_set_features(struct net_device *dev,
2529 netdev_features_t features)
2530{
2531 struct virtnet_info *vi = netdev_priv(dev);
2532 u64 offloads;
2533 int err;
2534
2535 if ((dev->features ^ features) & NETIF_F_LRO) {
2536 if (vi->xdp_queue_pairs)
2537 return -EBUSY;
2538
2539 if (features & NETIF_F_LRO)
2540 offloads = vi->guest_offloads_capable;
2541 else
2542 offloads = 0;
2543
2544 err = virtnet_set_guest_offloads(vi, offloads);
2545 if (err)
2546 return err;
2547 vi->guest_offloads = offloads;
2548 }
2549
2550 return 0;
2551}
2552
Stephen Hemminger76288b42009-01-06 10:44:22 -08002553static const struct net_device_ops virtnet_netdev = {
2554 .ndo_open = virtnet_open,
2555 .ndo_stop = virtnet_close,
2556 .ndo_start_xmit = start_xmit,
2557 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08002558 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00002559 .ndo_set_rx_mode = virtnet_set_rx_mode,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002560 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00002561 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
2562 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Jakub Kicinskif4e63522017-11-03 13:56:16 -07002563 .ndo_bpf = virtnet_xdp,
Jason Wang186b3c92017-09-19 17:42:43 +08002564 .ndo_xdp_xmit = virtnet_xdp_xmit,
Vlad Yasevich2836b4f2017-05-23 13:38:43 -04002565 .ndo_features_check = passthru_features_check,
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07002566 .ndo_get_phys_port_name = virtnet_get_phys_port_name,
Willem de Bruijna02e8962018-12-20 17:14:54 -05002567 .ndo_set_features = virtnet_set_features,
Stephen Hemminger76288b42009-01-06 10:44:22 -08002568};
2569
Jason Wang586d17c2012-04-11 20:43:52 +00002570static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002571{
Jason Wang586d17c2012-04-11 20:43:52 +00002572 struct virtnet_info *vi =
2573 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002574 u16 v;
2575
Rusty Russell855e0c52013-10-14 18:11:51 +10302576 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
2577 struct virtio_net_config, status, &v) < 0)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302578 return;
Jason Wang586d17c2012-04-11 20:43:52 +00002579
2580 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00002581 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00002582 virtnet_ack_link_announce(vi);
2583 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002584
2585 /* Ignore unknown (future) status bits */
2586 v &= VIRTIO_NET_S_LINK_UP;
2587
2588 if (vi->status == v)
Michael S. Tsirkin507613b2014-10-15 10:22:30 +10302589 return;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002590
2591 vi->status = v;
2592
2593 if (vi->status & VIRTIO_NET_S_LINK_UP) {
Jason Baronfaa9b392018-01-05 17:44:54 -05002594 virtnet_update_settings(vi);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002595 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002596 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002597 } else {
2598 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00002599 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002600 }
2601}
2602
2603static void virtnet_config_changed(struct virtio_device *vdev)
2604{
2605 struct virtnet_info *vi = vdev->priv;
2606
Tejun Heo3b07e9c2012-08-20 14:51:24 -07002607 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08002608}
2609
Jason Wang986a4f42012-12-07 07:04:56 +00002610static void virtnet_free_queues(struct virtnet_info *vi)
2611{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002612 int i;
2613
Jason Wangab3971b2015-03-12 13:57:44 +08002614 for (i = 0; i < vi->max_queue_pairs; i++) {
2615 napi_hash_del(&vi->rq[i].napi);
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002616 netif_napi_del(&vi->rq[i].napi);
Willem de Bruijnb92f1e62017-04-24 13:49:27 -04002617 netif_napi_del(&vi->sq[i].napi);
Jason Wangab3971b2015-03-12 13:57:44 +08002618 }
Andrey Vagind4fb84e2013-12-05 18:36:21 +04002619
Eric Dumazet963abe52016-11-15 22:24:12 -08002620 /* We called napi_hash_del() before netif_napi_del(),
2621 * we need to respect an RCU grace period before freeing vi->rq
2622 */
2623 synchronize_net();
2624
Jason Wang986a4f42012-12-07 07:04:56 +00002625 kfree(vi->rq);
2626 kfree(vi->sq);
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002627 kfree(vi->ctrl);
Jason Wang986a4f42012-12-07 07:04:56 +00002628}
2629
John Fastabend473153292017-02-02 19:14:32 -08002630static void _free_receive_bufs(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00002631{
John Fastabendf600b692016-12-15 12:13:24 -08002632 struct bpf_prog *old_prog;
Jason Wang986a4f42012-12-07 07:04:56 +00002633 int i;
2634
2635 for (i = 0; i < vi->max_queue_pairs; i++) {
2636 while (vi->rq[i].pages)
2637 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
John Fastabendf600b692016-12-15 12:13:24 -08002638
2639 old_prog = rtnl_dereference(vi->rq[i].xdp_prog);
2640 RCU_INIT_POINTER(vi->rq[i].xdp_prog, NULL);
2641 if (old_prog)
2642 bpf_prog_put(old_prog);
Jason Wang986a4f42012-12-07 07:04:56 +00002643 }
John Fastabend473153292017-02-02 19:14:32 -08002644}
2645
2646static void free_receive_bufs(struct virtnet_info *vi)
2647{
2648 rtnl_lock();
2649 _free_receive_bufs(vi);
John Fastabendf600b692016-12-15 12:13:24 -08002650 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00002651}
2652
Michael Daltonfb518792014-01-16 22:23:26 -08002653static void free_receive_page_frags(struct virtnet_info *vi)
2654{
2655 int i;
2656 for (i = 0; i < vi->max_queue_pairs; i++)
2657 if (vi->rq[i].alloc_frag.page)
2658 put_page(vi->rq[i].alloc_frag.page);
2659}
2660
Jason Wang986a4f42012-12-07 07:04:56 +00002661static void free_unused_bufs(struct virtnet_info *vi)
2662{
2663 void *buf;
2664 int i;
2665
2666 for (i = 0; i < vi->max_queue_pairs; i++) {
2667 struct virtqueue *vq = vi->sq[i].vq;
John Fastabend56434a02016-12-15 12:14:13 -08002668 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
John Fastabendb68df012017-01-25 18:22:48 -08002669 if (!is_xdp_raw_buffer_queue(vi, i))
John Fastabend56434a02016-12-15 12:14:13 -08002670 dev_kfree_skb(buf);
2671 else
2672 put_page(virt_to_head_page(buf));
2673 }
Jason Wang986a4f42012-12-07 07:04:56 +00002674 }
2675
2676 for (i = 0; i < vi->max_queue_pairs; i++) {
2677 struct virtqueue *vq = vi->rq[i].vq;
2678
2679 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Michael Daltonab7db912014-01-16 22:23:27 -08002680 if (vi->mergeable_rx_bufs) {
Michael S. Tsirkin680557c2017-03-06 21:29:47 +02002681 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002682 } else if (vi->big_packets) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04002683 give_pages(&vi->rq[i], buf);
Michael Daltonab7db912014-01-16 22:23:27 -08002684 } else {
Jason Wangf6b10202017-02-21 16:46:28 +08002685 put_page(virt_to_head_page(buf));
Michael Daltonab7db912014-01-16 22:23:27 -08002686 }
Jason Wang986a4f42012-12-07 07:04:56 +00002687 }
Jason Wang986a4f42012-12-07 07:04:56 +00002688 }
2689}
2690
Jason Wange9d74172012-12-07 07:04:55 +00002691static void virtnet_del_vqs(struct virtnet_info *vi)
2692{
2693 struct virtio_device *vdev = vi->vdev;
2694
Wanlong Gao8898c212013-01-24 23:51:30 +00002695 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00002696
Jason Wange9d74172012-12-07 07:04:55 +00002697 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00002698
2699 virtnet_free_queues(vi);
2700}
2701
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002702/* How large should a single buffer be so a queue full of these can fit at
2703 * least one full packet?
2704 * Logic below assumes the mergeable buffer header is used.
2705 */
2706static unsigned int mergeable_min_buf_len(struct virtnet_info *vi, struct virtqueue *vq)
2707{
2708 const unsigned int hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
2709 unsigned int rq_size = virtqueue_get_vring_size(vq);
2710 unsigned int packet_len = vi->big_packets ? IP_MAX_MTU : vi->dev->max_mtu;
2711 unsigned int buf_len = hdr_len + ETH_HLEN + VLAN_HLEN + packet_len;
2712 unsigned int min_buf_len = DIV_ROUND_UP(buf_len, rq_size);
2713
Michael S. Tsirkinf0c31922017-06-02 17:54:33 +03002714 return max(max(min_buf_len, hdr_len) - hdr_len,
2715 (unsigned int)GOOD_PACKET_LEN);
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002716}
2717
Jason Wang986a4f42012-12-07 07:04:56 +00002718static int virtnet_find_vqs(struct virtnet_info *vi)
2719{
2720 vq_callback_t **callbacks;
2721 struct virtqueue **vqs;
2722 int ret = -ENOMEM;
2723 int i, total_vqs;
2724 const char **names;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002725 bool *ctx;
Jason Wang986a4f42012-12-07 07:04:56 +00002726
2727 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
2728 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
2729 * possible control vq.
2730 */
2731 total_vqs = vi->max_queue_pairs * 2 +
2732 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
2733
2734 /* Allocate space for find_vqs parameters */
Kees Cook6396bb22018-06-12 14:03:40 -07002735 vqs = kcalloc(total_vqs, sizeof(*vqs), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002736 if (!vqs)
2737 goto err_vq;
Kees Cook6da2ec52018-06-12 13:55:00 -07002738 callbacks = kmalloc_array(total_vqs, sizeof(*callbacks), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002739 if (!callbacks)
2740 goto err_callback;
Kees Cook6da2ec52018-06-12 13:55:00 -07002741 names = kmalloc_array(total_vqs, sizeof(*names), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002742 if (!names)
2743 goto err_names;
Jason Wang192f68c2017-07-19 16:54:47 +08002744 if (!vi->big_packets || vi->mergeable_rx_bufs) {
Kees Cook6396bb22018-06-12 14:03:40 -07002745 ctx = kcalloc(total_vqs, sizeof(*ctx), GFP_KERNEL);
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002746 if (!ctx)
2747 goto err_ctx;
2748 } else {
2749 ctx = NULL;
2750 }
Jason Wang986a4f42012-12-07 07:04:56 +00002751
2752 /* Parameters for control virtqueue, if any */
2753 if (vi->has_cvq) {
2754 callbacks[total_vqs - 1] = NULL;
2755 names[total_vqs - 1] = "control";
2756 }
2757
2758 /* Allocate/initialize parameters for send/receive virtqueues */
2759 for (i = 0; i < vi->max_queue_pairs; i++) {
2760 callbacks[rxq2vq(i)] = skb_recv_done;
2761 callbacks[txq2vq(i)] = skb_xmit_done;
2762 sprintf(vi->rq[i].name, "input.%d", i);
2763 sprintf(vi->sq[i].name, "output.%d", i);
2764 names[rxq2vq(i)] = vi->rq[i].name;
2765 names[txq2vq(i)] = vi->sq[i].name;
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002766 if (ctx)
2767 ctx[rxq2vq(i)] = true;
Jason Wang986a4f42012-12-07 07:04:56 +00002768 }
2769
2770 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002771 names, ctx, NULL);
Jason Wang986a4f42012-12-07 07:04:56 +00002772 if (ret)
2773 goto err_find;
2774
2775 if (vi->has_cvq) {
2776 vi->cvq = vqs[total_vqs - 1];
2777 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00002778 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00002779 }
2780
2781 for (i = 0; i < vi->max_queue_pairs; i++) {
2782 vi->rq[i].vq = vqs[rxq2vq(i)];
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002783 vi->rq[i].min_buf_len = mergeable_min_buf_len(vi, vi->rq[i].vq);
Jason Wang986a4f42012-12-07 07:04:56 +00002784 vi->sq[i].vq = vqs[txq2vq(i)];
2785 }
2786
Tonghao Zhang2fa3c8a2018-05-31 07:16:32 -07002787 /* run here: ret == 0. */
Jason Wang986a4f42012-12-07 07:04:56 +00002788
Jason Wang986a4f42012-12-07 07:04:56 +00002789
2790err_find:
Michael S. Tsirkind45b8972017-03-06 20:31:21 +02002791 kfree(ctx);
2792err_ctx:
Jason Wang986a4f42012-12-07 07:04:56 +00002793 kfree(names);
2794err_names:
2795 kfree(callbacks);
2796err_callback:
2797 kfree(vqs);
2798err_vq:
2799 return ret;
2800}
2801
2802static int virtnet_alloc_queues(struct virtnet_info *vi)
2803{
2804 int i;
2805
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002806 vi->ctrl = kzalloc(sizeof(*vi->ctrl), GFP_KERNEL);
2807 if (!vi->ctrl)
2808 goto err_ctrl;
Kees Cook6396bb22018-06-12 14:03:40 -07002809 vi->sq = kcalloc(vi->max_queue_pairs, sizeof(*vi->sq), GFP_KERNEL);
Jason Wang986a4f42012-12-07 07:04:56 +00002810 if (!vi->sq)
2811 goto err_sq;
Kees Cook6396bb22018-06-12 14:03:40 -07002812 vi->rq = kcalloc(vi->max_queue_pairs, sizeof(*vi->rq), GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00002813 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00002814 goto err_rq;
2815
2816 INIT_DELAYED_WORK(&vi->refill, refill_work);
2817 for (i = 0; i < vi->max_queue_pairs; i++) {
2818 vi->rq[i].pages = NULL;
2819 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
2820 napi_weight);
Willem de Bruijn1d11e732017-04-27 20:37:58 -04002821 netif_tx_napi_add(vi->dev, &vi->sq[i].napi, virtnet_poll_tx,
2822 napi_tx ? napi_weight : 0);
Jason Wang986a4f42012-12-07 07:04:56 +00002823
2824 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
Johannes Berg5377d7582015-08-19 09:48:40 +02002825 ewma_pkt_len_init(&vi->rq[i].mrg_avg_pkt_len);
Jason Wang986a4f42012-12-07 07:04:56 +00002826 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002827
2828 u64_stats_init(&vi->rq[i].stats.syncp);
2829 u64_stats_init(&vi->sq[i].stats.syncp);
Jason Wang986a4f42012-12-07 07:04:56 +00002830 }
2831
2832 return 0;
2833
2834err_rq:
2835 kfree(vi->sq);
2836err_sq:
Michael S. Tsirkin12e57162018-04-19 08:30:48 +03002837 kfree(vi->ctrl);
2838err_ctrl:
Jason Wang986a4f42012-12-07 07:04:56 +00002839 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00002840}
2841
Amit Shah3f9c10b2011-12-22 16:58:31 +05302842static int init_vqs(struct virtnet_info *vi)
2843{
Jason Wang986a4f42012-12-07 07:04:56 +00002844 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302845
Jason Wang986a4f42012-12-07 07:04:56 +00002846 /* Allocate send & receive queues */
2847 ret = virtnet_alloc_queues(vi);
2848 if (ret)
2849 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302850
Jason Wang986a4f42012-12-07 07:04:56 +00002851 ret = virtnet_find_vqs(vi);
2852 if (ret)
2853 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302854
Wanlong Gao47be2472013-01-24 23:51:29 +00002855 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00002856 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00002857 put_online_cpus();
2858
Amit Shah3f9c10b2011-12-22 16:58:31 +05302859 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00002860
2861err_free:
2862 virtnet_free_queues(vi);
2863err:
2864 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05302865}
2866
Michael Daltonfbf28d72014-01-16 22:23:30 -08002867#ifdef CONFIG_SYSFS
2868static ssize_t mergeable_rx_buffer_size_show(struct netdev_rx_queue *queue,
stephen hemminger718ad682017-08-18 13:46:24 -07002869 char *buf)
Michael Daltonfbf28d72014-01-16 22:23:30 -08002870{
2871 struct virtnet_info *vi = netdev_priv(queue->dev);
2872 unsigned int queue_index = get_netdev_rx_queue_index(queue);
Jason Wang3cc81a92018-03-02 17:29:14 +08002873 unsigned int headroom = virtnet_get_headroom(vi);
2874 unsigned int tailroom = headroom ? sizeof(struct skb_shared_info) : 0;
Johannes Berg5377d7582015-08-19 09:48:40 +02002875 struct ewma_pkt_len *avg;
Michael Daltonfbf28d72014-01-16 22:23:30 -08002876
2877 BUG_ON(queue_index >= vi->max_queue_pairs);
2878 avg = &vi->rq[queue_index].mrg_avg_pkt_len;
Michael S. Tsirkind85b758f72017-03-09 02:21:21 +02002879 return sprintf(buf, "%u\n",
Jason Wang3cc81a92018-03-02 17:29:14 +08002880 get_mergeable_buf_len(&vi->rq[queue_index], avg,
2881 SKB_DATA_ALIGN(headroom + tailroom)));
Michael Daltonfbf28d72014-01-16 22:23:30 -08002882}
2883
2884static struct rx_queue_attribute mergeable_rx_buffer_size_attribute =
2885 __ATTR_RO(mergeable_rx_buffer_size);
2886
2887static struct attribute *virtio_net_mrg_rx_attrs[] = {
2888 &mergeable_rx_buffer_size_attribute.attr,
2889 NULL
2890};
2891
2892static const struct attribute_group virtio_net_mrg_rx_group = {
2893 .name = "virtio_net",
2894 .attrs = virtio_net_mrg_rx_attrs
2895};
2896#endif
2897
Jason Wang892d6eb2014-11-20 17:03:05 +08002898static bool virtnet_fail_on_feature(struct virtio_device *vdev,
2899 unsigned int fbit,
2900 const char *fname, const char *dname)
2901{
2902 if (!virtio_has_feature(vdev, fbit))
2903 return false;
2904
2905 dev_err(&vdev->dev, "device advertises feature %s but not %s",
2906 fname, dname);
2907
2908 return true;
2909}
2910
2911#define VIRTNET_FAIL_ON(vdev, fbit, dbit) \
2912 virtnet_fail_on_feature(vdev, fbit, #fbit, dbit)
2913
2914static bool virtnet_validate_features(struct virtio_device *vdev)
2915{
2916 if (!virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ) &&
2917 (VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_RX,
2918 "VIRTIO_NET_F_CTRL_VQ") ||
2919 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_VLAN,
2920 "VIRTIO_NET_F_CTRL_VQ") ||
2921 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_GUEST_ANNOUNCE,
2922 "VIRTIO_NET_F_CTRL_VQ") ||
2923 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_MQ, "VIRTIO_NET_F_CTRL_VQ") ||
2924 VIRTNET_FAIL_ON(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR,
2925 "VIRTIO_NET_F_CTRL_VQ"))) {
2926 return false;
2927 }
2928
2929 return true;
2930}
2931
Jarod Wilsond0c2c992016-10-20 13:55:21 -04002932#define MIN_MTU ETH_MIN_MTU
2933#define MAX_MTU ETH_MAX_MTU
2934
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002935static int virtnet_validate(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +10002936{
Michael S. Tsirkin6ba42242015-01-12 16:23:37 +02002937 if (!vdev->config->get) {
2938 dev_err(&vdev->dev, "%s failure: config access disabled\n",
2939 __func__);
2940 return -EINVAL;
2941 }
2942
Jason Wang892d6eb2014-11-20 17:03:05 +08002943 if (!virtnet_validate_features(vdev))
2944 return -EINVAL;
2945
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002946 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
2947 int mtu = virtio_cread16(vdev,
2948 offsetof(struct virtio_net_config,
2949 mtu));
2950 if (mtu < MIN_MTU)
2951 __virtio_clear_bit(vdev, VIRTIO_NET_F_MTU);
2952 }
2953
2954 return 0;
2955}
2956
2957static int virtnet_probe(struct virtio_device *vdev)
2958{
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09002959 int i, err = -ENOMEM;
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03002960 struct net_device *dev;
2961 struct virtnet_info *vi;
2962 u16 max_queue_pairs;
2963 int mtu;
2964
Jason Wang986a4f42012-12-07 07:04:56 +00002965 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10302966 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
2967 struct virtio_net_config,
2968 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00002969
2970 /* We need at least 2 queue's */
2971 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
2972 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
2973 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
2974 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10002975
2976 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00002977 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10002978 if (!dev)
2979 return -ENOMEM;
2980
2981 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00002982 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08002983 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10002984 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00002985
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +00002986 dev->ethtool_ops = &virtnet_ethtool_ops;
Rusty Russell296f96f2007-10-22 11:03:37 +10002987 SET_NETDEV_DEV(dev, &vdev->dev);
2988
2989 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00002990 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10002991 /* This opens up the world of extra features. */
Jason Wang48900cb2015-08-05 10:34:04 +08002992 dev->hw_features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002993 if (csum)
Jason Wang48900cb2015-08-05 10:34:04 +08002994 dev->features |= NETIF_F_HW_CSUM | NETIF_F_SG;
Michał Mirosław98e778c2011-03-31 01:01:35 +00002995
2996 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
David S. Millere078de02017-07-03 06:37:32 -07002997 dev->hw_features |= NETIF_F_TSO
Rusty Russell34a48572008-02-04 23:50:02 -05002998 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
2999 }
Rusty Russell5539ae962008-05-02 21:50:46 -05003000 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00003001 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
3002 dev->hw_features |= NETIF_F_TSO;
3003 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
3004 dev->hw_features |= NETIF_F_TSO6;
3005 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
3006 dev->hw_features |= NETIF_F_TSO_ECN;
Michał Mirosław98e778c2011-03-31 01:01:35 +00003007
Jason Wang41f2f122014-12-24 11:03:52 +08003008 dev->features |= NETIF_F_GSO_ROBUST;
3009
Michał Mirosław98e778c2011-03-31 01:01:35 +00003010 if (gso)
David S. Millere078de02017-07-03 06:37:32 -07003011 dev->features |= dev->hw_features & NETIF_F_ALL_TSO;
Michał Mirosław98e778c2011-03-31 01:01:35 +00003012 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10003013 }
Thomas Huth4f491292013-08-27 17:09:02 +02003014 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
3015 dev->features |= NETIF_F_RXCSUM;
Willem de Bruijna02e8962018-12-20 17:14:54 -05003016 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
3017 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6))
3018 dev->features |= NETIF_F_LRO;
3019 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS))
3020 dev->hw_features |= NETIF_F_LRO;
Rusty Russell296f96f2007-10-22 11:03:37 +10003021
Jason Wang4fda8302013-04-10 23:32:21 +00003022 dev->vlan_features = dev->features;
3023
Jarod Wilsond0c2c992016-10-20 13:55:21 -04003024 /* MTU range: 68 - 65535 */
3025 dev->min_mtu = MIN_MTU;
3026 dev->max_mtu = MAX_MTU;
3027
Rusty Russell296f96f2007-10-22 11:03:37 +10003028 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10303029 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
3030 virtio_cread_bytes(vdev,
3031 offsetof(struct virtio_net_config, mac),
3032 dev->dev_addr, dev->addr_len);
3033 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00003034 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003035
3036 /* Set up our device-specific information */
3037 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003038 vi->dev = dev;
3039 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01003040 vdev->priv = vi;
John Stultz827da442013-10-07 15:51:58 -07003041
Jason Wang586d17c2012-04-11 20:43:52 +00003042 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10003043
Herbert Xu97402b92008-04-18 11:24:27 +08003044 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00003045 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
3046 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
Vlad Yaseviche3e3c422015-02-03 16:36:17 -05003047 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN) ||
3048 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_UFO))
Herbert Xu97402b92008-04-18 11:24:27 +08003049 vi->big_packets = true;
3050
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08003051 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
3052 vi->mergeable_rx_bufs = true;
3053
Michael S. Tsirkind04302b2014-10-24 00:24:03 +03003054 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF) ||
3055 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03003056 vi->hdr_len = sizeof(struct virtio_net_hdr_mrg_rxbuf);
3057 else
3058 vi->hdr_len = sizeof(struct virtio_net_hdr);
3059
Michael S. Tsirkin75993302015-07-15 15:26:19 +03003060 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT) ||
3061 virtio_has_feature(vdev, VIRTIO_F_VERSION_1))
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303062 vi->any_header_sg = true;
3063
Jason Wang986a4f42012-12-07 07:04:56 +00003064 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
3065 vi->has_cvq = true;
3066
Aaron Conole14de9d12016-06-03 16:57:12 -04003067 if (virtio_has_feature(vdev, VIRTIO_NET_F_MTU)) {
3068 mtu = virtio_cread16(vdev,
3069 offsetof(struct virtio_net_config,
3070 mtu));
Aaron Conole93a205e2016-10-25 16:12:12 -04003071 if (mtu < dev->min_mtu) {
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003072 /* Should never trigger: MTU was previously validated
3073 * in virtnet_validate.
3074 */
3075 dev_err(&vdev->dev, "device MTU appears to have changed "
3076 "it is now %d < %d", mtu, dev->min_mtu);
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09003077 goto free;
Aaron Conole93a205e2016-10-25 16:12:12 -04003078 }
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02003079
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003080 dev->mtu = mtu;
3081 dev->max_mtu = mtu;
3082
Michael S. Tsirkin2e123b42017-03-08 02:14:25 +02003083 /* TODO: size buffers correctly in this case. */
3084 if (dev->mtu > ETH_DATA_LEN)
3085 vi->big_packets = true;
Aaron Conole14de9d12016-06-03 16:57:12 -04003086 }
3087
Michael S. Tsirkin012873d2014-10-24 16:55:57 +03003088 if (vi->any_header_sg)
3089 dev->needed_headroom = vi->hdr_len;
Zhangjie \(HZ\)6ebbc1a2014-04-29 18:43:22 +08003090
Jason Wang44900012016-11-25 12:37:26 +08003091 /* Enable multiqueue by default */
3092 if (num_online_cpus() >= max_queue_pairs)
3093 vi->curr_queue_pairs = max_queue_pairs;
3094 else
3095 vi->curr_queue_pairs = num_online_cpus();
Jason Wang986a4f42012-12-07 07:04:56 +00003096 vi->max_queue_pairs = max_queue_pairs;
3097
3098 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05303099 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003100 if (err)
Toshiaki Makitad7dfc5c2018-01-17 15:38:25 +09003101 goto free;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003102
Michael Daltonfbf28d72014-01-16 22:23:30 -08003103#ifdef CONFIG_SYSFS
3104 if (vi->mergeable_rx_bufs)
3105 dev->sysfs_rx_queue_group = &virtio_net_mrg_rx_group;
3106#endif
Zhi Yong Wu0f13b66b2013-11-18 21:19:27 +08003107 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
3108 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00003109
Nikolay Aleksandrov16032be2016-02-03 04:04:37 +01003110 virtnet_init_settings(dev);
3111
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003112 if (virtio_has_feature(vdev, VIRTIO_NET_F_STANDBY)) {
3113 vi->failover = net_failover_create(vi->dev);
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00003114 if (IS_ERR(vi->failover)) {
3115 err = PTR_ERR(vi->failover);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003116 goto free_vqs;
Wei Yongjun4b8e6ac2018-05-31 02:05:07 +00003117 }
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003118 }
3119
Rusty Russell296f96f2007-10-22 11:03:37 +10003120 err = register_netdev(dev);
3121 if (err) {
3122 pr_debug("virtio_net: registering device failed\n");
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003123 goto free_failover;
Rusty Russell296f96f2007-10-22 11:03:37 +10003124 }
Rusty Russellb3369c12008-02-04 23:50:02 -05003125
Michael S. Tsirkin4baf1e32014-10-15 10:22:30 +10303126 virtio_device_ready(vdev);
3127
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003128 err = virtnet_cpu_notif_add(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003129 if (err) {
3130 pr_debug("virtio_net: registering cpu notifier failed\n");
wangyunjianf00e35e2016-05-31 11:52:43 +08003131 goto free_unregister_netdev;
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003132 }
3133
Jason Wanga2208712016-12-13 14:23:05 +08003134 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang44900012016-11-25 12:37:26 +08003135
Jason Wang167c25e2010-11-10 14:45:41 +00003136 /* Assume link up if device can't report link status,
3137 otherwise get link status from config. */
Jay Vosburghbda7fab2018-03-22 14:42:41 +00003138 netif_carrier_off(dev);
Jason Wang167c25e2010-11-10 14:45:41 +00003139 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
Tejun Heo3b07e9c2012-08-20 14:51:24 -07003140 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00003141 } else {
3142 vi->status = VIRTIO_NET_S_LINK_UP;
Jason Baronfaa9b392018-01-05 17:44:54 -05003143 virtnet_update_settings(vi);
Jason Wang167c25e2010-11-10 14:45:41 +00003144 netif_carrier_on(dev);
3145 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003146
Jason Wang3f935222017-07-19 16:54:49 +08003147 for (i = 0; i < ARRAY_SIZE(guest_offloads); i++)
3148 if (virtio_has_feature(vi->vdev, guest_offloads[i]))
3149 set_bit(guest_offloads[i], &vi->guest_offloads);
Willem de Bruijna02e8962018-12-20 17:14:54 -05003150 vi->guest_offloads_capable = vi->guest_offloads;
Jason Wang3f935222017-07-19 16:54:49 +08003151
Jason Wang986a4f42012-12-07 07:04:56 +00003152 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
3153 dev->name, max_queue_pairs);
3154
Rusty Russell296f96f2007-10-22 11:03:37 +10003155 return 0;
3156
wangyunjianf00e35e2016-05-31 11:52:43 +08003157free_unregister_netdev:
Michael S. Tsirkin02465552014-10-15 10:22:31 +10303158 vi->vdev->config->reset(vdev);
3159
Rusty Russellb3369c12008-02-04 23:50:02 -05003160 unregister_netdev(dev);
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003161free_failover:
3162 net_failover_destroy(vi->failover);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003163free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00003164 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08003165 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00003166 virtnet_del_vqs(vi);
Rusty Russell296f96f2007-10-22 11:03:37 +10003167free:
3168 free_netdev(dev);
3169 return err;
3170}
3171
Amit Shah04486ed2011-12-22 16:58:32 +05303172static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10003173{
Amit Shah04486ed2011-12-22 16:58:32 +05303174 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00003175
3176 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00003177 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003178
Jason Wang986a4f42012-12-07 07:04:56 +00003179 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06003180
Michael Daltonfb518792014-01-16 22:23:26 -08003181 free_receive_page_frags(vi);
3182
Jason Wang986a4f42012-12-07 07:04:56 +00003183 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05303184}
3185
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003186static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05303187{
3188 struct virtnet_info *vi = vdev->priv;
3189
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003190 virtnet_cpu_notif_remove(vi);
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00003191
Michael S. Tsirkin102a2782014-10-15 10:22:29 +10303192 /* Make sure no work handler is accessing the device. */
3193 flush_work(&vi->config_work);
Jason Wang586d17c2012-04-11 20:43:52 +00003194
Amit Shah04486ed2011-12-22 16:58:32 +05303195 unregister_netdev(vi->dev);
3196
Sridhar Samudralaba5e4422018-05-24 09:55:17 -07003197 net_failover_destroy(vi->failover);
3198
Amit Shah04486ed2011-12-22 16:58:32 +05303199 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05003200
Rusty Russell74b25532007-11-19 11:20:42 -05003201 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10003202}
3203
Arnd Bergmann67a75192017-07-25 17:35:50 +02003204static __maybe_unused int virtnet_freeze(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303205{
3206 struct virtnet_info *vi = vdev->priv;
3207
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003208 virtnet_cpu_notif_remove(vi);
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003209 virtnet_freeze_down(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303210 remove_vq_common(vi);
3211
3212 return 0;
3213}
3214
Arnd Bergmann67a75192017-07-25 17:35:50 +02003215static __maybe_unused int virtnet_restore(struct virtio_device *vdev)
Amit Shah0741bcb2011-12-22 16:58:33 +05303216{
3217 struct virtnet_info *vi = vdev->priv;
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003218 int err;
Amit Shah0741bcb2011-12-22 16:58:33 +05303219
John Fastabend9fe7bfc2017-02-02 19:16:01 -08003220 err = virtnet_restore_up(vdev);
Amit Shah0741bcb2011-12-22 16:58:33 +05303221 if (err)
3222 return err;
Jason Wang986a4f42012-12-07 07:04:56 +00003223 virtnet_set_queues(vi, vi->curr_queue_pairs);
3224
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003225 err = virtnet_cpu_notif_add(vi);
Jason Wangec9debb2013-10-29 15:11:07 +08003226 if (err)
3227 return err;
3228
Amit Shah0741bcb2011-12-22 16:58:33 +05303229 return 0;
3230}
Amit Shah0741bcb2011-12-22 16:58:33 +05303231
Rusty Russell296f96f2007-10-22 11:03:37 +10003232static struct virtio_device_id id_table[] = {
3233 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
3234 { 0 },
3235};
3236
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003237#define VIRTNET_FEATURES \
3238 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM, \
3239 VIRTIO_NET_F_MAC, \
3240 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6, \
3241 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6, \
3242 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO, \
3243 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ, \
3244 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN, \
3245 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ, \
3246 VIRTIO_NET_F_CTRL_MAC_ADDR, \
Jason Baronfaa9b392018-01-05 17:44:54 -05003247 VIRTIO_NET_F_MTU, VIRTIO_NET_F_CTRL_GUEST_OFFLOADS, \
Sridhar Samudrala98050692018-05-24 09:55:16 -07003248 VIRTIO_NET_F_SPEED_DUPLEX, VIRTIO_NET_F_STANDBY
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003249
Rusty Russellc45a6812008-05-02 21:50:50 -05003250static unsigned int features[] = {
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003251 VIRTNET_FEATURES,
3252};
3253
3254static unsigned int features_legacy[] = {
3255 VIRTNET_FEATURES,
3256 VIRTIO_NET_F_GSO,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09303257 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05003258};
3259
Uwe Kleine-König22402522009-11-05 01:32:44 -08003260static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05003261 .feature_table = features,
3262 .feature_table_size = ARRAY_SIZE(features),
Michael S. Tsirkinf3358502016-11-04 12:55:36 +02003263 .feature_table_legacy = features_legacy,
3264 .feature_table_size_legacy = ARRAY_SIZE(features_legacy),
Rusty Russell296f96f2007-10-22 11:03:37 +10003265 .driver.name = KBUILD_MODNAME,
3266 .driver.owner = THIS_MODULE,
3267 .id_table = id_table,
Michael S. Tsirkinfe36cbe2017-03-29 19:09:14 +03003268 .validate = virtnet_validate,
Rusty Russell296f96f2007-10-22 11:03:37 +10003269 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05003270 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08003271 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09303272#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05303273 .freeze = virtnet_freeze,
3274 .restore = virtnet_restore,
3275#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10003276};
3277
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003278static __init int virtio_net_driver_init(void)
3279{
3280 int ret;
3281
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003282 ret = cpuhp_setup_state_multi(CPUHP_AP_ONLINE_DYN, "virtio/net:online",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003283 virtnet_cpu_online,
3284 virtnet_cpu_down_prep);
3285 if (ret < 0)
3286 goto out;
3287 virtionet_online = ret;
Thomas Gleixner73c1b412016-12-21 20:19:54 +01003288 ret = cpuhp_setup_state_multi(CPUHP_VIRT_NET_DEAD, "virtio/net:dead",
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003289 NULL, virtnet_cpu_dead);
3290 if (ret)
3291 goto err_dead;
3292
3293 ret = register_virtio_driver(&virtio_net_driver);
3294 if (ret)
3295 goto err_virtio;
3296 return 0;
3297err_virtio:
3298 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3299err_dead:
3300 cpuhp_remove_multi_state(virtionet_online);
3301out:
3302 return ret;
3303}
3304module_init(virtio_net_driver_init);
3305
3306static __exit void virtio_net_driver_exit(void)
3307{
Andrew Jonescfa0ebc2017-07-24 15:38:32 +02003308 unregister_virtio_driver(&virtio_net_driver);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003309 cpuhp_remove_multi_state(CPUHP_VIRT_NET_DEAD);
3310 cpuhp_remove_multi_state(virtionet_online);
Sebastian Andrzej Siewior8017c272016-08-12 19:49:43 +02003311}
3312module_exit(virtio_net_driver_exit);
Rusty Russell296f96f2007-10-22 11:03:37 +10003313
3314MODULE_DEVICE_TABLE(virtio, id_table);
3315MODULE_DESCRIPTION("Virtio network driver");
3316MODULE_LICENSE("GPL");