USB: make printk messages more searchable
[linux-2.6/mini2440.git] / drivers / net / xen-netfront.c
blob761635be9104f155af6978a72a8283ebec2cde9e
1 /*
2 * Virtual network driver for conversing with remote driver backends.
4 * Copyright (c) 2002-2005, K A Fraser
5 * Copyright (c) 2005, XenSource Ltd
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License version 2
9 * as published by the Free Software Foundation; or, when distributed
10 * separately from the Linux kernel or incorporated into other
11 * software packages, subject to the following license:
13 * Permission is hereby granted, free of charge, to any person obtaining a copy
14 * of this source file (the "Software"), to deal in the Software without
15 * restriction, including without limitation the rights to use, copy, modify,
16 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
17 * and to permit persons to whom the Software is furnished to do so, subject to
18 * the following conditions:
20 * The above copyright notice and this permission notice shall be included in
21 * all copies or substantial portions of the Software.
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
24 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
26 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
27 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
28 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
29 * IN THE SOFTWARE.
32 #include <linux/module.h>
33 #include <linux/kernel.h>
34 #include <linux/netdevice.h>
35 #include <linux/etherdevice.h>
36 #include <linux/skbuff.h>
37 #include <linux/ethtool.h>
38 #include <linux/if_ether.h>
39 #include <linux/tcp.h>
40 #include <linux/udp.h>
41 #include <linux/moduleparam.h>
42 #include <linux/mm.h>
43 #include <net/ip.h>
45 #include <xen/xenbus.h>
46 #include <xen/events.h>
47 #include <xen/page.h>
48 #include <xen/grant_table.h>
50 #include <xen/interface/io/netif.h>
51 #include <xen/interface/memory.h>
52 #include <xen/interface/grant_table.h>
54 static struct ethtool_ops xennet_ethtool_ops;
56 struct netfront_cb {
57 struct page *page;
58 unsigned offset;
61 #define NETFRONT_SKB_CB(skb) ((struct netfront_cb *)((skb)->cb))
63 #define RX_COPY_THRESHOLD 256
65 #define GRANT_INVALID_REF 0
67 #define NET_TX_RING_SIZE __RING_SIZE((struct xen_netif_tx_sring *)0, PAGE_SIZE)
68 #define NET_RX_RING_SIZE __RING_SIZE((struct xen_netif_rx_sring *)0, PAGE_SIZE)
69 #define TX_MAX_TARGET min_t(int, NET_RX_RING_SIZE, 256)
71 struct netfront_info {
72 struct list_head list;
73 struct net_device *netdev;
75 struct napi_struct napi;
77 unsigned int evtchn;
78 struct xenbus_device *xbdev;
80 spinlock_t tx_lock;
81 struct xen_netif_tx_front_ring tx;
82 int tx_ring_ref;
85 * {tx,rx}_skbs store outstanding skbuffs. Free tx_skb entries
86 * are linked from tx_skb_freelist through skb_entry.link.
88 * NB. Freelist index entries are always going to be less than
89 * PAGE_OFFSET, whereas pointers to skbs will always be equal or
90 * greater than PAGE_OFFSET: we use this property to distinguish
91 * them.
93 union skb_entry {
94 struct sk_buff *skb;
95 unsigned long link;
96 } tx_skbs[NET_TX_RING_SIZE];
97 grant_ref_t gref_tx_head;
98 grant_ref_t grant_tx_ref[NET_TX_RING_SIZE];
99 unsigned tx_skb_freelist;
101 spinlock_t rx_lock ____cacheline_aligned_in_smp;
102 struct xen_netif_rx_front_ring rx;
103 int rx_ring_ref;
105 /* Receive-ring batched refills. */
106 #define RX_MIN_TARGET 8
107 #define RX_DFL_MIN_TARGET 64
108 #define RX_MAX_TARGET min_t(int, NET_RX_RING_SIZE, 256)
109 unsigned rx_min_target, rx_max_target, rx_target;
110 struct sk_buff_head rx_batch;
112 struct timer_list rx_refill_timer;
114 struct sk_buff *rx_skbs[NET_RX_RING_SIZE];
115 grant_ref_t gref_rx_head;
116 grant_ref_t grant_rx_ref[NET_RX_RING_SIZE];
118 unsigned long rx_pfn_array[NET_RX_RING_SIZE];
119 struct multicall_entry rx_mcl[NET_RX_RING_SIZE+1];
120 struct mmu_update rx_mmu[NET_RX_RING_SIZE];
123 struct netfront_rx_info {
124 struct xen_netif_rx_response rx;
125 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX - 1];
128 static void skb_entry_set_link(union skb_entry *list, unsigned short id)
130 list->link = id;
133 static int skb_entry_is_link(const union skb_entry *list)
135 BUILD_BUG_ON(sizeof(list->skb) != sizeof(list->link));
136 return ((unsigned long)list->skb < PAGE_OFFSET);
140 * Access macros for acquiring freeing slots in tx_skbs[].
143 static void add_id_to_freelist(unsigned *head, union skb_entry *list,
144 unsigned short id)
146 skb_entry_set_link(&list[id], *head);
147 *head = id;
150 static unsigned short get_id_from_freelist(unsigned *head,
151 union skb_entry *list)
153 unsigned int id = *head;
154 *head = list[id].link;
155 return id;
158 static int xennet_rxidx(RING_IDX idx)
160 return idx & (NET_RX_RING_SIZE - 1);
163 static struct sk_buff *xennet_get_rx_skb(struct netfront_info *np,
164 RING_IDX ri)
166 int i = xennet_rxidx(ri);
167 struct sk_buff *skb = np->rx_skbs[i];
168 np->rx_skbs[i] = NULL;
169 return skb;
172 static grant_ref_t xennet_get_rx_ref(struct netfront_info *np,
173 RING_IDX ri)
175 int i = xennet_rxidx(ri);
176 grant_ref_t ref = np->grant_rx_ref[i];
177 np->grant_rx_ref[i] = GRANT_INVALID_REF;
178 return ref;
181 #ifdef CONFIG_SYSFS
182 static int xennet_sysfs_addif(struct net_device *netdev);
183 static void xennet_sysfs_delif(struct net_device *netdev);
184 #else /* !CONFIG_SYSFS */
185 #define xennet_sysfs_addif(dev) (0)
186 #define xennet_sysfs_delif(dev) do { } while (0)
187 #endif
189 static int xennet_can_sg(struct net_device *dev)
191 return dev->features & NETIF_F_SG;
195 static void rx_refill_timeout(unsigned long data)
197 struct net_device *dev = (struct net_device *)data;
198 struct netfront_info *np = netdev_priv(dev);
199 netif_rx_schedule(&np->napi);
202 static int netfront_tx_slot_available(struct netfront_info *np)
204 return ((np->tx.req_prod_pvt - np->tx.rsp_cons) <
205 (TX_MAX_TARGET - MAX_SKB_FRAGS - 2));
208 static void xennet_maybe_wake_tx(struct net_device *dev)
210 struct netfront_info *np = netdev_priv(dev);
212 if (unlikely(netif_queue_stopped(dev)) &&
213 netfront_tx_slot_available(np) &&
214 likely(netif_running(dev)))
215 netif_wake_queue(dev);
218 static void xennet_alloc_rx_buffers(struct net_device *dev)
220 unsigned short id;
221 struct netfront_info *np = netdev_priv(dev);
222 struct sk_buff *skb;
223 struct page *page;
224 int i, batch_target, notify;
225 RING_IDX req_prod = np->rx.req_prod_pvt;
226 grant_ref_t ref;
227 unsigned long pfn;
228 void *vaddr;
229 struct xen_netif_rx_request *req;
231 if (unlikely(!netif_carrier_ok(dev)))
232 return;
235 * Allocate skbuffs greedily, even though we batch updates to the
236 * receive ring. This creates a less bursty demand on the memory
237 * allocator, so should reduce the chance of failed allocation requests
238 * both for ourself and for other kernel subsystems.
240 batch_target = np->rx_target - (req_prod - np->rx.rsp_cons);
241 for (i = skb_queue_len(&np->rx_batch); i < batch_target; i++) {
242 skb = __netdev_alloc_skb(dev, RX_COPY_THRESHOLD + NET_IP_ALIGN,
243 GFP_ATOMIC | __GFP_NOWARN);
244 if (unlikely(!skb))
245 goto no_skb;
247 /* Align ip header to a 16 bytes boundary */
248 skb_reserve(skb, NET_IP_ALIGN);
250 page = alloc_page(GFP_ATOMIC | __GFP_NOWARN);
251 if (!page) {
252 kfree_skb(skb);
253 no_skb:
254 /* Any skbuffs queued for refill? Force them out. */
255 if (i != 0)
256 goto refill;
257 /* Could not allocate any skbuffs. Try again later. */
258 mod_timer(&np->rx_refill_timer,
259 jiffies + (HZ/10));
260 break;
263 skb_shinfo(skb)->frags[0].page = page;
264 skb_shinfo(skb)->nr_frags = 1;
265 __skb_queue_tail(&np->rx_batch, skb);
268 /* Is the batch large enough to be worthwhile? */
269 if (i < (np->rx_target/2)) {
270 if (req_prod > np->rx.sring->req_prod)
271 goto push;
272 return;
275 /* Adjust our fill target if we risked running out of buffers. */
276 if (((req_prod - np->rx.sring->rsp_prod) < (np->rx_target / 4)) &&
277 ((np->rx_target *= 2) > np->rx_max_target))
278 np->rx_target = np->rx_max_target;
280 refill:
281 for (i = 0; ; i++) {
282 skb = __skb_dequeue(&np->rx_batch);
283 if (skb == NULL)
284 break;
286 skb->dev = dev;
288 id = xennet_rxidx(req_prod + i);
290 BUG_ON(np->rx_skbs[id]);
291 np->rx_skbs[id] = skb;
293 ref = gnttab_claim_grant_reference(&np->gref_rx_head);
294 BUG_ON((signed short)ref < 0);
295 np->grant_rx_ref[id] = ref;
297 pfn = page_to_pfn(skb_shinfo(skb)->frags[0].page);
298 vaddr = page_address(skb_shinfo(skb)->frags[0].page);
300 req = RING_GET_REQUEST(&np->rx, req_prod + i);
301 gnttab_grant_foreign_access_ref(ref,
302 np->xbdev->otherend_id,
303 pfn_to_mfn(pfn),
306 req->id = id;
307 req->gref = ref;
310 wmb(); /* barrier so backend seens requests */
312 /* Above is a suitable barrier to ensure backend will see requests. */
313 np->rx.req_prod_pvt = req_prod + i;
314 push:
315 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&np->rx, notify);
316 if (notify)
317 notify_remote_via_irq(np->netdev->irq);
320 static int xennet_open(struct net_device *dev)
322 struct netfront_info *np = netdev_priv(dev);
324 napi_enable(&np->napi);
326 spin_lock_bh(&np->rx_lock);
327 if (netif_carrier_ok(dev)) {
328 xennet_alloc_rx_buffers(dev);
329 np->rx.sring->rsp_event = np->rx.rsp_cons + 1;
330 if (RING_HAS_UNCONSUMED_RESPONSES(&np->rx))
331 netif_rx_schedule(&np->napi);
333 spin_unlock_bh(&np->rx_lock);
335 netif_start_queue(dev);
337 return 0;
340 static void xennet_tx_buf_gc(struct net_device *dev)
342 RING_IDX cons, prod;
343 unsigned short id;
344 struct netfront_info *np = netdev_priv(dev);
345 struct sk_buff *skb;
347 BUG_ON(!netif_carrier_ok(dev));
349 do {
350 prod = np->tx.sring->rsp_prod;
351 rmb(); /* Ensure we see responses up to 'rp'. */
353 for (cons = np->tx.rsp_cons; cons != prod; cons++) {
354 struct xen_netif_tx_response *txrsp;
356 txrsp = RING_GET_RESPONSE(&np->tx, cons);
357 if (txrsp->status == NETIF_RSP_NULL)
358 continue;
360 id = txrsp->id;
361 skb = np->tx_skbs[id].skb;
362 if (unlikely(gnttab_query_foreign_access(
363 np->grant_tx_ref[id]) != 0)) {
364 printk(KERN_ALERT "xennet_tx_buf_gc: warning "
365 "-- grant still in use by backend "
366 "domain.\n");
367 BUG();
369 gnttab_end_foreign_access_ref(
370 np->grant_tx_ref[id], GNTMAP_readonly);
371 gnttab_release_grant_reference(
372 &np->gref_tx_head, np->grant_tx_ref[id]);
373 np->grant_tx_ref[id] = GRANT_INVALID_REF;
374 add_id_to_freelist(&np->tx_skb_freelist, np->tx_skbs, id);
375 dev_kfree_skb_irq(skb);
378 np->tx.rsp_cons = prod;
381 * Set a new event, then check for race with update of tx_cons.
382 * Note that it is essential to schedule a callback, no matter
383 * how few buffers are pending. Even if there is space in the
384 * transmit ring, higher layers may be blocked because too much
385 * data is outstanding: in such cases notification from Xen is
386 * likely to be the only kick that we'll get.
388 np->tx.sring->rsp_event =
389 prod + ((np->tx.sring->req_prod - prod) >> 1) + 1;
390 mb(); /* update shared area */
391 } while ((cons == prod) && (prod != np->tx.sring->rsp_prod));
393 xennet_maybe_wake_tx(dev);
396 static void xennet_make_frags(struct sk_buff *skb, struct net_device *dev,
397 struct xen_netif_tx_request *tx)
399 struct netfront_info *np = netdev_priv(dev);
400 char *data = skb->data;
401 unsigned long mfn;
402 RING_IDX prod = np->tx.req_prod_pvt;
403 int frags = skb_shinfo(skb)->nr_frags;
404 unsigned int offset = offset_in_page(data);
405 unsigned int len = skb_headlen(skb);
406 unsigned int id;
407 grant_ref_t ref;
408 int i;
410 /* While the header overlaps a page boundary (including being
411 larger than a page), split it it into page-sized chunks. */
412 while (len > PAGE_SIZE - offset) {
413 tx->size = PAGE_SIZE - offset;
414 tx->flags |= NETTXF_more_data;
415 len -= tx->size;
416 data += tx->size;
417 offset = 0;
419 id = get_id_from_freelist(&np->tx_skb_freelist, np->tx_skbs);
420 np->tx_skbs[id].skb = skb_get(skb);
421 tx = RING_GET_REQUEST(&np->tx, prod++);
422 tx->id = id;
423 ref = gnttab_claim_grant_reference(&np->gref_tx_head);
424 BUG_ON((signed short)ref < 0);
426 mfn = virt_to_mfn(data);
427 gnttab_grant_foreign_access_ref(ref, np->xbdev->otherend_id,
428 mfn, GNTMAP_readonly);
430 tx->gref = np->grant_tx_ref[id] = ref;
431 tx->offset = offset;
432 tx->size = len;
433 tx->flags = 0;
436 /* Grant backend access to each skb fragment page. */
437 for (i = 0; i < frags; i++) {
438 skb_frag_t *frag = skb_shinfo(skb)->frags + i;
440 tx->flags |= NETTXF_more_data;
442 id = get_id_from_freelist(&np->tx_skb_freelist, np->tx_skbs);
443 np->tx_skbs[id].skb = skb_get(skb);
444 tx = RING_GET_REQUEST(&np->tx, prod++);
445 tx->id = id;
446 ref = gnttab_claim_grant_reference(&np->gref_tx_head);
447 BUG_ON((signed short)ref < 0);
449 mfn = pfn_to_mfn(page_to_pfn(frag->page));
450 gnttab_grant_foreign_access_ref(ref, np->xbdev->otherend_id,
451 mfn, GNTMAP_readonly);
453 tx->gref = np->grant_tx_ref[id] = ref;
454 tx->offset = frag->page_offset;
455 tx->size = frag->size;
456 tx->flags = 0;
459 np->tx.req_prod_pvt = prod;
462 static int xennet_start_xmit(struct sk_buff *skb, struct net_device *dev)
464 unsigned short id;
465 struct netfront_info *np = netdev_priv(dev);
466 struct xen_netif_tx_request *tx;
467 struct xen_netif_extra_info *extra;
468 char *data = skb->data;
469 RING_IDX i;
470 grant_ref_t ref;
471 unsigned long mfn;
472 int notify;
473 int frags = skb_shinfo(skb)->nr_frags;
474 unsigned int offset = offset_in_page(data);
475 unsigned int len = skb_headlen(skb);
477 frags += DIV_ROUND_UP(offset + len, PAGE_SIZE);
478 if (unlikely(frags > MAX_SKB_FRAGS + 1)) {
479 printk(KERN_ALERT "xennet: skb rides the rocket: %d frags\n",
480 frags);
481 dump_stack();
482 goto drop;
485 spin_lock_irq(&np->tx_lock);
487 if (unlikely(!netif_carrier_ok(dev) ||
488 (frags > 1 && !xennet_can_sg(dev)) ||
489 netif_needs_gso(dev, skb))) {
490 spin_unlock_irq(&np->tx_lock);
491 goto drop;
494 i = np->tx.req_prod_pvt;
496 id = get_id_from_freelist(&np->tx_skb_freelist, np->tx_skbs);
497 np->tx_skbs[id].skb = skb;
499 tx = RING_GET_REQUEST(&np->tx, i);
501 tx->id = id;
502 ref = gnttab_claim_grant_reference(&np->gref_tx_head);
503 BUG_ON((signed short)ref < 0);
504 mfn = virt_to_mfn(data);
505 gnttab_grant_foreign_access_ref(
506 ref, np->xbdev->otherend_id, mfn, GNTMAP_readonly);
507 tx->gref = np->grant_tx_ref[id] = ref;
508 tx->offset = offset;
509 tx->size = len;
510 extra = NULL;
512 tx->flags = 0;
513 if (skb->ip_summed == CHECKSUM_PARTIAL)
514 /* local packet? */
515 tx->flags |= NETTXF_csum_blank | NETTXF_data_validated;
516 else if (skb->ip_summed == CHECKSUM_UNNECESSARY)
517 /* remote but checksummed. */
518 tx->flags |= NETTXF_data_validated;
520 if (skb_shinfo(skb)->gso_size) {
521 struct xen_netif_extra_info *gso;
523 gso = (struct xen_netif_extra_info *)
524 RING_GET_REQUEST(&np->tx, ++i);
526 if (extra)
527 extra->flags |= XEN_NETIF_EXTRA_FLAG_MORE;
528 else
529 tx->flags |= NETTXF_extra_info;
531 gso->u.gso.size = skb_shinfo(skb)->gso_size;
532 gso->u.gso.type = XEN_NETIF_GSO_TYPE_TCPV4;
533 gso->u.gso.pad = 0;
534 gso->u.gso.features = 0;
536 gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
537 gso->flags = 0;
538 extra = gso;
541 np->tx.req_prod_pvt = i + 1;
543 xennet_make_frags(skb, dev, tx);
544 tx->size = skb->len;
546 RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&np->tx, notify);
547 if (notify)
548 notify_remote_via_irq(np->netdev->irq);
550 dev->stats.tx_bytes += skb->len;
551 dev->stats.tx_packets++;
553 /* Note: It is not safe to access skb after xennet_tx_buf_gc()! */
554 xennet_tx_buf_gc(dev);
556 if (!netfront_tx_slot_available(np))
557 netif_stop_queue(dev);
559 spin_unlock_irq(&np->tx_lock);
561 return 0;
563 drop:
564 dev->stats.tx_dropped++;
565 dev_kfree_skb(skb);
566 return 0;
569 static int xennet_close(struct net_device *dev)
571 struct netfront_info *np = netdev_priv(dev);
572 netif_stop_queue(np->netdev);
573 napi_disable(&np->napi);
574 return 0;
577 static void xennet_move_rx_slot(struct netfront_info *np, struct sk_buff *skb,
578 grant_ref_t ref)
580 int new = xennet_rxidx(np->rx.req_prod_pvt);
582 BUG_ON(np->rx_skbs[new]);
583 np->rx_skbs[new] = skb;
584 np->grant_rx_ref[new] = ref;
585 RING_GET_REQUEST(&np->rx, np->rx.req_prod_pvt)->id = new;
586 RING_GET_REQUEST(&np->rx, np->rx.req_prod_pvt)->gref = ref;
587 np->rx.req_prod_pvt++;
590 static int xennet_get_extras(struct netfront_info *np,
591 struct xen_netif_extra_info *extras,
592 RING_IDX rp)
595 struct xen_netif_extra_info *extra;
596 struct device *dev = &np->netdev->dev;
597 RING_IDX cons = np->rx.rsp_cons;
598 int err = 0;
600 do {
601 struct sk_buff *skb;
602 grant_ref_t ref;
604 if (unlikely(cons + 1 == rp)) {
605 if (net_ratelimit())
606 dev_warn(dev, "Missing extra info\n");
607 err = -EBADR;
608 break;
611 extra = (struct xen_netif_extra_info *)
612 RING_GET_RESPONSE(&np->rx, ++cons);
614 if (unlikely(!extra->type ||
615 extra->type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
616 if (net_ratelimit())
617 dev_warn(dev, "Invalid extra type: %d\n",
618 extra->type);
619 err = -EINVAL;
620 } else {
621 memcpy(&extras[extra->type - 1], extra,
622 sizeof(*extra));
625 skb = xennet_get_rx_skb(np, cons);
626 ref = xennet_get_rx_ref(np, cons);
627 xennet_move_rx_slot(np, skb, ref);
628 } while (extra->flags & XEN_NETIF_EXTRA_FLAG_MORE);
630 np->rx.rsp_cons = cons;
631 return err;
634 static int xennet_get_responses(struct netfront_info *np,
635 struct netfront_rx_info *rinfo, RING_IDX rp,
636 struct sk_buff_head *list)
638 struct xen_netif_rx_response *rx = &rinfo->rx;
639 struct xen_netif_extra_info *extras = rinfo->extras;
640 struct device *dev = &np->netdev->dev;
641 RING_IDX cons = np->rx.rsp_cons;
642 struct sk_buff *skb = xennet_get_rx_skb(np, cons);
643 grant_ref_t ref = xennet_get_rx_ref(np, cons);
644 int max = MAX_SKB_FRAGS + (rx->status <= RX_COPY_THRESHOLD);
645 int frags = 1;
646 int err = 0;
647 unsigned long ret;
649 if (rx->flags & NETRXF_extra_info) {
650 err = xennet_get_extras(np, extras, rp);
651 cons = np->rx.rsp_cons;
654 for (;;) {
655 if (unlikely(rx->status < 0 ||
656 rx->offset + rx->status > PAGE_SIZE)) {
657 if (net_ratelimit())
658 dev_warn(dev, "rx->offset: %x, size: %u\n",
659 rx->offset, rx->status);
660 xennet_move_rx_slot(np, skb, ref);
661 err = -EINVAL;
662 goto next;
666 * This definitely indicates a bug, either in this driver or in
667 * the backend driver. In future this should flag the bad
668 * situation to the system controller to reboot the backed.
670 if (ref == GRANT_INVALID_REF) {
671 if (net_ratelimit())
672 dev_warn(dev, "Bad rx response id %d.\n",
673 rx->id);
674 err = -EINVAL;
675 goto next;
678 ret = gnttab_end_foreign_access_ref(ref, 0);
679 BUG_ON(!ret);
681 gnttab_release_grant_reference(&np->gref_rx_head, ref);
683 __skb_queue_tail(list, skb);
685 next:
686 if (!(rx->flags & NETRXF_more_data))
687 break;
689 if (cons + frags == rp) {
690 if (net_ratelimit())
691 dev_warn(dev, "Need more frags\n");
692 err = -ENOENT;
693 break;
696 rx = RING_GET_RESPONSE(&np->rx, cons + frags);
697 skb = xennet_get_rx_skb(np, cons + frags);
698 ref = xennet_get_rx_ref(np, cons + frags);
699 frags++;
702 if (unlikely(frags > max)) {
703 if (net_ratelimit())
704 dev_warn(dev, "Too many frags\n");
705 err = -E2BIG;
708 if (unlikely(err))
709 np->rx.rsp_cons = cons + frags;
711 return err;
714 static int xennet_set_skb_gso(struct sk_buff *skb,
715 struct xen_netif_extra_info *gso)
717 if (!gso->u.gso.size) {
718 if (net_ratelimit())
719 printk(KERN_WARNING "GSO size must not be zero.\n");
720 return -EINVAL;
723 /* Currently only TCPv4 S.O. is supported. */
724 if (gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV4) {
725 if (net_ratelimit())
726 printk(KERN_WARNING "Bad GSO type %d.\n", gso->u.gso.type);
727 return -EINVAL;
730 skb_shinfo(skb)->gso_size = gso->u.gso.size;
731 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
733 /* Header must be checked, and gso_segs computed. */
734 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
735 skb_shinfo(skb)->gso_segs = 0;
737 return 0;
740 static RING_IDX xennet_fill_frags(struct netfront_info *np,
741 struct sk_buff *skb,
742 struct sk_buff_head *list)
744 struct skb_shared_info *shinfo = skb_shinfo(skb);
745 int nr_frags = shinfo->nr_frags;
746 RING_IDX cons = np->rx.rsp_cons;
747 skb_frag_t *frag = shinfo->frags + nr_frags;
748 struct sk_buff *nskb;
750 while ((nskb = __skb_dequeue(list))) {
751 struct xen_netif_rx_response *rx =
752 RING_GET_RESPONSE(&np->rx, ++cons);
754 frag->page = skb_shinfo(nskb)->frags[0].page;
755 frag->page_offset = rx->offset;
756 frag->size = rx->status;
758 skb->data_len += rx->status;
760 skb_shinfo(nskb)->nr_frags = 0;
761 kfree_skb(nskb);
763 frag++;
764 nr_frags++;
767 shinfo->nr_frags = nr_frags;
768 return cons;
771 static int skb_checksum_setup(struct sk_buff *skb)
773 struct iphdr *iph;
774 unsigned char *th;
775 int err = -EPROTO;
777 if (skb->protocol != htons(ETH_P_IP))
778 goto out;
780 iph = (void *)skb->data;
781 th = skb->data + 4 * iph->ihl;
782 if (th >= skb_tail_pointer(skb))
783 goto out;
785 skb->csum_start = th - skb->head;
786 switch (iph->protocol) {
787 case IPPROTO_TCP:
788 skb->csum_offset = offsetof(struct tcphdr, check);
789 break;
790 case IPPROTO_UDP:
791 skb->csum_offset = offsetof(struct udphdr, check);
792 break;
793 default:
794 if (net_ratelimit())
795 printk(KERN_ERR "Attempting to checksum a non-"
796 "TCP/UDP packet, dropping a protocol"
797 " %d packet", iph->protocol);
798 goto out;
801 if ((th + skb->csum_offset + 2) > skb_tail_pointer(skb))
802 goto out;
804 err = 0;
806 out:
807 return err;
810 static int handle_incoming_queue(struct net_device *dev,
811 struct sk_buff_head *rxq)
813 int packets_dropped = 0;
814 struct sk_buff *skb;
816 while ((skb = __skb_dequeue(rxq)) != NULL) {
817 struct page *page = NETFRONT_SKB_CB(skb)->page;
818 void *vaddr = page_address(page);
819 unsigned offset = NETFRONT_SKB_CB(skb)->offset;
821 memcpy(skb->data, vaddr + offset,
822 skb_headlen(skb));
824 if (page != skb_shinfo(skb)->frags[0].page)
825 __free_page(page);
827 /* Ethernet work: Delayed to here as it peeks the header. */
828 skb->protocol = eth_type_trans(skb, dev);
830 if (skb->ip_summed == CHECKSUM_PARTIAL) {
831 if (skb_checksum_setup(skb)) {
832 kfree_skb(skb);
833 packets_dropped++;
834 dev->stats.rx_errors++;
835 continue;
839 dev->stats.rx_packets++;
840 dev->stats.rx_bytes += skb->len;
842 /* Pass it up. */
843 netif_receive_skb(skb);
846 return packets_dropped;
849 static int xennet_poll(struct napi_struct *napi, int budget)
851 struct netfront_info *np = container_of(napi, struct netfront_info, napi);
852 struct net_device *dev = np->netdev;
853 struct sk_buff *skb;
854 struct netfront_rx_info rinfo;
855 struct xen_netif_rx_response *rx = &rinfo.rx;
856 struct xen_netif_extra_info *extras = rinfo.extras;
857 RING_IDX i, rp;
858 int work_done;
859 struct sk_buff_head rxq;
860 struct sk_buff_head errq;
861 struct sk_buff_head tmpq;
862 unsigned long flags;
863 unsigned int len;
864 int err;
866 spin_lock(&np->rx_lock);
868 skb_queue_head_init(&rxq);
869 skb_queue_head_init(&errq);
870 skb_queue_head_init(&tmpq);
872 rp = np->rx.sring->rsp_prod;
873 rmb(); /* Ensure we see queued responses up to 'rp'. */
875 i = np->rx.rsp_cons;
876 work_done = 0;
877 while ((i != rp) && (work_done < budget)) {
878 memcpy(rx, RING_GET_RESPONSE(&np->rx, i), sizeof(*rx));
879 memset(extras, 0, sizeof(rinfo.extras));
881 err = xennet_get_responses(np, &rinfo, rp, &tmpq);
883 if (unlikely(err)) {
884 err:
885 while ((skb = __skb_dequeue(&tmpq)))
886 __skb_queue_tail(&errq, skb);
887 dev->stats.rx_errors++;
888 i = np->rx.rsp_cons;
889 continue;
892 skb = __skb_dequeue(&tmpq);
894 if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
895 struct xen_netif_extra_info *gso;
896 gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
898 if (unlikely(xennet_set_skb_gso(skb, gso))) {
899 __skb_queue_head(&tmpq, skb);
900 np->rx.rsp_cons += skb_queue_len(&tmpq);
901 goto err;
905 NETFRONT_SKB_CB(skb)->page = skb_shinfo(skb)->frags[0].page;
906 NETFRONT_SKB_CB(skb)->offset = rx->offset;
908 len = rx->status;
909 if (len > RX_COPY_THRESHOLD)
910 len = RX_COPY_THRESHOLD;
911 skb_put(skb, len);
913 if (rx->status > len) {
914 skb_shinfo(skb)->frags[0].page_offset =
915 rx->offset + len;
916 skb_shinfo(skb)->frags[0].size = rx->status - len;
917 skb->data_len = rx->status - len;
918 } else {
919 skb_shinfo(skb)->frags[0].page = NULL;
920 skb_shinfo(skb)->nr_frags = 0;
923 i = xennet_fill_frags(np, skb, &tmpq);
926 * Truesize approximates the size of true data plus
927 * any supervisor overheads. Adding hypervisor
928 * overheads has been shown to significantly reduce
929 * achievable bandwidth with the default receive
930 * buffer size. It is therefore not wise to account
931 * for it here.
933 * After alloc_skb(RX_COPY_THRESHOLD), truesize is set
934 * to RX_COPY_THRESHOLD + the supervisor
935 * overheads. Here, we add the size of the data pulled
936 * in xennet_fill_frags().
938 * We also adjust for any unused space in the main
939 * data area by subtracting (RX_COPY_THRESHOLD -
940 * len). This is especially important with drivers
941 * which split incoming packets into header and data,
942 * using only 66 bytes of the main data area (see the
943 * e1000 driver for example.) On such systems,
944 * without this last adjustement, our achievable
945 * receive throughout using the standard receive
946 * buffer size was cut by 25%(!!!).
948 skb->truesize += skb->data_len - (RX_COPY_THRESHOLD - len);
949 skb->len += skb->data_len;
951 if (rx->flags & NETRXF_csum_blank)
952 skb->ip_summed = CHECKSUM_PARTIAL;
953 else if (rx->flags & NETRXF_data_validated)
954 skb->ip_summed = CHECKSUM_UNNECESSARY;
956 __skb_queue_tail(&rxq, skb);
958 np->rx.rsp_cons = ++i;
959 work_done++;
962 __skb_queue_purge(&errq);
964 work_done -= handle_incoming_queue(dev, &rxq);
966 /* If we get a callback with very few responses, reduce fill target. */
967 /* NB. Note exponential increase, linear decrease. */
968 if (((np->rx.req_prod_pvt - np->rx.sring->rsp_prod) >
969 ((3*np->rx_target) / 4)) &&
970 (--np->rx_target < np->rx_min_target))
971 np->rx_target = np->rx_min_target;
973 xennet_alloc_rx_buffers(dev);
975 if (work_done < budget) {
976 int more_to_do = 0;
978 local_irq_save(flags);
980 RING_FINAL_CHECK_FOR_RESPONSES(&np->rx, more_to_do);
981 if (!more_to_do)
982 __netif_rx_complete(napi);
984 local_irq_restore(flags);
987 spin_unlock(&np->rx_lock);
989 return work_done;
992 static int xennet_change_mtu(struct net_device *dev, int mtu)
994 int max = xennet_can_sg(dev) ? 65535 - ETH_HLEN : ETH_DATA_LEN;
996 if (mtu > max)
997 return -EINVAL;
998 dev->mtu = mtu;
999 return 0;
1002 static void xennet_release_tx_bufs(struct netfront_info *np)
1004 struct sk_buff *skb;
1005 int i;
1007 for (i = 0; i < NET_TX_RING_SIZE; i++) {
1008 /* Skip over entries which are actually freelist references */
1009 if (skb_entry_is_link(&np->tx_skbs[i]))
1010 continue;
1012 skb = np->tx_skbs[i].skb;
1013 gnttab_end_foreign_access_ref(np->grant_tx_ref[i],
1014 GNTMAP_readonly);
1015 gnttab_release_grant_reference(&np->gref_tx_head,
1016 np->grant_tx_ref[i]);
1017 np->grant_tx_ref[i] = GRANT_INVALID_REF;
1018 add_id_to_freelist(&np->tx_skb_freelist, np->tx_skbs, i);
1019 dev_kfree_skb_irq(skb);
1023 static void xennet_release_rx_bufs(struct netfront_info *np)
1025 struct mmu_update *mmu = np->rx_mmu;
1026 struct multicall_entry *mcl = np->rx_mcl;
1027 struct sk_buff_head free_list;
1028 struct sk_buff *skb;
1029 unsigned long mfn;
1030 int xfer = 0, noxfer = 0, unused = 0;
1031 int id, ref;
1033 dev_warn(&np->netdev->dev, "%s: fix me for copying receiver.\n",
1034 __func__);
1035 return;
1037 skb_queue_head_init(&free_list);
1039 spin_lock_bh(&np->rx_lock);
1041 for (id = 0; id < NET_RX_RING_SIZE; id++) {
1042 ref = np->grant_rx_ref[id];
1043 if (ref == GRANT_INVALID_REF) {
1044 unused++;
1045 continue;
1048 skb = np->rx_skbs[id];
1049 mfn = gnttab_end_foreign_transfer_ref(ref);
1050 gnttab_release_grant_reference(&np->gref_rx_head, ref);
1051 np->grant_rx_ref[id] = GRANT_INVALID_REF;
1053 if (0 == mfn) {
1054 skb_shinfo(skb)->nr_frags = 0;
1055 dev_kfree_skb(skb);
1056 noxfer++;
1057 continue;
1060 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
1061 /* Remap the page. */
1062 struct page *page = skb_shinfo(skb)->frags[0].page;
1063 unsigned long pfn = page_to_pfn(page);
1064 void *vaddr = page_address(page);
1066 MULTI_update_va_mapping(mcl, (unsigned long)vaddr,
1067 mfn_pte(mfn, PAGE_KERNEL),
1069 mcl++;
1070 mmu->ptr = ((u64)mfn << PAGE_SHIFT)
1071 | MMU_MACHPHYS_UPDATE;
1072 mmu->val = pfn;
1073 mmu++;
1075 set_phys_to_machine(pfn, mfn);
1077 __skb_queue_tail(&free_list, skb);
1078 xfer++;
1081 dev_info(&np->netdev->dev, "%s: %d xfer, %d noxfer, %d unused\n",
1082 __func__, xfer, noxfer, unused);
1084 if (xfer) {
1085 if (!xen_feature(XENFEAT_auto_translated_physmap)) {
1086 /* Do all the remapping work and M2P updates. */
1087 MULTI_mmu_update(mcl, np->rx_mmu, mmu - np->rx_mmu,
1088 NULL, DOMID_SELF);
1089 mcl++;
1090 HYPERVISOR_multicall(np->rx_mcl, mcl - np->rx_mcl);
1094 __skb_queue_purge(&free_list);
1096 spin_unlock_bh(&np->rx_lock);
1099 static void xennet_uninit(struct net_device *dev)
1101 struct netfront_info *np = netdev_priv(dev);
1102 xennet_release_tx_bufs(np);
1103 xennet_release_rx_bufs(np);
1104 gnttab_free_grant_references(np->gref_tx_head);
1105 gnttab_free_grant_references(np->gref_rx_head);
1108 static struct net_device * __devinit xennet_create_dev(struct xenbus_device *dev)
1110 int i, err;
1111 struct net_device *netdev;
1112 struct netfront_info *np;
1114 netdev = alloc_etherdev(sizeof(struct netfront_info));
1115 if (!netdev) {
1116 printk(KERN_WARNING "%s> alloc_etherdev failed.\n",
1117 __func__);
1118 return ERR_PTR(-ENOMEM);
1121 np = netdev_priv(netdev);
1122 np->xbdev = dev;
1124 spin_lock_init(&np->tx_lock);
1125 spin_lock_init(&np->rx_lock);
1127 skb_queue_head_init(&np->rx_batch);
1128 np->rx_target = RX_DFL_MIN_TARGET;
1129 np->rx_min_target = RX_DFL_MIN_TARGET;
1130 np->rx_max_target = RX_MAX_TARGET;
1132 init_timer(&np->rx_refill_timer);
1133 np->rx_refill_timer.data = (unsigned long)netdev;
1134 np->rx_refill_timer.function = rx_refill_timeout;
1136 /* Initialise tx_skbs as a free chain containing every entry. */
1137 np->tx_skb_freelist = 0;
1138 for (i = 0; i < NET_TX_RING_SIZE; i++) {
1139 skb_entry_set_link(&np->tx_skbs[i], i+1);
1140 np->grant_tx_ref[i] = GRANT_INVALID_REF;
1143 /* Clear out rx_skbs */
1144 for (i = 0; i < NET_RX_RING_SIZE; i++) {
1145 np->rx_skbs[i] = NULL;
1146 np->grant_rx_ref[i] = GRANT_INVALID_REF;
1149 /* A grant for every tx ring slot */
1150 if (gnttab_alloc_grant_references(TX_MAX_TARGET,
1151 &np->gref_tx_head) < 0) {
1152 printk(KERN_ALERT "#### netfront can't alloc tx grant refs\n");
1153 err = -ENOMEM;
1154 goto exit;
1156 /* A grant for every rx ring slot */
1157 if (gnttab_alloc_grant_references(RX_MAX_TARGET,
1158 &np->gref_rx_head) < 0) {
1159 printk(KERN_ALERT "#### netfront can't alloc rx grant refs\n");
1160 err = -ENOMEM;
1161 goto exit_free_tx;
1164 netdev->open = xennet_open;
1165 netdev->hard_start_xmit = xennet_start_xmit;
1166 netdev->stop = xennet_close;
1167 netif_napi_add(netdev, &np->napi, xennet_poll, 64);
1168 netdev->uninit = xennet_uninit;
1169 netdev->change_mtu = xennet_change_mtu;
1170 netdev->features = NETIF_F_IP_CSUM;
1172 SET_ETHTOOL_OPS(netdev, &xennet_ethtool_ops);
1173 SET_NETDEV_DEV(netdev, &dev->dev);
1175 np->netdev = netdev;
1177 netif_carrier_off(netdev);
1179 return netdev;
1181 exit_free_tx:
1182 gnttab_free_grant_references(np->gref_tx_head);
1183 exit:
1184 free_netdev(netdev);
1185 return ERR_PTR(err);
1189 * Entry point to this code when a new device is created. Allocate the basic
1190 * structures and the ring buffers for communication with the backend, and
1191 * inform the backend of the appropriate details for those.
1193 static int __devinit netfront_probe(struct xenbus_device *dev,
1194 const struct xenbus_device_id *id)
1196 int err;
1197 struct net_device *netdev;
1198 struct netfront_info *info;
1200 netdev = xennet_create_dev(dev);
1201 if (IS_ERR(netdev)) {
1202 err = PTR_ERR(netdev);
1203 xenbus_dev_fatal(dev, err, "creating netdev");
1204 return err;
1207 info = netdev_priv(netdev);
1208 dev->dev.driver_data = info;
1210 err = register_netdev(info->netdev);
1211 if (err) {
1212 printk(KERN_WARNING "%s: register_netdev err=%d\n",
1213 __func__, err);
1214 goto fail;
1217 err = xennet_sysfs_addif(info->netdev);
1218 if (err) {
1219 unregister_netdev(info->netdev);
1220 printk(KERN_WARNING "%s: add sysfs failed err=%d\n",
1221 __func__, err);
1222 goto fail;
1225 return 0;
1227 fail:
1228 free_netdev(netdev);
1229 dev->dev.driver_data = NULL;
1230 return err;
1233 static void xennet_end_access(int ref, void *page)
1235 /* This frees the page as a side-effect */
1236 if (ref != GRANT_INVALID_REF)
1237 gnttab_end_foreign_access(ref, 0, (unsigned long)page);
1240 static void xennet_disconnect_backend(struct netfront_info *info)
1242 /* Stop old i/f to prevent errors whilst we rebuild the state. */
1243 spin_lock_bh(&info->rx_lock);
1244 spin_lock_irq(&info->tx_lock);
1245 netif_carrier_off(info->netdev);
1246 spin_unlock_irq(&info->tx_lock);
1247 spin_unlock_bh(&info->rx_lock);
1249 if (info->netdev->irq)
1250 unbind_from_irqhandler(info->netdev->irq, info->netdev);
1251 info->evtchn = info->netdev->irq = 0;
1253 /* End access and free the pages */
1254 xennet_end_access(info->tx_ring_ref, info->tx.sring);
1255 xennet_end_access(info->rx_ring_ref, info->rx.sring);
1257 info->tx_ring_ref = GRANT_INVALID_REF;
1258 info->rx_ring_ref = GRANT_INVALID_REF;
1259 info->tx.sring = NULL;
1260 info->rx.sring = NULL;
1264 * We are reconnecting to the backend, due to a suspend/resume, or a backend
1265 * driver restart. We tear down our netif structure and recreate it, but
1266 * leave the device-layer structures intact so that this is transparent to the
1267 * rest of the kernel.
1269 static int netfront_resume(struct xenbus_device *dev)
1271 struct netfront_info *info = dev->dev.driver_data;
1273 dev_dbg(&dev->dev, "%s\n", dev->nodename);
1275 xennet_disconnect_backend(info);
1276 return 0;
1279 static int xen_net_read_mac(struct xenbus_device *dev, u8 mac[])
1281 char *s, *e, *macstr;
1282 int i;
1284 macstr = s = xenbus_read(XBT_NIL, dev->nodename, "mac", NULL);
1285 if (IS_ERR(macstr))
1286 return PTR_ERR(macstr);
1288 for (i = 0; i < ETH_ALEN; i++) {
1289 mac[i] = simple_strtoul(s, &e, 16);
1290 if ((s == e) || (*e != ((i == ETH_ALEN-1) ? '\0' : ':'))) {
1291 kfree(macstr);
1292 return -ENOENT;
1294 s = e+1;
1297 kfree(macstr);
1298 return 0;
1301 static irqreturn_t xennet_interrupt(int irq, void *dev_id)
1303 struct net_device *dev = dev_id;
1304 struct netfront_info *np = netdev_priv(dev);
1305 unsigned long flags;
1307 spin_lock_irqsave(&np->tx_lock, flags);
1309 if (likely(netif_carrier_ok(dev))) {
1310 xennet_tx_buf_gc(dev);
1311 /* Under tx_lock: protects access to rx shared-ring indexes. */
1312 if (RING_HAS_UNCONSUMED_RESPONSES(&np->rx))
1313 netif_rx_schedule(&np->napi);
1316 spin_unlock_irqrestore(&np->tx_lock, flags);
1318 return IRQ_HANDLED;
1321 static int setup_netfront(struct xenbus_device *dev, struct netfront_info *info)
1323 struct xen_netif_tx_sring *txs;
1324 struct xen_netif_rx_sring *rxs;
1325 int err;
1326 struct net_device *netdev = info->netdev;
1328 info->tx_ring_ref = GRANT_INVALID_REF;
1329 info->rx_ring_ref = GRANT_INVALID_REF;
1330 info->rx.sring = NULL;
1331 info->tx.sring = NULL;
1332 netdev->irq = 0;
1334 err = xen_net_read_mac(dev, netdev->dev_addr);
1335 if (err) {
1336 xenbus_dev_fatal(dev, err, "parsing %s/mac", dev->nodename);
1337 goto fail;
1340 txs = (struct xen_netif_tx_sring *)get_zeroed_page(GFP_NOIO | __GFP_HIGH);
1341 if (!txs) {
1342 err = -ENOMEM;
1343 xenbus_dev_fatal(dev, err, "allocating tx ring page");
1344 goto fail;
1346 SHARED_RING_INIT(txs);
1347 FRONT_RING_INIT(&info->tx, txs, PAGE_SIZE);
1349 err = xenbus_grant_ring(dev, virt_to_mfn(txs));
1350 if (err < 0) {
1351 free_page((unsigned long)txs);
1352 goto fail;
1355 info->tx_ring_ref = err;
1356 rxs = (struct xen_netif_rx_sring *)get_zeroed_page(GFP_NOIO | __GFP_HIGH);
1357 if (!rxs) {
1358 err = -ENOMEM;
1359 xenbus_dev_fatal(dev, err, "allocating rx ring page");
1360 goto fail;
1362 SHARED_RING_INIT(rxs);
1363 FRONT_RING_INIT(&info->rx, rxs, PAGE_SIZE);
1365 err = xenbus_grant_ring(dev, virt_to_mfn(rxs));
1366 if (err < 0) {
1367 free_page((unsigned long)rxs);
1368 goto fail;
1370 info->rx_ring_ref = err;
1372 err = xenbus_alloc_evtchn(dev, &info->evtchn);
1373 if (err)
1374 goto fail;
1376 err = bind_evtchn_to_irqhandler(info->evtchn, xennet_interrupt,
1377 IRQF_SAMPLE_RANDOM, netdev->name,
1378 netdev);
1379 if (err < 0)
1380 goto fail;
1381 netdev->irq = err;
1382 return 0;
1384 fail:
1385 return err;
1388 /* Common code used when first setting up, and when resuming. */
1389 static int talk_to_backend(struct xenbus_device *dev,
1390 struct netfront_info *info)
1392 const char *message;
1393 struct xenbus_transaction xbt;
1394 int err;
1396 /* Create shared ring, alloc event channel. */
1397 err = setup_netfront(dev, info);
1398 if (err)
1399 goto out;
1401 again:
1402 err = xenbus_transaction_start(&xbt);
1403 if (err) {
1404 xenbus_dev_fatal(dev, err, "starting transaction");
1405 goto destroy_ring;
1408 err = xenbus_printf(xbt, dev->nodename, "tx-ring-ref", "%u",
1409 info->tx_ring_ref);
1410 if (err) {
1411 message = "writing tx ring-ref";
1412 goto abort_transaction;
1414 err = xenbus_printf(xbt, dev->nodename, "rx-ring-ref", "%u",
1415 info->rx_ring_ref);
1416 if (err) {
1417 message = "writing rx ring-ref";
1418 goto abort_transaction;
1420 err = xenbus_printf(xbt, dev->nodename,
1421 "event-channel", "%u", info->evtchn);
1422 if (err) {
1423 message = "writing event-channel";
1424 goto abort_transaction;
1427 err = xenbus_printf(xbt, dev->nodename, "request-rx-copy", "%u",
1429 if (err) {
1430 message = "writing request-rx-copy";
1431 goto abort_transaction;
1434 err = xenbus_printf(xbt, dev->nodename, "feature-rx-notify", "%d", 1);
1435 if (err) {
1436 message = "writing feature-rx-notify";
1437 goto abort_transaction;
1440 err = xenbus_printf(xbt, dev->nodename, "feature-sg", "%d", 1);
1441 if (err) {
1442 message = "writing feature-sg";
1443 goto abort_transaction;
1446 err = xenbus_printf(xbt, dev->nodename, "feature-gso-tcpv4", "%d", 1);
1447 if (err) {
1448 message = "writing feature-gso-tcpv4";
1449 goto abort_transaction;
1452 err = xenbus_transaction_end(xbt, 0);
1453 if (err) {
1454 if (err == -EAGAIN)
1455 goto again;
1456 xenbus_dev_fatal(dev, err, "completing transaction");
1457 goto destroy_ring;
1460 return 0;
1462 abort_transaction:
1463 xenbus_transaction_end(xbt, 1);
1464 xenbus_dev_fatal(dev, err, "%s", message);
1465 destroy_ring:
1466 xennet_disconnect_backend(info);
1467 out:
1468 return err;
1471 static int xennet_set_sg(struct net_device *dev, u32 data)
1473 if (data) {
1474 struct netfront_info *np = netdev_priv(dev);
1475 int val;
1477 if (xenbus_scanf(XBT_NIL, np->xbdev->otherend, "feature-sg",
1478 "%d", &val) < 0)
1479 val = 0;
1480 if (!val)
1481 return -ENOSYS;
1482 } else if (dev->mtu > ETH_DATA_LEN)
1483 dev->mtu = ETH_DATA_LEN;
1485 return ethtool_op_set_sg(dev, data);
1488 static int xennet_set_tso(struct net_device *dev, u32 data)
1490 if (data) {
1491 struct netfront_info *np = netdev_priv(dev);
1492 int val;
1494 if (xenbus_scanf(XBT_NIL, np->xbdev->otherend,
1495 "feature-gso-tcpv4", "%d", &val) < 0)
1496 val = 0;
1497 if (!val)
1498 return -ENOSYS;
1501 return ethtool_op_set_tso(dev, data);
1504 static void xennet_set_features(struct net_device *dev)
1506 /* Turn off all GSO bits except ROBUST. */
1507 dev->features &= (1 << NETIF_F_GSO_SHIFT) - 1;
1508 dev->features |= NETIF_F_GSO_ROBUST;
1509 xennet_set_sg(dev, 0);
1511 /* We need checksum offload to enable scatter/gather and TSO. */
1512 if (!(dev->features & NETIF_F_IP_CSUM))
1513 return;
1515 if (!xennet_set_sg(dev, 1))
1516 xennet_set_tso(dev, 1);
1519 static int xennet_connect(struct net_device *dev)
1521 struct netfront_info *np = netdev_priv(dev);
1522 int i, requeue_idx, err;
1523 struct sk_buff *skb;
1524 grant_ref_t ref;
1525 struct xen_netif_rx_request *req;
1526 unsigned int feature_rx_copy;
1528 err = xenbus_scanf(XBT_NIL, np->xbdev->otherend,
1529 "feature-rx-copy", "%u", &feature_rx_copy);
1530 if (err != 1)
1531 feature_rx_copy = 0;
1533 if (!feature_rx_copy) {
1534 dev_info(&dev->dev,
1535 "backend does not support copying receive path\n");
1536 return -ENODEV;
1539 err = talk_to_backend(np->xbdev, np);
1540 if (err)
1541 return err;
1543 xennet_set_features(dev);
1545 spin_lock_bh(&np->rx_lock);
1546 spin_lock_irq(&np->tx_lock);
1548 /* Step 1: Discard all pending TX packet fragments. */
1549 xennet_release_tx_bufs(np);
1551 /* Step 2: Rebuild the RX buffer freelist and the RX ring itself. */
1552 for (requeue_idx = 0, i = 0; i < NET_RX_RING_SIZE; i++) {
1553 if (!np->rx_skbs[i])
1554 continue;
1556 skb = np->rx_skbs[requeue_idx] = xennet_get_rx_skb(np, i);
1557 ref = np->grant_rx_ref[requeue_idx] = xennet_get_rx_ref(np, i);
1558 req = RING_GET_REQUEST(&np->rx, requeue_idx);
1560 gnttab_grant_foreign_access_ref(
1561 ref, np->xbdev->otherend_id,
1562 pfn_to_mfn(page_to_pfn(skb_shinfo(skb)->
1563 frags->page)),
1565 req->gref = ref;
1566 req->id = requeue_idx;
1568 requeue_idx++;
1571 np->rx.req_prod_pvt = requeue_idx;
1574 * Step 3: All public and private state should now be sane. Get
1575 * ready to start sending and receiving packets and give the driver
1576 * domain a kick because we've probably just requeued some
1577 * packets.
1579 netif_carrier_on(np->netdev);
1580 notify_remote_via_irq(np->netdev->irq);
1581 xennet_tx_buf_gc(dev);
1582 xennet_alloc_rx_buffers(dev);
1584 spin_unlock_irq(&np->tx_lock);
1585 spin_unlock_bh(&np->rx_lock);
1587 return 0;
1591 * Callback received when the backend's state changes.
1593 static void backend_changed(struct xenbus_device *dev,
1594 enum xenbus_state backend_state)
1596 struct netfront_info *np = dev->dev.driver_data;
1597 struct net_device *netdev = np->netdev;
1599 dev_dbg(&dev->dev, "%s\n", xenbus_strstate(backend_state));
1601 switch (backend_state) {
1602 case XenbusStateInitialising:
1603 case XenbusStateInitialised:
1604 case XenbusStateConnected:
1605 case XenbusStateUnknown:
1606 case XenbusStateClosed:
1607 break;
1609 case XenbusStateInitWait:
1610 if (dev->state != XenbusStateInitialising)
1611 break;
1612 if (xennet_connect(netdev) != 0)
1613 break;
1614 xenbus_switch_state(dev, XenbusStateConnected);
1615 break;
1617 case XenbusStateClosing:
1618 xenbus_frontend_closed(dev);
1619 break;
1623 static struct ethtool_ops xennet_ethtool_ops =
1625 .set_tx_csum = ethtool_op_set_tx_csum,
1626 .set_sg = xennet_set_sg,
1627 .set_tso = xennet_set_tso,
1628 .get_link = ethtool_op_get_link,
1631 #ifdef CONFIG_SYSFS
1632 static ssize_t show_rxbuf_min(struct device *dev,
1633 struct device_attribute *attr, char *buf)
1635 struct net_device *netdev = to_net_dev(dev);
1636 struct netfront_info *info = netdev_priv(netdev);
1638 return sprintf(buf, "%u\n", info->rx_min_target);
1641 static ssize_t store_rxbuf_min(struct device *dev,
1642 struct device_attribute *attr,
1643 const char *buf, size_t len)
1645 struct net_device *netdev = to_net_dev(dev);
1646 struct netfront_info *np = netdev_priv(netdev);
1647 char *endp;
1648 unsigned long target;
1650 if (!capable(CAP_NET_ADMIN))
1651 return -EPERM;
1653 target = simple_strtoul(buf, &endp, 0);
1654 if (endp == buf)
1655 return -EBADMSG;
1657 if (target < RX_MIN_TARGET)
1658 target = RX_MIN_TARGET;
1659 if (target > RX_MAX_TARGET)
1660 target = RX_MAX_TARGET;
1662 spin_lock_bh(&np->rx_lock);
1663 if (target > np->rx_max_target)
1664 np->rx_max_target = target;
1665 np->rx_min_target = target;
1666 if (target > np->rx_target)
1667 np->rx_target = target;
1669 xennet_alloc_rx_buffers(netdev);
1671 spin_unlock_bh(&np->rx_lock);
1672 return len;
1675 static ssize_t show_rxbuf_max(struct device *dev,
1676 struct device_attribute *attr, char *buf)
1678 struct net_device *netdev = to_net_dev(dev);
1679 struct netfront_info *info = netdev_priv(netdev);
1681 return sprintf(buf, "%u\n", info->rx_max_target);
1684 static ssize_t store_rxbuf_max(struct device *dev,
1685 struct device_attribute *attr,
1686 const char *buf, size_t len)
1688 struct net_device *netdev = to_net_dev(dev);
1689 struct netfront_info *np = netdev_priv(netdev);
1690 char *endp;
1691 unsigned long target;
1693 if (!capable(CAP_NET_ADMIN))
1694 return -EPERM;
1696 target = simple_strtoul(buf, &endp, 0);
1697 if (endp == buf)
1698 return -EBADMSG;
1700 if (target < RX_MIN_TARGET)
1701 target = RX_MIN_TARGET;
1702 if (target > RX_MAX_TARGET)
1703 target = RX_MAX_TARGET;
1705 spin_lock_bh(&np->rx_lock);
1706 if (target < np->rx_min_target)
1707 np->rx_min_target = target;
1708 np->rx_max_target = target;
1709 if (target < np->rx_target)
1710 np->rx_target = target;
1712 xennet_alloc_rx_buffers(netdev);
1714 spin_unlock_bh(&np->rx_lock);
1715 return len;
1718 static ssize_t show_rxbuf_cur(struct device *dev,
1719 struct device_attribute *attr, char *buf)
1721 struct net_device *netdev = to_net_dev(dev);
1722 struct netfront_info *info = netdev_priv(netdev);
1724 return sprintf(buf, "%u\n", info->rx_target);
1727 static struct device_attribute xennet_attrs[] = {
1728 __ATTR(rxbuf_min, S_IRUGO|S_IWUSR, show_rxbuf_min, store_rxbuf_min),
1729 __ATTR(rxbuf_max, S_IRUGO|S_IWUSR, show_rxbuf_max, store_rxbuf_max),
1730 __ATTR(rxbuf_cur, S_IRUGO, show_rxbuf_cur, NULL),
1733 static int xennet_sysfs_addif(struct net_device *netdev)
1735 int i;
1736 int err;
1738 for (i = 0; i < ARRAY_SIZE(xennet_attrs); i++) {
1739 err = device_create_file(&netdev->dev,
1740 &xennet_attrs[i]);
1741 if (err)
1742 goto fail;
1744 return 0;
1746 fail:
1747 while (--i >= 0)
1748 device_remove_file(&netdev->dev, &xennet_attrs[i]);
1749 return err;
1752 static void xennet_sysfs_delif(struct net_device *netdev)
1754 int i;
1756 for (i = 0; i < ARRAY_SIZE(xennet_attrs); i++)
1757 device_remove_file(&netdev->dev, &xennet_attrs[i]);
1760 #endif /* CONFIG_SYSFS */
1762 static struct xenbus_device_id netfront_ids[] = {
1763 { "vif" },
1764 { "" }
1768 static int __devexit xennet_remove(struct xenbus_device *dev)
1770 struct netfront_info *info = dev->dev.driver_data;
1772 dev_dbg(&dev->dev, "%s\n", dev->nodename);
1774 unregister_netdev(info->netdev);
1776 xennet_disconnect_backend(info);
1778 del_timer_sync(&info->rx_refill_timer);
1780 xennet_sysfs_delif(info->netdev);
1782 free_netdev(info->netdev);
1784 return 0;
1787 static struct xenbus_driver netfront_driver = {
1788 .name = "vif",
1789 .owner = THIS_MODULE,
1790 .ids = netfront_ids,
1791 .probe = netfront_probe,
1792 .remove = __devexit_p(xennet_remove),
1793 .resume = netfront_resume,
1794 .otherend_changed = backend_changed,
1797 static int __init netif_init(void)
1799 if (!xen_domain())
1800 return -ENODEV;
1802 if (xen_initial_domain())
1803 return 0;
1805 printk(KERN_INFO "Initialising Xen virtual ethernet driver.\n");
1807 return xenbus_register_frontend(&netfront_driver);
1809 module_init(netif_init);
1812 static void __exit netif_exit(void)
1814 if (xen_initial_domain())
1815 return;
1817 xenbus_unregister_driver(&netfront_driver);
1819 module_exit(netif_exit);
1821 MODULE_DESCRIPTION("Xen virtual network device frontend");
1822 MODULE_LICENSE("GPL");
1823 MODULE_ALIAS("xen:vif");
1824 MODULE_ALIAS("xennet");