drivers/net/*: Fix FSF address in file headers
[deliverable/linux.git] / drivers / net / virtio_net.c
1 /* A network driver using virtio.
2 *
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
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
17 */
18 //#define DEBUG
19 #include <linux/netdevice.h>
20 #include <linux/etherdevice.h>
21 #include <linux/ethtool.h>
22 #include <linux/module.h>
23 #include <linux/virtio.h>
24 #include <linux/virtio_net.h>
25 #include <linux/scatterlist.h>
26 #include <linux/if_vlan.h>
27 #include <linux/slab.h>
28 #include <linux/cpu.h>
29
30 static int napi_weight = NAPI_POLL_WEIGHT;
31 module_param(napi_weight, int, 0444);
32
33 static bool csum = true, gso = true;
34 module_param(csum, bool, 0444);
35 module_param(gso, bool, 0444);
36
37 /* FIXME: MTU in config. */
38 #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))
42 #define GOOD_COPY_LEN 128
43
44 #define VIRTNET_DRIVER_VERSION "1.0.0"
45
46 struct virtnet_stats {
47 struct u64_stats_sync tx_syncp;
48 struct u64_stats_sync rx_syncp;
49 u64 tx_bytes;
50 u64 tx_packets;
51
52 u64 rx_bytes;
53 u64 rx_packets;
54 };
55
56 /* Internal representation of a send virtqueue */
57 struct 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];
63
64 /* Name of the send queue: output.$index */
65 char name[40];
66 };
67
68 /* Internal representation of a receive virtqueue */
69 struct receive_queue {
70 /* Virtqueue associated with this receive_queue */
71 struct virtqueue *vq;
72
73 struct napi_struct napi;
74
75 /* Number of input buffers, and max we've ever had. */
76 unsigned int num, max;
77
78 /* Chain pages by the private ptr. */
79 struct page *pages;
80
81 /* RX: fragments + linear part + virtio header */
82 struct scatterlist sg[MAX_SKB_FRAGS + 2];
83
84 /* Name of this receive queue: input.$index */
85 char name[40];
86 };
87
88 struct virtnet_info {
89 struct virtio_device *vdev;
90 struct virtqueue *cvq;
91 struct net_device *dev;
92 struct send_queue *sq;
93 struct receive_queue *rq;
94 unsigned int status;
95
96 /* 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
102 /* I like... big packets and I cannot lie! */
103 bool big_packets;
104
105 /* Host will merge rx buffers for big packets (shake it! shake it!) */
106 bool mergeable_rx_bufs;
107
108 /* Has control virtqueue */
109 bool has_cvq;
110
111 /* Host can handle any s/g split between our header and packet data */
112 bool any_header_sg;
113
114 /* enable config space updates */
115 bool config_enable;
116
117 /* Active statistics */
118 struct virtnet_stats __percpu *stats;
119
120 /* Work struct for refilling if we run low on memory. */
121 struct delayed_work refill;
122
123 /* Work struct for config space updates */
124 struct work_struct config_work;
125
126 /* Lock for config space updates */
127 struct mutex config_lock;
128
129 /* Page_frag for GFP_KERNEL packet buffer allocation when we run
130 * low on memory.
131 */
132 struct page_frag alloc_frag;
133
134 /* Does the affinity hint is set for virtqueues? */
135 bool affinity_hint_set;
136
137 /* CPU hot plug notifier */
138 struct notifier_block nb;
139 };
140
141 struct skb_vnet_hdr {
142 union {
143 struct virtio_net_hdr hdr;
144 struct virtio_net_hdr_mrg_rxbuf mhdr;
145 };
146 };
147
148 struct padded_vnet_hdr {
149 struct virtio_net_hdr hdr;
150 /*
151 * virtio_net_hdr should be in a separated sg buffer because of a
152 * QEMU bug, and data sg buffer shares same page with this header sg.
153 * This padding makes next sg 16 byte aligned after virtio_net_hdr.
154 */
155 char padding[6];
156 };
157
158 /* Converting between virtqueue no. and kernel tx/rx queue no.
159 * 0:rx0 1:tx0 2:rx1 3:tx1 ... 2N:rxN 2N+1:txN 2N+2:cvq
160 */
161 static int vq2txq(struct virtqueue *vq)
162 {
163 return (vq->index - 1) / 2;
164 }
165
166 static int txq2vq(int txq)
167 {
168 return txq * 2 + 1;
169 }
170
171 static int vq2rxq(struct virtqueue *vq)
172 {
173 return vq->index / 2;
174 }
175
176 static int rxq2vq(int rxq)
177 {
178 return rxq * 2;
179 }
180
181 static inline struct skb_vnet_hdr *skb_vnet_hdr(struct sk_buff *skb)
182 {
183 return (struct skb_vnet_hdr *)skb->cb;
184 }
185
186 /*
187 * private is used to chain pages for big packets, put the whole
188 * most recent used list in the beginning for reuse
189 */
190 static void give_pages(struct receive_queue *rq, struct page *page)
191 {
192 struct page *end;
193
194 /* Find end of list, sew whole thing into vi->rq.pages. */
195 for (end = page; end->private; end = (struct page *)end->private);
196 end->private = (unsigned long)rq->pages;
197 rq->pages = page;
198 }
199
200 static struct page *get_a_page(struct receive_queue *rq, gfp_t gfp_mask)
201 {
202 struct page *p = rq->pages;
203
204 if (p) {
205 rq->pages = (struct page *)p->private;
206 /* clear private here, it is used to chain pages */
207 p->private = 0;
208 } else
209 p = alloc_page(gfp_mask);
210 return p;
211 }
212
213 static void skb_xmit_done(struct virtqueue *vq)
214 {
215 struct virtnet_info *vi = vq->vdev->priv;
216
217 /* Suppress further interrupts. */
218 virtqueue_disable_cb(vq);
219
220 /* We were probably waiting for more output buffers. */
221 netif_wake_subqueue(vi->dev, vq2txq(vq));
222 }
223
224 /* Called from bottom half context */
225 static struct sk_buff *page_to_skb(struct receive_queue *rq,
226 struct page *page, unsigned int offset,
227 unsigned int len, unsigned int truesize)
228 {
229 struct virtnet_info *vi = rq->vq->vdev->priv;
230 struct sk_buff *skb;
231 struct skb_vnet_hdr *hdr;
232 unsigned int copy, hdr_len, hdr_padded_len;
233 char *p;
234
235 p = page_address(page) + offset;
236
237 /* copy small packet so we can reuse these pages for small data */
238 skb = netdev_alloc_skb_ip_align(vi->dev, GOOD_COPY_LEN);
239 if (unlikely(!skb))
240 return NULL;
241
242 hdr = skb_vnet_hdr(skb);
243
244 if (vi->mergeable_rx_bufs) {
245 hdr_len = sizeof hdr->mhdr;
246 hdr_padded_len = sizeof hdr->mhdr;
247 } else {
248 hdr_len = sizeof hdr->hdr;
249 hdr_padded_len = sizeof(struct padded_vnet_hdr);
250 }
251
252 memcpy(hdr, p, hdr_len);
253
254 len -= hdr_len;
255 offset += hdr_padded_len;
256 p += hdr_padded_len;
257
258 copy = len;
259 if (copy > skb_tailroom(skb))
260 copy = skb_tailroom(skb);
261 memcpy(skb_put(skb, copy), p, copy);
262
263 len -= copy;
264 offset += copy;
265
266 if (vi->mergeable_rx_bufs) {
267 if (len)
268 skb_add_rx_frag(skb, 0, page, offset, len, truesize);
269 else
270 put_page(page);
271 return skb;
272 }
273
274 /*
275 * Verify that we can indeed put this data into a skb.
276 * This is here to handle cases when the device erroneously
277 * tries to receive more than is possible. This is usually
278 * the case of a broken device.
279 */
280 if (unlikely(len > MAX_SKB_FRAGS * PAGE_SIZE)) {
281 net_dbg_ratelimited("%s: too much data\n", skb->dev->name);
282 dev_kfree_skb(skb);
283 return NULL;
284 }
285 BUG_ON(offset >= PAGE_SIZE);
286 while (len) {
287 unsigned int frag_size = min((unsigned)PAGE_SIZE - offset, len);
288 skb_add_rx_frag(skb, skb_shinfo(skb)->nr_frags, page, offset,
289 frag_size, truesize);
290 len -= frag_size;
291 page = (struct page *)page->private;
292 offset = 0;
293 }
294
295 if (page)
296 give_pages(rq, page);
297
298 return skb;
299 }
300
301 static struct sk_buff *receive_small(void *buf, unsigned int len)
302 {
303 struct sk_buff * skb = buf;
304
305 len -= sizeof(struct virtio_net_hdr);
306 skb_trim(skb, len);
307
308 return skb;
309 }
310
311 static struct sk_buff *receive_big(struct net_device *dev,
312 struct receive_queue *rq,
313 void *buf,
314 unsigned int len)
315 {
316 struct page *page = buf;
317 struct sk_buff *skb = page_to_skb(rq, page, 0, len, PAGE_SIZE);
318
319 if (unlikely(!skb))
320 goto err;
321
322 return skb;
323
324 err:
325 dev->stats.rx_dropped++;
326 give_pages(rq, page);
327 return NULL;
328 }
329
330 static struct sk_buff *receive_mergeable(struct net_device *dev,
331 struct receive_queue *rq,
332 void *buf,
333 unsigned int len)
334 {
335 struct skb_vnet_hdr *hdr = buf;
336 int num_buf = hdr->mhdr.num_buffers;
337 struct page *page = virt_to_head_page(buf);
338 int offset = buf - page_address(page);
339 struct sk_buff *head_skb = page_to_skb(rq, page, offset, len,
340 MERGE_BUFFER_LEN);
341 struct sk_buff *curr_skb = head_skb;
342
343 if (unlikely(!curr_skb))
344 goto err_skb;
345
346 while (--num_buf) {
347 int num_skb_frags;
348
349 buf = virtqueue_get_buf(rq->vq, &len);
350 if (unlikely(!buf)) {
351 pr_debug("%s: rx error: %d buffers out of %d missing\n",
352 dev->name, num_buf, hdr->mhdr.num_buffers);
353 dev->stats.rx_length_errors++;
354 goto err_buf;
355 }
356 if (unlikely(len > MERGE_BUFFER_LEN)) {
357 pr_debug("%s: rx error: merge buffer too long\n",
358 dev->name);
359 len = MERGE_BUFFER_LEN;
360 }
361
362 page = virt_to_head_page(buf);
363 --rq->num;
364
365 num_skb_frags = skb_shinfo(curr_skb)->nr_frags;
366 if (unlikely(num_skb_frags == MAX_SKB_FRAGS)) {
367 struct sk_buff *nskb = alloc_skb(0, GFP_ATOMIC);
368
369 if (unlikely(!nskb))
370 goto err_skb;
371 if (curr_skb == head_skb)
372 skb_shinfo(curr_skb)->frag_list = nskb;
373 else
374 curr_skb->next = nskb;
375 curr_skb = nskb;
376 head_skb->truesize += nskb->truesize;
377 num_skb_frags = 0;
378 }
379 if (curr_skb != head_skb) {
380 head_skb->data_len += len;
381 head_skb->len += len;
382 head_skb->truesize += MERGE_BUFFER_LEN;
383 }
384 offset = buf - page_address(page);
385 if (skb_can_coalesce(curr_skb, num_skb_frags, page, offset)) {
386 put_page(page);
387 skb_coalesce_rx_frag(curr_skb, num_skb_frags - 1,
388 len, MERGE_BUFFER_LEN);
389 } else {
390 skb_add_rx_frag(curr_skb, num_skb_frags, page,
391 offset, len, MERGE_BUFFER_LEN);
392 }
393 }
394
395 return head_skb;
396
397 err_skb:
398 put_page(page);
399 while (--num_buf) {
400 buf = virtqueue_get_buf(rq->vq, &len);
401 if (unlikely(!buf)) {
402 pr_debug("%s: rx error: %d buffers missing\n",
403 dev->name, num_buf);
404 dev->stats.rx_length_errors++;
405 break;
406 }
407 page = virt_to_head_page(buf);
408 put_page(page);
409 --rq->num;
410 }
411 err_buf:
412 dev->stats.rx_dropped++;
413 dev_kfree_skb(head_skb);
414 return NULL;
415 }
416
417 static void receive_buf(struct receive_queue *rq, void *buf, unsigned int len)
418 {
419 struct virtnet_info *vi = rq->vq->vdev->priv;
420 struct net_device *dev = vi->dev;
421 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
422 struct sk_buff *skb;
423 struct skb_vnet_hdr *hdr;
424
425 if (unlikely(len < sizeof(struct virtio_net_hdr) + ETH_HLEN)) {
426 pr_debug("%s: short packet %i\n", dev->name, len);
427 dev->stats.rx_length_errors++;
428 if (vi->big_packets)
429 give_pages(rq, buf);
430 else if (vi->mergeable_rx_bufs)
431 put_page(virt_to_head_page(buf));
432 else
433 dev_kfree_skb(buf);
434 return;
435 }
436
437 if (vi->mergeable_rx_bufs)
438 skb = receive_mergeable(dev, rq, buf, len);
439 else if (vi->big_packets)
440 skb = receive_big(dev, rq, buf, len);
441 else
442 skb = receive_small(buf, len);
443
444 if (unlikely(!skb))
445 return;
446
447 hdr = skb_vnet_hdr(skb);
448
449 u64_stats_update_begin(&stats->rx_syncp);
450 stats->rx_bytes += skb->len;
451 stats->rx_packets++;
452 u64_stats_update_end(&stats->rx_syncp);
453
454 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
455 pr_debug("Needs csum!\n");
456 if (!skb_partial_csum_set(skb,
457 hdr->hdr.csum_start,
458 hdr->hdr.csum_offset))
459 goto frame_err;
460 } else if (hdr->hdr.flags & VIRTIO_NET_HDR_F_DATA_VALID) {
461 skb->ip_summed = CHECKSUM_UNNECESSARY;
462 }
463
464 skb->protocol = eth_type_trans(skb, dev);
465 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
466 ntohs(skb->protocol), skb->len, skb->pkt_type);
467
468 if (hdr->hdr.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
469 pr_debug("GSO!\n");
470 switch (hdr->hdr.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
471 case VIRTIO_NET_HDR_GSO_TCPV4:
472 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
473 break;
474 case VIRTIO_NET_HDR_GSO_UDP:
475 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
476 break;
477 case VIRTIO_NET_HDR_GSO_TCPV6:
478 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
479 break;
480 default:
481 net_warn_ratelimited("%s: bad gso type %u.\n",
482 dev->name, hdr->hdr.gso_type);
483 goto frame_err;
484 }
485
486 if (hdr->hdr.gso_type & VIRTIO_NET_HDR_GSO_ECN)
487 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
488
489 skb_shinfo(skb)->gso_size = hdr->hdr.gso_size;
490 if (skb_shinfo(skb)->gso_size == 0) {
491 net_warn_ratelimited("%s: zero gso size.\n", dev->name);
492 goto frame_err;
493 }
494
495 /* Header must be checked, and gso_segs computed. */
496 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
497 skb_shinfo(skb)->gso_segs = 0;
498 }
499
500 netif_receive_skb(skb);
501 return;
502
503 frame_err:
504 dev->stats.rx_frame_errors++;
505 dev_kfree_skb(skb);
506 }
507
508 static int add_recvbuf_small(struct receive_queue *rq, gfp_t gfp)
509 {
510 struct virtnet_info *vi = rq->vq->vdev->priv;
511 struct sk_buff *skb;
512 struct skb_vnet_hdr *hdr;
513 int err;
514
515 skb = __netdev_alloc_skb_ip_align(vi->dev, GOOD_PACKET_LEN, gfp);
516 if (unlikely(!skb))
517 return -ENOMEM;
518
519 skb_put(skb, GOOD_PACKET_LEN);
520
521 hdr = skb_vnet_hdr(skb);
522 sg_set_buf(rq->sg, &hdr->hdr, sizeof hdr->hdr);
523
524 skb_to_sgvec(skb, rq->sg + 1, 0, skb->len);
525
526 err = virtqueue_add_inbuf(rq->vq, rq->sg, 2, skb, gfp);
527 if (err < 0)
528 dev_kfree_skb(skb);
529
530 return err;
531 }
532
533 static int add_recvbuf_big(struct receive_queue *rq, gfp_t gfp)
534 {
535 struct page *first, *list = NULL;
536 char *p;
537 int i, err, offset;
538
539 /* page in rq->sg[MAX_SKB_FRAGS + 1] is list tail */
540 for (i = MAX_SKB_FRAGS + 1; i > 1; --i) {
541 first = get_a_page(rq, gfp);
542 if (!first) {
543 if (list)
544 give_pages(rq, list);
545 return -ENOMEM;
546 }
547 sg_set_buf(&rq->sg[i], page_address(first), PAGE_SIZE);
548
549 /* chain new page in list head to match sg */
550 first->private = (unsigned long)list;
551 list = first;
552 }
553
554 first = get_a_page(rq, gfp);
555 if (!first) {
556 give_pages(rq, list);
557 return -ENOMEM;
558 }
559 p = page_address(first);
560
561 /* rq->sg[0], rq->sg[1] share the same page */
562 /* a separated rq->sg[0] for virtio_net_hdr only due to QEMU bug */
563 sg_set_buf(&rq->sg[0], p, sizeof(struct virtio_net_hdr));
564
565 /* rq->sg[1] for data packet, from offset */
566 offset = sizeof(struct padded_vnet_hdr);
567 sg_set_buf(&rq->sg[1], p + offset, PAGE_SIZE - offset);
568
569 /* chain first in list head */
570 first->private = (unsigned long)list;
571 err = virtqueue_add_inbuf(rq->vq, rq->sg, MAX_SKB_FRAGS + 2,
572 first, gfp);
573 if (err < 0)
574 give_pages(rq, first);
575
576 return err;
577 }
578
579 static int add_recvbuf_mergeable(struct receive_queue *rq, gfp_t gfp)
580 {
581 struct virtnet_info *vi = rq->vq->vdev->priv;
582 char *buf = NULL;
583 int err;
584
585 if (gfp & __GFP_WAIT) {
586 if (skb_page_frag_refill(MERGE_BUFFER_LEN, &vi->alloc_frag,
587 gfp)) {
588 buf = (char *)page_address(vi->alloc_frag.page) +
589 vi->alloc_frag.offset;
590 get_page(vi->alloc_frag.page);
591 vi->alloc_frag.offset += MERGE_BUFFER_LEN;
592 }
593 } else {
594 buf = netdev_alloc_frag(MERGE_BUFFER_LEN);
595 }
596 if (!buf)
597 return -ENOMEM;
598
599 sg_init_one(rq->sg, buf, MERGE_BUFFER_LEN);
600 err = virtqueue_add_inbuf(rq->vq, rq->sg, 1, buf, gfp);
601 if (err < 0)
602 put_page(virt_to_head_page(buf));
603
604 return err;
605 }
606
607 /*
608 * Returns false if we couldn't fill entirely (OOM).
609 *
610 * Normally run in the receive path, but can also be run from ndo_open
611 * before we're receiving packets, or from refill_work which is
612 * careful to disable receiving (using napi_disable).
613 */
614 static bool try_fill_recv(struct receive_queue *rq, gfp_t gfp)
615 {
616 struct virtnet_info *vi = rq->vq->vdev->priv;
617 int err;
618 bool oom;
619
620 do {
621 if (vi->mergeable_rx_bufs)
622 err = add_recvbuf_mergeable(rq, gfp);
623 else if (vi->big_packets)
624 err = add_recvbuf_big(rq, gfp);
625 else
626 err = add_recvbuf_small(rq, gfp);
627
628 oom = err == -ENOMEM;
629 if (err)
630 break;
631 ++rq->num;
632 } while (rq->vq->num_free);
633 if (unlikely(rq->num > rq->max))
634 rq->max = rq->num;
635 if (unlikely(!virtqueue_kick(rq->vq)))
636 return false;
637 return !oom;
638 }
639
640 static void skb_recv_done(struct virtqueue *rvq)
641 {
642 struct virtnet_info *vi = rvq->vdev->priv;
643 struct receive_queue *rq = &vi->rq[vq2rxq(rvq)];
644
645 /* Schedule NAPI, Suppress further interrupts if successful. */
646 if (napi_schedule_prep(&rq->napi)) {
647 virtqueue_disable_cb(rvq);
648 __napi_schedule(&rq->napi);
649 }
650 }
651
652 static void virtnet_napi_enable(struct receive_queue *rq)
653 {
654 napi_enable(&rq->napi);
655
656 /* If all buffers were filled by other side before we napi_enabled, we
657 * won't get another interrupt, so process any outstanding packets
658 * now. virtnet_poll wants re-enable the queue, so we disable here.
659 * We synchronize against interrupts via NAPI_STATE_SCHED */
660 if (napi_schedule_prep(&rq->napi)) {
661 virtqueue_disable_cb(rq->vq);
662 local_bh_disable();
663 __napi_schedule(&rq->napi);
664 local_bh_enable();
665 }
666 }
667
668 static void refill_work(struct work_struct *work)
669 {
670 struct virtnet_info *vi =
671 container_of(work, struct virtnet_info, refill.work);
672 bool still_empty;
673 int i;
674
675 for (i = 0; i < vi->curr_queue_pairs; i++) {
676 struct receive_queue *rq = &vi->rq[i];
677
678 napi_disable(&rq->napi);
679 still_empty = !try_fill_recv(rq, GFP_KERNEL);
680 virtnet_napi_enable(rq);
681
682 /* In theory, this can happen: if we don't get any buffers in
683 * we will *never* try to fill again.
684 */
685 if (still_empty)
686 schedule_delayed_work(&vi->refill, HZ/2);
687 }
688 }
689
690 static int virtnet_poll(struct napi_struct *napi, int budget)
691 {
692 struct receive_queue *rq =
693 container_of(napi, struct receive_queue, napi);
694 struct virtnet_info *vi = rq->vq->vdev->priv;
695 void *buf;
696 unsigned int r, len, received = 0;
697
698 again:
699 while (received < budget &&
700 (buf = virtqueue_get_buf(rq->vq, &len)) != NULL) {
701 receive_buf(rq, buf, len);
702 --rq->num;
703 received++;
704 }
705
706 if (rq->num < rq->max / 2) {
707 if (!try_fill_recv(rq, GFP_ATOMIC))
708 schedule_delayed_work(&vi->refill, 0);
709 }
710
711 /* Out of packets? */
712 if (received < budget) {
713 r = virtqueue_enable_cb_prepare(rq->vq);
714 napi_complete(napi);
715 if (unlikely(virtqueue_poll(rq->vq, r)) &&
716 napi_schedule_prep(napi)) {
717 virtqueue_disable_cb(rq->vq);
718 __napi_schedule(napi);
719 goto again;
720 }
721 }
722
723 return received;
724 }
725
726 static int virtnet_open(struct net_device *dev)
727 {
728 struct virtnet_info *vi = netdev_priv(dev);
729 int i;
730
731 for (i = 0; i < vi->max_queue_pairs; i++) {
732 if (i < vi->curr_queue_pairs)
733 /* Make sure we have some buffers: if oom use wq. */
734 if (!try_fill_recv(&vi->rq[i], GFP_KERNEL))
735 schedule_delayed_work(&vi->refill, 0);
736 virtnet_napi_enable(&vi->rq[i]);
737 }
738
739 return 0;
740 }
741
742 static void free_old_xmit_skbs(struct send_queue *sq)
743 {
744 struct sk_buff *skb;
745 unsigned int len;
746 struct virtnet_info *vi = sq->vq->vdev->priv;
747 struct virtnet_stats *stats = this_cpu_ptr(vi->stats);
748
749 while ((skb = virtqueue_get_buf(sq->vq, &len)) != NULL) {
750 pr_debug("Sent skb %p\n", skb);
751
752 u64_stats_update_begin(&stats->tx_syncp);
753 stats->tx_bytes += skb->len;
754 stats->tx_packets++;
755 u64_stats_update_end(&stats->tx_syncp);
756
757 dev_kfree_skb_any(skb);
758 }
759 }
760
761 static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
762 {
763 struct skb_vnet_hdr *hdr;
764 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
765 struct virtnet_info *vi = sq->vq->vdev->priv;
766 unsigned num_sg;
767 unsigned hdr_len;
768 bool can_push;
769
770 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
771 if (vi->mergeable_rx_bufs)
772 hdr_len = sizeof hdr->mhdr;
773 else
774 hdr_len = sizeof hdr->hdr;
775
776 can_push = vi->any_header_sg &&
777 !((unsigned long)skb->data & (__alignof__(*hdr) - 1)) &&
778 !skb_header_cloned(skb) && skb_headroom(skb) >= hdr_len;
779 /* Even if we can, don't push here yet as this would skew
780 * csum_start offset below. */
781 if (can_push)
782 hdr = (struct skb_vnet_hdr *)(skb->data - hdr_len);
783 else
784 hdr = skb_vnet_hdr(skb);
785
786 if (skb->ip_summed == CHECKSUM_PARTIAL) {
787 hdr->hdr.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
788 hdr->hdr.csum_start = skb_checksum_start_offset(skb);
789 hdr->hdr.csum_offset = skb->csum_offset;
790 } else {
791 hdr->hdr.flags = 0;
792 hdr->hdr.csum_offset = hdr->hdr.csum_start = 0;
793 }
794
795 if (skb_is_gso(skb)) {
796 hdr->hdr.hdr_len = skb_headlen(skb);
797 hdr->hdr.gso_size = skb_shinfo(skb)->gso_size;
798 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
799 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
800 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
801 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
802 else if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
803 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP;
804 else
805 BUG();
806 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCP_ECN)
807 hdr->hdr.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
808 } else {
809 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE;
810 hdr->hdr.gso_size = hdr->hdr.hdr_len = 0;
811 }
812
813 if (vi->mergeable_rx_bufs)
814 hdr->mhdr.num_buffers = 0;
815
816 if (can_push) {
817 __skb_push(skb, hdr_len);
818 num_sg = skb_to_sgvec(skb, sq->sg, 0, skb->len);
819 /* Pull header back to avoid skew in tx bytes calculations. */
820 __skb_pull(skb, hdr_len);
821 } else {
822 sg_set_buf(sq->sg, hdr, hdr_len);
823 num_sg = skb_to_sgvec(skb, sq->sg + 1, 0, skb->len) + 1;
824 }
825 return virtqueue_add_outbuf(sq->vq, sq->sg, num_sg, skb, GFP_ATOMIC);
826 }
827
828 static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
829 {
830 struct virtnet_info *vi = netdev_priv(dev);
831 int qnum = skb_get_queue_mapping(skb);
832 struct send_queue *sq = &vi->sq[qnum];
833 int err;
834
835 /* Free up any pending old buffers before queueing new ones. */
836 free_old_xmit_skbs(sq);
837
838 /* Try to transmit */
839 err = xmit_skb(sq, skb);
840
841 /* This should not happen! */
842 if (unlikely(err) || unlikely(!virtqueue_kick(sq->vq))) {
843 dev->stats.tx_fifo_errors++;
844 if (net_ratelimit())
845 dev_warn(&dev->dev,
846 "Unexpected TXQ (%d) queue failure: %d\n", qnum, err);
847 dev->stats.tx_dropped++;
848 kfree_skb(skb);
849 return NETDEV_TX_OK;
850 }
851
852 /* Don't wait up for transmitted skbs to be freed. */
853 skb_orphan(skb);
854 nf_reset(skb);
855
856 /* Apparently nice girls don't return TX_BUSY; stop the queue
857 * before it gets out of hand. Naturally, this wastes entries. */
858 if (sq->vq->num_free < 2+MAX_SKB_FRAGS) {
859 netif_stop_subqueue(dev, qnum);
860 if (unlikely(!virtqueue_enable_cb_delayed(sq->vq))) {
861 /* More just got used, free them then recheck. */
862 free_old_xmit_skbs(sq);
863 if (sq->vq->num_free >= 2+MAX_SKB_FRAGS) {
864 netif_start_subqueue(dev, qnum);
865 virtqueue_disable_cb(sq->vq);
866 }
867 }
868 }
869
870 return NETDEV_TX_OK;
871 }
872
873 /*
874 * Send command via the control virtqueue and check status. Commands
875 * supported by the hypervisor, as indicated by feature bits, should
876 * never fail unless improperly formated.
877 */
878 static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
879 struct scatterlist *out,
880 struct scatterlist *in)
881 {
882 struct scatterlist *sgs[4], hdr, stat;
883 struct virtio_net_ctrl_hdr ctrl;
884 virtio_net_ctrl_ack status = ~0;
885 unsigned out_num = 0, in_num = 0, tmp;
886
887 /* Caller should know better */
888 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ));
889
890 ctrl.class = class;
891 ctrl.cmd = cmd;
892 /* Add header */
893 sg_init_one(&hdr, &ctrl, sizeof(ctrl));
894 sgs[out_num++] = &hdr;
895
896 if (out)
897 sgs[out_num++] = out;
898 if (in)
899 sgs[out_num + in_num++] = in;
900
901 /* Add return status. */
902 sg_init_one(&stat, &status, sizeof(status));
903 sgs[out_num + in_num++] = &stat;
904
905 BUG_ON(out_num + in_num > ARRAY_SIZE(sgs));
906 BUG_ON(virtqueue_add_sgs(vi->cvq, sgs, out_num, in_num, vi, GFP_ATOMIC)
907 < 0);
908
909 if (unlikely(!virtqueue_kick(vi->cvq)))
910 return status == VIRTIO_NET_OK;
911
912 /* Spin for a response, the kick causes an ioport write, trapping
913 * into the hypervisor, so the request should be handled immediately.
914 */
915 while (!virtqueue_get_buf(vi->cvq, &tmp) &&
916 !virtqueue_is_broken(vi->cvq))
917 cpu_relax();
918
919 return status == VIRTIO_NET_OK;
920 }
921
922 static int virtnet_set_mac_address(struct net_device *dev, void *p)
923 {
924 struct virtnet_info *vi = netdev_priv(dev);
925 struct virtio_device *vdev = vi->vdev;
926 int ret;
927 struct sockaddr *addr = p;
928 struct scatterlist sg;
929
930 ret = eth_prepare_mac_addr_change(dev, p);
931 if (ret)
932 return ret;
933
934 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_MAC_ADDR)) {
935 sg_init_one(&sg, addr->sa_data, dev->addr_len);
936 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
937 VIRTIO_NET_CTRL_MAC_ADDR_SET,
938 &sg, NULL)) {
939 dev_warn(&vdev->dev,
940 "Failed to set mac address by vq command.\n");
941 return -EINVAL;
942 }
943 } else if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) {
944 unsigned int i;
945
946 /* Naturally, this has an atomicity problem. */
947 for (i = 0; i < dev->addr_len; i++)
948 virtio_cwrite8(vdev,
949 offsetof(struct virtio_net_config, mac) +
950 i, addr->sa_data[i]);
951 }
952
953 eth_commit_mac_addr_change(dev, p);
954
955 return 0;
956 }
957
958 static struct rtnl_link_stats64 *virtnet_stats(struct net_device *dev,
959 struct rtnl_link_stats64 *tot)
960 {
961 struct virtnet_info *vi = netdev_priv(dev);
962 int cpu;
963 unsigned int start;
964
965 for_each_possible_cpu(cpu) {
966 struct virtnet_stats *stats = per_cpu_ptr(vi->stats, cpu);
967 u64 tpackets, tbytes, rpackets, rbytes;
968
969 do {
970 start = u64_stats_fetch_begin_bh(&stats->tx_syncp);
971 tpackets = stats->tx_packets;
972 tbytes = stats->tx_bytes;
973 } while (u64_stats_fetch_retry_bh(&stats->tx_syncp, start));
974
975 do {
976 start = u64_stats_fetch_begin_bh(&stats->rx_syncp);
977 rpackets = stats->rx_packets;
978 rbytes = stats->rx_bytes;
979 } while (u64_stats_fetch_retry_bh(&stats->rx_syncp, start));
980
981 tot->rx_packets += rpackets;
982 tot->tx_packets += tpackets;
983 tot->rx_bytes += rbytes;
984 tot->tx_bytes += tbytes;
985 }
986
987 tot->tx_dropped = dev->stats.tx_dropped;
988 tot->tx_fifo_errors = dev->stats.tx_fifo_errors;
989 tot->rx_dropped = dev->stats.rx_dropped;
990 tot->rx_length_errors = dev->stats.rx_length_errors;
991 tot->rx_frame_errors = dev->stats.rx_frame_errors;
992
993 return tot;
994 }
995
996 #ifdef CONFIG_NET_POLL_CONTROLLER
997 static void virtnet_netpoll(struct net_device *dev)
998 {
999 struct virtnet_info *vi = netdev_priv(dev);
1000 int i;
1001
1002 for (i = 0; i < vi->curr_queue_pairs; i++)
1003 napi_schedule(&vi->rq[i].napi);
1004 }
1005 #endif
1006
1007 static void virtnet_ack_link_announce(struct virtnet_info *vi)
1008 {
1009 rtnl_lock();
1010 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_ANNOUNCE,
1011 VIRTIO_NET_CTRL_ANNOUNCE_ACK, NULL, NULL))
1012 dev_warn(&vi->dev->dev, "Failed to ack link announce.\n");
1013 rtnl_unlock();
1014 }
1015
1016 static int virtnet_set_queues(struct virtnet_info *vi, u16 queue_pairs)
1017 {
1018 struct scatterlist sg;
1019 struct virtio_net_ctrl_mq s;
1020 struct net_device *dev = vi->dev;
1021
1022 if (!vi->has_cvq || !virtio_has_feature(vi->vdev, VIRTIO_NET_F_MQ))
1023 return 0;
1024
1025 s.virtqueue_pairs = queue_pairs;
1026 sg_init_one(&sg, &s, sizeof(s));
1027
1028 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MQ,
1029 VIRTIO_NET_CTRL_MQ_VQ_PAIRS_SET, &sg, NULL)) {
1030 dev_warn(&dev->dev, "Fail to set num of queue pairs to %d\n",
1031 queue_pairs);
1032 return -EINVAL;
1033 } else {
1034 vi->curr_queue_pairs = queue_pairs;
1035 /* virtnet_open() will refill when device is going to up. */
1036 if (dev->flags & IFF_UP)
1037 schedule_delayed_work(&vi->refill, 0);
1038 }
1039
1040 return 0;
1041 }
1042
1043 static int virtnet_close(struct net_device *dev)
1044 {
1045 struct virtnet_info *vi = netdev_priv(dev);
1046 int i;
1047
1048 /* Make sure refill_work doesn't re-enable napi! */
1049 cancel_delayed_work_sync(&vi->refill);
1050
1051 for (i = 0; i < vi->max_queue_pairs; i++)
1052 napi_disable(&vi->rq[i].napi);
1053
1054 return 0;
1055 }
1056
1057 static void virtnet_set_rx_mode(struct net_device *dev)
1058 {
1059 struct virtnet_info *vi = netdev_priv(dev);
1060 struct scatterlist sg[2];
1061 u8 promisc, allmulti;
1062 struct virtio_net_ctrl_mac *mac_data;
1063 struct netdev_hw_addr *ha;
1064 int uc_count;
1065 int mc_count;
1066 void *buf;
1067 int i;
1068
1069 /* We can't dynamicaly set ndo_set_rx_mode, so return gracefully */
1070 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
1071 return;
1072
1073 promisc = ((dev->flags & IFF_PROMISC) != 0);
1074 allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
1075
1076 sg_init_one(sg, &promisc, sizeof(promisc));
1077
1078 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
1079 VIRTIO_NET_CTRL_RX_PROMISC,
1080 sg, NULL))
1081 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
1082 promisc ? "en" : "dis");
1083
1084 sg_init_one(sg, &allmulti, sizeof(allmulti));
1085
1086 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
1087 VIRTIO_NET_CTRL_RX_ALLMULTI,
1088 sg, NULL))
1089 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
1090 allmulti ? "en" : "dis");
1091
1092 uc_count = netdev_uc_count(dev);
1093 mc_count = netdev_mc_count(dev);
1094 /* MAC filter - use one buffer for both lists */
1095 buf = kzalloc(((uc_count + mc_count) * ETH_ALEN) +
1096 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
1097 mac_data = buf;
1098 if (!buf)
1099 return;
1100
1101 sg_init_table(sg, 2);
1102
1103 /* Store the unicast list and count in the front of the buffer */
1104 mac_data->entries = uc_count;
1105 i = 0;
1106 netdev_for_each_uc_addr(ha, dev)
1107 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
1108
1109 sg_set_buf(&sg[0], mac_data,
1110 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
1111
1112 /* multicast list and count fill the end */
1113 mac_data = (void *)&mac_data->macs[uc_count][0];
1114
1115 mac_data->entries = mc_count;
1116 i = 0;
1117 netdev_for_each_mc_addr(ha, dev)
1118 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
1119
1120 sg_set_buf(&sg[1], mac_data,
1121 sizeof(mac_data->entries) + (mc_count * ETH_ALEN));
1122
1123 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
1124 VIRTIO_NET_CTRL_MAC_TABLE_SET,
1125 sg, NULL))
1126 dev_warn(&dev->dev, "Failed to set MAC filter table.\n");
1127
1128 kfree(buf);
1129 }
1130
1131 static int virtnet_vlan_rx_add_vid(struct net_device *dev,
1132 __be16 proto, u16 vid)
1133 {
1134 struct virtnet_info *vi = netdev_priv(dev);
1135 struct scatterlist sg;
1136
1137 sg_init_one(&sg, &vid, sizeof(vid));
1138
1139 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
1140 VIRTIO_NET_CTRL_VLAN_ADD, &sg, NULL))
1141 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
1142 return 0;
1143 }
1144
1145 static int virtnet_vlan_rx_kill_vid(struct net_device *dev,
1146 __be16 proto, u16 vid)
1147 {
1148 struct virtnet_info *vi = netdev_priv(dev);
1149 struct scatterlist sg;
1150
1151 sg_init_one(&sg, &vid, sizeof(vid));
1152
1153 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
1154 VIRTIO_NET_CTRL_VLAN_DEL, &sg, NULL))
1155 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
1156 return 0;
1157 }
1158
1159 static void virtnet_clean_affinity(struct virtnet_info *vi, long hcpu)
1160 {
1161 int i;
1162
1163 if (vi->affinity_hint_set) {
1164 for (i = 0; i < vi->max_queue_pairs; i++) {
1165 virtqueue_set_affinity(vi->rq[i].vq, -1);
1166 virtqueue_set_affinity(vi->sq[i].vq, -1);
1167 }
1168
1169 vi->affinity_hint_set = false;
1170 }
1171 }
1172
1173 static void virtnet_set_affinity(struct virtnet_info *vi)
1174 {
1175 int i;
1176 int cpu;
1177
1178 /* In multiqueue mode, when the number of cpu is equal to the number of
1179 * queue pairs, we let the queue pairs to be private to one cpu by
1180 * setting the affinity hint to eliminate the contention.
1181 */
1182 if (vi->curr_queue_pairs == 1 ||
1183 vi->max_queue_pairs != num_online_cpus()) {
1184 virtnet_clean_affinity(vi, -1);
1185 return;
1186 }
1187
1188 i = 0;
1189 for_each_online_cpu(cpu) {
1190 virtqueue_set_affinity(vi->rq[i].vq, cpu);
1191 virtqueue_set_affinity(vi->sq[i].vq, cpu);
1192 netif_set_xps_queue(vi->dev, cpumask_of(cpu), i);
1193 i++;
1194 }
1195
1196 vi->affinity_hint_set = true;
1197 }
1198
1199 static int virtnet_cpu_callback(struct notifier_block *nfb,
1200 unsigned long action, void *hcpu)
1201 {
1202 struct virtnet_info *vi = container_of(nfb, struct virtnet_info, nb);
1203
1204 switch(action & ~CPU_TASKS_FROZEN) {
1205 case CPU_ONLINE:
1206 case CPU_DOWN_FAILED:
1207 case CPU_DEAD:
1208 virtnet_set_affinity(vi);
1209 break;
1210 case CPU_DOWN_PREPARE:
1211 virtnet_clean_affinity(vi, (long)hcpu);
1212 break;
1213 default:
1214 break;
1215 }
1216
1217 return NOTIFY_OK;
1218 }
1219
1220 static void virtnet_get_ringparam(struct net_device *dev,
1221 struct ethtool_ringparam *ring)
1222 {
1223 struct virtnet_info *vi = netdev_priv(dev);
1224
1225 ring->rx_max_pending = virtqueue_get_vring_size(vi->rq[0].vq);
1226 ring->tx_max_pending = virtqueue_get_vring_size(vi->sq[0].vq);
1227 ring->rx_pending = ring->rx_max_pending;
1228 ring->tx_pending = ring->tx_max_pending;
1229 }
1230
1231
1232 static void virtnet_get_drvinfo(struct net_device *dev,
1233 struct ethtool_drvinfo *info)
1234 {
1235 struct virtnet_info *vi = netdev_priv(dev);
1236 struct virtio_device *vdev = vi->vdev;
1237
1238 strlcpy(info->driver, KBUILD_MODNAME, sizeof(info->driver));
1239 strlcpy(info->version, VIRTNET_DRIVER_VERSION, sizeof(info->version));
1240 strlcpy(info->bus_info, virtio_bus_name(vdev), sizeof(info->bus_info));
1241
1242 }
1243
1244 /* TODO: Eliminate OOO packets during switching */
1245 static int virtnet_set_channels(struct net_device *dev,
1246 struct ethtool_channels *channels)
1247 {
1248 struct virtnet_info *vi = netdev_priv(dev);
1249 u16 queue_pairs = channels->combined_count;
1250 int err;
1251
1252 /* We don't support separate rx/tx channels.
1253 * We don't allow setting 'other' channels.
1254 */
1255 if (channels->rx_count || channels->tx_count || channels->other_count)
1256 return -EINVAL;
1257
1258 if (queue_pairs > vi->max_queue_pairs)
1259 return -EINVAL;
1260
1261 get_online_cpus();
1262 err = virtnet_set_queues(vi, queue_pairs);
1263 if (!err) {
1264 netif_set_real_num_tx_queues(dev, queue_pairs);
1265 netif_set_real_num_rx_queues(dev, queue_pairs);
1266
1267 virtnet_set_affinity(vi);
1268 }
1269 put_online_cpus();
1270
1271 return err;
1272 }
1273
1274 static void virtnet_get_channels(struct net_device *dev,
1275 struct ethtool_channels *channels)
1276 {
1277 struct virtnet_info *vi = netdev_priv(dev);
1278
1279 channels->combined_count = vi->curr_queue_pairs;
1280 channels->max_combined = vi->max_queue_pairs;
1281 channels->max_other = 0;
1282 channels->rx_count = 0;
1283 channels->tx_count = 0;
1284 channels->other_count = 0;
1285 }
1286
1287 static const struct ethtool_ops virtnet_ethtool_ops = {
1288 .get_drvinfo = virtnet_get_drvinfo,
1289 .get_link = ethtool_op_get_link,
1290 .get_ringparam = virtnet_get_ringparam,
1291 .set_channels = virtnet_set_channels,
1292 .get_channels = virtnet_get_channels,
1293 };
1294
1295 #define MIN_MTU 68
1296 #define MAX_MTU 65535
1297
1298 static int virtnet_change_mtu(struct net_device *dev, int new_mtu)
1299 {
1300 if (new_mtu < MIN_MTU || new_mtu > MAX_MTU)
1301 return -EINVAL;
1302 dev->mtu = new_mtu;
1303 return 0;
1304 }
1305
1306 static const struct net_device_ops virtnet_netdev = {
1307 .ndo_open = virtnet_open,
1308 .ndo_stop = virtnet_close,
1309 .ndo_start_xmit = start_xmit,
1310 .ndo_validate_addr = eth_validate_addr,
1311 .ndo_set_mac_address = virtnet_set_mac_address,
1312 .ndo_set_rx_mode = virtnet_set_rx_mode,
1313 .ndo_change_mtu = virtnet_change_mtu,
1314 .ndo_get_stats64 = virtnet_stats,
1315 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
1316 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
1317 #ifdef CONFIG_NET_POLL_CONTROLLER
1318 .ndo_poll_controller = virtnet_netpoll,
1319 #endif
1320 };
1321
1322 static void virtnet_config_changed_work(struct work_struct *work)
1323 {
1324 struct virtnet_info *vi =
1325 container_of(work, struct virtnet_info, config_work);
1326 u16 v;
1327
1328 mutex_lock(&vi->config_lock);
1329 if (!vi->config_enable)
1330 goto done;
1331
1332 if (virtio_cread_feature(vi->vdev, VIRTIO_NET_F_STATUS,
1333 struct virtio_net_config, status, &v) < 0)
1334 goto done;
1335
1336 if (v & VIRTIO_NET_S_ANNOUNCE) {
1337 netdev_notify_peers(vi->dev);
1338 virtnet_ack_link_announce(vi);
1339 }
1340
1341 /* Ignore unknown (future) status bits */
1342 v &= VIRTIO_NET_S_LINK_UP;
1343
1344 if (vi->status == v)
1345 goto done;
1346
1347 vi->status = v;
1348
1349 if (vi->status & VIRTIO_NET_S_LINK_UP) {
1350 netif_carrier_on(vi->dev);
1351 netif_tx_wake_all_queues(vi->dev);
1352 } else {
1353 netif_carrier_off(vi->dev);
1354 netif_tx_stop_all_queues(vi->dev);
1355 }
1356 done:
1357 mutex_unlock(&vi->config_lock);
1358 }
1359
1360 static void virtnet_config_changed(struct virtio_device *vdev)
1361 {
1362 struct virtnet_info *vi = vdev->priv;
1363
1364 schedule_work(&vi->config_work);
1365 }
1366
1367 static void virtnet_free_queues(struct virtnet_info *vi)
1368 {
1369 kfree(vi->rq);
1370 kfree(vi->sq);
1371 }
1372
1373 static void free_receive_bufs(struct virtnet_info *vi)
1374 {
1375 int i;
1376
1377 for (i = 0; i < vi->max_queue_pairs; i++) {
1378 while (vi->rq[i].pages)
1379 __free_pages(get_a_page(&vi->rq[i], GFP_KERNEL), 0);
1380 }
1381 }
1382
1383 static void free_unused_bufs(struct virtnet_info *vi)
1384 {
1385 void *buf;
1386 int i;
1387
1388 for (i = 0; i < vi->max_queue_pairs; i++) {
1389 struct virtqueue *vq = vi->sq[i].vq;
1390 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL)
1391 dev_kfree_skb(buf);
1392 }
1393
1394 for (i = 0; i < vi->max_queue_pairs; i++) {
1395 struct virtqueue *vq = vi->rq[i].vq;
1396
1397 while ((buf = virtqueue_detach_unused_buf(vq)) != NULL) {
1398 if (vi->big_packets)
1399 give_pages(&vi->rq[i], buf);
1400 else if (vi->mergeable_rx_bufs)
1401 put_page(virt_to_head_page(buf));
1402 else
1403 dev_kfree_skb(buf);
1404 --vi->rq[i].num;
1405 }
1406 BUG_ON(vi->rq[i].num != 0);
1407 }
1408 }
1409
1410 static void virtnet_del_vqs(struct virtnet_info *vi)
1411 {
1412 struct virtio_device *vdev = vi->vdev;
1413
1414 virtnet_clean_affinity(vi, -1);
1415
1416 vdev->config->del_vqs(vdev);
1417
1418 virtnet_free_queues(vi);
1419 }
1420
1421 static int virtnet_find_vqs(struct virtnet_info *vi)
1422 {
1423 vq_callback_t **callbacks;
1424 struct virtqueue **vqs;
1425 int ret = -ENOMEM;
1426 int i, total_vqs;
1427 const char **names;
1428
1429 /* We expect 1 RX virtqueue followed by 1 TX virtqueue, followed by
1430 * possible N-1 RX/TX queue pairs used in multiqueue mode, followed by
1431 * possible control vq.
1432 */
1433 total_vqs = vi->max_queue_pairs * 2 +
1434 virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ);
1435
1436 /* Allocate space for find_vqs parameters */
1437 vqs = kzalloc(total_vqs * sizeof(*vqs), GFP_KERNEL);
1438 if (!vqs)
1439 goto err_vq;
1440 callbacks = kmalloc(total_vqs * sizeof(*callbacks), GFP_KERNEL);
1441 if (!callbacks)
1442 goto err_callback;
1443 names = kmalloc(total_vqs * sizeof(*names), GFP_KERNEL);
1444 if (!names)
1445 goto err_names;
1446
1447 /* Parameters for control virtqueue, if any */
1448 if (vi->has_cvq) {
1449 callbacks[total_vqs - 1] = NULL;
1450 names[total_vqs - 1] = "control";
1451 }
1452
1453 /* Allocate/initialize parameters for send/receive virtqueues */
1454 for (i = 0; i < vi->max_queue_pairs; i++) {
1455 callbacks[rxq2vq(i)] = skb_recv_done;
1456 callbacks[txq2vq(i)] = skb_xmit_done;
1457 sprintf(vi->rq[i].name, "input.%d", i);
1458 sprintf(vi->sq[i].name, "output.%d", i);
1459 names[rxq2vq(i)] = vi->rq[i].name;
1460 names[txq2vq(i)] = vi->sq[i].name;
1461 }
1462
1463 ret = vi->vdev->config->find_vqs(vi->vdev, total_vqs, vqs, callbacks,
1464 names);
1465 if (ret)
1466 goto err_find;
1467
1468 if (vi->has_cvq) {
1469 vi->cvq = vqs[total_vqs - 1];
1470 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
1471 vi->dev->features |= NETIF_F_HW_VLAN_CTAG_FILTER;
1472 }
1473
1474 for (i = 0; i < vi->max_queue_pairs; i++) {
1475 vi->rq[i].vq = vqs[rxq2vq(i)];
1476 vi->sq[i].vq = vqs[txq2vq(i)];
1477 }
1478
1479 kfree(names);
1480 kfree(callbacks);
1481 kfree(vqs);
1482
1483 return 0;
1484
1485 err_find:
1486 kfree(names);
1487 err_names:
1488 kfree(callbacks);
1489 err_callback:
1490 kfree(vqs);
1491 err_vq:
1492 return ret;
1493 }
1494
1495 static int virtnet_alloc_queues(struct virtnet_info *vi)
1496 {
1497 int i;
1498
1499 vi->sq = kzalloc(sizeof(*vi->sq) * vi->max_queue_pairs, GFP_KERNEL);
1500 if (!vi->sq)
1501 goto err_sq;
1502 vi->rq = kzalloc(sizeof(*vi->rq) * vi->max_queue_pairs, GFP_KERNEL);
1503 if (!vi->rq)
1504 goto err_rq;
1505
1506 INIT_DELAYED_WORK(&vi->refill, refill_work);
1507 for (i = 0; i < vi->max_queue_pairs; i++) {
1508 vi->rq[i].pages = NULL;
1509 netif_napi_add(vi->dev, &vi->rq[i].napi, virtnet_poll,
1510 napi_weight);
1511
1512 sg_init_table(vi->rq[i].sg, ARRAY_SIZE(vi->rq[i].sg));
1513 sg_init_table(vi->sq[i].sg, ARRAY_SIZE(vi->sq[i].sg));
1514 }
1515
1516 return 0;
1517
1518 err_rq:
1519 kfree(vi->sq);
1520 err_sq:
1521 return -ENOMEM;
1522 }
1523
1524 static int init_vqs(struct virtnet_info *vi)
1525 {
1526 int ret;
1527
1528 /* Allocate send & receive queues */
1529 ret = virtnet_alloc_queues(vi);
1530 if (ret)
1531 goto err;
1532
1533 ret = virtnet_find_vqs(vi);
1534 if (ret)
1535 goto err_free;
1536
1537 get_online_cpus();
1538 virtnet_set_affinity(vi);
1539 put_online_cpus();
1540
1541 return 0;
1542
1543 err_free:
1544 virtnet_free_queues(vi);
1545 err:
1546 return ret;
1547 }
1548
1549 static int virtnet_probe(struct virtio_device *vdev)
1550 {
1551 int i, err;
1552 struct net_device *dev;
1553 struct virtnet_info *vi;
1554 u16 max_queue_pairs;
1555
1556 /* Find if host supports multiqueue virtio_net device */
1557 err = virtio_cread_feature(vdev, VIRTIO_NET_F_MQ,
1558 struct virtio_net_config,
1559 max_virtqueue_pairs, &max_queue_pairs);
1560
1561 /* We need at least 2 queue's */
1562 if (err || max_queue_pairs < VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MIN ||
1563 max_queue_pairs > VIRTIO_NET_CTRL_MQ_VQ_PAIRS_MAX ||
1564 !virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
1565 max_queue_pairs = 1;
1566
1567 /* Allocate ourselves a network device with room for our info */
1568 dev = alloc_etherdev_mq(sizeof(struct virtnet_info), max_queue_pairs);
1569 if (!dev)
1570 return -ENOMEM;
1571
1572 /* Set up network device as normal. */
1573 dev->priv_flags |= IFF_UNICAST_FLT | IFF_LIVE_ADDR_CHANGE;
1574 dev->netdev_ops = &virtnet_netdev;
1575 dev->features = NETIF_F_HIGHDMA;
1576
1577 SET_ETHTOOL_OPS(dev, &virtnet_ethtool_ops);
1578 SET_NETDEV_DEV(dev, &vdev->dev);
1579
1580 /* Do we support "hardware" checksums? */
1581 if (virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
1582 /* This opens up the world of extra features. */
1583 dev->hw_features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
1584 if (csum)
1585 dev->features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
1586
1587 if (virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
1588 dev->hw_features |= NETIF_F_TSO | NETIF_F_UFO
1589 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
1590 }
1591 /* Individual feature bits: what can host handle? */
1592 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
1593 dev->hw_features |= NETIF_F_TSO;
1594 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
1595 dev->hw_features |= NETIF_F_TSO6;
1596 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
1597 dev->hw_features |= NETIF_F_TSO_ECN;
1598 if (virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
1599 dev->hw_features |= NETIF_F_UFO;
1600
1601 if (gso)
1602 dev->features |= dev->hw_features & (NETIF_F_ALL_TSO|NETIF_F_UFO);
1603 /* (!csum && gso) case will be fixed by register_netdev() */
1604 }
1605 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_CSUM))
1606 dev->features |= NETIF_F_RXCSUM;
1607
1608 dev->vlan_features = dev->features;
1609
1610 /* Configuration may specify what MAC to use. Otherwise random. */
1611 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
1612 virtio_cread_bytes(vdev,
1613 offsetof(struct virtio_net_config, mac),
1614 dev->dev_addr, dev->addr_len);
1615 else
1616 eth_hw_addr_random(dev);
1617
1618 /* Set up our device-specific information */
1619 vi = netdev_priv(dev);
1620 vi->dev = dev;
1621 vi->vdev = vdev;
1622 vdev->priv = vi;
1623 vi->stats = alloc_percpu(struct virtnet_stats);
1624 err = -ENOMEM;
1625 if (vi->stats == NULL)
1626 goto free;
1627
1628 for_each_possible_cpu(i) {
1629 struct virtnet_stats *virtnet_stats;
1630 virtnet_stats = per_cpu_ptr(vi->stats, i);
1631 u64_stats_init(&virtnet_stats->tx_syncp);
1632 u64_stats_init(&virtnet_stats->rx_syncp);
1633 }
1634
1635 mutex_init(&vi->config_lock);
1636 vi->config_enable = true;
1637 INIT_WORK(&vi->config_work, virtnet_config_changed_work);
1638
1639 /* If we can receive ANY GSO packets, we must allocate large ones. */
1640 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
1641 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
1642 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN))
1643 vi->big_packets = true;
1644
1645 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
1646 vi->mergeable_rx_bufs = true;
1647
1648 if (virtio_has_feature(vdev, VIRTIO_F_ANY_LAYOUT))
1649 vi->any_header_sg = true;
1650
1651 if (virtio_has_feature(vdev, VIRTIO_NET_F_CTRL_VQ))
1652 vi->has_cvq = true;
1653
1654 /* Use single tx/rx queue pair as default */
1655 vi->curr_queue_pairs = 1;
1656 vi->max_queue_pairs = max_queue_pairs;
1657
1658 /* Allocate/initialize the rx/tx queues, and invoke find_vqs */
1659 err = init_vqs(vi);
1660 if (err)
1661 goto free_stats;
1662
1663 netif_set_real_num_tx_queues(dev, vi->curr_queue_pairs);
1664 netif_set_real_num_rx_queues(dev, vi->curr_queue_pairs);
1665
1666 err = register_netdev(dev);
1667 if (err) {
1668 pr_debug("virtio_net: registering device failed\n");
1669 goto free_vqs;
1670 }
1671
1672 /* Last of all, set up some receive buffers. */
1673 for (i = 0; i < vi->curr_queue_pairs; i++) {
1674 try_fill_recv(&vi->rq[i], GFP_KERNEL);
1675
1676 /* If we didn't even get one input buffer, we're useless. */
1677 if (vi->rq[i].num == 0) {
1678 free_unused_bufs(vi);
1679 err = -ENOMEM;
1680 goto free_recv_bufs;
1681 }
1682 }
1683
1684 vi->nb.notifier_call = &virtnet_cpu_callback;
1685 err = register_hotcpu_notifier(&vi->nb);
1686 if (err) {
1687 pr_debug("virtio_net: registering cpu notifier failed\n");
1688 goto free_recv_bufs;
1689 }
1690
1691 /* Assume link up if device can't report link status,
1692 otherwise get link status from config. */
1693 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS)) {
1694 netif_carrier_off(dev);
1695 schedule_work(&vi->config_work);
1696 } else {
1697 vi->status = VIRTIO_NET_S_LINK_UP;
1698 netif_carrier_on(dev);
1699 }
1700
1701 pr_debug("virtnet: registered device %s with %d RX and TX vq's\n",
1702 dev->name, max_queue_pairs);
1703
1704 return 0;
1705
1706 free_recv_bufs:
1707 free_receive_bufs(vi);
1708 unregister_netdev(dev);
1709 free_vqs:
1710 cancel_delayed_work_sync(&vi->refill);
1711 virtnet_del_vqs(vi);
1712 if (vi->alloc_frag.page)
1713 put_page(vi->alloc_frag.page);
1714 free_stats:
1715 free_percpu(vi->stats);
1716 free:
1717 free_netdev(dev);
1718 return err;
1719 }
1720
1721 static void remove_vq_common(struct virtnet_info *vi)
1722 {
1723 vi->vdev->config->reset(vi->vdev);
1724
1725 /* Free unused buffers in both send and recv, if any. */
1726 free_unused_bufs(vi);
1727
1728 free_receive_bufs(vi);
1729
1730 virtnet_del_vqs(vi);
1731 }
1732
1733 static void virtnet_remove(struct virtio_device *vdev)
1734 {
1735 struct virtnet_info *vi = vdev->priv;
1736
1737 unregister_hotcpu_notifier(&vi->nb);
1738
1739 /* Prevent config work handler from accessing the device. */
1740 mutex_lock(&vi->config_lock);
1741 vi->config_enable = false;
1742 mutex_unlock(&vi->config_lock);
1743
1744 unregister_netdev(vi->dev);
1745
1746 remove_vq_common(vi);
1747 if (vi->alloc_frag.page)
1748 put_page(vi->alloc_frag.page);
1749
1750 flush_work(&vi->config_work);
1751
1752 free_percpu(vi->stats);
1753 free_netdev(vi->dev);
1754 }
1755
1756 #ifdef CONFIG_PM_SLEEP
1757 static int virtnet_freeze(struct virtio_device *vdev)
1758 {
1759 struct virtnet_info *vi = vdev->priv;
1760 int i;
1761
1762 unregister_hotcpu_notifier(&vi->nb);
1763
1764 /* Prevent config work handler from accessing the device */
1765 mutex_lock(&vi->config_lock);
1766 vi->config_enable = false;
1767 mutex_unlock(&vi->config_lock);
1768
1769 netif_device_detach(vi->dev);
1770 cancel_delayed_work_sync(&vi->refill);
1771
1772 if (netif_running(vi->dev))
1773 for (i = 0; i < vi->max_queue_pairs; i++) {
1774 napi_disable(&vi->rq[i].napi);
1775 netif_napi_del(&vi->rq[i].napi);
1776 }
1777
1778 remove_vq_common(vi);
1779
1780 flush_work(&vi->config_work);
1781
1782 return 0;
1783 }
1784
1785 static int virtnet_restore(struct virtio_device *vdev)
1786 {
1787 struct virtnet_info *vi = vdev->priv;
1788 int err, i;
1789
1790 err = init_vqs(vi);
1791 if (err)
1792 return err;
1793
1794 if (netif_running(vi->dev))
1795 for (i = 0; i < vi->max_queue_pairs; i++)
1796 virtnet_napi_enable(&vi->rq[i]);
1797
1798 netif_device_attach(vi->dev);
1799
1800 for (i = 0; i < vi->curr_queue_pairs; i++)
1801 if (!try_fill_recv(&vi->rq[i], GFP_KERNEL))
1802 schedule_delayed_work(&vi->refill, 0);
1803
1804 mutex_lock(&vi->config_lock);
1805 vi->config_enable = true;
1806 mutex_unlock(&vi->config_lock);
1807
1808 rtnl_lock();
1809 virtnet_set_queues(vi, vi->curr_queue_pairs);
1810 rtnl_unlock();
1811
1812 err = register_hotcpu_notifier(&vi->nb);
1813 if (err)
1814 return err;
1815
1816 return 0;
1817 }
1818 #endif
1819
1820 static struct virtio_device_id id_table[] = {
1821 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
1822 { 0 },
1823 };
1824
1825 static unsigned int features[] = {
1826 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM,
1827 VIRTIO_NET_F_GSO, VIRTIO_NET_F_MAC,
1828 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6,
1829 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6,
1830 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO,
1831 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ,
1832 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN,
1833 VIRTIO_NET_F_GUEST_ANNOUNCE, VIRTIO_NET_F_MQ,
1834 VIRTIO_NET_F_CTRL_MAC_ADDR,
1835 VIRTIO_F_ANY_LAYOUT,
1836 };
1837
1838 static struct virtio_driver virtio_net_driver = {
1839 .feature_table = features,
1840 .feature_table_size = ARRAY_SIZE(features),
1841 .driver.name = KBUILD_MODNAME,
1842 .driver.owner = THIS_MODULE,
1843 .id_table = id_table,
1844 .probe = virtnet_probe,
1845 .remove = virtnet_remove,
1846 .config_changed = virtnet_config_changed,
1847 #ifdef CONFIG_PM_SLEEP
1848 .freeze = virtnet_freeze,
1849 .restore = virtnet_restore,
1850 #endif
1851 };
1852
1853 module_virtio_driver(virtio_net_driver);
1854
1855 MODULE_DEVICE_TABLE(virtio, id_table);
1856 MODULE_DESCRIPTION("Virtio network driver");
1857 MODULE_LICENSE("GPL");
This page took 0.068563 seconds and 6 git commands to generate.