blob: 5ee71dccd09219a345a878a7d54d1b644530983f [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>
25#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080026#include <linux/if_vlan.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090027#include <linux/slab.h>
Wanlong Gao8de4b2f2013-01-24 23:51:31 +000028#include <linux/cpu.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100029
Amerigo Wangd34710e2013-05-09 19:50:51 +000030static int napi_weight = NAPI_POLL_WEIGHT;
Dor Laor6c0cd7c2007-12-16 15:19:43 +020031module_param(napi_weight, int, 0444);
32
Rusty Russelleb939922011-12-19 14:08:01 +000033static bool csum = true, gso = true;
Rusty Russell34a48572008-02-04 23:50:02 -050034module_param(csum, bool, 0444);
35module_param(gso, bool, 0444);
36
Rusty Russell296f96f2007-10-22 11:03:37 +100037/* FIXME: MTU in config. */
Michael Dalton5061de32013-11-14 10:41:04 -080038#define GOOD_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
39#define MERGE_BUFFER_LEN (ALIGN(GOOD_PACKET_LEN + \
40 sizeof(struct virtio_net_hdr_mrg_rxbuf), \
41 L1_CACHE_BYTES))
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080042#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100043
Rick Jones66846042011-11-14 14:17:08 +000044#define VIRTNET_DRIVER_VERSION "1.0.0"
Alex Williamson2a41f712009-02-04 09:02:34 +000045
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000046struct virtnet_stats {
Eric Dumazet83a27052012-06-05 22:35:24 +000047 struct u64_stats_sync tx_syncp;
48 struct u64_stats_sync rx_syncp;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +000049 u64 tx_bytes;
50 u64 tx_packets;
51
52 u64 rx_bytes;
53 u64 rx_packets;
54};
55
Jason Wange9d74172012-12-07 07:04:55 +000056/* Internal representation of a send virtqueue */
57struct send_queue {
58 /* Virtqueue associated with this send _queue */
59 struct virtqueue *vq;
60
61 /* TX: fragments + linear part + virtio header */
62 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +000063
64 /* Name of the send queue: output.$index */
65 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +000066};
67
68/* Internal representation of a receive virtqueue */
69struct receive_queue {
70 /* Virtqueue associated with this receive_queue */
71 struct virtqueue *vq;
72
Rusty Russell296f96f2007-10-22 11:03:37 +100073 struct napi_struct napi;
74
Jason Wange9d74172012-12-07 07:04:55 +000075 /* Chain pages by the private ptr. */
76 struct page *pages;
77
Michael Daltonfb518792014-01-16 22:23:26 -080078 /* Page frag for packet buffer allocation. */
79 struct page_frag alloc_frag;
80
Jason Wange9d74172012-12-07 07:04:55 +000081 /* RX: fragments + linear part + virtio header */
82 struct scatterlist sg[MAX_SKB_FRAGS + 2];
Jason Wang986a4f42012-12-07 07:04:56 +000083
84 /* Name of this receive queue: input.$index */
85 char name[40];
Jason Wange9d74172012-12-07 07:04:55 +000086};
87
88struct virtnet_info {
89 struct virtio_device *vdev;
90 struct virtqueue *cvq;
91 struct net_device *dev;
Jason Wang986a4f42012-12-07 07:04:56 +000092 struct send_queue *sq;
93 struct receive_queue *rq;
Jason Wange9d74172012-12-07 07:04:55 +000094 unsigned int status;
95
Jason Wang986a4f42012-12-07 07:04:56 +000096 /* Max # of queue pairs supported by the device */
97 u16 max_queue_pairs;
98
99 /* # of queue pairs currently used by the driver */
100 u16 curr_queue_pairs;
101
Herbert Xu97402b92008-04-18 11:24:27 +0800102 /* I like... big packets and I cannot lie! */
103 bool big_packets;
104
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800105 /* Host will merge rx buffers for big packets (shake it! shake it!) */
106 bool mergeable_rx_bufs;
107
Jason Wang986a4f42012-12-07 07:04:56 +0000108 /* Has control virtqueue */
109 bool has_cvq;
110
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930111 /* Host can handle any s/g split between our header and packet data */
112 bool any_header_sg;
113
Jason Wang586d17c2012-04-11 20:43:52 +0000114 /* enable config space updates */
115 bool config_enable;
116
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000117 /* Active statistics */
118 struct virtnet_stats __percpu *stats;
119
Rusty Russell3161e452009-08-26 12:22:32 -0700120 /* Work struct for refilling if we run low on memory. */
121 struct delayed_work refill;
122
Jason Wang586d17c2012-04-11 20:43:52 +0000123 /* Work struct for config space updates */
124 struct work_struct config_work;
125
126 /* Lock for config space updates */
127 struct mutex config_lock;
Jason Wang986a4f42012-12-07 07:04:56 +0000128
129 /* Does the affinity hint is set for virtqueues? */
130 bool affinity_hint_set;
Wanlong Gao47be2472013-01-24 23:51:29 +0000131
Wanlong Gao8de4b2f2013-01-24 23:51:31 +0000132 /* CPU hot plug notifier */
133 struct notifier_block nb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000134};
135
Rusty Russellb3f24692009-09-24 09:59:19 -0600136struct skb_vnet_hdr {
137 union {
138 struct virtio_net_hdr hdr;
139 struct virtio_net_hdr_mrg_rxbuf mhdr;
140 };
141};
142
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000143struct padded_vnet_hdr {
144 struct virtio_net_hdr hdr;
145 /*
146 * virtio_net_hdr should be in a separated sg buffer because of a
147 * QEMU bug, and data sg buffer shares same page with this header sg.
148 * This padding makes next sg 16 byte aligned after virtio_net_hdr.
149 */
150 char padding[6];
151};
152
Jason Wang986a4f42012-12-07 07:04:56 +0000153/* Converting between virtqueue no. and kernel tx/rx queue no.
154 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
155 */
156static int vq2txq(struct virtqueue *vq)
157{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000158 return (vq->index - 1) / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000159}
160
161static int txq2vq(int txq)
162{
163 return txq * 2 + 1;
164}
165
166static int vq2rxq(struct virtqueue *vq)
167{
Rusty Russell9d0ca6e2013-03-21 14:17:34 +0000168 return vq->index / 2;
Jason Wang986a4f42012-12-07 07:04:56 +0000169}
170
171static int rxq2vq(int rxq)
172{
173 return rxq * 2;
174}
175
Rusty Russellb3f24692009-09-24 09:59:19 -0600176static inline struct skb_vnet_hdr *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000177{
Rusty Russellb3f24692009-09-24 09:59:19 -0600178 return (struct skb_vnet_hdr *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +1000179}
180
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000181/*
182 * private is used to chain pages for big packets, put the whole
183 * most recent used list in the beginning for reuse
184 */
Jason Wange9d74172012-12-07 07:04:55 +0000185static void give_pages(struct receive_queue *rq, struct page *page)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500186{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000187 struct page *end;
188
Jason Wange9d74172012-12-07 07:04:55 +0000189 /* Find end of list, sew whole thing into vi->rq.pages. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000190 for (end = page; end->private; end = (struct page *)end->private);
Jason Wange9d74172012-12-07 07:04:55 +0000191 end->private = (unsigned long)rq->pages;
192 rq->pages = page;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500193}
194
Jason Wange9d74172012-12-07 07:04:55 +0000195static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
Rusty Russellfb6813f2008-07-25 12:06:01 -0500196{
Jason Wange9d74172012-12-07 07:04:55 +0000197 struct page *p = rq->pages;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500198
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000199 if (p) {
Jason Wange9d74172012-12-07 07:04:55 +0000200 rq->pages = (struct page *)p->private;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000201 /* clear private here, it is used to chain pages */
202 p->private = 0;
203 } else
Rusty Russellfb6813f2008-07-25 12:06:01 -0500204 p = alloc_page(gfp_mask);
205 return p;
206}
207
Jason Wange9d74172012-12-07 07:04:55 +0000208static void skb_xmit_done(struct virtqueue *vq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000209{
Jason Wange9d74172012-12-07 07:04:55 +0000210 struct virtnet_info *vi = vq->vdev->priv;
Rusty Russell296f96f2007-10-22 11:03:37 +1000211
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500212 /* Suppress further interrupts. */
Jason Wange9d74172012-12-07 07:04:55 +0000213 virtqueue_disable_cb(vq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000214
Rusty Russell363f1512008-06-08 20:51:55 +1000215 /* We were probably waiting for more output buffers. */
Jason Wang986a4f42012-12-07 07:04:56 +0000216 netif_wake_subqueue(vi->dev, vq2txq(vq));
Rusty Russell296f96f2007-10-22 11:03:37 +1000217}
218
Mike Waychison34646452012-01-04 12:52:32 +0000219/* Called from bottom half context */
Jason Wange9d74172012-12-07 07:04:55 +0000220static struct sk_buff *page_to_skb(struct receive_queue *rq,
Michael Dalton2613af02013-10-28 15:44:18 -0700221 struct page *page, unsigned int offset,
222 unsigned int len, unsigned int truesize)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000223{
Jason Wange9d74172012-12-07 07:04:55 +0000224 struct virtnet_info *vi = rq->vq->vdev->priv;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000225 struct sk_buff *skb;
226 struct skb_vnet_hdr *hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700227 unsigned int copy, hdr_len, hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000228 char *p;
229
Michael Dalton2613af02013-10-28 15:44:18 -0700230 p = page_address(page) + offset;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000231
232 /* copy small packet so we can reuse these pages for small data */
233 skb = netdev_alloc_skb_ip_align(vi->dev, GOOD_COPY_LEN);
234 if (unlikely(!skb))
235 return NULL;
236
237 hdr = skb_vnet_hdr(skb);
238
239 if (vi->mergeable_rx_bufs) {
240 hdr_len = sizeof hdr->mhdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700241 hdr_padded_len = sizeof hdr->mhdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000242 } else {
243 hdr_len = sizeof hdr->hdr;
Michael Dalton2613af02013-10-28 15:44:18 -0700244 hdr_padded_len = sizeof(struct padded_vnet_hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000245 }
246
247 memcpy(hdr, p, hdr_len);
248
249 len -= hdr_len;
Michael Dalton2613af02013-10-28 15:44:18 -0700250 offset += hdr_padded_len;
251 p += hdr_padded_len;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000252
253 copy = len;
254 if (copy > skb_tailroom(skb))
255 copy = skb_tailroom(skb);
256 memcpy(skb_put(skb, copy), p, copy);
257
258 len -= copy;
259 offset += copy;
260
Michael Dalton2613af02013-10-28 15:44:18 -0700261 if (vi->mergeable_rx_bufs) {
262 if (len)
263 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
264 else
265 put_page(page);
266 return skb;
267 }
268
Sasha Levine878d782011-09-28 04:40:54 +0000269 /*
270 * Verify that we can indeed put this data into a skb.
271 * This is here to handle cases when the device erroneously
272 * tries to receive more than is possible. This is usually
273 * the case of a broken device.
274 */
275 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000276 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
Sasha Levine878d782011-09-28 04:40:54 +0000277 dev_kfree_skb(skb);
278 return NULL;
279 }
Michael Dalton2613af02013-10-28 15:44:18 -0700280 BUG_ON(offset >= PAGE_SIZE);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000281 while (len) {
Michael Dalton2613af02013-10-28 15:44:18 -0700282 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
283 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
284 frag_size, truesize);
285 len -= frag_size;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000286 page = (struct page *)page->private;
287 offset = 0;
288 }
289
290 if (page)
Jason Wange9d74172012-12-07 07:04:55 +0000291 give_pages(rq, page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000292
293 return skb;
294}
295
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200296static struct sk_buff *receive_small(void *buf, unsigned int len)
297{
298 struct sk_buff * skb = buf;
299
300 len -= sizeof(struct virtio_net_hdr);
301 skb_trim(skb, len);
302
303 return skb;
304}
305
306static struct sk_buff *receive_big(struct net_device *dev,
307 struct receive_queue *rq,
308 void *buf,
309 unsigned int len)
310{
311 struct page *page = buf;
312 struct sk_buff *skb = page_to_skb(rq, page, 0, len, PAGE_SIZE);
313
314 if (unlikely(!skb))
315 goto err;
316
317 return skb;
318
319err:
320 dev->stats.rx_dropped++;
321 give_pages(rq, page);
322 return NULL;
323}
324
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200325static struct sk_buff *receive_mergeable(struct net_device *dev,
326 struct receive_queue *rq,
327 void *buf,
328 unsigned int len)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000329{
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200330 struct skb_vnet_hdr *hdr = buf;
331 int num_buf = hdr->mhdr.num_buffers;
332 struct page *page = virt_to_head_page(buf);
333 int offset = buf - page_address(page);
Michael Daltonfb518792014-01-16 22:23:26 -0800334 unsigned int truesize = max_t(unsigned int, len, MERGE_BUFFER_LEN);
335 struct sk_buff *head_skb = page_to_skb(rq, page, offset, len, truesize);
Michael Dalton2613af02013-10-28 15:44:18 -0700336 struct sk_buff *curr_skb = head_skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000337
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200338 if (unlikely(!curr_skb))
339 goto err_skb;
340
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000341 while (--num_buf) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200342 int num_skb_frags;
343
Michael Dalton2613af02013-10-28 15:44:18 -0700344 buf = virtqueue_get_buf(rq->vq, &len);
345 if (unlikely(!buf)) {
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200346 pr_debug("%s: rx error: %d buffers out of %d missing\n",
347 dev->name, num_buf, hdr->mhdr.num_buffers);
348 dev->stats.rx_length_errors++;
349 goto err_buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000350 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200351
352 page = virt_to_head_page(buf);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200353
354 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
Michael Dalton2613af02013-10-28 15:44:18 -0700355 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
356 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200357
358 if (unlikely(!nskb))
359 goto err_skb;
Michael Dalton2613af02013-10-28 15:44:18 -0700360 if (curr_skb == head_skb)
361 skb_shinfo(curr_skb)->frag_list = nskb;
362 else
363 curr_skb->next = nskb;
364 curr_skb = nskb;
365 head_skb->truesize += nskb->truesize;
366 num_skb_frags = 0;
367 }
Michael Daltonfb518792014-01-16 22:23:26 -0800368 truesize = max_t(unsigned int, len, MERGE_BUFFER_LEN);
Michael Dalton2613af02013-10-28 15:44:18 -0700369 if (curr_skb != head_skb) {
370 head_skb->data_len += len;
371 head_skb->len += len;
Michael Daltonfb518792014-01-16 22:23:26 -0800372 head_skb->truesize += truesize;
Michael Dalton2613af02013-10-28 15:44:18 -0700373 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200374 offset = buf - page_address(page);
Jason Wangba275242013-11-01 14:07:48 +0800375 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
376 put_page(page);
377 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
Michael Daltonfb518792014-01-16 22:23:26 -0800378 len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800379 } else {
380 skb_add_rx_frag(curr_skb, num_skb_frags, page,
Michael Daltonfb518792014-01-16 22:23:26 -0800381 offset, len, truesize);
Jason Wangba275242013-11-01 14:07:48 +0800382 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200383 }
384
385 return head_skb;
386
387err_skb:
388 put_page(page);
389 while (--num_buf) {
390 buf = virtqueue_get_buf(rq->vq, &len);
391 if (unlikely(!buf)) {
392 pr_debug("%s: rx error: %d buffers missing\n",
393 dev->name, num_buf);
394 dev->stats.rx_length_errors++;
395 break;
396 }
397 page = virt_to_head_page(buf);
398 put_page(page);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000399 }
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200400err_buf:
401 dev->stats.rx_dropped++;
402 dev_kfree_skb(head_skb);
403 return NULL;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000404}
405
Jason Wange9d74172012-12-07 07:04:55 +0000406static void receive_buf(struct receive_queue *rq, void *buf, unsigned int len)
Rusty Russell296f96f2007-10-22 11:03:37 +1000407{
Jason Wange9d74172012-12-07 07:04:55 +0000408 struct virtnet_info *vi = rq->vq->vdev->priv;
409 struct net_device *dev = vi->dev;
Eric Dumazet58472a72012-02-13 06:53:41 +0000410 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000411 struct sk_buff *skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000412 struct skb_vnet_hdr *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000413
414 if (unlikely(len < sizeof(struct virtio_net_hdr) + ETH_HLEN)) {
415 pr_debug("%s: short packet %i\n", dev->name, len);
416 dev->stats.rx_length_errors++;
Michael Dalton98bfd232013-12-05 13:14:05 -0800417 if (vi->mergeable_rx_bufs)
Michael Dalton2613af02013-10-28 15:44:18 -0700418 put_page(virt_to_head_page(buf));
Michael Dalton98bfd232013-12-05 13:14:05 -0800419 else if (vi->big_packets)
420 give_pages(rq, buf);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000421 else
422 dev_kfree_skb(buf);
423 return;
Rusty Russell296f96f2007-10-22 11:03:37 +1000424 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000425
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200426 if (vi->mergeable_rx_bufs)
Michael S. Tsirkin8fc3b9e2013-11-28 13:30:55 +0200427 skb = receive_mergeable(dev, rq, buf, len);
Michael S. Tsirkinf1211592013-11-28 13:30:59 +0200428 else if (vi->big_packets)
429 skb = receive_big(dev, rq, buf, len);
430 else
431 skb = receive_small(buf, len);
432
433 if (unlikely(!skb))
434 return;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800435
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000436 hdr = skb_vnet_hdr(skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000437
Eric Dumazet83a27052012-06-05 22:35:24 +0000438 u64_stats_update_begin(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000439 stats->rx_bytes += skb->len;
440 stats->rx_packets++;
Eric Dumazet83a27052012-06-05 22:35:24 +0000441 u64_stats_update_end(&stats->rx_syncp);
Rusty Russell296f96f2007-10-22 11:03:37 +1000442
Rusty Russellb3f24692009-09-24 09:59:19 -0600443 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000444 pr_debug("Needs csum!\n");
Rusty Russellb3f24692009-09-24 09:59:19 -0600445 if (!skb_partial_csum_set(skb,
446 hdr->hdr.csum_start,
447 hdr->hdr.csum_offset))
Rusty Russell296f96f2007-10-22 11:03:37 +1000448 goto frame_err;
Jason Wang10a8d942011-06-10 00:56:17 +0000449 } else if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID) {
450 skb->ip_summed = CHECKSUM_UNNECESSARY;
Rusty Russell296f96f2007-10-22 11:03:37 +1000451 }
452
Mark McLoughlin23cde762008-06-08 20:49:00 +1000453 skb->protocol = eth_type_trans(skb, dev);
454 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
455 ntohs(skb->protocol), skb->len, skb->pkt_type);
456
Rusty Russellb3f24692009-09-24 09:59:19 -0600457 if (hdr->hdr.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000458 pr_debug("GSO!\n");
Rusty Russellb3f24692009-09-24 09:59:19 -0600459 switch (hdr->hdr.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000460 case VIRTIO_NET_HDR_GSO_TCPV4:
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000461 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
Rusty Russell296f96f2007-10-22 11:03:37 +1000462 break;
Rusty Russell296f96f2007-10-22 11:03:37 +1000463 case VIRTIO_NET_HDR_GSO_UDP:
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000464 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
Rusty Russell296f96f2007-10-22 11:03:37 +1000465 break;
466 case VIRTIO_NET_HDR_GSO_TCPV6:
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000467 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
Rusty Russell296f96f2007-10-22 11:03:37 +1000468 break;
469 default:
Amerigo Wangbe443892012-11-08 17:47:28 +0000470 net_warn_ratelimited("%s: bad gso type %u.\n",
471 dev->name, hdr->hdr.gso_type);
Rusty Russell296f96f2007-10-22 11:03:37 +1000472 goto frame_err;
473 }
474
Rusty Russellb3f24692009-09-24 09:59:19 -0600475 if (hdr->hdr.gso_type & VIRTIO_NET_HDR_GSO_ECN)
Pravin B Shelarc9af6db2013-02-11 09:27:41 +0000476 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
Rusty Russell34a48572008-02-04 23:50:02 -0500477
Rusty Russellb3f24692009-09-24 09:59:19 -0600478 skb_shinfo(skb)->gso_size = hdr->hdr.gso_size;
Rusty Russell296f96f2007-10-22 11:03:37 +1000479 if (skb_shinfo(skb)->gso_size == 0) {
Amerigo Wangbe443892012-11-08 17:47:28 +0000480 net_warn_ratelimited("%s: zero gso size.\n", dev->name);
Rusty Russell296f96f2007-10-22 11:03:37 +1000481 goto frame_err;
482 }
483
484 /* Header must be checked, and gso_segs computed. */
485 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
486 skb_shinfo(skb)->gso_segs = 0;
487 }
488
489 netif_receive_skb(skb);
490 return;
491
492frame_err:
493 dev->stats.rx_frame_errors++;
Rusty Russell296f96f2007-10-22 11:03:37 +1000494 dev_kfree_skb(skb);
495}
496
Jason Wange9d74172012-12-07 07:04:55 +0000497static int add_recvbuf_small(struct receive_queue *rq, gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000498{
Jason Wange9d74172012-12-07 07:04:55 +0000499 struct virtnet_info *vi = rq->vq->vdev->priv;
Rusty Russell296f96f2007-10-22 11:03:37 +1000500 struct sk_buff *skb;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000501 struct skb_vnet_hdr *hdr;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000502 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000503
Michael Dalton5061de32013-11-14 10:41:04 -0800504 skb = __netdev_alloc_skb_ip_align(vi->dev, GOOD_PACKET_LEN, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000505 if (unlikely(!skb))
506 return -ENOMEM;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800507
Michael Dalton5061de32013-11-14 10:41:04 -0800508 skb_put(skb, GOOD_PACKET_LEN);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000509
510 hdr = skb_vnet_hdr(skb);
Jason Wange9d74172012-12-07 07:04:55 +0000511 sg_set_buf(rq->sg, &hdr->hdr, sizeof hdr->hdr);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000512
Jason Wange9d74172012-12-07 07:04:55 +0000513 skb_to_sgvec(skb, rq->sg + 1, 0, skb->len);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000514
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030515 err = virtqueue_add_inbuf(rq->vq, rq->sg, 2, skb, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000516 if (err < 0)
517 dev_kfree_skb(skb);
518
519 return err;
520}
521
Jason Wange9d74172012-12-07 07:04:55 +0000522static int add_recvbuf_big(struct receive_queue *rq, gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000523{
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000524 struct page *first, *list = NULL;
525 char *p;
526 int i, err, offset;
527
Jason Wange9d74172012-12-07 07:04:55 +0000528 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000529 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
Jason Wange9d74172012-12-07 07:04:55 +0000530 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000531 if (!first) {
532 if (list)
Jason Wange9d74172012-12-07 07:04:55 +0000533 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000534 return -ENOMEM;
Rusty Russell3161e452009-08-26 12:22:32 -0700535 }
Jason Wange9d74172012-12-07 07:04:55 +0000536 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
Rusty Russell296f96f2007-10-22 11:03:37 +1000537
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000538 /* chain new page in list head to match sg */
539 first->private = (unsigned long)list;
540 list = first;
541 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800542
Jason Wange9d74172012-12-07 07:04:55 +0000543 first = get_a_page(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000544 if (!first) {
Jason Wange9d74172012-12-07 07:04:55 +0000545 give_pages(rq, list);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000546 return -ENOMEM;
547 }
548 p = page_address(first);
Herbert Xu97402b92008-04-18 11:24:27 +0800549
Jason Wange9d74172012-12-07 07:04:55 +0000550 /* rq->sg[0], rq->sg[1] share the same page */
551 /* a separated rq->sg[0] for virtio_net_hdr only due to QEMU bug */
552 sg_set_buf(&rq->sg[0], p, sizeof(struct virtio_net_hdr));
Herbert Xu97402b92008-04-18 11:24:27 +0800553
Jason Wange9d74172012-12-07 07:04:55 +0000554 /* rq->sg[1] for data packet, from offset */
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000555 offset = sizeof(struct padded_vnet_hdr);
Jason Wange9d74172012-12-07 07:04:55 +0000556 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
Herbert Xu97402b92008-04-18 11:24:27 +0800557
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000558 /* chain first in list head */
559 first->private = (unsigned long)list;
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030560 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
561 first, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000562 if (err < 0)
Jason Wange9d74172012-12-07 07:04:55 +0000563 give_pages(rq, first);
Herbert Xu97402b92008-04-18 11:24:27 +0800564
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000565 return err;
566}
Herbert Xu97402b92008-04-18 11:24:27 +0800567
Jason Wange9d74172012-12-07 07:04:55 +0000568static int add_recvbuf_mergeable(struct receive_queue *rq, gfp_t gfp)
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000569{
Michael Daltonfb518792014-01-16 22:23:26 -0800570 struct page_frag *alloc_frag = &rq->alloc_frag;
571 char *buf;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000572 int err;
Michael Daltonfb518792014-01-16 22:23:26 -0800573 unsigned int len, hole;
Rusty Russell296f96f2007-10-22 11:03:37 +1000574
Michael Daltonfb518792014-01-16 22:23:26 -0800575 if (unlikely(!skb_page_frag_refill(MERGE_BUFFER_LEN, alloc_frag, gfp)))
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000576 return -ENOMEM;
Michael Daltonfb518792014-01-16 22:23:26 -0800577 buf = (char *)page_address(alloc_frag->page) + alloc_frag->offset;
578 get_page(alloc_frag->page);
579 len = MERGE_BUFFER_LEN;
580 alloc_frag->offset += len;
581 hole = alloc_frag->size - alloc_frag->offset;
582 if (hole < MERGE_BUFFER_LEN) {
583 len += hole;
584 alloc_frag->offset += hole;
585 }
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000586
Michael Daltonfb518792014-01-16 22:23:26 -0800587 sg_init_one(rq->sg, buf, len);
Michael Dalton2613af02013-10-28 15:44:18 -0700588 err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, buf, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000589 if (err < 0)
Michael Dalton2613af02013-10-28 15:44:18 -0700590 put_page(virt_to_head_page(buf));
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000591
592 return err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000593}
594
Rusty Russellb2baed62011-12-29 00:42:38 +0000595/*
596 * Returns false if we couldn't fill entirely (OOM).
597 *
598 * Normally run in the receive path, but can also be run from ndo_open
599 * before we're receiving packets, or from refill_work which is
600 * careful to disable receiving (using napi_disable).
601 */
Jason Wange9d74172012-12-07 07:04:55 +0000602static bool try_fill_recv(struct receive_queue *rq, gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800603{
Jason Wange9d74172012-12-07 07:04:55 +0000604 struct virtnet_info *vi = rq->vq->vdev->priv;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800605 int err;
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000606 bool oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800607
Michael Daltonfb518792014-01-16 22:23:26 -0800608 gfp |= __GFP_COLD;
Amit Shah0aea51c2009-08-26 14:58:28 +0530609 do {
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000610 if (vi->mergeable_rx_bufs)
Jason Wange9d74172012-12-07 07:04:55 +0000611 err = add_recvbuf_mergeable(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000612 else if (vi->big_packets)
Jason Wange9d74172012-12-07 07:04:55 +0000613 err = add_recvbuf_big(rq, gfp);
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000614 else
Jason Wange9d74172012-12-07 07:04:55 +0000615 err = add_recvbuf_small(rq, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800616
Michael S. Tsirkin1788f4952010-07-02 16:32:55 +0000617 oom = err == -ENOMEM;
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030618 if (err)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800619 break;
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800620 } while (rq->vq->num_free);
Heinz Graalfs67975902013-10-29 09:40:02 +1030621 if (unlikely(!virtqueue_kick(rq->vq)))
622 return false;
Rusty Russell3161e452009-08-26 12:22:32 -0700623 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800624}
625
Rusty Russell18445c42008-02-04 23:49:57 -0500626static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000627{
628 struct virtnet_info *vi = rvq->vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +0000629 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
Jason Wange9d74172012-12-07 07:04:55 +0000630
Rusty Russell18445c42008-02-04 23:49:57 -0500631 /* Schedule NAPI, Suppress further interrupts if successful. */
Jason Wange9d74172012-12-07 07:04:55 +0000632 if (napi_schedule_prep(&rq->napi)) {
Michael S. Tsirkin1915a7122010-04-12 16:19:04 +0300633 virtqueue_disable_cb(rvq);
Jason Wange9d74172012-12-07 07:04:55 +0000634 __napi_schedule(&rq->napi);
Rusty Russell18445c42008-02-04 23:49:57 -0500635 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000636}
637
Jason Wange9d74172012-12-07 07:04:55 +0000638static void virtnet_napi_enable(struct receive_queue *rq)
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800639{
Jason Wange9d74172012-12-07 07:04:55 +0000640 napi_enable(&rq->napi);
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800641
642 /* If all buffers were filled by other side before we napi_enabled, we
643 * won't get another interrupt, so process any outstanding packets
644 * now. virtnet_poll wants re-enable the queue, so we disable here.
645 * We synchronize against interrupts via NAPI_STATE_SCHED */
Jason Wange9d74172012-12-07 07:04:55 +0000646 if (napi_schedule_prep(&rq->napi)) {
647 virtqueue_disable_cb(rq->vq);
Michael S. Tsirkinec13ee82012-05-16 10:57:12 +0300648 local_bh_disable();
Jason Wange9d74172012-12-07 07:04:55 +0000649 __napi_schedule(&rq->napi);
Michael S. Tsirkinec13ee82012-05-16 10:57:12 +0300650 local_bh_enable();
Bruce Rogers3e9d08e2011-02-10 11:03:31 -0800651 }
652}
653
Rusty Russell3161e452009-08-26 12:22:32 -0700654static void refill_work(struct work_struct *work)
655{
Jason Wange9d74172012-12-07 07:04:55 +0000656 struct virtnet_info *vi =
657 container_of(work, struct virtnet_info, refill.work);
Rusty Russell3161e452009-08-26 12:22:32 -0700658 bool still_empty;
Jason Wang986a4f42012-12-07 07:04:56 +0000659 int i;
Rusty Russell3161e452009-08-26 12:22:32 -0700660
Sasha Levin55257d72013-04-29 12:00:08 +0930661 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +0000662 struct receive_queue *rq = &vi->rq[i];
Rusty Russell3161e452009-08-26 12:22:32 -0700663
Jason Wang986a4f42012-12-07 07:04:56 +0000664 napi_disable(&rq->napi);
665 still_empty = !try_fill_recv(rq, GFP_KERNEL);
666 virtnet_napi_enable(rq);
667
668 /* In theory, this can happen: if we don't get any buffers in
669 * we will *never* try to fill again.
670 */
671 if (still_empty)
672 schedule_delayed_work(&vi->refill, HZ/2);
673 }
Rusty Russell3161e452009-08-26 12:22:32 -0700674}
675
Rusty Russell296f96f2007-10-22 11:03:37 +1000676static int virtnet_poll(struct napi_struct *napi, int budget)
677{
Jason Wange9d74172012-12-07 07:04:55 +0000678 struct receive_queue *rq =
679 container_of(napi, struct receive_queue, napi);
680 struct virtnet_info *vi = rq->vq->vdev->priv;
Shirley Ma9ab86bb2010-01-29 03:20:04 +0000681 void *buf;
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +0300682 unsigned int r, len, received = 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000683
684again:
685 while (received < budget &&
Jason Wange9d74172012-12-07 07:04:55 +0000686 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
687 receive_buf(rq, buf, len);
Rusty Russell296f96f2007-10-22 11:03:37 +1000688 received++;
689 }
690
Jason Wangbe121f42014-01-16 14:45:24 +0800691 if (rq->vq->num_free > virtqueue_get_vring_size(rq->vq) / 2) {
Jason Wange9d74172012-12-07 07:04:55 +0000692 if (!try_fill_recv(rq, GFP_ATOMIC))
Tejun Heo3b07e9c2012-08-20 14:51:24 -0700693 schedule_delayed_work(&vi->refill, 0);
Rusty Russell3161e452009-08-26 12:22:32 -0700694 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000695
Rusty Russell8329d982007-11-19 11:20:43 -0500696 /* Out of packets? */
697 if (received < budget) {
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +0300698 r = virtqueue_enable_cb_prepare(rq->vq);
Ben Hutchings288379f2009-01-19 16:43:59 -0800699 napi_complete(napi);
Michael S. Tsirkincbdadbb2013-07-09 08:13:04 +0300700 if (unlikely(virtqueue_poll(rq->vq, r)) &&
Joe Perches8e95a202009-12-03 07:58:21 +0000701 napi_schedule_prep(napi)) {
Jason Wange9d74172012-12-07 07:04:55 +0000702 virtqueue_disable_cb(rq->vq);
Ben Hutchings288379f2009-01-19 16:43:59 -0800703 __napi_schedule(napi);
Rusty Russell296f96f2007-10-22 11:03:37 +1000704 goto again;
Christian Borntraeger4265f162008-03-14 14:17:05 +0100705 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000706 }
707
708 return received;
709}
710
Jason Wang986a4f42012-12-07 07:04:56 +0000711static int virtnet_open(struct net_device *dev)
712{
713 struct virtnet_info *vi = netdev_priv(dev);
714 int i;
715
Jason Wange4166622013-05-21 20:03:58 +0000716 for (i = 0; i < vi->max_queue_pairs; i++) {
717 if (i < vi->curr_queue_pairs)
718 /* Make sure we have some buffers: if oom use wq. */
719 if (!try_fill_recv(&vi->rq[i], GFP_KERNEL))
720 schedule_delayed_work(&vi->refill, 0);
Jason Wang986a4f42012-12-07 07:04:56 +0000721 virtnet_napi_enable(&vi->rq[i]);
722 }
723
724 return 0;
725}
726
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800727static void free_old_xmit_skbs(struct send_queue *sq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000728{
729 struct sk_buff *skb;
Michael S. Tsirkin6ee57bc2012-10-16 23:56:14 +1030730 unsigned int len;
Jason Wange9d74172012-12-07 07:04:55 +0000731 struct virtnet_info *vi = sq->vq->vdev->priv;
Eric Dumazet58472a72012-02-13 06:53:41 +0000732 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +1000733
Jason Wange9d74172012-12-07 07:04:55 +0000734 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000735 pr_debug("Sent skb %p\n", skb);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000736
Eric Dumazet83a27052012-06-05 22:35:24 +0000737 u64_stats_update_begin(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000738 stats->tx_bytes += skb->len;
739 stats->tx_packets++;
Eric Dumazet83a27052012-06-05 22:35:24 +0000740 u64_stats_update_end(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000741
Eric Dumazeted79bab2009-10-14 14:36:43 +0000742 dev_kfree_skb_any(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +1000743 }
744}
745
Jason Wange9d74172012-12-07 07:04:55 +0000746static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000747{
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930748 struct skb_vnet_hdr *hdr;
Rusty Russell296f96f2007-10-22 11:03:37 +1000749 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Jason Wange9d74172012-12-07 07:04:55 +0000750 struct virtnet_info *vi = sq->vq->vdev->priv;
Michael S. Tsirkin7bedc7d2012-10-16 23:56:14 +1030751 unsigned num_sg;
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930752 unsigned hdr_len;
753 bool can_push;
Rusty Russell296f96f2007-10-22 11:03:37 +1000754
Johannes Berge1749612008-10-27 15:59:26 -0700755 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930756 if (vi->mergeable_rx_bufs)
757 hdr_len = sizeof hdr->mhdr;
758 else
759 hdr_len = sizeof hdr->hdr;
760
761 can_push = vi->any_header_sg &&
762 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
763 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
764 /* Even if we can, don't push here yet as this would skew
765 * csum_start offset below. */
766 if (can_push)
767 hdr = (struct skb_vnet_hdr *)(skb->data - hdr_len);
768 else
769 hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +1000770
Rusty Russell296f96f2007-10-22 11:03:37 +1000771 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Rusty Russellb3f24692009-09-24 09:59:19 -0600772 hdr->hdr.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
Michał Mirosław55508d62010-12-14 15:24:08 +0000773 hdr->hdr.csum_start = skb_checksum_start_offset(skb);
Rusty Russellb3f24692009-09-24 09:59:19 -0600774 hdr->hdr.csum_offset = skb->csum_offset;
Rusty Russell296f96f2007-10-22 11:03:37 +1000775 } else {
Rusty Russellb3f24692009-09-24 09:59:19 -0600776 hdr->hdr.flags = 0;
777 hdr->hdr.csum_offset = hdr->hdr.csum_start = 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000778 }
779
780 if (skb_is_gso(skb)) {
Rusty Russellb3f24692009-09-24 09:59:19 -0600781 hdr->hdr.hdr_len = skb_headlen(skb);
782 hdr->hdr.gso_size = skb_shinfo(skb)->gso_size;
Rusty Russell34a48572008-02-04 23:50:02 -0500783 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
Rusty Russellb3f24692009-09-24 09:59:19 -0600784 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
Rusty Russell296f96f2007-10-22 11:03:37 +1000785 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
Rusty Russellb3f24692009-09-24 09:59:19 -0600786 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Rusty Russell296f96f2007-10-22 11:03:37 +1000787 else if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
Rusty Russellb3f24692009-09-24 09:59:19 -0600788 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Rusty Russell296f96f2007-10-22 11:03:37 +1000789 else
790 BUG();
Rusty Russell34a48572008-02-04 23:50:02 -0500791 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCP_ECN)
Rusty Russellb3f24692009-09-24 09:59:19 -0600792 hdr->hdr.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
Rusty Russell296f96f2007-10-22 11:03:37 +1000793 } else {
Rusty Russellb3f24692009-09-24 09:59:19 -0600794 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE;
795 hdr->hdr.gso_size = hdr->hdr.hdr_len = 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000796 }
797
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800798 if (vi->mergeable_rx_bufs)
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930799 hdr->mhdr.num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800800
Michael S. Tsirkine7428e92013-07-25 10:20:23 +0930801 if (can_push) {
802 __skb_push(skb, hdr_len);
803 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
804 /* Pull header back to avoid skew in tx bytes calculations. */
805 __skb_pull(skb, hdr_len);
806 } else {
807 sg_set_buf(sq->sg, hdr, hdr_len);
808 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len) + 1;
809 }
Rusty Russell9dc7b9e2013-03-20 15:44:28 +1030810 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
Rusty Russell11a3a152008-05-26 17:48:13 +1000811}
812
Stephen Hemminger424efe92009-08-31 19:50:51 +0000813static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -0500814{
815 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +0000816 int qnum = skb_get_queue_mapping(skb);
817 struct send_queue *sq = &vi->sq[qnum];
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030818 int err;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500819
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500820 /* Free up any pending old buffers before queueing new ones. */
Jason Wange9d74172012-12-07 07:04:55 +0000821 free_old_xmit_skbs(sq);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500822
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -0700823 /* Try to transmit */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800824 err = xmit_skb(sq, skb);
Rusty Russell48925e32009-09-24 09:59:20 -0600825
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030826 /* This should not happen! */
Heinz Graalfs67975902013-10-29 09:40:02 +1030827 if (unlikely(err) || unlikely(!virtqueue_kick(sq->vq))) {
Rusty Russell9ed4cb02012-10-16 23:56:14 +1030828 dev->stats.tx_fifo_errors++;
829 if (net_ratelimit())
830 dev_warn(&dev->dev,
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800831 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
Rusty Russell58eba972010-07-02 16:34:01 +0000832 dev->stats.tx_dropped++;
833 kfree_skb(skb);
834 return NETDEV_TX_OK;
Rusty Russell99ffc692008-05-02 21:50:46 -0500835 }
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -0700836
Rusty Russell48925e32009-09-24 09:59:20 -0600837 /* Don't wait up for transmitted skbs to be freed. */
838 skb_orphan(skb);
839 nf_reset(skb);
Rusty Russell99ffc692008-05-02 21:50:46 -0500840
Rusty Russell48925e32009-09-24 09:59:20 -0600841 /* Apparently nice girls don't return TX_BUSY; stop the queue
842 * before it gets out of hand. Naturally, this wastes entries. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800843 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +0000844 netif_stop_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +0000845 if (unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
Rusty Russell48925e32009-09-24 09:59:20 -0600846 /* More just got used, free them then recheck. */
Linus Torvaldsb7dfde92012-12-20 08:37:04 -0800847 free_old_xmit_skbs(sq);
848 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
Jason Wang986a4f42012-12-07 07:04:56 +0000849 netif_start_subqueue(dev, qnum);
Jason Wange9d74172012-12-07 07:04:55 +0000850 virtqueue_disable_cb(sq->vq);
Rusty Russell48925e32009-09-24 09:59:20 -0600851 }
852 }
Rusty Russell99ffc692008-05-02 21:50:46 -0500853 }
Rusty Russell48925e32009-09-24 09:59:20 -0600854
855 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +1000856}
857
Amos Kong40cbfc32013-01-21 01:17:21 +0000858/*
859 * Send command via the control virtqueue and check status. Commands
860 * supported by the hypervisor, as indicated by feature bits, should
stephen hemminger788a8b62013-12-09 16:18:45 -0800861 * never fail unless improperly formatted.
Amos Kong40cbfc32013-01-21 01:17:21 +0000862 */
863static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
stephen hemmingerd24bae32013-12-09 16:17:40 -0800864 struct scatterlist *out)
Amos Kong40cbfc32013-01-21 01:17:21 +0000865{
Rusty Russellf7bc9592013-03-20 15:44:28 +1030866 struct scatterlist *sgs[4], hdr, stat;
Amos Kong40cbfc32013-01-21 01:17:21 +0000867 struct virtio_net_ctrl_hdr ctrl;
868 virtio_net_ctrl_ack status = ~0;
stephen hemmingerd24bae32013-12-09 16:17:40 -0800869 unsigned out_num = 0, tmp;
Amos Kong40cbfc32013-01-21 01:17:21 +0000870
871 /* Caller should know better */
Rusty Russellf7bc9592013-03-20 15:44:28 +1030872 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
Amos Kong40cbfc32013-01-21 01:17:21 +0000873
874 ctrl.class = class;
875 ctrl.cmd = cmd;
Rusty Russellf7bc9592013-03-20 15:44:28 +1030876 /* Add header */
877 sg_init_one(&hdr, &ctrl, sizeof(ctrl));
878 sgs[out_num++] = &hdr;
Amos Kong40cbfc32013-01-21 01:17:21 +0000879
Rusty Russellf7bc9592013-03-20 15:44:28 +1030880 if (out)
881 sgs[out_num++] = out;
Amos Kong40cbfc32013-01-21 01:17:21 +0000882
Rusty Russellf7bc9592013-03-20 15:44:28 +1030883 /* Add return status. */
884 sg_init_one(&stat, &status, sizeof(status));
stephen hemmingerd24bae32013-12-09 16:17:40 -0800885 sgs[out_num] = &stat;
Amos Kong40cbfc32013-01-21 01:17:21 +0000886
stephen hemmingerd24bae32013-12-09 16:17:40 -0800887 BUG_ON(out_num + 1 > ARRAY_SIZE(sgs));
888 BUG_ON(virtqueue_add_sgs(vi->cvq, sgs, out_num, 1, vi, GFP_ATOMIC) < 0);
Amos Kong40cbfc32013-01-21 01:17:21 +0000889
Heinz Graalfs67975902013-10-29 09:40:02 +1030890 if (unlikely(!virtqueue_kick(vi->cvq)))
891 return status == VIRTIO_NET_OK;
Amos Kong40cbfc32013-01-21 01:17:21 +0000892
893 /* Spin for a response, the kick causes an ioport write, trapping
894 * into the hypervisor, so the request should be handled immediately.
895 */
Heinz Graalfs047b9b92013-10-29 09:40:47 +1030896 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
897 !virtqueue_is_broken(vi->cvq))
Amos Kong40cbfc32013-01-21 01:17:21 +0000898 cpu_relax();
899
900 return status == VIRTIO_NET_OK;
901}
902
Alex Williamson9c46f6d2009-02-04 16:36:34 -0800903static int virtnet_set_mac_address(struct net_device *dev, void *p)
904{
905 struct virtnet_info *vi = netdev_priv(dev);
906 struct virtio_device *vdev = vi->vdev;
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +0000907 int ret;
Amos Kong7e58d5a2013-01-21 01:17:23 +0000908 struct sockaddr *addr = p;
909 struct scatterlist sg;
Alex Williamson9c46f6d2009-02-04 16:36:34 -0800910
Amos Kong7e58d5a2013-01-21 01:17:23 +0000911 ret = eth_prepare_mac_addr_change(dev, p);
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +0000912 if (ret)
913 return ret;
Alex Williamson9c46f6d2009-02-04 16:36:34 -0800914
Amos Kong7e58d5a2013-01-21 01:17:23 +0000915 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
916 sg_init_one(&sg, addr->sa_data, dev->addr_len);
917 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -0800918 VIRTIO_NET_CTRL_MAC_ADDR_SET, &sg)) {
Amos Kong7e58d5a2013-01-21 01:17:23 +0000919 dev_warn(&vdev->dev,
920 "Failed to set mac address by vq command.\n");
921 return -EINVAL;
922 }
923 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) {
Rusty Russell855e0c52013-10-14 18:11:51 +1030924 unsigned int i;
925
926 /* Naturally, this has an atomicity problem. */
927 for (i = 0; i < dev->addr_len; i++)
928 virtio_cwrite8(vdev,
929 offsetof(struct virtio_net_config, mac) +
930 i, addr->sa_data[i]);
Amos Kong7e58d5a2013-01-21 01:17:23 +0000931 }
932
933 eth_commit_mac_addr_change(dev, p);
Alex Williamson9c46f6d2009-02-04 16:36:34 -0800934
935 return 0;
936}
937
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000938static struct rtnl_link_stats64 *virtnet_stats(struct net_device *dev,
939 struct rtnl_link_stats64 *tot)
940{
941 struct virtnet_info *vi = netdev_priv(dev);
942 int cpu;
943 unsigned int start;
944
945 for_each_possible_cpu(cpu) {
Eric Dumazet58472a72012-02-13 06:53:41 +0000946 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000947 u64 tpackets, tbytes, rpackets, rbytes;
948
949 do {
Kevin Groenevelde3906482012-07-21 06:30:50 +0000950 start = u64_stats_fetch_begin_bh(&stats->tx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000951 tpackets = stats->tx_packets;
952 tbytes = stats->tx_bytes;
Kevin Groenevelde3906482012-07-21 06:30:50 +0000953 } while (u64_stats_fetch_retry_bh(&stats->tx_syncp, start));
Eric Dumazet83a27052012-06-05 22:35:24 +0000954
955 do {
Kevin Groenevelde3906482012-07-21 06:30:50 +0000956 start = u64_stats_fetch_begin_bh(&stats->rx_syncp);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000957 rpackets = stats->rx_packets;
958 rbytes = stats->rx_bytes;
Kevin Groenevelde3906482012-07-21 06:30:50 +0000959 } while (u64_stats_fetch_retry_bh(&stats->rx_syncp, start));
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000960
961 tot->rx_packets += rpackets;
962 tot->tx_packets += tpackets;
963 tot->rx_bytes += rbytes;
964 tot->tx_bytes += tbytes;
965 }
966
967 tot->tx_dropped = dev->stats.tx_dropped;
Rick Jones021ac8d2011-11-21 09:28:17 +0000968 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +0000969 tot->rx_dropped = dev->stats.rx_dropped;
970 tot->rx_length_errors = dev->stats.rx_length_errors;
971 tot->rx_frame_errors = dev->stats.rx_frame_errors;
972
973 return tot;
974}
975
Amit Shahda74e892008-02-29 16:24:50 +0530976#ifdef CONFIG_NET_POLL_CONTROLLER
977static void virtnet_netpoll(struct net_device *dev)
978{
979 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +0000980 int i;
Amit Shahda74e892008-02-29 16:24:50 +0530981
Jason Wang986a4f42012-12-07 07:04:56 +0000982 for (i = 0; i < vi->curr_queue_pairs; i++)
983 napi_schedule(&vi->rq[i].napi);
Amit Shahda74e892008-02-29 16:24:50 +0530984}
985#endif
986
Jason Wang586d17c2012-04-11 20:43:52 +0000987static void virtnet_ack_link_announce(struct virtnet_info *vi)
988{
989 rtnl_lock();
990 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
stephen hemmingerd24bae32013-12-09 16:17:40 -0800991 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL))
Jason Wang586d17c2012-04-11 20:43:52 +0000992 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
993 rtnl_unlock();
994}
995
Jason Wang986a4f42012-12-07 07:04:56 +0000996static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
997{
998 struct scatterlist sg;
999 struct virtio_net_ctrl_mq s;
1000 struct net_device *dev = vi->dev;
1001
1002 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1003 return 0;
1004
1005 s.virtqueue_pairs = queue_pairs;
1006 sg_init_one(&sg, &s, sizeof(s));
1007
1008 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001009 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001010 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1011 queue_pairs);
1012 return -EINVAL;
Sasha Levin55257d72013-04-29 12:00:08 +09301013 } else {
Jason Wang986a4f42012-12-07 07:04:56 +00001014 vi->curr_queue_pairs = queue_pairs;
Jason Wang35ed1592013-10-15 11:18:59 +08001015 /* virtnet_open() will refill when device is going to up. */
1016 if (dev->flags & IFF_UP)
1017 schedule_delayed_work(&vi->refill, 0);
Sasha Levin55257d72013-04-29 12:00:08 +09301018 }
Jason Wang986a4f42012-12-07 07:04:56 +00001019
1020 return 0;
1021}
1022
Rusty Russell296f96f2007-10-22 11:03:37 +10001023static int virtnet_close(struct net_device *dev)
1024{
1025 struct virtnet_info *vi = netdev_priv(dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001026 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +10001027
Rusty Russellb2baed62011-12-29 00:42:38 +00001028 /* Make sure refill_work doesn't re-enable napi! */
1029 cancel_delayed_work_sync(&vi->refill);
Jason Wang986a4f42012-12-07 07:04:56 +00001030
1031 for (i = 0; i < vi->max_queue_pairs; i++)
1032 napi_disable(&vi->rq[i].napi);
Rusty Russell296f96f2007-10-22 11:03:37 +10001033
Rusty Russell296f96f2007-10-22 11:03:37 +10001034 return 0;
1035}
1036
Alex Williamson2af76982009-02-04 09:02:40 +00001037static void virtnet_set_rx_mode(struct net_device *dev)
1038{
1039 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001040 struct scatterlist sg[2];
Alex Williamson2af76982009-02-04 09:02:40 +00001041 u8 promisc, allmulti;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001042 struct virtio_net_ctrl_mac *mac_data;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001043 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001044 int uc_count;
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001045 int mc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001046 void *buf;
1047 int i;
Alex Williamson2af76982009-02-04 09:02:40 +00001048
stephen hemminger788a8b62013-12-09 16:18:45 -08001049 /* We can't dynamically set ndo_set_rx_mode, so return gracefully */
Alex Williamson2af76982009-02-04 09:02:40 +00001050 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1051 return;
1052
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001053 promisc = ((dev->flags & IFF_PROMISC) != 0);
1054 allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +00001055
Alex Williamson23e258e2009-05-01 17:27:56 +00001056 sg_init_one(sg, &promisc, sizeof(promisc));
Alex Williamson2af76982009-02-04 09:02:40 +00001057
1058 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001059 VIRTIO_NET_CTRL_RX_PROMISC, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001060 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
1061 promisc ? "en" : "dis");
1062
Alex Williamson23e258e2009-05-01 17:27:56 +00001063 sg_init_one(sg, &allmulti, sizeof(allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +00001064
1065 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001066 VIRTIO_NET_CTRL_RX_ALLMULTI, sg))
Alex Williamson2af76982009-02-04 09:02:40 +00001067 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
1068 allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001069
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001070 uc_count = netdev_uc_count(dev);
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001071 mc_count = netdev_mc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001072 /* MAC filter - use one buffer for both lists */
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001073 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1074 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1075 mac_data = buf;
Joe Perchese68ed8f2013-02-03 17:28:15 +00001076 if (!buf)
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001077 return;
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001078
Alex Williamson23e258e2009-05-01 17:27:56 +00001079 sg_init_table(sg, 2);
1080
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001081 /* Store the unicast list and count in the front of the buffer */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001082 mac_data->entries = uc_count;
Jiri Pirkoccffad252009-05-22 23:22:17 +00001083 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001084 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +00001085 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001086
1087 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001088 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001089
1090 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08001091 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001092
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001093 mac_data->entries = mc_count;
Jiri Pirko567ec872010-02-23 23:17:07 +00001094 i = 0;
Jiri Pirko22bedad2010-04-01 21:22:57 +00001095 netdev_for_each_mc_addr(ha, dev)
1096 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001097
1098 sg_set_buf(&sg[1], mac_data,
Jiri Pirko4cd24ea2010-02-08 04:30:35 +00001099 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001100
1101 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001102 VIRTIO_NET_CTRL_MAC_TABLE_SET, sg))
Thomas Huth99e872a2013-11-29 10:02:19 +01001103 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
Alex Williamsonf565a7c2009-02-04 09:02:45 +00001104
1105 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +00001106}
1107
Patrick McHardy80d5c362013-04-19 02:04:28 +00001108static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1109 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001110{
1111 struct virtnet_info *vi = netdev_priv(dev);
1112 struct scatterlist sg;
1113
Alex Williamson23e258e2009-05-01 17:27:56 +00001114 sg_init_one(&sg, &vid, sizeof(vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001115
1116 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001117 VIRTIO_NET_CTRL_VLAN_ADD, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001118 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001119 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001120}
1121
Patrick McHardy80d5c362013-04-19 02:04:28 +00001122static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1123 __be16 proto, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +00001124{
1125 struct virtnet_info *vi = netdev_priv(dev);
1126 struct scatterlist sg;
1127
Alex Williamson23e258e2009-05-01 17:27:56 +00001128 sg_init_one(&sg, &vid, sizeof(vid));
Alex Williamson0bde95692009-02-04 09:02:50 +00001129
1130 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
stephen hemmingerd24bae32013-12-09 16:17:40 -08001131 VIRTIO_NET_CTRL_VLAN_DEL, &sg))
Alex Williamson0bde95692009-02-04 09:02:50 +00001132 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
Jiri Pirko8e586132011-12-08 19:52:37 -05001133 return 0;
Alex Williamson0bde95692009-02-04 09:02:50 +00001134}
1135
Wanlong Gao8898c212013-01-24 23:51:30 +00001136static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
Jason Wang986a4f42012-12-07 07:04:56 +00001137{
1138 int i;
Wanlong Gao8898c212013-01-24 23:51:30 +00001139
1140 if (vi->affinity_hint_set) {
1141 for (i = 0; i < vi->max_queue_pairs; i++) {
1142 virtqueue_set_affinity(vi->rq[i].vq, -1);
1143 virtqueue_set_affinity(vi->sq[i].vq, -1);
1144 }
1145
1146 vi->affinity_hint_set = false;
1147 }
Wanlong Gao8898c212013-01-24 23:51:30 +00001148}
1149
1150static void virtnet_set_affinity(struct virtnet_info *vi)
Jason Wang986a4f42012-12-07 07:04:56 +00001151{
1152 int i;
Wanlong Gao47be2472013-01-24 23:51:29 +00001153 int cpu;
Jason Wang986a4f42012-12-07 07:04:56 +00001154
1155 /* In multiqueue mode, when the number of cpu is equal to the number of
1156 * queue pairs, we let the queue pairs to be private to one cpu by
1157 * setting the affinity hint to eliminate the contention.
1158 */
Wanlong Gao8898c212013-01-24 23:51:30 +00001159 if (vi->curr_queue_pairs == 1 ||
1160 vi->max_queue_pairs != num_online_cpus()) {
1161 virtnet_clean_affinity(vi, -1);
1162 return;
Jason Wang986a4f42012-12-07 07:04:56 +00001163 }
1164
Wanlong Gao8898c212013-01-24 23:51:30 +00001165 i = 0;
1166 for_each_online_cpu(cpu) {
Jason Wang986a4f42012-12-07 07:04:56 +00001167 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1168 virtqueue_set_affinity(vi->sq[i].vq, cpu);
Jason Wang9bb8ca82013-11-05 18:19:45 +08001169 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
Wanlong Gao8898c212013-01-24 23:51:30 +00001170 i++;
Jason Wang986a4f42012-12-07 07:04:56 +00001171 }
1172
Wanlong Gao8898c212013-01-24 23:51:30 +00001173 vi->affinity_hint_set = true;
Jason Wang986a4f42012-12-07 07:04:56 +00001174}
1175
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001176static int virtnet_cpu_callback(struct notifier_block *nfb,
1177 unsigned long action, void *hcpu)
1178{
1179 struct virtnet_info *vi = container_of(nfb, struct virtnet_info, nb);
1180
1181 switch(action & ~CPU_TASKS_FROZEN) {
1182 case CPU_ONLINE:
1183 case CPU_DOWN_FAILED:
1184 case CPU_DEAD:
1185 virtnet_set_affinity(vi);
1186 break;
1187 case CPU_DOWN_PREPARE:
1188 virtnet_clean_affinity(vi, (long)hcpu);
1189 break;
1190 default:
1191 break;
1192 }
Jason Wang3ab098d2013-10-15 11:18:58 +08001193
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001194 return NOTIFY_OK;
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001195}
1196
Rick Jones8f9f4662011-10-19 08:10:59 +00001197static void virtnet_get_ringparam(struct net_device *dev,
1198 struct ethtool_ringparam *ring)
1199{
1200 struct virtnet_info *vi = netdev_priv(dev);
1201
Jason Wang986a4f42012-12-07 07:04:56 +00001202 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1203 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
Rick Jones8f9f4662011-10-19 08:10:59 +00001204 ring->rx_pending = ring->rx_max_pending;
1205 ring->tx_pending = ring->tx_max_pending;
Rick Jones8f9f4662011-10-19 08:10:59 +00001206}
1207
Rick Jones66846042011-11-14 14:17:08 +00001208
1209static void virtnet_get_drvinfo(struct net_device *dev,
1210 struct ethtool_drvinfo *info)
1211{
1212 struct virtnet_info *vi = netdev_priv(dev);
1213 struct virtio_device *vdev = vi->vdev;
1214
1215 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1216 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1217 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1218
1219}
1220
Jason Wangd73bcd22012-12-07 07:04:57 +00001221/* TODO: Eliminate OOO packets during switching */
1222static int virtnet_set_channels(struct net_device *dev,
1223 struct ethtool_channels *channels)
1224{
1225 struct virtnet_info *vi = netdev_priv(dev);
1226 u16 queue_pairs = channels->combined_count;
1227 int err;
1228
1229 /* We don't support separate rx/tx channels.
1230 * We don't allow setting 'other' channels.
1231 */
1232 if (channels->rx_count || channels->tx_count || channels->other_count)
1233 return -EINVAL;
1234
1235 if (queue_pairs > vi->max_queue_pairs)
1236 return -EINVAL;
1237
Wanlong Gao47be2472013-01-24 23:51:29 +00001238 get_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001239 err = virtnet_set_queues(vi, queue_pairs);
1240 if (!err) {
1241 netif_set_real_num_tx_queues(dev, queue_pairs);
1242 netif_set_real_num_rx_queues(dev, queue_pairs);
1243
Wanlong Gao8898c212013-01-24 23:51:30 +00001244 virtnet_set_affinity(vi);
Jason Wangd73bcd22012-12-07 07:04:57 +00001245 }
Wanlong Gao47be2472013-01-24 23:51:29 +00001246 put_online_cpus();
Jason Wangd73bcd22012-12-07 07:04:57 +00001247
1248 return err;
1249}
1250
1251static void virtnet_get_channels(struct net_device *dev,
1252 struct ethtool_channels *channels)
1253{
1254 struct virtnet_info *vi = netdev_priv(dev);
1255
1256 channels->combined_count = vi->curr_queue_pairs;
1257 channels->max_combined = vi->max_queue_pairs;
1258 channels->max_other = 0;
1259 channels->rx_count = 0;
1260 channels->tx_count = 0;
1261 channels->other_count = 0;
1262}
1263
Stephen Hemminger0fc0b732009-09-02 01:03:33 -07001264static const struct ethtool_ops virtnet_ethtool_ops = {
Rick Jones66846042011-11-14 14:17:08 +00001265 .get_drvinfo = virtnet_get_drvinfo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001266 .get_link = ethtool_op_get_link,
Rick Jones8f9f4662011-10-19 08:10:59 +00001267 .get_ringparam = virtnet_get_ringparam,
Jason Wangd73bcd22012-12-07 07:04:57 +00001268 .set_channels = virtnet_set_channels,
1269 .get_channels = virtnet_get_channels,
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001270};
1271
Mark McLoughlin39da5812008-11-26 13:58:11 +00001272#define MIN_MTU 68
1273#define MAX_MTU 65535
1274
1275static int virtnet_change_mtu(struct net_device *dev, int new_mtu)
1276{
1277 if (new_mtu < MIN_MTU || new_mtu > MAX_MTU)
1278 return -EINVAL;
1279 dev->mtu = new_mtu;
1280 return 0;
1281}
1282
Stephen Hemminger76288b42009-01-06 10:44:22 -08001283static const struct net_device_ops virtnet_netdev = {
1284 .ndo_open = virtnet_open,
1285 .ndo_stop = virtnet_close,
1286 .ndo_start_xmit = start_xmit,
1287 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -08001288 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +00001289 .ndo_set_rx_mode = virtnet_set_rx_mode,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001290 .ndo_change_mtu = virtnet_change_mtu,
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001291 .ndo_get_stats64 = virtnet_stats,
Alex Williamson1824a982009-05-01 17:31:10 +00001292 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
1293 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -08001294#ifdef CONFIG_NET_POLL_CONTROLLER
1295 .ndo_poll_controller = virtnet_netpoll,
1296#endif
1297};
1298
Jason Wang586d17c2012-04-11 20:43:52 +00001299static void virtnet_config_changed_work(struct work_struct *work)
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001300{
Jason Wang586d17c2012-04-11 20:43:52 +00001301 struct virtnet_info *vi =
1302 container_of(work, struct virtnet_info, config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001303 u16 v;
1304
Jason Wang586d17c2012-04-11 20:43:52 +00001305 mutex_lock(&vi->config_lock);
1306 if (!vi->config_enable)
1307 goto done;
1308
Rusty Russell855e0c52013-10-14 18:11:51 +10301309 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
1310 struct virtio_net_config, status, &v) < 0)
Jason Wang586d17c2012-04-11 20:43:52 +00001311 goto done;
1312
1313 if (v & VIRTIO_NET_S_ANNOUNCE) {
Amerigo Wangee89bab2012-08-09 22:14:56 +00001314 netdev_notify_peers(vi->dev);
Jason Wang586d17c2012-04-11 20:43:52 +00001315 virtnet_ack_link_announce(vi);
1316 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001317
1318 /* Ignore unknown (future) status bits */
1319 v &= VIRTIO_NET_S_LINK_UP;
1320
1321 if (vi->status == v)
Jason Wang586d17c2012-04-11 20:43:52 +00001322 goto done;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001323
1324 vi->status = v;
1325
1326 if (vi->status & VIRTIO_NET_S_LINK_UP) {
1327 netif_carrier_on(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001328 netif_tx_wake_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001329 } else {
1330 netif_carrier_off(vi->dev);
Jason Wang986a4f42012-12-07 07:04:56 +00001331 netif_tx_stop_all_queues(vi->dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001332 }
Jason Wang586d17c2012-04-11 20:43:52 +00001333done:
1334 mutex_unlock(&vi->config_lock);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001335}
1336
1337static void virtnet_config_changed(struct virtio_device *vdev)
1338{
1339 struct virtnet_info *vi = vdev->priv;
1340
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001341 schedule_work(&vi->config_work);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001342}
1343
Jason Wang986a4f42012-12-07 07:04:56 +00001344static void virtnet_free_queues(struct virtnet_info *vi)
1345{
Andrey Vagind4fb84e2013-12-05 18:36:21 +04001346 int i;
1347
1348 for (i = 0; i < vi->max_queue_pairs; i++)
1349 netif_napi_del(&vi->rq[i].napi);
1350
Jason Wang986a4f42012-12-07 07:04:56 +00001351 kfree(vi->rq);
1352 kfree(vi->sq);
1353}
1354
1355static void free_receive_bufs(struct virtnet_info *vi)
1356{
1357 int i;
1358
1359 for (i = 0; i < vi->max_queue_pairs; i++) {
1360 while (vi->rq[i].pages)
1361 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
1362 }
1363}
1364
Michael Daltonfb518792014-01-16 22:23:26 -08001365static void free_receive_page_frags(struct virtnet_info *vi)
1366{
1367 int i;
1368 for (i = 0; i < vi->max_queue_pairs; i++)
1369 if (vi->rq[i].alloc_frag.page)
1370 put_page(vi->rq[i].alloc_frag.page);
1371}
1372
Jason Wang986a4f42012-12-07 07:04:56 +00001373static void free_unused_bufs(struct virtnet_info *vi)
1374{
1375 void *buf;
1376 int i;
1377
1378 for (i = 0; i < vi->max_queue_pairs; i++) {
1379 struct virtqueue *vq = vi->sq[i].vq;
1380 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
1381 dev_kfree_skb(buf);
1382 }
1383
1384 for (i = 0; i < vi->max_queue_pairs; i++) {
1385 struct virtqueue *vq = vi->rq[i].vq;
1386
1387 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
Andrey Vaginfa9fac12013-12-05 18:36:20 +04001388 if (vi->mergeable_rx_bufs)
Michael Dalton2613af02013-10-28 15:44:18 -07001389 put_page(virt_to_head_page(buf));
Andrey Vaginfa9fac12013-12-05 18:36:20 +04001390 else if (vi->big_packets)
1391 give_pages(&vi->rq[i], buf);
Jason Wang986a4f42012-12-07 07:04:56 +00001392 else
1393 dev_kfree_skb(buf);
Jason Wang986a4f42012-12-07 07:04:56 +00001394 }
Jason Wang986a4f42012-12-07 07:04:56 +00001395 }
1396}
1397
Jason Wange9d74172012-12-07 07:04:55 +00001398static void virtnet_del_vqs(struct virtnet_info *vi)
1399{
1400 struct virtio_device *vdev = vi->vdev;
1401
Wanlong Gao8898c212013-01-24 23:51:30 +00001402 virtnet_clean_affinity(vi, -1);
Jason Wang986a4f42012-12-07 07:04:56 +00001403
Jason Wange9d74172012-12-07 07:04:55 +00001404 vdev->config->del_vqs(vdev);
Jason Wang986a4f42012-12-07 07:04:56 +00001405
1406 virtnet_free_queues(vi);
1407}
1408
1409static int virtnet_find_vqs(struct virtnet_info *vi)
1410{
1411 vq_callback_t **callbacks;
1412 struct virtqueue **vqs;
1413 int ret = -ENOMEM;
1414 int i, total_vqs;
1415 const char **names;
1416
1417 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
1418 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
1419 * possible control vq.
1420 */
1421 total_vqs = vi->max_queue_pairs * 2 +
1422 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
1423
1424 /* Allocate space for find_vqs parameters */
1425 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
1426 if (!vqs)
1427 goto err_vq;
1428 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
1429 if (!callbacks)
1430 goto err_callback;
1431 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
1432 if (!names)
1433 goto err_names;
1434
1435 /* Parameters for control virtqueue, if any */
1436 if (vi->has_cvq) {
1437 callbacks[total_vqs - 1] = NULL;
1438 names[total_vqs - 1] = "control";
1439 }
1440
1441 /* Allocate/initialize parameters for send/receive virtqueues */
1442 for (i = 0; i < vi->max_queue_pairs; i++) {
1443 callbacks[rxq2vq(i)] = skb_recv_done;
1444 callbacks[txq2vq(i)] = skb_xmit_done;
1445 sprintf(vi->rq[i].name, "input.%d", i);
1446 sprintf(vi->sq[i].name, "output.%d", i);
1447 names[rxq2vq(i)] = vi->rq[i].name;
1448 names[txq2vq(i)] = vi->sq[i].name;
1449 }
1450
1451 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
1452 names);
1453 if (ret)
1454 goto err_find;
1455
1456 if (vi->has_cvq) {
1457 vi->cvq = vqs[total_vqs - 1];
1458 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
Patrick McHardyf6469682013-04-19 02:04:27 +00001459 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
Jason Wang986a4f42012-12-07 07:04:56 +00001460 }
1461
1462 for (i = 0; i < vi->max_queue_pairs; i++) {
1463 vi->rq[i].vq = vqs[rxq2vq(i)];
1464 vi->sq[i].vq = vqs[txq2vq(i)];
1465 }
1466
1467 kfree(names);
1468 kfree(callbacks);
1469 kfree(vqs);
1470
1471 return 0;
1472
1473err_find:
1474 kfree(names);
1475err_names:
1476 kfree(callbacks);
1477err_callback:
1478 kfree(vqs);
1479err_vq:
1480 return ret;
1481}
1482
1483static int virtnet_alloc_queues(struct virtnet_info *vi)
1484{
1485 int i;
1486
1487 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
1488 if (!vi->sq)
1489 goto err_sq;
1490 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
Amerigo Wang008d4272012-12-10 02:24:08 +00001491 if (!vi->rq)
Jason Wang986a4f42012-12-07 07:04:56 +00001492 goto err_rq;
1493
1494 INIT_DELAYED_WORK(&vi->refill, refill_work);
1495 for (i = 0; i < vi->max_queue_pairs; i++) {
1496 vi->rq[i].pages = NULL;
1497 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
1498 napi_weight);
1499
1500 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
1501 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
1502 }
1503
1504 return 0;
1505
1506err_rq:
1507 kfree(vi->sq);
1508err_sq:
1509 return -ENOMEM;
Jason Wange9d74172012-12-07 07:04:55 +00001510}
1511
Amit Shah3f9c10b2011-12-22 16:58:31 +05301512static int init_vqs(struct virtnet_info *vi)
1513{
Jason Wang986a4f42012-12-07 07:04:56 +00001514 int ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301515
Jason Wang986a4f42012-12-07 07:04:56 +00001516 /* Allocate send & receive queues */
1517 ret = virtnet_alloc_queues(vi);
1518 if (ret)
1519 goto err;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301520
Jason Wang986a4f42012-12-07 07:04:56 +00001521 ret = virtnet_find_vqs(vi);
1522 if (ret)
1523 goto err_free;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301524
Wanlong Gao47be2472013-01-24 23:51:29 +00001525 get_online_cpus();
Wanlong Gao8898c212013-01-24 23:51:30 +00001526 virtnet_set_affinity(vi);
Wanlong Gao47be2472013-01-24 23:51:29 +00001527 put_online_cpus();
1528
Amit Shah3f9c10b2011-12-22 16:58:31 +05301529 return 0;
Jason Wang986a4f42012-12-07 07:04:56 +00001530
1531err_free:
1532 virtnet_free_queues(vi);
1533err:
1534 return ret;
Amit Shah3f9c10b2011-12-22 16:58:31 +05301535}
1536
Rusty Russell296f96f2007-10-22 11:03:37 +10001537static int virtnet_probe(struct virtio_device *vdev)
1538{
Jason Wang986a4f42012-12-07 07:04:56 +00001539 int i, err;
Rusty Russell296f96f2007-10-22 11:03:37 +10001540 struct net_device *dev;
1541 struct virtnet_info *vi;
Jason Wang986a4f42012-12-07 07:04:56 +00001542 u16 max_queue_pairs;
1543
1544 /* Find if host supports multiqueue virtio_net device */
Rusty Russell855e0c52013-10-14 18:11:51 +10301545 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
1546 struct virtio_net_config,
1547 max_virtqueue_pairs, &max_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00001548
1549 /* We need at least 2 queue's */
1550 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
1551 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
1552 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
1553 max_queue_pairs = 1;
Rusty Russell296f96f2007-10-22 11:03:37 +10001554
1555 /* Allocate ourselves a network device with room for our info */
Jason Wang986a4f42012-12-07 07:04:56 +00001556 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
Rusty Russell296f96f2007-10-22 11:03:37 +10001557 if (!dev)
1558 return -ENOMEM;
1559
1560 /* Set up network device as normal. */
Jiri Pirkof2f2c8b2012-06-29 05:10:06 +00001561 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
Stephen Hemminger76288b42009-01-06 10:44:22 -08001562 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +10001563 dev->features = NETIF_F_HIGHDMA;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001564
Herbert Xua9ea3fc2008-04-18 11:21:42 +08001565 SET_ETHTOOL_OPS(dev, &virtnet_ethtool_ops);
Rusty Russell296f96f2007-10-22 11:03:37 +10001566 SET_NETDEV_DEV(dev, &vdev->dev);
1567
1568 /* Do we support "hardware" checksums? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00001569 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +10001570 /* This opens up the world of extra features. */
Michał Mirosław98e778c2011-03-31 01:01:35 +00001571 dev->hw_features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
1572 if (csum)
1573 dev->features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
1574
1575 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
1576 dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO
Rusty Russell34a48572008-02-04 23:50:02 -05001577 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
1578 }
Rusty Russell5539ae92008-05-02 21:50:46 -05001579 /* Individual feature bits: what can host handle? */
Michał Mirosław98e778c2011-03-31 01:01:35 +00001580 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
1581 dev->hw_features |= NETIF_F_TSO;
1582 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
1583 dev->hw_features |= NETIF_F_TSO6;
1584 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
1585 dev->hw_features |= NETIF_F_TSO_ECN;
1586 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
1587 dev->hw_features |= NETIF_F_UFO;
1588
1589 if (gso)
1590 dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO);
1591 /* (!csum && gso) case will be fixed by register_netdev() */
Rusty Russell296f96f2007-10-22 11:03:37 +10001592 }
Thomas Huth4f491292013-08-27 17:09:02 +02001593 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
1594 dev->features |= NETIF_F_RXCSUM;
Rusty Russell296f96f2007-10-22 11:03:37 +10001595
Jason Wang4fda8302013-04-10 23:32:21 +00001596 dev->vlan_features = dev->features;
1597
Rusty Russell296f96f2007-10-22 11:03:37 +10001598 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russell855e0c52013-10-14 18:11:51 +10301599 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
1600 virtio_cread_bytes(vdev,
1601 offsetof(struct virtio_net_config, mac),
1602 dev->dev_addr, dev->addr_len);
1603 else
Danny Kukawkaf2cedb62012-02-15 06:45:39 +00001604 eth_hw_addr_random(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10001605
1606 /* Set up our device-specific information */
1607 vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10001608 vi->dev = dev;
1609 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +01001610 vdev->priv = vi;
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001611 vi->stats = alloc_percpu(struct virtnet_stats);
1612 err = -ENOMEM;
1613 if (vi->stats == NULL)
1614 goto free;
1615
John Stultz827da442013-10-07 15:51:58 -07001616 for_each_possible_cpu(i) {
1617 struct virtnet_stats *virtnet_stats;
1618 virtnet_stats = per_cpu_ptr(vi->stats, i);
1619 u64_stats_init(&virtnet_stats->tx_syncp);
1620 u64_stats_init(&virtnet_stats->rx_syncp);
1621 }
1622
Jason Wang586d17c2012-04-11 20:43:52 +00001623 mutex_init(&vi->config_lock);
1624 vi->config_enable = true;
1625 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
Rusty Russell296f96f2007-10-22 11:03:37 +10001626
Herbert Xu97402b92008-04-18 11:24:27 +08001627 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +00001628 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
1629 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
1630 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN))
Herbert Xu97402b92008-04-18 11:24:27 +08001631 vi->big_packets = true;
1632
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -08001633 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
1634 vi->mergeable_rx_bufs = true;
1635
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301636 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT))
1637 vi->any_header_sg = true;
1638
Jason Wang986a4f42012-12-07 07:04:56 +00001639 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
1640 vi->has_cvq = true;
1641
1642 /* Use single tx/rx queue pair as default */
1643 vi->curr_queue_pairs = 1;
1644 vi->max_queue_pairs = max_queue_pairs;
1645
1646 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
Amit Shah3f9c10b2011-12-22 16:58:31 +05301647 err = init_vqs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06001648 if (err)
Jason Wang9bb8ca82013-11-05 18:19:45 +08001649 goto free_stats;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06001650
Zhi Yong Wu0f13b662013-11-18 21:19:27 +08001651 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
1652 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
Jason Wang986a4f42012-12-07 07:04:56 +00001653
Rusty Russell296f96f2007-10-22 11:03:37 +10001654 err = register_netdev(dev);
1655 if (err) {
1656 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06001657 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +10001658 }
Rusty Russellb3369c12008-02-04 23:50:02 -05001659
1660 /* Last of all, set up some receive buffers. */
Sasha Levin55257d72013-04-29 12:00:08 +09301661 for (i = 0; i < vi->curr_queue_pairs; i++) {
Jason Wang986a4f42012-12-07 07:04:56 +00001662 try_fill_recv(&vi->rq[i], GFP_KERNEL);
Rusty Russellb3369c12008-02-04 23:50:02 -05001663
Jason Wang986a4f42012-12-07 07:04:56 +00001664 /* If we didn't even get one input buffer, we're useless. */
Jason Wangbe121f42014-01-16 14:45:24 +08001665 if (vi->rq[i].vq->num_free ==
1666 virtqueue_get_vring_size(vi->rq[i].vq)) {
Jason Wang986a4f42012-12-07 07:04:56 +00001667 free_unused_bufs(vi);
1668 err = -ENOMEM;
1669 goto free_recv_bufs;
1670 }
Rusty Russellb3369c12008-02-04 23:50:02 -05001671 }
1672
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001673 vi->nb.notifier_call = &virtnet_cpu_callback;
1674 err = register_hotcpu_notifier(&vi->nb);
1675 if (err) {
1676 pr_debug("virtio_net: registering cpu notifier failed\n");
1677 goto free_recv_bufs;
1678 }
1679
Jason Wang167c25e2010-11-10 14:45:41 +00001680 /* Assume link up if device can't report link status,
1681 otherwise get link status from config. */
1682 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
1683 netif_carrier_off(dev);
Tejun Heo3b07e9c2012-08-20 14:51:24 -07001684 schedule_work(&vi->config_work);
Jason Wang167c25e2010-11-10 14:45:41 +00001685 } else {
1686 vi->status = VIRTIO_NET_S_LINK_UP;
1687 netif_carrier_on(dev);
1688 }
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001689
Jason Wang986a4f42012-12-07 07:04:56 +00001690 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
1691 dev->name, max_queue_pairs);
1692
Rusty Russell296f96f2007-10-22 11:03:37 +10001693 return 0;
1694
Jason Wang986a4f42012-12-07 07:04:56 +00001695free_recv_bufs:
1696 free_receive_bufs(vi);
Rusty Russellb3369c12008-02-04 23:50:02 -05001697 unregister_netdev(dev);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06001698free_vqs:
Jason Wang986a4f42012-12-07 07:04:56 +00001699 cancel_delayed_work_sync(&vi->refill);
Michael Daltonfb518792014-01-16 22:23:26 -08001700 free_receive_page_frags(vi);
Jason Wange9d74172012-12-07 07:04:55 +00001701 virtnet_del_vqs(vi);
stephen hemminger3fa2a1d2011-06-15 06:36:29 +00001702free_stats:
1703 free_percpu(vi->stats);
Rusty Russell296f96f2007-10-22 11:03:37 +10001704free:
1705 free_netdev(dev);
1706 return err;
1707}
1708
Amit Shah04486ed2011-12-22 16:58:32 +05301709static void remove_vq_common(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +10001710{
Amit Shah04486ed2011-12-22 16:58:32 +05301711 vi->vdev->config->reset(vi->vdev);
Shirley Ma830a8a92010-02-08 14:14:42 +00001712
1713 /* Free unused buffers in both send and recv, if any. */
Shirley Ma9ab86bb2010-01-29 03:20:04 +00001714 free_unused_bufs(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05001715
Jason Wang986a4f42012-12-07 07:04:56 +00001716 free_receive_bufs(vi);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -06001717
Michael Daltonfb518792014-01-16 22:23:26 -08001718 free_receive_page_frags(vi);
1719
Jason Wang986a4f42012-12-07 07:04:56 +00001720 virtnet_del_vqs(vi);
Amit Shah04486ed2011-12-22 16:58:32 +05301721}
1722
Bill Pemberton8cc085d2012-12-03 09:24:15 -05001723static void virtnet_remove(struct virtio_device *vdev)
Amit Shah04486ed2011-12-22 16:58:32 +05301724{
1725 struct virtnet_info *vi = vdev->priv;
1726
Wanlong Gao8de4b2f2013-01-24 23:51:31 +00001727 unregister_hotcpu_notifier(&vi->nb);
1728
Jason Wang586d17c2012-04-11 20:43:52 +00001729 /* Prevent config work handler from accessing the device. */
1730 mutex_lock(&vi->config_lock);
1731 vi->config_enable = false;
1732 mutex_unlock(&vi->config_lock);
1733
Amit Shah04486ed2011-12-22 16:58:32 +05301734 unregister_netdev(vi->dev);
1735
1736 remove_vq_common(vi);
Rusty Russellfb6813f2008-07-25 12:06:01 -05001737
Jason Wang586d17c2012-04-11 20:43:52 +00001738 flush_work(&vi->config_work);
1739
Krishna Kumar2e66f552011-07-20 03:56:02 +00001740 free_percpu(vi->stats);
Rusty Russell74b25532007-11-19 11:20:42 -05001741 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +10001742}
1743
Aaron Lu89107002013-09-17 09:25:23 +09301744#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05301745static int virtnet_freeze(struct virtio_device *vdev)
1746{
1747 struct virtnet_info *vi = vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001748 int i;
Amit Shah0741bcb2011-12-22 16:58:33 +05301749
Jason Wangec9debb2013-10-29 15:11:07 +08001750 unregister_hotcpu_notifier(&vi->nb);
1751
Jason Wang586d17c2012-04-11 20:43:52 +00001752 /* Prevent config work handler from accessing the device */
1753 mutex_lock(&vi->config_lock);
1754 vi->config_enable = false;
1755 mutex_unlock(&vi->config_lock);
1756
Amit Shah0741bcb2011-12-22 16:58:33 +05301757 netif_device_detach(vi->dev);
1758 cancel_delayed_work_sync(&vi->refill);
1759
1760 if (netif_running(vi->dev))
Jason Wang986a4f42012-12-07 07:04:56 +00001761 for (i = 0; i < vi->max_queue_pairs; i++) {
1762 napi_disable(&vi->rq[i].napi);
1763 netif_napi_del(&vi->rq[i].napi);
1764 }
Amit Shah0741bcb2011-12-22 16:58:33 +05301765
1766 remove_vq_common(vi);
1767
Jason Wang586d17c2012-04-11 20:43:52 +00001768 flush_work(&vi->config_work);
1769
Amit Shah0741bcb2011-12-22 16:58:33 +05301770 return 0;
1771}
1772
1773static int virtnet_restore(struct virtio_device *vdev)
1774{
1775 struct virtnet_info *vi = vdev->priv;
Jason Wang986a4f42012-12-07 07:04:56 +00001776 int err, i;
Amit Shah0741bcb2011-12-22 16:58:33 +05301777
1778 err = init_vqs(vi);
1779 if (err)
1780 return err;
1781
Jason Wang6cd4ce02013-12-30 11:34:40 +08001782 if (netif_running(vi->dev)) {
1783 for (i = 0; i < vi->curr_queue_pairs; i++)
1784 if (!try_fill_recv(&vi->rq[i], GFP_KERNEL))
1785 schedule_delayed_work(&vi->refill, 0);
1786
Jason Wang986a4f42012-12-07 07:04:56 +00001787 for (i = 0; i < vi->max_queue_pairs; i++)
1788 virtnet_napi_enable(&vi->rq[i]);
Jason Wang6cd4ce02013-12-30 11:34:40 +08001789 }
Amit Shah0741bcb2011-12-22 16:58:33 +05301790
1791 netif_device_attach(vi->dev);
1792
Jason Wang586d17c2012-04-11 20:43:52 +00001793 mutex_lock(&vi->config_lock);
1794 vi->config_enable = true;
1795 mutex_unlock(&vi->config_lock);
1796
Jason Wang35ed1592013-10-15 11:18:59 +08001797 rtnl_lock();
Jason Wang986a4f42012-12-07 07:04:56 +00001798 virtnet_set_queues(vi, vi->curr_queue_pairs);
Jason Wang35ed1592013-10-15 11:18:59 +08001799 rtnl_unlock();
Jason Wang986a4f42012-12-07 07:04:56 +00001800
Jason Wangec9debb2013-10-29 15:11:07 +08001801 err = register_hotcpu_notifier(&vi->nb);
1802 if (err)
1803 return err;
1804
Amit Shah0741bcb2011-12-22 16:58:33 +05301805 return 0;
1806}
1807#endif
1808
Rusty Russell296f96f2007-10-22 11:03:37 +10001809static struct virtio_device_id id_table[] = {
1810 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
1811 { 0 },
1812};
1813
Rusty Russellc45a6812008-05-02 21:50:50 -05001814static unsigned int features[] = {
Mark McLoughlin5e4fe5c2008-07-08 17:10:42 +10001815 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM,
1816 VIRTIO_NET_F_GSO, VIRTIO_NET_F_MAC,
Rusty Russellc45a6812008-05-02 21:50:50 -05001817 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6,
Herbert Xu97402b92008-04-18 11:24:27 +08001818 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6,
Sridhar Samudrala5c516752009-07-14 14:21:02 +00001819 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO,
Alex Williamson2a41f712009-02-04 09:02:34 +00001820 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ,
Alex Williamson0bde95692009-02-04 09:02:50 +00001821 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN,
Jason Wang986a4f42012-12-07 07:04:56 +00001822 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ,
Amos Kong7e58d5a2013-01-21 01:17:23 +00001823 VIRTIO_NET_F_CTRL_MAC_ADDR,
Michael S. Tsirkine7428e92013-07-25 10:20:23 +09301824 VIRTIO_F_ANY_LAYOUT,
Rusty Russellc45a6812008-05-02 21:50:50 -05001825};
1826
Uwe Kleine-König22402522009-11-05 01:32:44 -08001827static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05001828 .feature_table = features,
1829 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell296f96f2007-10-22 11:03:37 +10001830 .driver.name = KBUILD_MODNAME,
1831 .driver.owner = THIS_MODULE,
1832 .id_table = id_table,
1833 .probe = virtnet_probe,
Bill Pemberton8cc085d2012-12-03 09:24:15 -05001834 .remove = virtnet_remove,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001835 .config_changed = virtnet_config_changed,
Aaron Lu89107002013-09-17 09:25:23 +09301836#ifdef CONFIG_PM_SLEEP
Amit Shah0741bcb2011-12-22 16:58:33 +05301837 .freeze = virtnet_freeze,
1838 .restore = virtnet_restore,
1839#endif
Rusty Russell296f96f2007-10-22 11:03:37 +10001840};
1841
Rusty Russellb2a17022013-02-13 16:59:28 +10301842module_virtio_driver(virtio_net_driver);
Rusty Russell296f96f2007-10-22 11:03:37 +10001843
1844MODULE_DEVICE_TABLE(virtio, id_table);
1845MODULE_DESCRIPTION("Virtio network driver");
1846MODULE_LICENSE("GPL");