]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/net/virtio_net.c
virtio-net: fix data corruption with OOM
[net-next-2.6.git] / drivers / net / virtio_net.c
CommitLineData
48925e37 1/* A network driver using virtio.
296f96fc
RR
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, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19//#define DEBUG
20#include <linux/netdevice.h>
21#include <linux/etherdevice.h>
a9ea3fc6 22#include <linux/ethtool.h>
296f96fc
RR
23#include <linux/module.h>
24#include <linux/virtio.h>
3ca4f5ca 25#include <linux/virtio_ids.h>
296f96fc
RR
26#include <linux/virtio_net.h>
27#include <linux/scatterlist.h>
e918085a 28#include <linux/if_vlan.h>
296f96fc 29
6c0cd7c0
DL
30static int napi_weight = 128;
31module_param(napi_weight, int, 0444);
32
34a48579
RR
33static int csum = 1, gso = 1;
34module_param(csum, bool, 0444);
35module_param(gso, bool, 0444);
36
296f96fc 37/* FIXME: MTU in config. */
e918085a 38#define MAX_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
3f2c31d9 39#define GOOD_COPY_LEN 128
296f96fc 40
f565a7c2 41#define VIRTNET_SEND_COMMAND_SG_MAX 2
2a41f71d 42
296f96fc
RR
43struct virtnet_info
44{
45 struct virtio_device *vdev;
2a41f71d 46 struct virtqueue *rvq, *svq, *cvq;
296f96fc
RR
47 struct net_device *dev;
48 struct napi_struct napi;
9f4d26d0 49 unsigned int status;
296f96fc
RR
50
51 /* Number of input buffers, and max we've ever had. */
52 unsigned int num, max;
53
97402b96
HX
54 /* I like... big packets and I cannot lie! */
55 bool big_packets;
56
3f2c31d9
MM
57 /* Host will merge rx buffers for big packets (shake it! shake it!) */
58 bool mergeable_rx_bufs;
59
296f96fc
RR
60 /* Receive & send queues. */
61 struct sk_buff_head recv;
62 struct sk_buff_head send;
fb6813f4 63
3161e453
RR
64 /* Work struct for refilling if we run low on memory. */
65 struct delayed_work refill;
66
fb6813f4
RR
67 /* Chain pages by the private ptr. */
68 struct page *pages;
296f96fc
RR
69};
70
b3f24698
RR
71struct skb_vnet_hdr {
72 union {
73 struct virtio_net_hdr hdr;
74 struct virtio_net_hdr_mrg_rxbuf mhdr;
75 };
48925e37 76 unsigned int num_sg;
b3f24698
RR
77};
78
79static inline struct skb_vnet_hdr *skb_vnet_hdr(struct sk_buff *skb)
296f96fc 80{
b3f24698 81 return (struct skb_vnet_hdr *)skb->cb;
296f96fc
RR
82}
83
fb6813f4
RR
84static void give_a_page(struct virtnet_info *vi, struct page *page)
85{
86 page->private = (unsigned long)vi->pages;
87 vi->pages = page;
88}
89
0a888fd1
MM
90static void trim_pages(struct virtnet_info *vi, struct sk_buff *skb)
91{
92 unsigned int i;
93
94 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
95 give_a_page(vi, skb_shinfo(skb)->frags[i].page);
96 skb_shinfo(skb)->nr_frags = 0;
97 skb->data_len = 0;
98}
99
fb6813f4
RR
100static struct page *get_a_page(struct virtnet_info *vi, gfp_t gfp_mask)
101{
102 struct page *p = vi->pages;
103
104 if (p)
105 vi->pages = (struct page *)p->private;
106 else
107 p = alloc_page(gfp_mask);
108 return p;
109}
110
2cb9c6ba 111static void skb_xmit_done(struct virtqueue *svq)
296f96fc 112{
2cb9c6ba 113 struct virtnet_info *vi = svq->vdev->priv;
296f96fc 114
2cb9c6ba
RR
115 /* Suppress further interrupts. */
116 svq->vq_ops->disable_cb(svq);
11a3a154 117
363f1514 118 /* We were probably waiting for more output buffers. */
296f96fc 119 netif_wake_queue(vi->dev);
296f96fc
RR
120}
121
122static void receive_skb(struct net_device *dev, struct sk_buff *skb,
123 unsigned len)
124{
3f2c31d9 125 struct virtnet_info *vi = netdev_priv(dev);
b3f24698 126 struct skb_vnet_hdr *hdr = skb_vnet_hdr(skb);
97402b96 127 int err;
3f2c31d9 128 int i;
296f96fc
RR
129
130 if (unlikely(len < sizeof(struct virtio_net_hdr) + ETH_HLEN)) {
131 pr_debug("%s: short packet %i\n", dev->name, len);
132 dev->stats.rx_length_errors++;
133 goto drop;
134 }
23cde76d 135
3f2c31d9 136 if (vi->mergeable_rx_bufs) {
3f2c31d9
MM
137 unsigned int copy;
138 char *p = page_address(skb_shinfo(skb)->frags[0].page);
fb6813f4 139
3f2c31d9
MM
140 if (len > PAGE_SIZE)
141 len = PAGE_SIZE;
142 len -= sizeof(struct virtio_net_hdr_mrg_rxbuf);
143
b3f24698
RR
144 memcpy(&hdr->mhdr, p, sizeof(hdr->mhdr));
145 p += sizeof(hdr->mhdr);
3f2c31d9
MM
146
147 copy = len;
148 if (copy > skb_tailroom(skb))
149 copy = skb_tailroom(skb);
150
151 memcpy(skb_put(skb, copy), p, copy);
152
153 len -= copy;
154
155 if (!len) {
156 give_a_page(vi, skb_shinfo(skb)->frags[0].page);
157 skb_shinfo(skb)->nr_frags--;
158 } else {
159 skb_shinfo(skb)->frags[0].page_offset +=
b3f24698 160 sizeof(hdr->mhdr) + copy;
3f2c31d9
MM
161 skb_shinfo(skb)->frags[0].size = len;
162 skb->data_len += len;
163 skb->len += len;
164 }
165
b3f24698 166 while (--hdr->mhdr.num_buffers) {
3f2c31d9
MM
167 struct sk_buff *nskb;
168
169 i = skb_shinfo(skb)->nr_frags;
170 if (i >= MAX_SKB_FRAGS) {
171 pr_debug("%s: packet too long %d\n", dev->name,
172 len);
173 dev->stats.rx_length_errors++;
174 goto drop;
175 }
176
177 nskb = vi->rvq->vq_ops->get_buf(vi->rvq, &len);
178 if (!nskb) {
179 pr_debug("%s: rx error: %d buffers missing\n",
b3f24698 180 dev->name, hdr->mhdr.num_buffers);
3f2c31d9
MM
181 dev->stats.rx_length_errors++;
182 goto drop;
183 }
184
185 __skb_unlink(nskb, &vi->recv);
186 vi->num--;
187
188 skb_shinfo(skb)->frags[i] = skb_shinfo(nskb)->frags[0];
189 skb_shinfo(nskb)->nr_frags = 0;
190 kfree_skb(nskb);
191
192 if (len > PAGE_SIZE)
193 len = PAGE_SIZE;
194
195 skb_shinfo(skb)->frags[i].size = len;
196 skb_shinfo(skb)->nr_frags++;
197 skb->data_len += len;
198 skb->len += len;
199 }
200 } else {
b3f24698 201 len -= sizeof(hdr->hdr);
3f2c31d9
MM
202
203 if (len <= MAX_PACKET_LEN)
204 trim_pages(vi, skb);
205
206 err = pskb_trim(skb, len);
207 if (err) {
208 pr_debug("%s: pskb_trim failed %i %d\n", dev->name,
209 len, err);
210 dev->stats.rx_dropped++;
211 goto drop;
212 }
97402b96 213 }
3f2c31d9 214
97402b96 215 skb->truesize += skb->data_len;
296f96fc
RR
216 dev->stats.rx_bytes += skb->len;
217 dev->stats.rx_packets++;
218
b3f24698 219 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
296f96fc 220 pr_debug("Needs csum!\n");
b3f24698
RR
221 if (!skb_partial_csum_set(skb,
222 hdr->hdr.csum_start,
223 hdr->hdr.csum_offset))
296f96fc 224 goto frame_err;
296f96fc
RR
225 }
226
23cde76d
MM
227 skb->protocol = eth_type_trans(skb, dev);
228 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
229 ntohs(skb->protocol), skb->len, skb->pkt_type);
230
b3f24698 231 if (hdr->hdr.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
296f96fc 232 pr_debug("GSO!\n");
b3f24698 233 switch (hdr->hdr.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
296f96fc
RR
234 case VIRTIO_NET_HDR_GSO_TCPV4:
235 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
236 break;
296f96fc
RR
237 case VIRTIO_NET_HDR_GSO_UDP:
238 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
239 break;
240 case VIRTIO_NET_HDR_GSO_TCPV6:
241 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
242 break;
243 default:
244 if (net_ratelimit())
245 printk(KERN_WARNING "%s: bad gso type %u.\n",
b3f24698 246 dev->name, hdr->hdr.gso_type);
296f96fc
RR
247 goto frame_err;
248 }
249
b3f24698 250 if (hdr->hdr.gso_type & VIRTIO_NET_HDR_GSO_ECN)
34a48579
RR
251 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
252
b3f24698 253 skb_shinfo(skb)->gso_size = hdr->hdr.gso_size;
296f96fc
RR
254 if (skb_shinfo(skb)->gso_size == 0) {
255 if (net_ratelimit())
256 printk(KERN_WARNING "%s: zero gso size.\n",
257 dev->name);
258 goto frame_err;
259 }
260
261 /* Header must be checked, and gso_segs computed. */
262 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
263 skb_shinfo(skb)->gso_segs = 0;
264 }
265
266 netif_receive_skb(skb);
267 return;
268
269frame_err:
270 dev->stats.rx_frame_errors++;
271drop:
272 dev_kfree_skb(skb);
273}
274
3161e453 275static bool try_fill_recv_maxbufs(struct virtnet_info *vi, gfp_t gfp)
296f96fc
RR
276{
277 struct sk_buff *skb;
05271685 278 struct scatterlist sg[2+MAX_SKB_FRAGS];
97402b96 279 int num, err, i;
3161e453 280 bool oom = false;
296f96fc 281
05271685 282 sg_init_table(sg, 2+MAX_SKB_FRAGS);
0aea51c3 283 do {
b3f24698 284 struct skb_vnet_hdr *hdr;
3f2c31d9 285
8981f010 286 skb = netdev_alloc_skb(vi->dev, MAX_PACKET_LEN + NET_IP_ALIGN);
3161e453
RR
287 if (unlikely(!skb)) {
288 oom = true;
296f96fc 289 break;
3161e453 290 }
296f96fc 291
8981f010 292 skb_reserve(skb, NET_IP_ALIGN);
296f96fc 293 skb_put(skb, MAX_PACKET_LEN);
3f2c31d9
MM
294
295 hdr = skb_vnet_hdr(skb);
b3f24698 296 sg_set_buf(sg, &hdr->hdr, sizeof(hdr->hdr));
97402b96
HX
297
298 if (vi->big_packets) {
299 for (i = 0; i < MAX_SKB_FRAGS; i++) {
300 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
3161e453 301 f->page = get_a_page(vi, gfp);
97402b96
HX
302 if (!f->page)
303 break;
304
305 f->page_offset = 0;
306 f->size = PAGE_SIZE;
307
308 skb->data_len += PAGE_SIZE;
309 skb->len += PAGE_SIZE;
310
311 skb_shinfo(skb)->nr_frags++;
312 }
313 }
314
296f96fc
RR
315 num = skb_to_sgvec(skb, sg+1, 0, skb->len) + 1;
316 skb_queue_head(&vi->recv, skb);
317
318 err = vi->rvq->vq_ops->add_buf(vi->rvq, sg, 0, num, skb);
3c1b27d5 319 if (err < 0) {
296f96fc 320 skb_unlink(skb, &vi->recv);
0a888fd1 321 trim_pages(vi, skb);
296f96fc
RR
322 kfree_skb(skb);
323 break;
324 }
325 vi->num++;
0aea51c3 326 } while (err >= num);
296f96fc
RR
327 if (unlikely(vi->num > vi->max))
328 vi->max = vi->num;
329 vi->rvq->vq_ops->kick(vi->rvq);
3161e453 330 return !oom;
296f96fc
RR
331}
332
3161e453
RR
333/* Returns false if we couldn't fill entirely (OOM). */
334static bool try_fill_recv(struct virtnet_info *vi, gfp_t gfp)
3f2c31d9
MM
335{
336 struct sk_buff *skb;
337 struct scatterlist sg[1];
338 int err;
3161e453 339 bool oom = false;
3f2c31d9 340
3161e453
RR
341 if (!vi->mergeable_rx_bufs)
342 return try_fill_recv_maxbufs(vi, gfp);
3f2c31d9 343
0aea51c3 344 do {
3f2c31d9
MM
345 skb_frag_t *f;
346
347 skb = netdev_alloc_skb(vi->dev, GOOD_COPY_LEN + NET_IP_ALIGN);
3161e453
RR
348 if (unlikely(!skb)) {
349 oom = true;
3f2c31d9 350 break;
3161e453 351 }
3f2c31d9
MM
352
353 skb_reserve(skb, NET_IP_ALIGN);
354
355 f = &skb_shinfo(skb)->frags[0];
3161e453 356 f->page = get_a_page(vi, gfp);
3f2c31d9 357 if (!f->page) {
3161e453 358 oom = true;
3f2c31d9
MM
359 kfree_skb(skb);
360 break;
361 }
362
363 f->page_offset = 0;
364 f->size = PAGE_SIZE;
365
366 skb_shinfo(skb)->nr_frags++;
367
368 sg_init_one(sg, page_address(f->page), PAGE_SIZE);
369 skb_queue_head(&vi->recv, skb);
370
371 err = vi->rvq->vq_ops->add_buf(vi->rvq, sg, 0, 1, skb);
3c1b27d5 372 if (err < 0) {
3f2c31d9
MM
373 skb_unlink(skb, &vi->recv);
374 kfree_skb(skb);
375 break;
376 }
377 vi->num++;
0aea51c3 378 } while (err > 0);
3f2c31d9
MM
379 if (unlikely(vi->num > vi->max))
380 vi->max = vi->num;
381 vi->rvq->vq_ops->kick(vi->rvq);
3161e453 382 return !oom;
3f2c31d9
MM
383}
384
18445c4d 385static void skb_recv_done(struct virtqueue *rvq)
296f96fc
RR
386{
387 struct virtnet_info *vi = rvq->vdev->priv;
18445c4d 388 /* Schedule NAPI, Suppress further interrupts if successful. */
288379f0 389 if (napi_schedule_prep(&vi->napi)) {
18445c4d 390 rvq->vq_ops->disable_cb(rvq);
288379f0 391 __napi_schedule(&vi->napi);
18445c4d 392 }
296f96fc
RR
393}
394
3161e453
RR
395static void refill_work(struct work_struct *work)
396{
397 struct virtnet_info *vi;
398 bool still_empty;
399
400 vi = container_of(work, struct virtnet_info, refill.work);
401 napi_disable(&vi->napi);
402 try_fill_recv(vi, GFP_KERNEL);
403 still_empty = (vi->num == 0);
404 napi_enable(&vi->napi);
405
406 /* In theory, this can happen: if we don't get any buffers in
407 * we will *never* try to fill again. */
408 if (still_empty)
409 schedule_delayed_work(&vi->refill, HZ/2);
410}
411
296f96fc
RR
412static int virtnet_poll(struct napi_struct *napi, int budget)
413{
414 struct virtnet_info *vi = container_of(napi, struct virtnet_info, napi);
415 struct sk_buff *skb = NULL;
416 unsigned int len, received = 0;
417
418again:
419 while (received < budget &&
420 (skb = vi->rvq->vq_ops->get_buf(vi->rvq, &len)) != NULL) {
421 __skb_unlink(skb, &vi->recv);
422 receive_skb(vi->dev, skb, len);
423 vi->num--;
424 received++;
425 }
426
3161e453
RR
427 if (vi->num < vi->max / 2) {
428 if (!try_fill_recv(vi, GFP_ATOMIC))
429 schedule_delayed_work(&vi->refill, 0);
430 }
296f96fc 431
8329d98e
RR
432 /* Out of packets? */
433 if (received < budget) {
288379f0 434 napi_complete(napi);
18445c4d 435 if (unlikely(!vi->rvq->vq_ops->enable_cb(vi->rvq))
4265f161
CB
436 && napi_schedule_prep(napi)) {
437 vi->rvq->vq_ops->disable_cb(vi->rvq);
288379f0 438 __napi_schedule(napi);
296f96fc 439 goto again;
4265f161 440 }
296f96fc
RR
441 }
442
443 return received;
444}
445
48925e37 446static unsigned int free_old_xmit_skbs(struct virtnet_info *vi)
296f96fc
RR
447{
448 struct sk_buff *skb;
48925e37 449 unsigned int len, tot_sgs = 0;
296f96fc
RR
450
451 while ((skb = vi->svq->vq_ops->get_buf(vi->svq, &len)) != NULL) {
452 pr_debug("Sent skb %p\n", skb);
453 __skb_unlink(skb, &vi->send);
655aa31f 454 vi->dev->stats.tx_bytes += skb->len;
296f96fc 455 vi->dev->stats.tx_packets++;
48925e37 456 tot_sgs += skb_vnet_hdr(skb)->num_sg;
ed79bab8 457 dev_kfree_skb_any(skb);
296f96fc 458 }
48925e37 459 return tot_sgs;
296f96fc
RR
460}
461
99ffc696 462static int xmit_skb(struct virtnet_info *vi, struct sk_buff *skb)
296f96fc 463{
05271685 464 struct scatterlist sg[2+MAX_SKB_FRAGS];
b3f24698 465 struct skb_vnet_hdr *hdr = skb_vnet_hdr(skb);
296f96fc 466 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
296f96fc 467
05271685 468 sg_init_table(sg, 2+MAX_SKB_FRAGS);
4d125de3 469
e174961c 470 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
296f96fc 471
296f96fc 472 if (skb->ip_summed == CHECKSUM_PARTIAL) {
b3f24698
RR
473 hdr->hdr.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
474 hdr->hdr.csum_start = skb->csum_start - skb_headroom(skb);
475 hdr->hdr.csum_offset = skb->csum_offset;
296f96fc 476 } else {
b3f24698
RR
477 hdr->hdr.flags = 0;
478 hdr->hdr.csum_offset = hdr->hdr.csum_start = 0;
296f96fc
RR
479 }
480
481 if (skb_is_gso(skb)) {
b3f24698
RR
482 hdr->hdr.hdr_len = skb_headlen(skb);
483 hdr->hdr.gso_size = skb_shinfo(skb)->gso_size;
34a48579 484 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
b3f24698 485 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
296f96fc 486 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
b3f24698 487 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
296f96fc 488 else if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
b3f24698 489 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP;
296f96fc
RR
490 else
491 BUG();
34a48579 492 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCP_ECN)
b3f24698 493 hdr->hdr.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
296f96fc 494 } else {
b3f24698
RR
495 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE;
496 hdr->hdr.gso_size = hdr->hdr.hdr_len = 0;
296f96fc
RR
497 }
498
b3f24698 499 hdr->mhdr.num_buffers = 0;
3f2c31d9
MM
500
501 /* Encode metadata header at front. */
502 if (vi->mergeable_rx_bufs)
b3f24698 503 sg_set_buf(sg, &hdr->mhdr, sizeof(hdr->mhdr));
3f2c31d9 504 else
b3f24698 505 sg_set_buf(sg, &hdr->hdr, sizeof(hdr->hdr));
3f2c31d9 506
48925e37
RR
507 hdr->num_sg = skb_to_sgvec(skb, sg+1, 0, skb->len) + 1;
508 return vi->svq->vq_ops->add_buf(vi->svq, sg, hdr->num_sg, 0, skb);
11a3a154
RR
509}
510
424efe9c 511static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
99ffc696
RR
512{
513 struct virtnet_info *vi = netdev_priv(dev);
48925e37 514 int capacity;
2cb9c6ba
RR
515
516again:
517 /* Free up any pending old buffers before queueing new ones. */
518 free_old_xmit_skbs(vi);
99ffc696 519
03f191ba 520 /* Try to transmit */
48925e37
RR
521 capacity = xmit_skb(vi, skb);
522
523 /* This can happen with OOM and indirect buffers. */
524 if (unlikely(capacity < 0)) {
525 netif_stop_queue(dev);
526 dev_warn(&dev->dev, "Unexpected full queue\n");
527 if (unlikely(!vi->svq->vq_ops->enable_cb(vi->svq))) {
528 vi->svq->vq_ops->disable_cb(vi->svq);
529 netif_start_queue(dev);
530 goto again;
531 }
532 return NETDEV_TX_BUSY;
296f96fc 533 }
48925e37 534 vi->svq->vq_ops->kick(vi->svq);
03f191ba
MT
535
536 /*
537 * Put new one in send queue. You'd expect we'd need this before
538 * xmit_skb calls add_buf(), since the callback can be triggered
539 * immediately after that. But since the callback just triggers
540 * another call back here, normal network xmit locking prevents the
541 * race.
542 */
543 __skb_queue_head(&vi->send, skb);
544
48925e37
RR
545 /* Don't wait up for transmitted skbs to be freed. */
546 skb_orphan(skb);
547 nf_reset(skb);
548
549 /* Apparently nice girls don't return TX_BUSY; stop the queue
550 * before it gets out of hand. Naturally, this wastes entries. */
551 if (capacity < 2+MAX_SKB_FRAGS) {
552 netif_stop_queue(dev);
553 if (unlikely(!vi->svq->vq_ops->enable_cb(vi->svq))) {
554 /* More just got used, free them then recheck. */
555 capacity += free_old_xmit_skbs(vi);
556 if (capacity >= 2+MAX_SKB_FRAGS) {
557 netif_start_queue(dev);
558 vi->svq->vq_ops->disable_cb(vi->svq);
559 }
560 }
99ffc696 561 }
48925e37
RR
562
563 return NETDEV_TX_OK;
296f96fc
RR
564}
565
9c46f6d4
AW
566static int virtnet_set_mac_address(struct net_device *dev, void *p)
567{
568 struct virtnet_info *vi = netdev_priv(dev);
569 struct virtio_device *vdev = vi->vdev;
570 int ret;
571
572 ret = eth_mac_addr(dev, p);
573 if (ret)
574 return ret;
575
62994b2d
AW
576 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
577 vdev->config->set(vdev, offsetof(struct virtio_net_config, mac),
578 dev->dev_addr, dev->addr_len);
9c46f6d4
AW
579
580 return 0;
581}
582
da74e89d
AS
583#ifdef CONFIG_NET_POLL_CONTROLLER
584static void virtnet_netpoll(struct net_device *dev)
585{
586 struct virtnet_info *vi = netdev_priv(dev);
587
588 napi_schedule(&vi->napi);
589}
590#endif
591
296f96fc
RR
592static int virtnet_open(struct net_device *dev)
593{
594 struct virtnet_info *vi = netdev_priv(dev);
595
296f96fc 596 napi_enable(&vi->napi);
a48bd8f6
RR
597
598 /* If all buffers were filled by other side before we napi_enabled, we
599 * won't get another interrupt, so process any outstanding packets
370076d9
CB
600 * now. virtnet_poll wants re-enable the queue, so we disable here.
601 * We synchronize against interrupts via NAPI_STATE_SCHED */
288379f0 602 if (napi_schedule_prep(&vi->napi)) {
370076d9 603 vi->rvq->vq_ops->disable_cb(vi->rvq);
288379f0 604 __napi_schedule(&vi->napi);
370076d9 605 }
296f96fc
RR
606 return 0;
607}
608
2a41f71d
AW
609/*
610 * Send command via the control virtqueue and check status. Commands
611 * supported by the hypervisor, as indicated by feature bits, should
612 * never fail unless improperly formated.
613 */
614static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
615 struct scatterlist *data, int out, int in)
616{
23e258e1 617 struct scatterlist *s, sg[VIRTNET_SEND_COMMAND_SG_MAX + 2];
2a41f71d
AW
618 struct virtio_net_ctrl_hdr ctrl;
619 virtio_net_ctrl_ack status = ~0;
620 unsigned int tmp;
23e258e1 621 int i;
2a41f71d 622
0ee904c3
AB
623 /* Caller should know better */
624 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ) ||
625 (out + in > VIRTNET_SEND_COMMAND_SG_MAX));
2a41f71d
AW
626
627 out++; /* Add header */
628 in++; /* Add return status */
629
630 ctrl.class = class;
631 ctrl.cmd = cmd;
632
633 sg_init_table(sg, out + in);
634
635 sg_set_buf(&sg[0], &ctrl, sizeof(ctrl));
23e258e1
AW
636 for_each_sg(data, s, out + in - 2, i)
637 sg_set_buf(&sg[i + 1], sg_virt(s), s->length);
2a41f71d
AW
638 sg_set_buf(&sg[out + in - 1], &status, sizeof(status));
639
3c1b27d5 640 BUG_ON(vi->cvq->vq_ops->add_buf(vi->cvq, sg, out, in, vi) < 0);
2a41f71d
AW
641
642 vi->cvq->vq_ops->kick(vi->cvq);
643
644 /*
645 * Spin for a response, the kick causes an ioport write, trapping
646 * into the hypervisor, so the request should be handled immediately.
647 */
648 while (!vi->cvq->vq_ops->get_buf(vi->cvq, &tmp))
649 cpu_relax();
650
651 return status == VIRTIO_NET_OK;
652}
653
296f96fc
RR
654static int virtnet_close(struct net_device *dev)
655{
656 struct virtnet_info *vi = netdev_priv(dev);
296f96fc
RR
657
658 napi_disable(&vi->napi);
659
296f96fc
RR
660 return 0;
661}
662
a9ea3fc6
HX
663static int virtnet_set_tx_csum(struct net_device *dev, u32 data)
664{
665 struct virtnet_info *vi = netdev_priv(dev);
666 struct virtio_device *vdev = vi->vdev;
667
668 if (data && !virtio_has_feature(vdev, VIRTIO_NET_F_CSUM))
669 return -ENOSYS;
670
671 return ethtool_op_set_tx_hw_csum(dev, data);
672}
673
2af7698e
AW
674static void virtnet_set_rx_mode(struct net_device *dev)
675{
676 struct virtnet_info *vi = netdev_priv(dev);
f565a7c2 677 struct scatterlist sg[2];
2af7698e 678 u8 promisc, allmulti;
f565a7c2
AW
679 struct virtio_net_ctrl_mac *mac_data;
680 struct dev_addr_list *addr;
ccffad25 681 struct netdev_hw_addr *ha;
f565a7c2
AW
682 void *buf;
683 int i;
2af7698e
AW
684
685 /* We can't dynamicaly set ndo_set_rx_mode, so return gracefully */
686 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
687 return;
688
f565a7c2
AW
689 promisc = ((dev->flags & IFF_PROMISC) != 0);
690 allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
2af7698e 691
23e258e1 692 sg_init_one(sg, &promisc, sizeof(promisc));
2af7698e
AW
693
694 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
695 VIRTIO_NET_CTRL_RX_PROMISC,
f565a7c2 696 sg, 1, 0))
2af7698e
AW
697 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
698 promisc ? "en" : "dis");
699
23e258e1 700 sg_init_one(sg, &allmulti, sizeof(allmulti));
2af7698e
AW
701
702 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
703 VIRTIO_NET_CTRL_RX_ALLMULTI,
f565a7c2 704 sg, 1, 0))
2af7698e
AW
705 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
706 allmulti ? "en" : "dis");
f565a7c2
AW
707
708 /* MAC filter - use one buffer for both lists */
31278e71 709 mac_data = buf = kzalloc(((dev->uc.count + dev->mc_count) * ETH_ALEN) +
f565a7c2
AW
710 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
711 if (!buf) {
712 dev_warn(&dev->dev, "No memory for MAC address buffer\n");
713 return;
714 }
715
23e258e1
AW
716 sg_init_table(sg, 2);
717
f565a7c2 718 /* Store the unicast list and count in the front of the buffer */
31278e71 719 mac_data->entries = dev->uc.count;
ccffad25 720 i = 0;
31278e71 721 list_for_each_entry(ha, &dev->uc.list, list)
ccffad25 722 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
f565a7c2
AW
723
724 sg_set_buf(&sg[0], mac_data,
31278e71 725 sizeof(mac_data->entries) + (dev->uc.count * ETH_ALEN));
f565a7c2
AW
726
727 /* multicast list and count fill the end */
31278e71 728 mac_data = (void *)&mac_data->macs[dev->uc.count][0];
f565a7c2
AW
729
730 mac_data->entries = dev->mc_count;
731 addr = dev->mc_list;
732 for (i = 0; i < dev->mc_count; i++, addr = addr->next)
733 memcpy(&mac_data->macs[i][0], addr->da_addr, ETH_ALEN);
734
735 sg_set_buf(&sg[1], mac_data,
736 sizeof(mac_data->entries) + (dev->mc_count * ETH_ALEN));
737
738 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
739 VIRTIO_NET_CTRL_MAC_TABLE_SET,
740 sg, 2, 0))
741 dev_warn(&dev->dev, "Failed to set MAC fitler table.\n");
742
743 kfree(buf);
2af7698e
AW
744}
745
1824a989 746static void virtnet_vlan_rx_add_vid(struct net_device *dev, u16 vid)
0bde9569
AW
747{
748 struct virtnet_info *vi = netdev_priv(dev);
749 struct scatterlist sg;
750
23e258e1 751 sg_init_one(&sg, &vid, sizeof(vid));
0bde9569
AW
752
753 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
754 VIRTIO_NET_CTRL_VLAN_ADD, &sg, 1, 0))
755 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
756}
757
1824a989 758static void virtnet_vlan_rx_kill_vid(struct net_device *dev, u16 vid)
0bde9569
AW
759{
760 struct virtnet_info *vi = netdev_priv(dev);
761 struct scatterlist sg;
762
23e258e1 763 sg_init_one(&sg, &vid, sizeof(vid));
0bde9569
AW
764
765 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
766 VIRTIO_NET_CTRL_VLAN_DEL, &sg, 1, 0))
767 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
768}
769
0fc0b732 770static const struct ethtool_ops virtnet_ethtool_ops = {
a9ea3fc6
HX
771 .set_tx_csum = virtnet_set_tx_csum,
772 .set_sg = ethtool_op_set_sg,
0276b497 773 .set_tso = ethtool_op_set_tso,
5c516751 774 .set_ufo = ethtool_op_set_ufo,
9f4d26d0 775 .get_link = ethtool_op_get_link,
a9ea3fc6
HX
776};
777
39da5814
MM
778#define MIN_MTU 68
779#define MAX_MTU 65535
780
781static int virtnet_change_mtu(struct net_device *dev, int new_mtu)
782{
783 if (new_mtu < MIN_MTU || new_mtu > MAX_MTU)
784 return -EINVAL;
785 dev->mtu = new_mtu;
786 return 0;
787}
788
76288b4e
SH
789static const struct net_device_ops virtnet_netdev = {
790 .ndo_open = virtnet_open,
791 .ndo_stop = virtnet_close,
792 .ndo_start_xmit = start_xmit,
793 .ndo_validate_addr = eth_validate_addr,
9c46f6d4 794 .ndo_set_mac_address = virtnet_set_mac_address,
2af7698e 795 .ndo_set_rx_mode = virtnet_set_rx_mode,
76288b4e 796 .ndo_change_mtu = virtnet_change_mtu,
1824a989
AW
797 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
798 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
76288b4e
SH
799#ifdef CONFIG_NET_POLL_CONTROLLER
800 .ndo_poll_controller = virtnet_netpoll,
801#endif
802};
803
9f4d26d0
MM
804static void virtnet_update_status(struct virtnet_info *vi)
805{
806 u16 v;
807
808 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS))
809 return;
810
811 vi->vdev->config->get(vi->vdev,
812 offsetof(struct virtio_net_config, status),
813 &v, sizeof(v));
814
815 /* Ignore unknown (future) status bits */
816 v &= VIRTIO_NET_S_LINK_UP;
817
818 if (vi->status == v)
819 return;
820
821 vi->status = v;
822
823 if (vi->status & VIRTIO_NET_S_LINK_UP) {
824 netif_carrier_on(vi->dev);
825 netif_wake_queue(vi->dev);
826 } else {
827 netif_carrier_off(vi->dev);
828 netif_stop_queue(vi->dev);
829 }
830}
831
832static void virtnet_config_changed(struct virtio_device *vdev)
833{
834 struct virtnet_info *vi = vdev->priv;
835
836 virtnet_update_status(vi);
837}
838
296f96fc
RR
839static int virtnet_probe(struct virtio_device *vdev)
840{
841 int err;
296f96fc
RR
842 struct net_device *dev;
843 struct virtnet_info *vi;
d2a7ddda
MT
844 struct virtqueue *vqs[3];
845 vq_callback_t *callbacks[] = { skb_recv_done, skb_xmit_done, NULL};
846 const char *names[] = { "input", "output", "control" };
847 int nvqs;
296f96fc
RR
848
849 /* Allocate ourselves a network device with room for our info */
850 dev = alloc_etherdev(sizeof(struct virtnet_info));
851 if (!dev)
852 return -ENOMEM;
853
854 /* Set up network device as normal. */
76288b4e 855 dev->netdev_ops = &virtnet_netdev;
296f96fc 856 dev->features = NETIF_F_HIGHDMA;
a9ea3fc6 857 SET_ETHTOOL_OPS(dev, &virtnet_ethtool_ops);
296f96fc
RR
858 SET_NETDEV_DEV(dev, &vdev->dev);
859
860 /* Do we support "hardware" checksums? */
c45a6816 861 if (csum && virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
296f96fc
RR
862 /* This opens up the world of extra features. */
863 dev->features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
c45a6816 864 if (gso && virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
34a48579
RR
865 dev->features |= NETIF_F_TSO | NETIF_F_UFO
866 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
867 }
5539ae96 868 /* Individual feature bits: what can host handle? */
c45a6816 869 if (gso && virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
5539ae96 870 dev->features |= NETIF_F_TSO;
c45a6816 871 if (gso && virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
5539ae96 872 dev->features |= NETIF_F_TSO6;
c45a6816 873 if (gso && virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
5539ae96 874 dev->features |= NETIF_F_TSO_ECN;
c45a6816 875 if (gso && virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
5539ae96 876 dev->features |= NETIF_F_UFO;
296f96fc
RR
877 }
878
879 /* Configuration may specify what MAC to use. Otherwise random. */
c45a6816 880 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) {
a586d4f6
RR
881 vdev->config->get(vdev,
882 offsetof(struct virtio_net_config, mac),
883 dev->dev_addr, dev->addr_len);
62994b2d 884 } else
296f96fc
RR
885 random_ether_addr(dev->dev_addr);
886
887 /* Set up our device-specific information */
888 vi = netdev_priv(dev);
6c0cd7c0 889 netif_napi_add(dev, &vi->napi, virtnet_poll, napi_weight);
296f96fc
RR
890 vi->dev = dev;
891 vi->vdev = vdev;
d9d5dcc8 892 vdev->priv = vi;
fb6813f4 893 vi->pages = NULL;
3161e453 894 INIT_DELAYED_WORK(&vi->refill, refill_work);
296f96fc 895
97402b96
HX
896 /* If we can receive ANY GSO packets, we must allocate large ones. */
897 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4)
898 || virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6)
899 || virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN))
900 vi->big_packets = true;
901
3f2c31d9
MM
902 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
903 vi->mergeable_rx_bufs = true;
904
d2a7ddda
MT
905 /* We expect two virtqueues, receive then send,
906 * and optionally control. */
907 nvqs = virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ) ? 3 : 2;
908
909 err = vdev->config->find_vqs(vdev, nvqs, vqs, callbacks, names);
910 if (err)
296f96fc 911 goto free;
296f96fc 912
d2a7ddda
MT
913 vi->rvq = vqs[0];
914 vi->svq = vqs[1];
296f96fc 915
2a41f71d 916 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ)) {
d2a7ddda 917 vi->cvq = vqs[2];
0bde9569
AW
918
919 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
920 dev->features |= NETIF_F_HW_VLAN_FILTER;
2a41f71d
AW
921 }
922
296f96fc
RR
923 /* Initialize our empty receive and send queues. */
924 skb_queue_head_init(&vi->recv);
925 skb_queue_head_init(&vi->send);
926
927 err = register_netdev(dev);
928 if (err) {
929 pr_debug("virtio_net: registering device failed\n");
d2a7ddda 930 goto free_vqs;
296f96fc 931 }
b3369c1f
RR
932
933 /* Last of all, set up some receive buffers. */
3161e453 934 try_fill_recv(vi, GFP_KERNEL);
b3369c1f
RR
935
936 /* If we didn't even get one input buffer, we're useless. */
937 if (vi->num == 0) {
938 err = -ENOMEM;
939 goto unregister;
940 }
941
9f4d26d0
MM
942 vi->status = VIRTIO_NET_S_LINK_UP;
943 virtnet_update_status(vi);
4783256e 944 netif_carrier_on(dev);
9f4d26d0 945
296f96fc 946 pr_debug("virtnet: registered device %s\n", dev->name);
296f96fc
RR
947 return 0;
948
b3369c1f
RR
949unregister:
950 unregister_netdev(dev);
3161e453 951 cancel_delayed_work_sync(&vi->refill);
d2a7ddda
MT
952free_vqs:
953 vdev->config->del_vqs(vdev);
296f96fc
RR
954free:
955 free_netdev(dev);
956 return err;
957}
958
3d1285be 959static void __devexit virtnet_remove(struct virtio_device *vdev)
296f96fc 960{
74b2553f 961 struct virtnet_info *vi = vdev->priv;
b3369c1f
RR
962 struct sk_buff *skb;
963
6e5aa7ef
RR
964 /* Stop all the virtqueues. */
965 vdev->config->reset(vdev);
966
b3369c1f 967 /* Free our skbs in send and recv queues, if any. */
b3369c1f
RR
968 while ((skb = __skb_dequeue(&vi->recv)) != NULL) {
969 kfree_skb(skb);
970 vi->num--;
971 }
288369cc 972 __skb_queue_purge(&vi->send);
b3369c1f
RR
973
974 BUG_ON(vi->num != 0);
74b2553f 975
74b2553f 976 unregister_netdev(vi->dev);
3161e453 977 cancel_delayed_work_sync(&vi->refill);
fb6813f4 978
d2a7ddda
MT
979 vdev->config->del_vqs(vi->vdev);
980
fb6813f4
RR
981 while (vi->pages)
982 __free_pages(get_a_page(vi, GFP_KERNEL), 0);
983
74b2553f 984 free_netdev(vi->dev);
296f96fc
RR
985}
986
987static struct virtio_device_id id_table[] = {
988 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
989 { 0 },
990};
991
c45a6816 992static unsigned int features[] = {
5e4fe5c4
MM
993 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM,
994 VIRTIO_NET_F_GSO, VIRTIO_NET_F_MAC,
c45a6816 995 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6,
97402b96 996 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6,
5c516751 997 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO,
2a41f71d 998 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ,
0bde9569 999 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN,
c45a6816
RR
1000};
1001
296f96fc 1002static struct virtio_driver virtio_net = {
c45a6816
RR
1003 .feature_table = features,
1004 .feature_table_size = ARRAY_SIZE(features),
296f96fc
RR
1005 .driver.name = KBUILD_MODNAME,
1006 .driver.owner = THIS_MODULE,
1007 .id_table = id_table,
1008 .probe = virtnet_probe,
1009 .remove = __devexit_p(virtnet_remove),
9f4d26d0 1010 .config_changed = virtnet_config_changed,
296f96fc
RR
1011};
1012
1013static int __init init(void)
1014{
1015 return register_virtio_driver(&virtio_net);
1016}
1017
1018static void __exit fini(void)
1019{
1020 unregister_virtio_driver(&virtio_net);
1021}
1022module_init(init);
1023module_exit(fini);
1024
1025MODULE_DEVICE_TABLE(virtio, id_table);
1026MODULE_DESCRIPTION("Virtio network driver");
1027MODULE_LICENSE("GPL");