blob: 088332a943f751ff03d27298b217cac960be396e [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
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>
Herbert Xua9ea3fc2008-04-18 11:21:42 +080022#include <linux/ethtool.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100023#include <linux/module.h>
24#include <linux/virtio.h>
25#include <linux/virtio_net.h>
26#include <linux/scatterlist.h>
Alex Williamsone918085a2009-01-25 18:06:26 -080027#include <linux/if_vlan.h>
Rusty Russell296f96f2007-10-22 11:03:37 +100028
Dor Laor6c0cd7c2007-12-16 15:19:43 +020029static int napi_weight = 128;
30module_param(napi_weight, int, 0444);
31
Rusty Russell34a48572008-02-04 23:50:02 -050032static int csum = 1, gso = 1;
33module_param(csum, bool, 0444);
34module_param(gso, bool, 0444);
35
Rusty Russell296f96f2007-10-22 11:03:37 +100036/* FIXME: MTU in config. */
Alex Williamsone918085a2009-01-25 18:06:26 -080037#define MAX_PACKET_LEN (ETH_HLEN + VLAN_HLEN + ETH_DATA_LEN)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080038#define GOOD_COPY_LEN 128
Rusty Russell296f96f2007-10-22 11:03:37 +100039
Alex Williamsonf565a7c2009-02-04 09:02:45 +000040#define VIRTNET_SEND_COMMAND_SG_MAX 2
Alex Williamson2a41f712009-02-04 09:02:34 +000041
Rusty Russell296f96f2007-10-22 11:03:37 +100042struct virtnet_info
43{
44 struct virtio_device *vdev;
Alex Williamson2a41f712009-02-04 09:02:34 +000045 struct virtqueue *rvq, *svq, *cvq;
Rusty Russell296f96f2007-10-22 11:03:37 +100046 struct net_device *dev;
47 struct napi_struct napi;
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -080048 unsigned int status;
Rusty Russell296f96f2007-10-22 11:03:37 +100049
50 /* Number of input buffers, and max we've ever had. */
51 unsigned int num, max;
52
Herbert Xu97402b92008-04-18 11:24:27 +080053 /* I like... big packets and I cannot lie! */
54 bool big_packets;
55
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -080056 /* Host will merge rx buffers for big packets (shake it! shake it!) */
57 bool mergeable_rx_bufs;
58
Rusty Russell296f96f2007-10-22 11:03:37 +100059 /* Receive & send queues. */
60 struct sk_buff_head recv;
61 struct sk_buff_head send;
Rusty Russellfb6813f2008-07-25 12:06:01 -050062
Rusty Russell3161e452009-08-26 12:22:32 -070063 /* Work struct for refilling if we run low on memory. */
64 struct delayed_work refill;
65
Rusty Russellfb6813f2008-07-25 12:06:01 -050066 /* Chain pages by the private ptr. */
67 struct page *pages;
Rusty Russell296f96f2007-10-22 11:03:37 +100068};
69
Rusty Russellb3f24692009-09-24 09:59:19 -060070struct skb_vnet_hdr {
71 union {
72 struct virtio_net_hdr hdr;
73 struct virtio_net_hdr_mrg_rxbuf mhdr;
74 };
Rusty Russell48925e32009-09-24 09:59:20 -060075 unsigned int num_sg;
Rusty Russellb3f24692009-09-24 09:59:19 -060076};
77
78static inline struct skb_vnet_hdr *skb_vnet_hdr(struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +100079{
Rusty Russellb3f24692009-09-24 09:59:19 -060080 return (struct skb_vnet_hdr *)skb->cb;
Rusty Russell296f96f2007-10-22 11:03:37 +100081}
82
Rusty Russellfb6813f2008-07-25 12:06:01 -050083static void give_a_page(struct virtnet_info *vi, struct page *page)
84{
85 page->private = (unsigned long)vi->pages;
86 vi->pages = page;
87}
88
Mark McLoughlin0a888fd2008-11-16 22:39:18 -080089static void trim_pages(struct virtnet_info *vi, struct sk_buff *skb)
90{
91 unsigned int i;
92
93 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++)
94 give_a_page(vi, skb_shinfo(skb)->frags[i].page);
95 skb_shinfo(skb)->nr_frags = 0;
96 skb->data_len = 0;
97}
98
Rusty Russellfb6813f2008-07-25 12:06:01 -050099static struct page *get_a_page(struct virtnet_info *vi, gfp_t gfp_mask)
100{
101 struct page *p = vi->pages;
102
103 if (p)
104 vi->pages = (struct page *)p->private;
105 else
106 p = alloc_page(gfp_mask);
107 return p;
108}
109
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500110static void skb_xmit_done(struct virtqueue *svq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000111{
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500112 struct virtnet_info *vi = svq->vdev->priv;
Rusty Russell296f96f2007-10-22 11:03:37 +1000113
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500114 /* Suppress further interrupts. */
115 svq->vq_ops->disable_cb(svq);
Rusty Russell11a3a152008-05-26 17:48:13 +1000116
Rusty Russell363f1512008-06-08 20:51:55 +1000117 /* We were probably waiting for more output buffers. */
Rusty Russell296f96f2007-10-22 11:03:37 +1000118 netif_wake_queue(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +1000119}
120
121static void receive_skb(struct net_device *dev, struct sk_buff *skb,
122 unsigned len)
123{
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800124 struct virtnet_info *vi = netdev_priv(dev);
Rusty Russellb3f24692009-09-24 09:59:19 -0600125 struct skb_vnet_hdr *hdr = skb_vnet_hdr(skb);
Herbert Xu97402b92008-04-18 11:24:27 +0800126 int err;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800127 int i;
Rusty Russell296f96f2007-10-22 11:03:37 +1000128
129 if (unlikely(len < sizeof(struct virtio_net_hdr) + ETH_HLEN)) {
130 pr_debug("%s: short packet %i\n", dev->name, len);
131 dev->stats.rx_length_errors++;
132 goto drop;
133 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000134
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800135 if (vi->mergeable_rx_bufs) {
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800136 unsigned int copy;
137 char *p = page_address(skb_shinfo(skb)->frags[0].page);
Rusty Russellfb6813f2008-07-25 12:06:01 -0500138
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800139 if (len > PAGE_SIZE)
140 len = PAGE_SIZE;
141 len -= sizeof(struct virtio_net_hdr_mrg_rxbuf);
142
Rusty Russellb3f24692009-09-24 09:59:19 -0600143 memcpy(&hdr->mhdr, p, sizeof(hdr->mhdr));
144 p += sizeof(hdr->mhdr);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800145
146 copy = len;
147 if (copy > skb_tailroom(skb))
148 copy = skb_tailroom(skb);
149
150 memcpy(skb_put(skb, copy), p, copy);
151
152 len -= copy;
153
154 if (!len) {
155 give_a_page(vi, skb_shinfo(skb)->frags[0].page);
156 skb_shinfo(skb)->nr_frags--;
157 } else {
158 skb_shinfo(skb)->frags[0].page_offset +=
Rusty Russellb3f24692009-09-24 09:59:19 -0600159 sizeof(hdr->mhdr) + copy;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800160 skb_shinfo(skb)->frags[0].size = len;
161 skb->data_len += len;
162 skb->len += len;
163 }
164
Rusty Russellb3f24692009-09-24 09:59:19 -0600165 while (--hdr->mhdr.num_buffers) {
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800166 struct sk_buff *nskb;
167
168 i = skb_shinfo(skb)->nr_frags;
169 if (i >= MAX_SKB_FRAGS) {
170 pr_debug("%s: packet too long %d\n", dev->name,
171 len);
172 dev->stats.rx_length_errors++;
173 goto drop;
174 }
175
176 nskb = vi->rvq->vq_ops->get_buf(vi->rvq, &len);
177 if (!nskb) {
178 pr_debug("%s: rx error: %d buffers missing\n",
Rusty Russellb3f24692009-09-24 09:59:19 -0600179 dev->name, hdr->mhdr.num_buffers);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800180 dev->stats.rx_length_errors++;
181 goto drop;
182 }
183
184 __skb_unlink(nskb, &vi->recv);
185 vi->num--;
186
187 skb_shinfo(skb)->frags[i] = skb_shinfo(nskb)->frags[0];
188 skb_shinfo(nskb)->nr_frags = 0;
189 kfree_skb(nskb);
190
191 if (len > PAGE_SIZE)
192 len = PAGE_SIZE;
193
194 skb_shinfo(skb)->frags[i].size = len;
195 skb_shinfo(skb)->nr_frags++;
196 skb->data_len += len;
197 skb->len += len;
198 }
199 } else {
Rusty Russellb3f24692009-09-24 09:59:19 -0600200 len -= sizeof(hdr->hdr);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800201
202 if (len <= MAX_PACKET_LEN)
203 trim_pages(vi, skb);
204
205 err = pskb_trim(skb, len);
206 if (err) {
207 pr_debug("%s: pskb_trim failed %i %d\n", dev->name,
208 len, err);
209 dev->stats.rx_dropped++;
210 goto drop;
211 }
Herbert Xu97402b92008-04-18 11:24:27 +0800212 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800213
Herbert Xu97402b92008-04-18 11:24:27 +0800214 skb->truesize += skb->data_len;
Rusty Russell296f96f2007-10-22 11:03:37 +1000215 dev->stats.rx_bytes += skb->len;
216 dev->stats.rx_packets++;
217
Rusty Russellb3f24692009-09-24 09:59:19 -0600218 if (hdr->hdr.flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000219 pr_debug("Needs csum!\n");
Rusty Russellb3f24692009-09-24 09:59:19 -0600220 if (!skb_partial_csum_set(skb,
221 hdr->hdr.csum_start,
222 hdr->hdr.csum_offset))
Rusty Russell296f96f2007-10-22 11:03:37 +1000223 goto frame_err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000224 }
225
Mark McLoughlin23cde762008-06-08 20:49:00 +1000226 skb->protocol = eth_type_trans(skb, dev);
227 pr_debug("Receiving skb proto 0x%04x len %i type %i\n",
228 ntohs(skb->protocol), skb->len, skb->pkt_type);
229
Rusty Russellb3f24692009-09-24 09:59:19 -0600230 if (hdr->hdr.gso_type != VIRTIO_NET_HDR_GSO_NONE) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000231 pr_debug("GSO!\n");
Rusty Russellb3f24692009-09-24 09:59:19 -0600232 switch (hdr->hdr.gso_type & ~VIRTIO_NET_HDR_GSO_ECN) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000233 case VIRTIO_NET_HDR_GSO_TCPV4:
234 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
235 break;
Rusty Russell296f96f2007-10-22 11:03:37 +1000236 case VIRTIO_NET_HDR_GSO_UDP:
237 skb_shinfo(skb)->gso_type = SKB_GSO_UDP;
238 break;
239 case VIRTIO_NET_HDR_GSO_TCPV6:
240 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
241 break;
242 default:
243 if (net_ratelimit())
244 printk(KERN_WARNING "%s: bad gso type %u.\n",
Rusty Russellb3f24692009-09-24 09:59:19 -0600245 dev->name, hdr->hdr.gso_type);
Rusty Russell296f96f2007-10-22 11:03:37 +1000246 goto frame_err;
247 }
248
Rusty Russellb3f24692009-09-24 09:59:19 -0600249 if (hdr->hdr.gso_type & VIRTIO_NET_HDR_GSO_ECN)
Rusty Russell34a48572008-02-04 23:50:02 -0500250 skb_shinfo(skb)->gso_type |= SKB_GSO_TCP_ECN;
251
Rusty Russellb3f24692009-09-24 09:59:19 -0600252 skb_shinfo(skb)->gso_size = hdr->hdr.gso_size;
Rusty Russell296f96f2007-10-22 11:03:37 +1000253 if (skb_shinfo(skb)->gso_size == 0) {
254 if (net_ratelimit())
255 printk(KERN_WARNING "%s: zero gso size.\n",
256 dev->name);
257 goto frame_err;
258 }
259
260 /* Header must be checked, and gso_segs computed. */
261 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
262 skb_shinfo(skb)->gso_segs = 0;
263 }
264
265 netif_receive_skb(skb);
266 return;
267
268frame_err:
269 dev->stats.rx_frame_errors++;
270drop:
271 dev_kfree_skb(skb);
272}
273
Rusty Russell3161e452009-08-26 12:22:32 -0700274static bool try_fill_recv_maxbufs(struct virtnet_info *vi, gfp_t gfp)
Rusty Russell296f96f2007-10-22 11:03:37 +1000275{
276 struct sk_buff *skb;
Rusty Russell05271682008-05-02 21:50:45 -0500277 struct scatterlist sg[2+MAX_SKB_FRAGS];
Herbert Xu97402b92008-04-18 11:24:27 +0800278 int num, err, i;
Rusty Russell3161e452009-08-26 12:22:32 -0700279 bool oom = false;
Rusty Russell296f96f2007-10-22 11:03:37 +1000280
Rusty Russell05271682008-05-02 21:50:45 -0500281 sg_init_table(sg, 2+MAX_SKB_FRAGS);
Amit Shah0aea51c2009-08-26 14:58:28 +0530282 do {
Rusty Russellb3f24692009-09-24 09:59:19 -0600283 struct skb_vnet_hdr *hdr;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800284
Eric Dumazet89d71a62009-10-13 05:34:20 +0000285 skb = netdev_alloc_skb_ip_align(vi->dev, MAX_PACKET_LEN);
Rusty Russell3161e452009-08-26 12:22:32 -0700286 if (unlikely(!skb)) {
287 oom = true;
Rusty Russell296f96f2007-10-22 11:03:37 +1000288 break;
Rusty Russell3161e452009-08-26 12:22:32 -0700289 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000290
291 skb_put(skb, MAX_PACKET_LEN);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800292
293 hdr = skb_vnet_hdr(skb);
Rusty Russellb3f24692009-09-24 09:59:19 -0600294 sg_set_buf(sg, &hdr->hdr, sizeof(hdr->hdr));
Herbert Xu97402b92008-04-18 11:24:27 +0800295
296 if (vi->big_packets) {
297 for (i = 0; i < MAX_SKB_FRAGS; i++) {
298 skb_frag_t *f = &skb_shinfo(skb)->frags[i];
Rusty Russell3161e452009-08-26 12:22:32 -0700299 f->page = get_a_page(vi, gfp);
Herbert Xu97402b92008-04-18 11:24:27 +0800300 if (!f->page)
301 break;
302
303 f->page_offset = 0;
304 f->size = PAGE_SIZE;
305
306 skb->data_len += PAGE_SIZE;
307 skb->len += PAGE_SIZE;
308
309 skb_shinfo(skb)->nr_frags++;
310 }
311 }
312
Rusty Russell296f96f2007-10-22 11:03:37 +1000313 num = skb_to_sgvec(skb, sg+1, 0, skb->len) + 1;
314 skb_queue_head(&vi->recv, skb);
315
316 err = vi->rvq->vq_ops->add_buf(vi->rvq, sg, 0, num, skb);
Rusty Russell3c1b27d2009-09-23 22:26:31 -0600317 if (err < 0) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000318 skb_unlink(skb, &vi->recv);
Mark McLoughlin0a888fd2008-11-16 22:39:18 -0800319 trim_pages(vi, skb);
Rusty Russell296f96f2007-10-22 11:03:37 +1000320 kfree_skb(skb);
321 break;
322 }
323 vi->num++;
Amit Shah0aea51c2009-08-26 14:58:28 +0530324 } while (err >= num);
Rusty Russell296f96f2007-10-22 11:03:37 +1000325 if (unlikely(vi->num > vi->max))
326 vi->max = vi->num;
327 vi->rvq->vq_ops->kick(vi->rvq);
Rusty Russell3161e452009-08-26 12:22:32 -0700328 return !oom;
Rusty Russell296f96f2007-10-22 11:03:37 +1000329}
330
Rusty Russell3161e452009-08-26 12:22:32 -0700331/* Returns false if we couldn't fill entirely (OOM). */
332static bool try_fill_recv(struct virtnet_info *vi, gfp_t gfp)
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800333{
334 struct sk_buff *skb;
335 struct scatterlist sg[1];
336 int err;
Rusty Russell3161e452009-08-26 12:22:32 -0700337 bool oom = false;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800338
Rusty Russell3161e452009-08-26 12:22:32 -0700339 if (!vi->mergeable_rx_bufs)
340 return try_fill_recv_maxbufs(vi, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800341
Amit Shah0aea51c2009-08-26 14:58:28 +0530342 do {
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800343 skb_frag_t *f;
344
Eric Dumazet89d71a62009-10-13 05:34:20 +0000345 skb = netdev_alloc_skb_ip_align(vi->dev, GOOD_COPY_LEN);
Rusty Russell3161e452009-08-26 12:22:32 -0700346 if (unlikely(!skb)) {
347 oom = true;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800348 break;
Rusty Russell3161e452009-08-26 12:22:32 -0700349 }
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800350
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800351 f = &skb_shinfo(skb)->frags[0];
Rusty Russell3161e452009-08-26 12:22:32 -0700352 f->page = get_a_page(vi, gfp);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800353 if (!f->page) {
Rusty Russell3161e452009-08-26 12:22:32 -0700354 oom = true;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800355 kfree_skb(skb);
356 break;
357 }
358
359 f->page_offset = 0;
360 f->size = PAGE_SIZE;
361
362 skb_shinfo(skb)->nr_frags++;
363
364 sg_init_one(sg, page_address(f->page), PAGE_SIZE);
365 skb_queue_head(&vi->recv, skb);
366
367 err = vi->rvq->vq_ops->add_buf(vi->rvq, sg, 0, 1, skb);
Rusty Russell3c1b27d2009-09-23 22:26:31 -0600368 if (err < 0) {
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800369 skb_unlink(skb, &vi->recv);
370 kfree_skb(skb);
371 break;
372 }
373 vi->num++;
Amit Shah0aea51c2009-08-26 14:58:28 +0530374 } while (err > 0);
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800375 if (unlikely(vi->num > vi->max))
376 vi->max = vi->num;
377 vi->rvq->vq_ops->kick(vi->rvq);
Rusty Russell3161e452009-08-26 12:22:32 -0700378 return !oom;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800379}
380
Rusty Russell18445c42008-02-04 23:49:57 -0500381static void skb_recv_done(struct virtqueue *rvq)
Rusty Russell296f96f2007-10-22 11:03:37 +1000382{
383 struct virtnet_info *vi = rvq->vdev->priv;
Rusty Russell18445c42008-02-04 23:49:57 -0500384 /* Schedule NAPI, Suppress further interrupts if successful. */
Ben Hutchings288379f2009-01-19 16:43:59 -0800385 if (napi_schedule_prep(&vi->napi)) {
Rusty Russell18445c42008-02-04 23:49:57 -0500386 rvq->vq_ops->disable_cb(rvq);
Ben Hutchings288379f2009-01-19 16:43:59 -0800387 __napi_schedule(&vi->napi);
Rusty Russell18445c42008-02-04 23:49:57 -0500388 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000389}
390
Rusty Russell3161e452009-08-26 12:22:32 -0700391static void refill_work(struct work_struct *work)
392{
393 struct virtnet_info *vi;
394 bool still_empty;
395
396 vi = container_of(work, struct virtnet_info, refill.work);
397 napi_disable(&vi->napi);
398 try_fill_recv(vi, GFP_KERNEL);
399 still_empty = (vi->num == 0);
400 napi_enable(&vi->napi);
401
402 /* In theory, this can happen: if we don't get any buffers in
403 * we will *never* try to fill again. */
404 if (still_empty)
405 schedule_delayed_work(&vi->refill, HZ/2);
406}
407
Rusty Russell296f96f2007-10-22 11:03:37 +1000408static int virtnet_poll(struct napi_struct *napi, int budget)
409{
410 struct virtnet_info *vi = container_of(napi, struct virtnet_info, napi);
411 struct sk_buff *skb = NULL;
412 unsigned int len, received = 0;
413
414again:
415 while (received < budget &&
416 (skb = vi->rvq->vq_ops->get_buf(vi->rvq, &len)) != NULL) {
417 __skb_unlink(skb, &vi->recv);
418 receive_skb(vi->dev, skb, len);
419 vi->num--;
420 received++;
421 }
422
Rusty Russell3161e452009-08-26 12:22:32 -0700423 if (vi->num < vi->max / 2) {
424 if (!try_fill_recv(vi, GFP_ATOMIC))
425 schedule_delayed_work(&vi->refill, 0);
426 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000427
Rusty Russell8329d982007-11-19 11:20:43 -0500428 /* Out of packets? */
429 if (received < budget) {
Ben Hutchings288379f2009-01-19 16:43:59 -0800430 napi_complete(napi);
Joe Perches8e95a202009-12-03 07:58:21 +0000431 if (unlikely(!vi->rvq->vq_ops->enable_cb(vi->rvq)) &&
432 napi_schedule_prep(napi)) {
Christian Borntraeger4265f162008-03-14 14:17:05 +0100433 vi->rvq->vq_ops->disable_cb(vi->rvq);
Ben Hutchings288379f2009-01-19 16:43:59 -0800434 __napi_schedule(napi);
Rusty Russell296f96f2007-10-22 11:03:37 +1000435 goto again;
Christian Borntraeger4265f162008-03-14 14:17:05 +0100436 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000437 }
438
439 return received;
440}
441
Rusty Russell48925e32009-09-24 09:59:20 -0600442static unsigned int free_old_xmit_skbs(struct virtnet_info *vi)
Rusty Russell296f96f2007-10-22 11:03:37 +1000443{
444 struct sk_buff *skb;
Rusty Russell48925e32009-09-24 09:59:20 -0600445 unsigned int len, tot_sgs = 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000446
447 while ((skb = vi->svq->vq_ops->get_buf(vi->svq, &len)) != NULL) {
448 pr_debug("Sent skb %p\n", skb);
449 __skb_unlink(skb, &vi->send);
Rusty Russell655aa312008-05-02 21:50:43 -0500450 vi->dev->stats.tx_bytes += skb->len;
Rusty Russell296f96f2007-10-22 11:03:37 +1000451 vi->dev->stats.tx_packets++;
Rusty Russell48925e32009-09-24 09:59:20 -0600452 tot_sgs += skb_vnet_hdr(skb)->num_sg;
Eric Dumazeted79bab2009-10-14 14:36:43 +0000453 dev_kfree_skb_any(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +1000454 }
Rusty Russell48925e32009-09-24 09:59:20 -0600455 return tot_sgs;
Rusty Russell296f96f2007-10-22 11:03:37 +1000456}
457
Rusty Russell99ffc692008-05-02 21:50:46 -0500458static int xmit_skb(struct virtnet_info *vi, struct sk_buff *skb)
Rusty Russell296f96f2007-10-22 11:03:37 +1000459{
Rusty Russell05271682008-05-02 21:50:45 -0500460 struct scatterlist sg[2+MAX_SKB_FRAGS];
Rusty Russellb3f24692009-09-24 09:59:19 -0600461 struct skb_vnet_hdr *hdr = skb_vnet_hdr(skb);
Rusty Russell296f96f2007-10-22 11:03:37 +1000462 const unsigned char *dest = ((struct ethhdr *)skb->data)->h_dest;
Rusty Russell296f96f2007-10-22 11:03:37 +1000463
Rusty Russell05271682008-05-02 21:50:45 -0500464 sg_init_table(sg, 2+MAX_SKB_FRAGS);
Rusty Russell4d125de2007-11-07 16:34:49 +1100465
Johannes Berge1749612008-10-27 15:59:26 -0700466 pr_debug("%s: xmit %p %pM\n", vi->dev->name, skb, dest);
Rusty Russell296f96f2007-10-22 11:03:37 +1000467
Rusty Russell296f96f2007-10-22 11:03:37 +1000468 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Rusty Russellb3f24692009-09-24 09:59:19 -0600469 hdr->hdr.flags = VIRTIO_NET_HDR_F_NEEDS_CSUM;
470 hdr->hdr.csum_start = skb->csum_start - skb_headroom(skb);
471 hdr->hdr.csum_offset = skb->csum_offset;
Rusty Russell296f96f2007-10-22 11:03:37 +1000472 } else {
Rusty Russellb3f24692009-09-24 09:59:19 -0600473 hdr->hdr.flags = 0;
474 hdr->hdr.csum_offset = hdr->hdr.csum_start = 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000475 }
476
477 if (skb_is_gso(skb)) {
Rusty Russellb3f24692009-09-24 09:59:19 -0600478 hdr->hdr.hdr_len = skb_headlen(skb);
479 hdr->hdr.gso_size = skb_shinfo(skb)->gso_size;
Rusty Russell34a48572008-02-04 23:50:02 -0500480 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
Rusty Russellb3f24692009-09-24 09:59:19 -0600481 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV4;
Rusty Russell296f96f2007-10-22 11:03:37 +1000482 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
Rusty Russellb3f24692009-09-24 09:59:19 -0600483 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_TCPV6;
Rusty Russell296f96f2007-10-22 11:03:37 +1000484 else if (skb_shinfo(skb)->gso_type & SKB_GSO_UDP)
Rusty Russellb3f24692009-09-24 09:59:19 -0600485 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_UDP;
Rusty Russell296f96f2007-10-22 11:03:37 +1000486 else
487 BUG();
Rusty Russell34a48572008-02-04 23:50:02 -0500488 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCP_ECN)
Rusty Russellb3f24692009-09-24 09:59:19 -0600489 hdr->hdr.gso_type |= VIRTIO_NET_HDR_GSO_ECN;
Rusty Russell296f96f2007-10-22 11:03:37 +1000490 } else {
Rusty Russellb3f24692009-09-24 09:59:19 -0600491 hdr->hdr.gso_type = VIRTIO_NET_HDR_GSO_NONE;
492 hdr->hdr.gso_size = hdr->hdr.hdr_len = 0;
Rusty Russell296f96f2007-10-22 11:03:37 +1000493 }
494
Rusty Russellb3f24692009-09-24 09:59:19 -0600495 hdr->mhdr.num_buffers = 0;
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800496
497 /* Encode metadata header at front. */
498 if (vi->mergeable_rx_bufs)
Rusty Russellb3f24692009-09-24 09:59:19 -0600499 sg_set_buf(sg, &hdr->mhdr, sizeof(hdr->mhdr));
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800500 else
Rusty Russellb3f24692009-09-24 09:59:19 -0600501 sg_set_buf(sg, &hdr->hdr, sizeof(hdr->hdr));
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800502
Rusty Russell48925e32009-09-24 09:59:20 -0600503 hdr->num_sg = skb_to_sgvec(skb, sg+1, 0, skb->len) + 1;
504 return vi->svq->vq_ops->add_buf(vi->svq, sg, hdr->num_sg, 0, skb);
Rusty Russell11a3a152008-05-26 17:48:13 +1000505}
506
Stephen Hemminger424efe92009-08-31 19:50:51 +0000507static netdev_tx_t start_xmit(struct sk_buff *skb, struct net_device *dev)
Rusty Russell99ffc692008-05-02 21:50:46 -0500508{
509 struct virtnet_info *vi = netdev_priv(dev);
Rusty Russell48925e32009-09-24 09:59:20 -0600510 int capacity;
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500511
512again:
513 /* Free up any pending old buffers before queueing new ones. */
514 free_old_xmit_skbs(vi);
Rusty Russell2cb9c6b2008-02-04 23:50:07 -0500515
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -0700516 /* Try to transmit */
Rusty Russell48925e32009-09-24 09:59:20 -0600517 capacity = xmit_skb(vi, skb);
518
519 /* This can happen with OOM and indirect buffers. */
520 if (unlikely(capacity < 0)) {
521 netif_stop_queue(dev);
522 dev_warn(&dev->dev, "Unexpected full queue\n");
523 if (unlikely(!vi->svq->vq_ops->enable_cb(vi->svq))) {
524 vi->svq->vq_ops->disable_cb(vi->svq);
525 netif_start_queue(dev);
526 goto again;
527 }
528 return NETDEV_TX_BUSY;
Rusty Russell99ffc692008-05-02 21:50:46 -0500529 }
Rusty Russell48925e32009-09-24 09:59:20 -0600530 vi->svq->vq_ops->kick(vi->svq);
Michael S. Tsirkin03f191b2009-10-28 04:03:38 -0700531
532 /*
533 * Put new one in send queue. You'd expect we'd need this before
534 * xmit_skb calls add_buf(), since the callback can be triggered
535 * immediately after that. But since the callback just triggers
536 * another call back here, normal network xmit locking prevents the
537 * race.
538 */
539 __skb_queue_head(&vi->send, skb);
540
Rusty Russell48925e32009-09-24 09:59:20 -0600541 /* Don't wait up for transmitted skbs to be freed. */
542 skb_orphan(skb);
543 nf_reset(skb);
Rusty Russell99ffc692008-05-02 21:50:46 -0500544
Rusty Russell48925e32009-09-24 09:59:20 -0600545 /* Apparently nice girls don't return TX_BUSY; stop the queue
546 * before it gets out of hand. Naturally, this wastes entries. */
547 if (capacity < 2+MAX_SKB_FRAGS) {
548 netif_stop_queue(dev);
549 if (unlikely(!vi->svq->vq_ops->enable_cb(vi->svq))) {
550 /* More just got used, free them then recheck. */
551 capacity += free_old_xmit_skbs(vi);
552 if (capacity >= 2+MAX_SKB_FRAGS) {
553 netif_start_queue(dev);
554 vi->svq->vq_ops->disable_cb(vi->svq);
555 }
556 }
Rusty Russell99ffc692008-05-02 21:50:46 -0500557 }
Rusty Russell48925e32009-09-24 09:59:20 -0600558
559 return NETDEV_TX_OK;
Rusty Russell296f96f2007-10-22 11:03:37 +1000560}
561
Alex Williamson9c46f6d2009-02-04 16:36:34 -0800562static int virtnet_set_mac_address(struct net_device *dev, void *p)
563{
564 struct virtnet_info *vi = netdev_priv(dev);
565 struct virtio_device *vdev = vi->vdev;
566 int ret;
567
568 ret = eth_mac_addr(dev, p);
569 if (ret)
570 return ret;
571
Alex Williamson62994b22009-04-04 16:40:19 -0700572 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC))
573 vdev->config->set(vdev, offsetof(struct virtio_net_config, mac),
574 dev->dev_addr, dev->addr_len);
Alex Williamson9c46f6d2009-02-04 16:36:34 -0800575
576 return 0;
577}
578
Amit Shahda74e892008-02-29 16:24:50 +0530579#ifdef CONFIG_NET_POLL_CONTROLLER
580static void virtnet_netpoll(struct net_device *dev)
581{
582 struct virtnet_info *vi = netdev_priv(dev);
583
584 napi_schedule(&vi->napi);
585}
586#endif
587
Rusty Russell296f96f2007-10-22 11:03:37 +1000588static int virtnet_open(struct net_device *dev)
589{
590 struct virtnet_info *vi = netdev_priv(dev);
591
Rusty Russell296f96f2007-10-22 11:03:37 +1000592 napi_enable(&vi->napi);
Rusty Russella48bd8f2008-02-04 23:50:07 -0500593
594 /* If all buffers were filled by other side before we napi_enabled, we
595 * won't get another interrupt, so process any outstanding packets
Christian Borntraeger370076d2008-02-06 08:50:11 +0100596 * now. virtnet_poll wants re-enable the queue, so we disable here.
597 * We synchronize against interrupts via NAPI_STATE_SCHED */
Ben Hutchings288379f2009-01-19 16:43:59 -0800598 if (napi_schedule_prep(&vi->napi)) {
Christian Borntraeger370076d2008-02-06 08:50:11 +0100599 vi->rvq->vq_ops->disable_cb(vi->rvq);
Ben Hutchings288379f2009-01-19 16:43:59 -0800600 __napi_schedule(&vi->napi);
Christian Borntraeger370076d2008-02-06 08:50:11 +0100601 }
Rusty Russell296f96f2007-10-22 11:03:37 +1000602 return 0;
603}
604
Alex Williamson2a41f712009-02-04 09:02:34 +0000605/*
606 * Send command via the control virtqueue and check status. Commands
607 * supported by the hypervisor, as indicated by feature bits, should
608 * never fail unless improperly formated.
609 */
610static bool virtnet_send_command(struct virtnet_info *vi, u8 class, u8 cmd,
611 struct scatterlist *data, int out, int in)
612{
Alex Williamson23e258e2009-05-01 17:27:56 +0000613 struct scatterlist *s, sg[VIRTNET_SEND_COMMAND_SG_MAX + 2];
Alex Williamson2a41f712009-02-04 09:02:34 +0000614 struct virtio_net_ctrl_hdr ctrl;
615 virtio_net_ctrl_ack status = ~0;
616 unsigned int tmp;
Alex Williamson23e258e2009-05-01 17:27:56 +0000617 int i;
Alex Williamson2a41f712009-02-04 09:02:34 +0000618
Alexander Beregalov0ee904c2009-04-11 14:50:23 +0000619 /* Caller should know better */
620 BUG_ON(!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ) ||
621 (out + in > VIRTNET_SEND_COMMAND_SG_MAX));
Alex Williamson2a41f712009-02-04 09:02:34 +0000622
623 out++; /* Add header */
624 in++; /* Add return status */
625
626 ctrl.class = class;
627 ctrl.cmd = cmd;
628
629 sg_init_table(sg, out + in);
630
631 sg_set_buf(&sg[0], &ctrl, sizeof(ctrl));
Alex Williamson23e258e2009-05-01 17:27:56 +0000632 for_each_sg(data, s, out + in - 2, i)
633 sg_set_buf(&sg[i + 1], sg_virt(s), s->length);
Alex Williamson2a41f712009-02-04 09:02:34 +0000634 sg_set_buf(&sg[out + in - 1], &status, sizeof(status));
635
Rusty Russell3c1b27d2009-09-23 22:26:31 -0600636 BUG_ON(vi->cvq->vq_ops->add_buf(vi->cvq, sg, out, in, vi) < 0);
Alex Williamson2a41f712009-02-04 09:02:34 +0000637
638 vi->cvq->vq_ops->kick(vi->cvq);
639
640 /*
641 * Spin for a response, the kick causes an ioport write, trapping
642 * into the hypervisor, so the request should be handled immediately.
643 */
644 while (!vi->cvq->vq_ops->get_buf(vi->cvq, &tmp))
645 cpu_relax();
646
647 return status == VIRTIO_NET_OK;
648}
649
Rusty Russell296f96f2007-10-22 11:03:37 +1000650static int virtnet_close(struct net_device *dev)
651{
652 struct virtnet_info *vi = netdev_priv(dev);
Rusty Russell296f96f2007-10-22 11:03:37 +1000653
654 napi_disable(&vi->napi);
655
Rusty Russell296f96f2007-10-22 11:03:37 +1000656 return 0;
657}
658
Herbert Xua9ea3fc2008-04-18 11:21:42 +0800659static int virtnet_set_tx_csum(struct net_device *dev, u32 data)
660{
661 struct virtnet_info *vi = netdev_priv(dev);
662 struct virtio_device *vdev = vi->vdev;
663
664 if (data && !virtio_has_feature(vdev, VIRTIO_NET_F_CSUM))
665 return -ENOSYS;
666
667 return ethtool_op_set_tx_hw_csum(dev, data);
668}
669
Alex Williamson2af76982009-02-04 09:02:40 +0000670static void virtnet_set_rx_mode(struct net_device *dev)
671{
672 struct virtnet_info *vi = netdev_priv(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000673 struct scatterlist sg[2];
Alex Williamson2af76982009-02-04 09:02:40 +0000674 u8 promisc, allmulti;
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000675 struct virtio_net_ctrl_mac *mac_data;
676 struct dev_addr_list *addr;
Jiri Pirkoccffad252009-05-22 23:22:17 +0000677 struct netdev_hw_addr *ha;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -0800678 int uc_count;
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000679 void *buf;
680 int i;
Alex Williamson2af76982009-02-04 09:02:40 +0000681
682 /* We can't dynamicaly set ndo_set_rx_mode, so return gracefully */
683 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_RX))
684 return;
685
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000686 promisc = ((dev->flags & IFF_PROMISC) != 0);
687 allmulti = ((dev->flags & IFF_ALLMULTI) != 0);
Alex Williamson2af76982009-02-04 09:02:40 +0000688
Alex Williamson23e258e2009-05-01 17:27:56 +0000689 sg_init_one(sg, &promisc, sizeof(promisc));
Alex Williamson2af76982009-02-04 09:02:40 +0000690
691 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
692 VIRTIO_NET_CTRL_RX_PROMISC,
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000693 sg, 1, 0))
Alex Williamson2af76982009-02-04 09:02:40 +0000694 dev_warn(&dev->dev, "Failed to %sable promisc mode.\n",
695 promisc ? "en" : "dis");
696
Alex Williamson23e258e2009-05-01 17:27:56 +0000697 sg_init_one(sg, &allmulti, sizeof(allmulti));
Alex Williamson2af76982009-02-04 09:02:40 +0000698
699 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_RX,
700 VIRTIO_NET_CTRL_RX_ALLMULTI,
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000701 sg, 1, 0))
Alex Williamson2af76982009-02-04 09:02:40 +0000702 dev_warn(&dev->dev, "Failed to %sable allmulti mode.\n",
703 allmulti ? "en" : "dis");
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000704
Jiri Pirko32e7bfc2010-01-25 13:36:10 -0800705 uc_count = netdev_uc_count(dev);
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000706 /* MAC filter - use one buffer for both lists */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -0800707 mac_data = buf = kzalloc(((uc_count + dev->mc_count) * ETH_ALEN) +
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000708 (2 * sizeof(mac_data->entries)), GFP_ATOMIC);
709 if (!buf) {
710 dev_warn(&dev->dev, "No memory for MAC address buffer\n");
711 return;
712 }
713
Alex Williamson23e258e2009-05-01 17:27:56 +0000714 sg_init_table(sg, 2);
715
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000716 /* Store the unicast list and count in the front of the buffer */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -0800717 mac_data->entries = uc_count;
Jiri Pirkoccffad252009-05-22 23:22:17 +0000718 i = 0;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -0800719 netdev_for_each_uc_addr(ha, dev)
Jiri Pirkoccffad252009-05-22 23:22:17 +0000720 memcpy(&mac_data->macs[i++][0], ha->addr, ETH_ALEN);
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000721
722 sg_set_buf(&sg[0], mac_data,
Jiri Pirko32e7bfc2010-01-25 13:36:10 -0800723 sizeof(mac_data->entries) + (uc_count * ETH_ALEN));
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000724
725 /* multicast list and count fill the end */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -0800726 mac_data = (void *)&mac_data->macs[uc_count][0];
Alex Williamsonf565a7c2009-02-04 09:02:45 +0000727
728 mac_data->entries = dev->mc_count;
729 addr = dev->mc_list;
730 for (i = 0; i < dev->mc_count; i++, addr = addr->next)
731 memcpy(&mac_data->macs[i][0], addr->da_addr, ETH_ALEN);
732
733 sg_set_buf(&sg[1], mac_data,
734 sizeof(mac_data->entries) + (dev->mc_count * ETH_ALEN));
735
736 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_MAC,
737 VIRTIO_NET_CTRL_MAC_TABLE_SET,
738 sg, 2, 0))
739 dev_warn(&dev->dev, "Failed to set MAC fitler table.\n");
740
741 kfree(buf);
Alex Williamson2af76982009-02-04 09:02:40 +0000742}
743
Alex Williamson1824a982009-05-01 17:31:10 +0000744static void virtnet_vlan_rx_add_vid(struct net_device *dev, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +0000745{
746 struct virtnet_info *vi = netdev_priv(dev);
747 struct scatterlist sg;
748
Alex Williamson23e258e2009-05-01 17:27:56 +0000749 sg_init_one(&sg, &vid, sizeof(vid));
Alex Williamson0bde95692009-02-04 09:02:50 +0000750
751 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
752 VIRTIO_NET_CTRL_VLAN_ADD, &sg, 1, 0))
753 dev_warn(&dev->dev, "Failed to add VLAN ID %d.\n", vid);
754}
755
Alex Williamson1824a982009-05-01 17:31:10 +0000756static void virtnet_vlan_rx_kill_vid(struct net_device *dev, u16 vid)
Alex Williamson0bde95692009-02-04 09:02:50 +0000757{
758 struct virtnet_info *vi = netdev_priv(dev);
759 struct scatterlist sg;
760
Alex Williamson23e258e2009-05-01 17:27:56 +0000761 sg_init_one(&sg, &vid, sizeof(vid));
Alex Williamson0bde95692009-02-04 09:02:50 +0000762
763 if (!virtnet_send_command(vi, VIRTIO_NET_CTRL_VLAN,
764 VIRTIO_NET_CTRL_VLAN_DEL, &sg, 1, 0))
765 dev_warn(&dev->dev, "Failed to kill VLAN ID %d.\n", vid);
766}
767
Stephen Hemminger0fc0b732009-09-02 01:03:33 -0700768static const struct ethtool_ops virtnet_ethtool_ops = {
Herbert Xua9ea3fc2008-04-18 11:21:42 +0800769 .set_tx_csum = virtnet_set_tx_csum,
770 .set_sg = ethtool_op_set_sg,
Mark McLoughlin0276b492008-11-16 22:40:36 -0800771 .set_tso = ethtool_op_set_tso,
Sridhar Samudrala5c516752009-07-14 14:21:02 +0000772 .set_ufo = ethtool_op_set_ufo,
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -0800773 .get_link = ethtool_op_get_link,
Herbert Xua9ea3fc2008-04-18 11:21:42 +0800774};
775
Mark McLoughlin39da5812008-11-26 13:58:11 +0000776#define MIN_MTU 68
777#define MAX_MTU 65535
778
779static int virtnet_change_mtu(struct net_device *dev, int new_mtu)
780{
781 if (new_mtu < MIN_MTU || new_mtu > MAX_MTU)
782 return -EINVAL;
783 dev->mtu = new_mtu;
784 return 0;
785}
786
Stephen Hemminger76288b42009-01-06 10:44:22 -0800787static const struct net_device_ops virtnet_netdev = {
788 .ndo_open = virtnet_open,
789 .ndo_stop = virtnet_close,
790 .ndo_start_xmit = start_xmit,
791 .ndo_validate_addr = eth_validate_addr,
Alex Williamson9c46f6d2009-02-04 16:36:34 -0800792 .ndo_set_mac_address = virtnet_set_mac_address,
Alex Williamson2af76982009-02-04 09:02:40 +0000793 .ndo_set_rx_mode = virtnet_set_rx_mode,
Stephen Hemminger76288b42009-01-06 10:44:22 -0800794 .ndo_change_mtu = virtnet_change_mtu,
Alex Williamson1824a982009-05-01 17:31:10 +0000795 .ndo_vlan_rx_add_vid = virtnet_vlan_rx_add_vid,
796 .ndo_vlan_rx_kill_vid = virtnet_vlan_rx_kill_vid,
Stephen Hemminger76288b42009-01-06 10:44:22 -0800797#ifdef CONFIG_NET_POLL_CONTROLLER
798 .ndo_poll_controller = virtnet_netpoll,
799#endif
800};
801
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -0800802static void virtnet_update_status(struct virtnet_info *vi)
803{
804 u16 v;
805
806 if (!virtio_has_feature(vi->vdev, VIRTIO_NET_F_STATUS))
807 return;
808
809 vi->vdev->config->get(vi->vdev,
810 offsetof(struct virtio_net_config, status),
811 &v, sizeof(v));
812
813 /* Ignore unknown (future) status bits */
814 v &= VIRTIO_NET_S_LINK_UP;
815
816 if (vi->status == v)
817 return;
818
819 vi->status = v;
820
821 if (vi->status & VIRTIO_NET_S_LINK_UP) {
822 netif_carrier_on(vi->dev);
823 netif_wake_queue(vi->dev);
824 } else {
825 netif_carrier_off(vi->dev);
826 netif_stop_queue(vi->dev);
827 }
828}
829
830static void virtnet_config_changed(struct virtio_device *vdev)
831{
832 struct virtnet_info *vi = vdev->priv;
833
834 virtnet_update_status(vi);
835}
836
Rusty Russell296f96f2007-10-22 11:03:37 +1000837static int virtnet_probe(struct virtio_device *vdev)
838{
839 int err;
Rusty Russell296f96f2007-10-22 11:03:37 +1000840 struct net_device *dev;
841 struct virtnet_info *vi;
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600842 struct virtqueue *vqs[3];
843 vq_callback_t *callbacks[] = { skb_recv_done, skb_xmit_done, NULL};
844 const char *names[] = { "input", "output", "control" };
845 int nvqs;
Rusty Russell296f96f2007-10-22 11:03:37 +1000846
847 /* Allocate ourselves a network device with room for our info */
848 dev = alloc_etherdev(sizeof(struct virtnet_info));
849 if (!dev)
850 return -ENOMEM;
851
852 /* Set up network device as normal. */
Stephen Hemminger76288b42009-01-06 10:44:22 -0800853 dev->netdev_ops = &virtnet_netdev;
Rusty Russell296f96f2007-10-22 11:03:37 +1000854 dev->features = NETIF_F_HIGHDMA;
Herbert Xua9ea3fc2008-04-18 11:21:42 +0800855 SET_ETHTOOL_OPS(dev, &virtnet_ethtool_ops);
Rusty Russell296f96f2007-10-22 11:03:37 +1000856 SET_NETDEV_DEV(dev, &vdev->dev);
857
858 /* Do we support "hardware" checksums? */
Rusty Russellc45a6812008-05-02 21:50:50 -0500859 if (csum && virtio_has_feature(vdev, VIRTIO_NET_F_CSUM)) {
Rusty Russell296f96f2007-10-22 11:03:37 +1000860 /* This opens up the world of extra features. */
861 dev->features |= NETIF_F_HW_CSUM|NETIF_F_SG|NETIF_F_FRAGLIST;
Rusty Russellc45a6812008-05-02 21:50:50 -0500862 if (gso && virtio_has_feature(vdev, VIRTIO_NET_F_GSO)) {
Rusty Russell34a48572008-02-04 23:50:02 -0500863 dev->features |= NETIF_F_TSO | NETIF_F_UFO
864 | NETIF_F_TSO_ECN | NETIF_F_TSO6;
865 }
Rusty Russell5539ae92008-05-02 21:50:46 -0500866 /* Individual feature bits: what can host handle? */
Rusty Russellc45a6812008-05-02 21:50:50 -0500867 if (gso && virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO4))
Rusty Russell5539ae92008-05-02 21:50:46 -0500868 dev->features |= NETIF_F_TSO;
Rusty Russellc45a6812008-05-02 21:50:50 -0500869 if (gso && virtio_has_feature(vdev, VIRTIO_NET_F_HOST_TSO6))
Rusty Russell5539ae92008-05-02 21:50:46 -0500870 dev->features |= NETIF_F_TSO6;
Rusty Russellc45a6812008-05-02 21:50:50 -0500871 if (gso && virtio_has_feature(vdev, VIRTIO_NET_F_HOST_ECN))
Rusty Russell5539ae92008-05-02 21:50:46 -0500872 dev->features |= NETIF_F_TSO_ECN;
Rusty Russellc45a6812008-05-02 21:50:50 -0500873 if (gso && virtio_has_feature(vdev, VIRTIO_NET_F_HOST_UFO))
Rusty Russell5539ae92008-05-02 21:50:46 -0500874 dev->features |= NETIF_F_UFO;
Rusty Russell296f96f2007-10-22 11:03:37 +1000875 }
876
877 /* Configuration may specify what MAC to use. Otherwise random. */
Rusty Russellc45a6812008-05-02 21:50:50 -0500878 if (virtio_has_feature(vdev, VIRTIO_NET_F_MAC)) {
Rusty Russella586d4f2008-02-04 23:49:56 -0500879 vdev->config->get(vdev,
880 offsetof(struct virtio_net_config, mac),
881 dev->dev_addr, dev->addr_len);
Alex Williamson62994b22009-04-04 16:40:19 -0700882 } else
Rusty Russell296f96f2007-10-22 11:03:37 +1000883 random_ether_addr(dev->dev_addr);
884
885 /* Set up our device-specific information */
886 vi = netdev_priv(dev);
Dor Laor6c0cd7c2007-12-16 15:19:43 +0200887 netif_napi_add(dev, &vi->napi, virtnet_poll, napi_weight);
Rusty Russell296f96f2007-10-22 11:03:37 +1000888 vi->dev = dev;
889 vi->vdev = vdev;
Christian Borntraegerd9d5dcc2008-02-18 10:02:51 +0100890 vdev->priv = vi;
Rusty Russellfb6813f2008-07-25 12:06:01 -0500891 vi->pages = NULL;
Rusty Russell3161e452009-08-26 12:22:32 -0700892 INIT_DELAYED_WORK(&vi->refill, refill_work);
Rusty Russell296f96f2007-10-22 11:03:37 +1000893
Herbert Xu97402b92008-04-18 11:24:27 +0800894 /* If we can receive ANY GSO packets, we must allocate large ones. */
Joe Perches8e95a202009-12-03 07:58:21 +0000895 if (virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO4) ||
896 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_TSO6) ||
897 virtio_has_feature(vdev, VIRTIO_NET_F_GUEST_ECN))
Herbert Xu97402b92008-04-18 11:24:27 +0800898 vi->big_packets = true;
899
Mark McLoughlin3f2c31d2008-11-16 22:41:34 -0800900 if (virtio_has_feature(vdev, VIRTIO_NET_F_MRG_RXBUF))
901 vi->mergeable_rx_bufs = true;
902
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600903 /* We expect two virtqueues, receive then send,
904 * and optionally control. */
905 nvqs = virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ) ? 3 : 2;
Rusty Russell296f96f2007-10-22 11:03:37 +1000906
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600907 err = vdev->config->find_vqs(vdev, nvqs, vqs, callbacks, names);
908 if (err)
909 goto free;
910
911 vi->rvq = vqs[0];
912 vi->svq = vqs[1];
Rusty Russell296f96f2007-10-22 11:03:37 +1000913
Alex Williamson2a41f712009-02-04 09:02:34 +0000914 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VQ)) {
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600915 vi->cvq = vqs[2];
Alex Williamson0bde95692009-02-04 09:02:50 +0000916
917 if (virtio_has_feature(vi->vdev, VIRTIO_NET_F_CTRL_VLAN))
918 dev->features |= NETIF_F_HW_VLAN_FILTER;
Alex Williamson2a41f712009-02-04 09:02:34 +0000919 }
920
Rusty Russell296f96f2007-10-22 11:03:37 +1000921 /* Initialize our empty receive and send queues. */
922 skb_queue_head_init(&vi->recv);
923 skb_queue_head_init(&vi->send);
924
925 err = register_netdev(dev);
926 if (err) {
927 pr_debug("virtio_net: registering device failed\n");
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600928 goto free_vqs;
Rusty Russell296f96f2007-10-22 11:03:37 +1000929 }
Rusty Russellb3369c12008-02-04 23:50:02 -0500930
931 /* Last of all, set up some receive buffers. */
Rusty Russell3161e452009-08-26 12:22:32 -0700932 try_fill_recv(vi, GFP_KERNEL);
Rusty Russellb3369c12008-02-04 23:50:02 -0500933
934 /* If we didn't even get one input buffer, we're useless. */
935 if (vi->num == 0) {
936 err = -ENOMEM;
937 goto unregister;
938 }
939
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -0800940 vi->status = VIRTIO_NET_S_LINK_UP;
941 virtnet_update_status(vi);
Pantelis Koukousoulas47832562009-03-18 18:40:02 -0700942 netif_carrier_on(dev);
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -0800943
Rusty Russell296f96f2007-10-22 11:03:37 +1000944 pr_debug("virtnet: registered device %s\n", dev->name);
Rusty Russell296f96f2007-10-22 11:03:37 +1000945 return 0;
946
Rusty Russellb3369c12008-02-04 23:50:02 -0500947unregister:
948 unregister_netdev(dev);
Rusty Russell3161e452009-08-26 12:22:32 -0700949 cancel_delayed_work_sync(&vi->refill);
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600950free_vqs:
951 vdev->config->del_vqs(vdev);
Rusty Russell296f96f2007-10-22 11:03:37 +1000952free:
953 free_netdev(dev);
954 return err;
955}
956
Uwe Kleine-König3d1285b2009-09-30 22:28:34 +0000957static void __devexit virtnet_remove(struct virtio_device *vdev)
Rusty Russell296f96f2007-10-22 11:03:37 +1000958{
Rusty Russell74b25532007-11-19 11:20:42 -0500959 struct virtnet_info *vi = vdev->priv;
Rusty Russellb3369c12008-02-04 23:50:02 -0500960 struct sk_buff *skb;
961
Rusty Russell6e5aa7e2008-02-04 23:50:03 -0500962 /* Stop all the virtqueues. */
963 vdev->config->reset(vdev);
964
Rusty Russellb3369c12008-02-04 23:50:02 -0500965 /* Free our skbs in send and recv queues, if any. */
Rusty Russellb3369c12008-02-04 23:50:02 -0500966 while ((skb = __skb_dequeue(&vi->recv)) != NULL) {
967 kfree_skb(skb);
968 vi->num--;
969 }
Wang Chen288369c2008-05-22 18:07:43 +0800970 __skb_queue_purge(&vi->send);
Rusty Russellb3369c12008-02-04 23:50:02 -0500971
972 BUG_ON(vi->num != 0);
Rusty Russell74b25532007-11-19 11:20:42 -0500973
Rusty Russell74b25532007-11-19 11:20:42 -0500974 unregister_netdev(vi->dev);
Rusty Russell3161e452009-08-26 12:22:32 -0700975 cancel_delayed_work_sync(&vi->refill);
Rusty Russellfb6813f2008-07-25 12:06:01 -0500976
Michael S. Tsirkind2a7ddd2009-06-12 22:16:36 -0600977 vdev->config->del_vqs(vi->vdev);
978
Rusty Russellfb6813f2008-07-25 12:06:01 -0500979 while (vi->pages)
980 __free_pages(get_a_page(vi, GFP_KERNEL), 0);
981
Rusty Russell74b25532007-11-19 11:20:42 -0500982 free_netdev(vi->dev);
Rusty Russell296f96f2007-10-22 11:03:37 +1000983}
984
985static struct virtio_device_id id_table[] = {
986 { VIRTIO_ID_NET, VIRTIO_DEV_ANY_ID },
987 { 0 },
988};
989
Rusty Russellc45a6812008-05-02 21:50:50 -0500990static unsigned int features[] = {
Mark McLoughlin5e4fe5c2008-07-08 17:10:42 +1000991 VIRTIO_NET_F_CSUM, VIRTIO_NET_F_GUEST_CSUM,
992 VIRTIO_NET_F_GSO, VIRTIO_NET_F_MAC,
Rusty Russellc45a6812008-05-02 21:50:50 -0500993 VIRTIO_NET_F_HOST_TSO4, VIRTIO_NET_F_HOST_UFO, VIRTIO_NET_F_HOST_TSO6,
Herbert Xu97402b92008-04-18 11:24:27 +0800994 VIRTIO_NET_F_HOST_ECN, VIRTIO_NET_F_GUEST_TSO4, VIRTIO_NET_F_GUEST_TSO6,
Sridhar Samudrala5c516752009-07-14 14:21:02 +0000995 VIRTIO_NET_F_GUEST_ECN, VIRTIO_NET_F_GUEST_UFO,
Alex Williamson2a41f712009-02-04 09:02:34 +0000996 VIRTIO_NET_F_MRG_RXBUF, VIRTIO_NET_F_STATUS, VIRTIO_NET_F_CTRL_VQ,
Alex Williamson0bde95692009-02-04 09:02:50 +0000997 VIRTIO_NET_F_CTRL_RX, VIRTIO_NET_F_CTRL_VLAN,
Rusty Russellc45a6812008-05-02 21:50:50 -0500998};
999
Uwe Kleine-König22402522009-11-05 01:32:44 -08001000static struct virtio_driver virtio_net_driver = {
Rusty Russellc45a6812008-05-02 21:50:50 -05001001 .feature_table = features,
1002 .feature_table_size = ARRAY_SIZE(features),
Rusty Russell296f96f2007-10-22 11:03:37 +10001003 .driver.name = KBUILD_MODNAME,
1004 .driver.owner = THIS_MODULE,
1005 .id_table = id_table,
1006 .probe = virtnet_probe,
1007 .remove = __devexit_p(virtnet_remove),
Mark McLoughlin9f4d26d2009-01-19 17:09:49 -08001008 .config_changed = virtnet_config_changed,
Rusty Russell296f96f2007-10-22 11:03:37 +10001009};
1010
1011static int __init init(void)
1012{
Uwe Kleine-König22402522009-11-05 01:32:44 -08001013 return register_virtio_driver(&virtio_net_driver);
Rusty Russell296f96f2007-10-22 11:03:37 +10001014}
1015
1016static void __exit fini(void)
1017{
Uwe Kleine-König22402522009-11-05 01:32:44 -08001018 unregister_virtio_driver(&virtio_net_driver);
Rusty Russell296f96f2007-10-22 11:03:37 +10001019}
1020module_init(init);
1021module_exit(fini);
1022
1023MODULE_DEVICE_TABLE(virtio, id_table);
1024MODULE_DESCRIPTION("Virtio network driver");
1025MODULE_LICENSE("GPL");