ASoC: da7219: Correct IRQ level in DT binding example
[linux-2.6-microblaze.git] / drivers / net / xen-netfront.c
1 /*
2  * Virtual network driver for conversing with remote driver backends.
3  *
4  * Copyright (c) 2002-2005, K A Fraser
5  * Copyright (c) 2005, XenSource Ltd
6  *
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:
12  *
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:
19  *
20  * The above copyright notice and this permission notice shall be included in
21  * all copies or substantial portions of the Software.
22  *
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.
30  */
31
32 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33
34 #include <linux/module.h>
35 #include <linux/kernel.h>
36 #include <linux/netdevice.h>
37 #include <linux/etherdevice.h>
38 #include <linux/skbuff.h>
39 #include <linux/ethtool.h>
40 #include <linux/if_ether.h>
41 #include <net/tcp.h>
42 #include <linux/udp.h>
43 #include <linux/moduleparam.h>
44 #include <linux/mm.h>
45 #include <linux/slab.h>
46 #include <net/ip.h>
47
48 #include <xen/xen.h>
49 #include <xen/xenbus.h>
50 #include <xen/events.h>
51 #include <xen/page.h>
52 #include <xen/platform_pci.h>
53 #include <xen/grant_table.h>
54
55 #include <xen/interface/io/netif.h>
56 #include <xen/interface/memory.h>
57 #include <xen/interface/grant_table.h>
58
59 /* Module parameters */
60 #define MAX_QUEUES_DEFAULT 8
61 static unsigned int xennet_max_queues;
62 module_param_named(max_queues, xennet_max_queues, uint, 0644);
63 MODULE_PARM_DESC(max_queues,
64                  "Maximum number of queues per virtual interface");
65
66 static const struct ethtool_ops xennet_ethtool_ops;
67
68 struct netfront_cb {
69         int pull_to;
70 };
71
72 #define NETFRONT_SKB_CB(skb)    ((struct netfront_cb *)((skb)->cb))
73
74 #define RX_COPY_THRESHOLD 256
75
76 #define GRANT_INVALID_REF       0
77
78 #define NET_TX_RING_SIZE __CONST_RING_SIZE(xen_netif_tx, XEN_PAGE_SIZE)
79 #define NET_RX_RING_SIZE __CONST_RING_SIZE(xen_netif_rx, XEN_PAGE_SIZE)
80
81 /* Minimum number of Rx slots (includes slot for GSO metadata). */
82 #define NET_RX_SLOTS_MIN (XEN_NETIF_NR_SLOTS_MIN + 1)
83
84 /* Queue name is interface name with "-qNNN" appended */
85 #define QUEUE_NAME_SIZE (IFNAMSIZ + 6)
86
87 /* IRQ name is queue name with "-tx" or "-rx" appended */
88 #define IRQ_NAME_SIZE (QUEUE_NAME_SIZE + 3)
89
90 struct netfront_stats {
91         u64                     packets;
92         u64                     bytes;
93         struct u64_stats_sync   syncp;
94 };
95
96 struct netfront_info;
97
98 struct netfront_queue {
99         unsigned int id; /* Queue ID, 0-based */
100         char name[QUEUE_NAME_SIZE]; /* DEVNAME-qN */
101         struct netfront_info *info;
102
103         struct napi_struct napi;
104
105         /* Split event channels support, tx_* == rx_* when using
106          * single event channel.
107          */
108         unsigned int tx_evtchn, rx_evtchn;
109         unsigned int tx_irq, rx_irq;
110         /* Only used when split event channels support is enabled */
111         char tx_irq_name[IRQ_NAME_SIZE]; /* DEVNAME-qN-tx */
112         char rx_irq_name[IRQ_NAME_SIZE]; /* DEVNAME-qN-rx */
113
114         spinlock_t   tx_lock;
115         struct xen_netif_tx_front_ring tx;
116         int tx_ring_ref;
117
118         /*
119          * {tx,rx}_skbs store outstanding skbuffs. Free tx_skb entries
120          * are linked from tx_skb_freelist through skb_entry.link.
121          *
122          *  NB. Freelist index entries are always going to be less than
123          *  PAGE_OFFSET, whereas pointers to skbs will always be equal or
124          *  greater than PAGE_OFFSET: we use this property to distinguish
125          *  them.
126          */
127         union skb_entry {
128                 struct sk_buff *skb;
129                 unsigned long link;
130         } tx_skbs[NET_TX_RING_SIZE];
131         grant_ref_t gref_tx_head;
132         grant_ref_t grant_tx_ref[NET_TX_RING_SIZE];
133         struct page *grant_tx_page[NET_TX_RING_SIZE];
134         unsigned tx_skb_freelist;
135
136         spinlock_t   rx_lock ____cacheline_aligned_in_smp;
137         struct xen_netif_rx_front_ring rx;
138         int rx_ring_ref;
139
140         struct timer_list rx_refill_timer;
141
142         struct sk_buff *rx_skbs[NET_RX_RING_SIZE];
143         grant_ref_t gref_rx_head;
144         grant_ref_t grant_rx_ref[NET_RX_RING_SIZE];
145 };
146
147 struct netfront_info {
148         struct list_head list;
149         struct net_device *netdev;
150
151         struct xenbus_device *xbdev;
152
153         /* Multi-queue support */
154         struct netfront_queue *queues;
155
156         /* Statistics */
157         struct netfront_stats __percpu *rx_stats;
158         struct netfront_stats __percpu *tx_stats;
159
160         atomic_t rx_gso_checksum_fixup;
161 };
162
163 struct netfront_rx_info {
164         struct xen_netif_rx_response rx;
165         struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX - 1];
166 };
167
168 static void skb_entry_set_link(union skb_entry *list, unsigned short id)
169 {
170         list->link = id;
171 }
172
173 static int skb_entry_is_link(const union skb_entry *list)
174 {
175         BUILD_BUG_ON(sizeof(list->skb) != sizeof(list->link));
176         return (unsigned long)list->skb < PAGE_OFFSET;
177 }
178
179 /*
180  * Access macros for acquiring freeing slots in tx_skbs[].
181  */
182
183 static void add_id_to_freelist(unsigned *head, union skb_entry *list,
184                                unsigned short id)
185 {
186         skb_entry_set_link(&list[id], *head);
187         *head = id;
188 }
189
190 static unsigned short get_id_from_freelist(unsigned *head,
191                                            union skb_entry *list)
192 {
193         unsigned int id = *head;
194         *head = list[id].link;
195         return id;
196 }
197
198 static int xennet_rxidx(RING_IDX idx)
199 {
200         return idx & (NET_RX_RING_SIZE - 1);
201 }
202
203 static struct sk_buff *xennet_get_rx_skb(struct netfront_queue *queue,
204                                          RING_IDX ri)
205 {
206         int i = xennet_rxidx(ri);
207         struct sk_buff *skb = queue->rx_skbs[i];
208         queue->rx_skbs[i] = NULL;
209         return skb;
210 }
211
212 static grant_ref_t xennet_get_rx_ref(struct netfront_queue *queue,
213                                             RING_IDX ri)
214 {
215         int i = xennet_rxidx(ri);
216         grant_ref_t ref = queue->grant_rx_ref[i];
217         queue->grant_rx_ref[i] = GRANT_INVALID_REF;
218         return ref;
219 }
220
221 #ifdef CONFIG_SYSFS
222 static const struct attribute_group xennet_dev_group;
223 #endif
224
225 static bool xennet_can_sg(struct net_device *dev)
226 {
227         return dev->features & NETIF_F_SG;
228 }
229
230
231 static void rx_refill_timeout(struct timer_list *t)
232 {
233         struct netfront_queue *queue = from_timer(queue, t, rx_refill_timer);
234         napi_schedule(&queue->napi);
235 }
236
237 static int netfront_tx_slot_available(struct netfront_queue *queue)
238 {
239         return (queue->tx.req_prod_pvt - queue->tx.rsp_cons) <
240                 (NET_TX_RING_SIZE - MAX_SKB_FRAGS - 2);
241 }
242
243 static void xennet_maybe_wake_tx(struct netfront_queue *queue)
244 {
245         struct net_device *dev = queue->info->netdev;
246         struct netdev_queue *dev_queue = netdev_get_tx_queue(dev, queue->id);
247
248         if (unlikely(netif_tx_queue_stopped(dev_queue)) &&
249             netfront_tx_slot_available(queue) &&
250             likely(netif_running(dev)))
251                 netif_tx_wake_queue(netdev_get_tx_queue(dev, queue->id));
252 }
253
254
255 static struct sk_buff *xennet_alloc_one_rx_buffer(struct netfront_queue *queue)
256 {
257         struct sk_buff *skb;
258         struct page *page;
259
260         skb = __netdev_alloc_skb(queue->info->netdev,
261                                  RX_COPY_THRESHOLD + NET_IP_ALIGN,
262                                  GFP_ATOMIC | __GFP_NOWARN);
263         if (unlikely(!skb))
264                 return NULL;
265
266         page = alloc_page(GFP_ATOMIC | __GFP_NOWARN);
267         if (!page) {
268                 kfree_skb(skb);
269                 return NULL;
270         }
271         skb_add_rx_frag(skb, 0, page, 0, 0, PAGE_SIZE);
272
273         /* Align ip header to a 16 bytes boundary */
274         skb_reserve(skb, NET_IP_ALIGN);
275         skb->dev = queue->info->netdev;
276
277         return skb;
278 }
279
280
281 static void xennet_alloc_rx_buffers(struct netfront_queue *queue)
282 {
283         RING_IDX req_prod = queue->rx.req_prod_pvt;
284         int notify;
285         int err = 0;
286
287         if (unlikely(!netif_carrier_ok(queue->info->netdev)))
288                 return;
289
290         for (req_prod = queue->rx.req_prod_pvt;
291              req_prod - queue->rx.rsp_cons < NET_RX_RING_SIZE;
292              req_prod++) {
293                 struct sk_buff *skb;
294                 unsigned short id;
295                 grant_ref_t ref;
296                 struct page *page;
297                 struct xen_netif_rx_request *req;
298
299                 skb = xennet_alloc_one_rx_buffer(queue);
300                 if (!skb) {
301                         err = -ENOMEM;
302                         break;
303                 }
304
305                 id = xennet_rxidx(req_prod);
306
307                 BUG_ON(queue->rx_skbs[id]);
308                 queue->rx_skbs[id] = skb;
309
310                 ref = gnttab_claim_grant_reference(&queue->gref_rx_head);
311                 WARN_ON_ONCE(IS_ERR_VALUE((unsigned long)(int)ref));
312                 queue->grant_rx_ref[id] = ref;
313
314                 page = skb_frag_page(&skb_shinfo(skb)->frags[0]);
315
316                 req = RING_GET_REQUEST(&queue->rx, req_prod);
317                 gnttab_page_grant_foreign_access_ref_one(ref,
318                                                          queue->info->xbdev->otherend_id,
319                                                          page,
320                                                          0);
321                 req->id = id;
322                 req->gref = ref;
323         }
324
325         queue->rx.req_prod_pvt = req_prod;
326
327         /* Try again later if there are not enough requests or skb allocation
328          * failed.
329          * Enough requests is quantified as the sum of newly created slots and
330          * the unconsumed slots at the backend.
331          */
332         if (req_prod - queue->rx.rsp_cons < NET_RX_SLOTS_MIN ||
333             unlikely(err)) {
334                 mod_timer(&queue->rx_refill_timer, jiffies + (HZ/10));
335                 return;
336         }
337
338         wmb();          /* barrier so backend seens requests */
339
340         RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&queue->rx, notify);
341         if (notify)
342                 notify_remote_via_irq(queue->rx_irq);
343 }
344
345 static int xennet_open(struct net_device *dev)
346 {
347         struct netfront_info *np = netdev_priv(dev);
348         unsigned int num_queues = dev->real_num_tx_queues;
349         unsigned int i = 0;
350         struct netfront_queue *queue = NULL;
351
352         for (i = 0; i < num_queues; ++i) {
353                 queue = &np->queues[i];
354                 napi_enable(&queue->napi);
355
356                 spin_lock_bh(&queue->rx_lock);
357                 if (netif_carrier_ok(dev)) {
358                         xennet_alloc_rx_buffers(queue);
359                         queue->rx.sring->rsp_event = queue->rx.rsp_cons + 1;
360                         if (RING_HAS_UNCONSUMED_RESPONSES(&queue->rx))
361                                 napi_schedule(&queue->napi);
362                 }
363                 spin_unlock_bh(&queue->rx_lock);
364         }
365
366         netif_tx_start_all_queues(dev);
367
368         return 0;
369 }
370
371 static void xennet_tx_buf_gc(struct netfront_queue *queue)
372 {
373         RING_IDX cons, prod;
374         unsigned short id;
375         struct sk_buff *skb;
376         bool more_to_do;
377
378         BUG_ON(!netif_carrier_ok(queue->info->netdev));
379
380         do {
381                 prod = queue->tx.sring->rsp_prod;
382                 rmb(); /* Ensure we see responses up to 'rp'. */
383
384                 for (cons = queue->tx.rsp_cons; cons != prod; cons++) {
385                         struct xen_netif_tx_response *txrsp;
386
387                         txrsp = RING_GET_RESPONSE(&queue->tx, cons);
388                         if (txrsp->status == XEN_NETIF_RSP_NULL)
389                                 continue;
390
391                         id  = txrsp->id;
392                         skb = queue->tx_skbs[id].skb;
393                         if (unlikely(gnttab_query_foreign_access(
394                                 queue->grant_tx_ref[id]) != 0)) {
395                                 pr_alert("%s: warning -- grant still in use by backend domain\n",
396                                          __func__);
397                                 BUG();
398                         }
399                         gnttab_end_foreign_access_ref(
400                                 queue->grant_tx_ref[id], GNTMAP_readonly);
401                         gnttab_release_grant_reference(
402                                 &queue->gref_tx_head, queue->grant_tx_ref[id]);
403                         queue->grant_tx_ref[id] = GRANT_INVALID_REF;
404                         queue->grant_tx_page[id] = NULL;
405                         add_id_to_freelist(&queue->tx_skb_freelist, queue->tx_skbs, id);
406                         dev_kfree_skb_irq(skb);
407                 }
408
409                 queue->tx.rsp_cons = prod;
410
411                 RING_FINAL_CHECK_FOR_RESPONSES(&queue->tx, more_to_do);
412         } while (more_to_do);
413
414         xennet_maybe_wake_tx(queue);
415 }
416
417 struct xennet_gnttab_make_txreq {
418         struct netfront_queue *queue;
419         struct sk_buff *skb;
420         struct page *page;
421         struct xen_netif_tx_request *tx; /* Last request */
422         unsigned int size;
423 };
424
425 static void xennet_tx_setup_grant(unsigned long gfn, unsigned int offset,
426                                   unsigned int len, void *data)
427 {
428         struct xennet_gnttab_make_txreq *info = data;
429         unsigned int id;
430         struct xen_netif_tx_request *tx;
431         grant_ref_t ref;
432         /* convenient aliases */
433         struct page *page = info->page;
434         struct netfront_queue *queue = info->queue;
435         struct sk_buff *skb = info->skb;
436
437         id = get_id_from_freelist(&queue->tx_skb_freelist, queue->tx_skbs);
438         tx = RING_GET_REQUEST(&queue->tx, queue->tx.req_prod_pvt++);
439         ref = gnttab_claim_grant_reference(&queue->gref_tx_head);
440         WARN_ON_ONCE(IS_ERR_VALUE((unsigned long)(int)ref));
441
442         gnttab_grant_foreign_access_ref(ref, queue->info->xbdev->otherend_id,
443                                         gfn, GNTMAP_readonly);
444
445         queue->tx_skbs[id].skb = skb;
446         queue->grant_tx_page[id] = page;
447         queue->grant_tx_ref[id] = ref;
448
449         tx->id = id;
450         tx->gref = ref;
451         tx->offset = offset;
452         tx->size = len;
453         tx->flags = 0;
454
455         info->tx = tx;
456         info->size += tx->size;
457 }
458
459 static struct xen_netif_tx_request *xennet_make_first_txreq(
460         struct netfront_queue *queue, struct sk_buff *skb,
461         struct page *page, unsigned int offset, unsigned int len)
462 {
463         struct xennet_gnttab_make_txreq info = {
464                 .queue = queue,
465                 .skb = skb,
466                 .page = page,
467                 .size = 0,
468         };
469
470         gnttab_for_one_grant(page, offset, len, xennet_tx_setup_grant, &info);
471
472         return info.tx;
473 }
474
475 static void xennet_make_one_txreq(unsigned long gfn, unsigned int offset,
476                                   unsigned int len, void *data)
477 {
478         struct xennet_gnttab_make_txreq *info = data;
479
480         info->tx->flags |= XEN_NETTXF_more_data;
481         skb_get(info->skb);
482         xennet_tx_setup_grant(gfn, offset, len, data);
483 }
484
485 static struct xen_netif_tx_request *xennet_make_txreqs(
486         struct netfront_queue *queue, struct xen_netif_tx_request *tx,
487         struct sk_buff *skb, struct page *page,
488         unsigned int offset, unsigned int len)
489 {
490         struct xennet_gnttab_make_txreq info = {
491                 .queue = queue,
492                 .skb = skb,
493                 .tx = tx,
494         };
495
496         /* Skip unused frames from start of page */
497         page += offset >> PAGE_SHIFT;
498         offset &= ~PAGE_MASK;
499
500         while (len) {
501                 info.page = page;
502                 info.size = 0;
503
504                 gnttab_foreach_grant_in_range(page, offset, len,
505                                               xennet_make_one_txreq,
506                                               &info);
507
508                 page++;
509                 offset = 0;
510                 len -= info.size;
511         }
512
513         return info.tx;
514 }
515
516 /*
517  * Count how many ring slots are required to send this skb. Each frag
518  * might be a compound page.
519  */
520 static int xennet_count_skb_slots(struct sk_buff *skb)
521 {
522         int i, frags = skb_shinfo(skb)->nr_frags;
523         int slots;
524
525         slots = gnttab_count_grant(offset_in_page(skb->data),
526                                    skb_headlen(skb));
527
528         for (i = 0; i < frags; i++) {
529                 skb_frag_t *frag = skb_shinfo(skb)->frags + i;
530                 unsigned long size = skb_frag_size(frag);
531                 unsigned long offset = frag->page_offset;
532
533                 /* Skip unused frames from start of page */
534                 offset &= ~PAGE_MASK;
535
536                 slots += gnttab_count_grant(offset, size);
537         }
538
539         return slots;
540 }
541
542 static u16 xennet_select_queue(struct net_device *dev, struct sk_buff *skb,
543                                void *accel_priv, select_queue_fallback_t fallback)
544 {
545         unsigned int num_queues = dev->real_num_tx_queues;
546         u32 hash;
547         u16 queue_idx;
548
549         /* First, check if there is only one queue */
550         if (num_queues == 1) {
551                 queue_idx = 0;
552         } else {
553                 hash = skb_get_hash(skb);
554                 queue_idx = hash % num_queues;
555         }
556
557         return queue_idx;
558 }
559
560 #define MAX_XEN_SKB_FRAGS (65536 / XEN_PAGE_SIZE + 1)
561
562 static int xennet_start_xmit(struct sk_buff *skb, struct net_device *dev)
563 {
564         struct netfront_info *np = netdev_priv(dev);
565         struct netfront_stats *tx_stats = this_cpu_ptr(np->tx_stats);
566         struct xen_netif_tx_request *tx, *first_tx;
567         unsigned int i;
568         int notify;
569         int slots;
570         struct page *page;
571         unsigned int offset;
572         unsigned int len;
573         unsigned long flags;
574         struct netfront_queue *queue = NULL;
575         unsigned int num_queues = dev->real_num_tx_queues;
576         u16 queue_index;
577         struct sk_buff *nskb;
578
579         /* Drop the packet if no queues are set up */
580         if (num_queues < 1)
581                 goto drop;
582         /* Determine which queue to transmit this SKB on */
583         queue_index = skb_get_queue_mapping(skb);
584         queue = &np->queues[queue_index];
585
586         /* If skb->len is too big for wire format, drop skb and alert
587          * user about misconfiguration.
588          */
589         if (unlikely(skb->len > XEN_NETIF_MAX_TX_SIZE)) {
590                 net_alert_ratelimited(
591                         "xennet: skb->len = %u, too big for wire format\n",
592                         skb->len);
593                 goto drop;
594         }
595
596         slots = xennet_count_skb_slots(skb);
597         if (unlikely(slots > MAX_XEN_SKB_FRAGS + 1)) {
598                 net_dbg_ratelimited("xennet: skb rides the rocket: %d slots, %d bytes\n",
599                                     slots, skb->len);
600                 if (skb_linearize(skb))
601                         goto drop;
602         }
603
604         page = virt_to_page(skb->data);
605         offset = offset_in_page(skb->data);
606
607         /* The first req should be at least ETH_HLEN size or the packet will be
608          * dropped by netback.
609          */
610         if (unlikely(PAGE_SIZE - offset < ETH_HLEN)) {
611                 nskb = skb_copy(skb, GFP_ATOMIC);
612                 if (!nskb)
613                         goto drop;
614                 dev_consume_skb_any(skb);
615                 skb = nskb;
616                 page = virt_to_page(skb->data);
617                 offset = offset_in_page(skb->data);
618         }
619
620         len = skb_headlen(skb);
621
622         spin_lock_irqsave(&queue->tx_lock, flags);
623
624         if (unlikely(!netif_carrier_ok(dev) ||
625                      (slots > 1 && !xennet_can_sg(dev)) ||
626                      netif_needs_gso(skb, netif_skb_features(skb)))) {
627                 spin_unlock_irqrestore(&queue->tx_lock, flags);
628                 goto drop;
629         }
630
631         /* First request for the linear area. */
632         first_tx = tx = xennet_make_first_txreq(queue, skb,
633                                                 page, offset, len);
634         offset += tx->size;
635         if (offset == PAGE_SIZE) {
636                 page++;
637                 offset = 0;
638         }
639         len -= tx->size;
640
641         if (skb->ip_summed == CHECKSUM_PARTIAL)
642                 /* local packet? */
643                 tx->flags |= XEN_NETTXF_csum_blank | XEN_NETTXF_data_validated;
644         else if (skb->ip_summed == CHECKSUM_UNNECESSARY)
645                 /* remote but checksummed. */
646                 tx->flags |= XEN_NETTXF_data_validated;
647
648         /* Optional extra info after the first request. */
649         if (skb_shinfo(skb)->gso_size) {
650                 struct xen_netif_extra_info *gso;
651
652                 gso = (struct xen_netif_extra_info *)
653                         RING_GET_REQUEST(&queue->tx, queue->tx.req_prod_pvt++);
654
655                 tx->flags |= XEN_NETTXF_extra_info;
656
657                 gso->u.gso.size = skb_shinfo(skb)->gso_size;
658                 gso->u.gso.type = (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6) ?
659                         XEN_NETIF_GSO_TYPE_TCPV6 :
660                         XEN_NETIF_GSO_TYPE_TCPV4;
661                 gso->u.gso.pad = 0;
662                 gso->u.gso.features = 0;
663
664                 gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
665                 gso->flags = 0;
666         }
667
668         /* Requests for the rest of the linear area. */
669         tx = xennet_make_txreqs(queue, tx, skb, page, offset, len);
670
671         /* Requests for all the frags. */
672         for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
673                 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
674                 tx = xennet_make_txreqs(queue, tx, skb,
675                                         skb_frag_page(frag), frag->page_offset,
676                                         skb_frag_size(frag));
677         }
678
679         /* First request has the packet length. */
680         first_tx->size = skb->len;
681
682         RING_PUSH_REQUESTS_AND_CHECK_NOTIFY(&queue->tx, notify);
683         if (notify)
684                 notify_remote_via_irq(queue->tx_irq);
685
686         u64_stats_update_begin(&tx_stats->syncp);
687         tx_stats->bytes += skb->len;
688         tx_stats->packets++;
689         u64_stats_update_end(&tx_stats->syncp);
690
691         /* Note: It is not safe to access skb after xennet_tx_buf_gc()! */
692         xennet_tx_buf_gc(queue);
693
694         if (!netfront_tx_slot_available(queue))
695                 netif_tx_stop_queue(netdev_get_tx_queue(dev, queue->id));
696
697         spin_unlock_irqrestore(&queue->tx_lock, flags);
698
699         return NETDEV_TX_OK;
700
701  drop:
702         dev->stats.tx_dropped++;
703         dev_kfree_skb_any(skb);
704         return NETDEV_TX_OK;
705 }
706
707 static int xennet_close(struct net_device *dev)
708 {
709         struct netfront_info *np = netdev_priv(dev);
710         unsigned int num_queues = dev->real_num_tx_queues;
711         unsigned int i;
712         struct netfront_queue *queue;
713         netif_tx_stop_all_queues(np->netdev);
714         for (i = 0; i < num_queues; ++i) {
715                 queue = &np->queues[i];
716                 napi_disable(&queue->napi);
717         }
718         return 0;
719 }
720
721 static void xennet_move_rx_slot(struct netfront_queue *queue, struct sk_buff *skb,
722                                 grant_ref_t ref)
723 {
724         int new = xennet_rxidx(queue->rx.req_prod_pvt);
725
726         BUG_ON(queue->rx_skbs[new]);
727         queue->rx_skbs[new] = skb;
728         queue->grant_rx_ref[new] = ref;
729         RING_GET_REQUEST(&queue->rx, queue->rx.req_prod_pvt)->id = new;
730         RING_GET_REQUEST(&queue->rx, queue->rx.req_prod_pvt)->gref = ref;
731         queue->rx.req_prod_pvt++;
732 }
733
734 static int xennet_get_extras(struct netfront_queue *queue,
735                              struct xen_netif_extra_info *extras,
736                              RING_IDX rp)
737
738 {
739         struct xen_netif_extra_info *extra;
740         struct device *dev = &queue->info->netdev->dev;
741         RING_IDX cons = queue->rx.rsp_cons;
742         int err = 0;
743
744         do {
745                 struct sk_buff *skb;
746                 grant_ref_t ref;
747
748                 if (unlikely(cons + 1 == rp)) {
749                         if (net_ratelimit())
750                                 dev_warn(dev, "Missing extra info\n");
751                         err = -EBADR;
752                         break;
753                 }
754
755                 extra = (struct xen_netif_extra_info *)
756                         RING_GET_RESPONSE(&queue->rx, ++cons);
757
758                 if (unlikely(!extra->type ||
759                              extra->type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
760                         if (net_ratelimit())
761                                 dev_warn(dev, "Invalid extra type: %d\n",
762                                         extra->type);
763                         err = -EINVAL;
764                 } else {
765                         memcpy(&extras[extra->type - 1], extra,
766                                sizeof(*extra));
767                 }
768
769                 skb = xennet_get_rx_skb(queue, cons);
770                 ref = xennet_get_rx_ref(queue, cons);
771                 xennet_move_rx_slot(queue, skb, ref);
772         } while (extra->flags & XEN_NETIF_EXTRA_FLAG_MORE);
773
774         queue->rx.rsp_cons = cons;
775         return err;
776 }
777
778 static int xennet_get_responses(struct netfront_queue *queue,
779                                 struct netfront_rx_info *rinfo, RING_IDX rp,
780                                 struct sk_buff_head *list)
781 {
782         struct xen_netif_rx_response *rx = &rinfo->rx;
783         struct xen_netif_extra_info *extras = rinfo->extras;
784         struct device *dev = &queue->info->netdev->dev;
785         RING_IDX cons = queue->rx.rsp_cons;
786         struct sk_buff *skb = xennet_get_rx_skb(queue, cons);
787         grant_ref_t ref = xennet_get_rx_ref(queue, cons);
788         int max = MAX_SKB_FRAGS + (rx->status <= RX_COPY_THRESHOLD);
789         int slots = 1;
790         int err = 0;
791         unsigned long ret;
792
793         if (rx->flags & XEN_NETRXF_extra_info) {
794                 err = xennet_get_extras(queue, extras, rp);
795                 cons = queue->rx.rsp_cons;
796         }
797
798         for (;;) {
799                 if (unlikely(rx->status < 0 ||
800                              rx->offset + rx->status > XEN_PAGE_SIZE)) {
801                         if (net_ratelimit())
802                                 dev_warn(dev, "rx->offset: %u, size: %d\n",
803                                          rx->offset, rx->status);
804                         xennet_move_rx_slot(queue, skb, ref);
805                         err = -EINVAL;
806                         goto next;
807                 }
808
809                 /*
810                  * This definitely indicates a bug, either in this driver or in
811                  * the backend driver. In future this should flag the bad
812                  * situation to the system controller to reboot the backend.
813                  */
814                 if (ref == GRANT_INVALID_REF) {
815                         if (net_ratelimit())
816                                 dev_warn(dev, "Bad rx response id %d.\n",
817                                          rx->id);
818                         err = -EINVAL;
819                         goto next;
820                 }
821
822                 ret = gnttab_end_foreign_access_ref(ref, 0);
823                 BUG_ON(!ret);
824
825                 gnttab_release_grant_reference(&queue->gref_rx_head, ref);
826
827                 __skb_queue_tail(list, skb);
828
829 next:
830                 if (!(rx->flags & XEN_NETRXF_more_data))
831                         break;
832
833                 if (cons + slots == rp) {
834                         if (net_ratelimit())
835                                 dev_warn(dev, "Need more slots\n");
836                         err = -ENOENT;
837                         break;
838                 }
839
840                 rx = RING_GET_RESPONSE(&queue->rx, cons + slots);
841                 skb = xennet_get_rx_skb(queue, cons + slots);
842                 ref = xennet_get_rx_ref(queue, cons + slots);
843                 slots++;
844         }
845
846         if (unlikely(slots > max)) {
847                 if (net_ratelimit())
848                         dev_warn(dev, "Too many slots\n");
849                 err = -E2BIG;
850         }
851
852         if (unlikely(err))
853                 queue->rx.rsp_cons = cons + slots;
854
855         return err;
856 }
857
858 static int xennet_set_skb_gso(struct sk_buff *skb,
859                               struct xen_netif_extra_info *gso)
860 {
861         if (!gso->u.gso.size) {
862                 if (net_ratelimit())
863                         pr_warn("GSO size must not be zero\n");
864                 return -EINVAL;
865         }
866
867         if (gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV4 &&
868             gso->u.gso.type != XEN_NETIF_GSO_TYPE_TCPV6) {
869                 if (net_ratelimit())
870                         pr_warn("Bad GSO type %d\n", gso->u.gso.type);
871                 return -EINVAL;
872         }
873
874         skb_shinfo(skb)->gso_size = gso->u.gso.size;
875         skb_shinfo(skb)->gso_type =
876                 (gso->u.gso.type == XEN_NETIF_GSO_TYPE_TCPV4) ?
877                 SKB_GSO_TCPV4 :
878                 SKB_GSO_TCPV6;
879
880         /* Header must be checked, and gso_segs computed. */
881         skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
882         skb_shinfo(skb)->gso_segs = 0;
883
884         return 0;
885 }
886
887 static RING_IDX xennet_fill_frags(struct netfront_queue *queue,
888                                   struct sk_buff *skb,
889                                   struct sk_buff_head *list)
890 {
891         struct skb_shared_info *shinfo = skb_shinfo(skb);
892         RING_IDX cons = queue->rx.rsp_cons;
893         struct sk_buff *nskb;
894
895         while ((nskb = __skb_dequeue(list))) {
896                 struct xen_netif_rx_response *rx =
897                         RING_GET_RESPONSE(&queue->rx, ++cons);
898                 skb_frag_t *nfrag = &skb_shinfo(nskb)->frags[0];
899
900                 if (shinfo->nr_frags == MAX_SKB_FRAGS) {
901                         unsigned int pull_to = NETFRONT_SKB_CB(skb)->pull_to;
902
903                         BUG_ON(pull_to <= skb_headlen(skb));
904                         __pskb_pull_tail(skb, pull_to - skb_headlen(skb));
905                 }
906                 BUG_ON(shinfo->nr_frags >= MAX_SKB_FRAGS);
907
908                 skb_add_rx_frag(skb, shinfo->nr_frags, skb_frag_page(nfrag),
909                                 rx->offset, rx->status, PAGE_SIZE);
910
911                 skb_shinfo(nskb)->nr_frags = 0;
912                 kfree_skb(nskb);
913         }
914
915         return cons;
916 }
917
918 static int checksum_setup(struct net_device *dev, struct sk_buff *skb)
919 {
920         bool recalculate_partial_csum = false;
921
922         /*
923          * A GSO SKB must be CHECKSUM_PARTIAL. However some buggy
924          * peers can fail to set NETRXF_csum_blank when sending a GSO
925          * frame. In this case force the SKB to CHECKSUM_PARTIAL and
926          * recalculate the partial checksum.
927          */
928         if (skb->ip_summed != CHECKSUM_PARTIAL && skb_is_gso(skb)) {
929                 struct netfront_info *np = netdev_priv(dev);
930                 atomic_inc(&np->rx_gso_checksum_fixup);
931                 skb->ip_summed = CHECKSUM_PARTIAL;
932                 recalculate_partial_csum = true;
933         }
934
935         /* A non-CHECKSUM_PARTIAL SKB does not require setup. */
936         if (skb->ip_summed != CHECKSUM_PARTIAL)
937                 return 0;
938
939         return skb_checksum_setup(skb, recalculate_partial_csum);
940 }
941
942 static int handle_incoming_queue(struct netfront_queue *queue,
943                                  struct sk_buff_head *rxq)
944 {
945         struct netfront_stats *rx_stats = this_cpu_ptr(queue->info->rx_stats);
946         int packets_dropped = 0;
947         struct sk_buff *skb;
948
949         while ((skb = __skb_dequeue(rxq)) != NULL) {
950                 int pull_to = NETFRONT_SKB_CB(skb)->pull_to;
951
952                 if (pull_to > skb_headlen(skb))
953                         __pskb_pull_tail(skb, pull_to - skb_headlen(skb));
954
955                 /* Ethernet work: Delayed to here as it peeks the header. */
956                 skb->protocol = eth_type_trans(skb, queue->info->netdev);
957                 skb_reset_network_header(skb);
958
959                 if (checksum_setup(queue->info->netdev, skb)) {
960                         kfree_skb(skb);
961                         packets_dropped++;
962                         queue->info->netdev->stats.rx_errors++;
963                         continue;
964                 }
965
966                 u64_stats_update_begin(&rx_stats->syncp);
967                 rx_stats->packets++;
968                 rx_stats->bytes += skb->len;
969                 u64_stats_update_end(&rx_stats->syncp);
970
971                 /* Pass it up. */
972                 napi_gro_receive(&queue->napi, skb);
973         }
974
975         return packets_dropped;
976 }
977
978 static int xennet_poll(struct napi_struct *napi, int budget)
979 {
980         struct netfront_queue *queue = container_of(napi, struct netfront_queue, napi);
981         struct net_device *dev = queue->info->netdev;
982         struct sk_buff *skb;
983         struct netfront_rx_info rinfo;
984         struct xen_netif_rx_response *rx = &rinfo.rx;
985         struct xen_netif_extra_info *extras = rinfo.extras;
986         RING_IDX i, rp;
987         int work_done;
988         struct sk_buff_head rxq;
989         struct sk_buff_head errq;
990         struct sk_buff_head tmpq;
991         int err;
992
993         spin_lock(&queue->rx_lock);
994
995         skb_queue_head_init(&rxq);
996         skb_queue_head_init(&errq);
997         skb_queue_head_init(&tmpq);
998
999         rp = queue->rx.sring->rsp_prod;
1000         rmb(); /* Ensure we see queued responses up to 'rp'. */
1001
1002         i = queue->rx.rsp_cons;
1003         work_done = 0;
1004         while ((i != rp) && (work_done < budget)) {
1005                 memcpy(rx, RING_GET_RESPONSE(&queue->rx, i), sizeof(*rx));
1006                 memset(extras, 0, sizeof(rinfo.extras));
1007
1008                 err = xennet_get_responses(queue, &rinfo, rp, &tmpq);
1009
1010                 if (unlikely(err)) {
1011 err:
1012                         while ((skb = __skb_dequeue(&tmpq)))
1013                                 __skb_queue_tail(&errq, skb);
1014                         dev->stats.rx_errors++;
1015                         i = queue->rx.rsp_cons;
1016                         continue;
1017                 }
1018
1019                 skb = __skb_dequeue(&tmpq);
1020
1021                 if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
1022                         struct xen_netif_extra_info *gso;
1023                         gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
1024
1025                         if (unlikely(xennet_set_skb_gso(skb, gso))) {
1026                                 __skb_queue_head(&tmpq, skb);
1027                                 queue->rx.rsp_cons += skb_queue_len(&tmpq);
1028                                 goto err;
1029                         }
1030                 }
1031
1032                 NETFRONT_SKB_CB(skb)->pull_to = rx->status;
1033                 if (NETFRONT_SKB_CB(skb)->pull_to > RX_COPY_THRESHOLD)
1034                         NETFRONT_SKB_CB(skb)->pull_to = RX_COPY_THRESHOLD;
1035
1036                 skb_shinfo(skb)->frags[0].page_offset = rx->offset;
1037                 skb_frag_size_set(&skb_shinfo(skb)->frags[0], rx->status);
1038                 skb->data_len = rx->status;
1039                 skb->len += rx->status;
1040
1041                 i = xennet_fill_frags(queue, skb, &tmpq);
1042
1043                 if (rx->flags & XEN_NETRXF_csum_blank)
1044                         skb->ip_summed = CHECKSUM_PARTIAL;
1045                 else if (rx->flags & XEN_NETRXF_data_validated)
1046                         skb->ip_summed = CHECKSUM_UNNECESSARY;
1047
1048                 __skb_queue_tail(&rxq, skb);
1049
1050                 queue->rx.rsp_cons = ++i;
1051                 work_done++;
1052         }
1053
1054         __skb_queue_purge(&errq);
1055
1056         work_done -= handle_incoming_queue(queue, &rxq);
1057
1058         xennet_alloc_rx_buffers(queue);
1059
1060         if (work_done < budget) {
1061                 int more_to_do = 0;
1062
1063                 napi_complete_done(napi, work_done);
1064
1065                 RING_FINAL_CHECK_FOR_RESPONSES(&queue->rx, more_to_do);
1066                 if (more_to_do)
1067                         napi_schedule(napi);
1068         }
1069
1070         spin_unlock(&queue->rx_lock);
1071
1072         return work_done;
1073 }
1074
1075 static int xennet_change_mtu(struct net_device *dev, int mtu)
1076 {
1077         int max = xennet_can_sg(dev) ? XEN_NETIF_MAX_TX_SIZE : ETH_DATA_LEN;
1078
1079         if (mtu > max)
1080                 return -EINVAL;
1081         dev->mtu = mtu;
1082         return 0;
1083 }
1084
1085 static void xennet_get_stats64(struct net_device *dev,
1086                                struct rtnl_link_stats64 *tot)
1087 {
1088         struct netfront_info *np = netdev_priv(dev);
1089         int cpu;
1090
1091         for_each_possible_cpu(cpu) {
1092                 struct netfront_stats *rx_stats = per_cpu_ptr(np->rx_stats, cpu);
1093                 struct netfront_stats *tx_stats = per_cpu_ptr(np->tx_stats, cpu);
1094                 u64 rx_packets, rx_bytes, tx_packets, tx_bytes;
1095                 unsigned int start;
1096
1097                 do {
1098                         start = u64_stats_fetch_begin_irq(&tx_stats->syncp);
1099                         tx_packets = tx_stats->packets;
1100                         tx_bytes = tx_stats->bytes;
1101                 } while (u64_stats_fetch_retry_irq(&tx_stats->syncp, start));
1102
1103                 do {
1104                         start = u64_stats_fetch_begin_irq(&rx_stats->syncp);
1105                         rx_packets = rx_stats->packets;
1106                         rx_bytes = rx_stats->bytes;
1107                 } while (u64_stats_fetch_retry_irq(&rx_stats->syncp, start));
1108
1109                 tot->rx_packets += rx_packets;
1110                 tot->tx_packets += tx_packets;
1111                 tot->rx_bytes   += rx_bytes;
1112                 tot->tx_bytes   += tx_bytes;
1113         }
1114
1115         tot->rx_errors  = dev->stats.rx_errors;
1116         tot->tx_dropped = dev->stats.tx_dropped;
1117 }
1118
1119 static void xennet_release_tx_bufs(struct netfront_queue *queue)
1120 {
1121         struct sk_buff *skb;
1122         int i;
1123
1124         for (i = 0; i < NET_TX_RING_SIZE; i++) {
1125                 /* Skip over entries which are actually freelist references */
1126                 if (skb_entry_is_link(&queue->tx_skbs[i]))
1127                         continue;
1128
1129                 skb = queue->tx_skbs[i].skb;
1130                 get_page(queue->grant_tx_page[i]);
1131                 gnttab_end_foreign_access(queue->grant_tx_ref[i],
1132                                           GNTMAP_readonly,
1133                                           (unsigned long)page_address(queue->grant_tx_page[i]));
1134                 queue->grant_tx_page[i] = NULL;
1135                 queue->grant_tx_ref[i] = GRANT_INVALID_REF;
1136                 add_id_to_freelist(&queue->tx_skb_freelist, queue->tx_skbs, i);
1137                 dev_kfree_skb_irq(skb);
1138         }
1139 }
1140
1141 static void xennet_release_rx_bufs(struct netfront_queue *queue)
1142 {
1143         int id, ref;
1144
1145         spin_lock_bh(&queue->rx_lock);
1146
1147         for (id = 0; id < NET_RX_RING_SIZE; id++) {
1148                 struct sk_buff *skb;
1149                 struct page *page;
1150
1151                 skb = queue->rx_skbs[id];
1152                 if (!skb)
1153                         continue;
1154
1155                 ref = queue->grant_rx_ref[id];
1156                 if (ref == GRANT_INVALID_REF)
1157                         continue;
1158
1159                 page = skb_frag_page(&skb_shinfo(skb)->frags[0]);
1160
1161                 /* gnttab_end_foreign_access() needs a page ref until
1162                  * foreign access is ended (which may be deferred).
1163                  */
1164                 get_page(page);
1165                 gnttab_end_foreign_access(ref, 0,
1166                                           (unsigned long)page_address(page));
1167                 queue->grant_rx_ref[id] = GRANT_INVALID_REF;
1168
1169                 kfree_skb(skb);
1170         }
1171
1172         spin_unlock_bh(&queue->rx_lock);
1173 }
1174
1175 static netdev_features_t xennet_fix_features(struct net_device *dev,
1176         netdev_features_t features)
1177 {
1178         struct netfront_info *np = netdev_priv(dev);
1179
1180         if (features & NETIF_F_SG &&
1181             !xenbus_read_unsigned(np->xbdev->otherend, "feature-sg", 0))
1182                 features &= ~NETIF_F_SG;
1183
1184         if (features & NETIF_F_IPV6_CSUM &&
1185             !xenbus_read_unsigned(np->xbdev->otherend,
1186                                   "feature-ipv6-csum-offload", 0))
1187                 features &= ~NETIF_F_IPV6_CSUM;
1188
1189         if (features & NETIF_F_TSO &&
1190             !xenbus_read_unsigned(np->xbdev->otherend, "feature-gso-tcpv4", 0))
1191                 features &= ~NETIF_F_TSO;
1192
1193         if (features & NETIF_F_TSO6 &&
1194             !xenbus_read_unsigned(np->xbdev->otherend, "feature-gso-tcpv6", 0))
1195                 features &= ~NETIF_F_TSO6;
1196
1197         return features;
1198 }
1199
1200 static int xennet_set_features(struct net_device *dev,
1201         netdev_features_t features)
1202 {
1203         if (!(features & NETIF_F_SG) && dev->mtu > ETH_DATA_LEN) {
1204                 netdev_info(dev, "Reducing MTU because no SG offload");
1205                 dev->mtu = ETH_DATA_LEN;
1206         }
1207
1208         return 0;
1209 }
1210
1211 static irqreturn_t xennet_tx_interrupt(int irq, void *dev_id)
1212 {
1213         struct netfront_queue *queue = dev_id;
1214         unsigned long flags;
1215
1216         spin_lock_irqsave(&queue->tx_lock, flags);
1217         xennet_tx_buf_gc(queue);
1218         spin_unlock_irqrestore(&queue->tx_lock, flags);
1219
1220         return IRQ_HANDLED;
1221 }
1222
1223 static irqreturn_t xennet_rx_interrupt(int irq, void *dev_id)
1224 {
1225         struct netfront_queue *queue = dev_id;
1226         struct net_device *dev = queue->info->netdev;
1227
1228         if (likely(netif_carrier_ok(dev) &&
1229                    RING_HAS_UNCONSUMED_RESPONSES(&queue->rx)))
1230                 napi_schedule(&queue->napi);
1231
1232         return IRQ_HANDLED;
1233 }
1234
1235 static irqreturn_t xennet_interrupt(int irq, void *dev_id)
1236 {
1237         xennet_tx_interrupt(irq, dev_id);
1238         xennet_rx_interrupt(irq, dev_id);
1239         return IRQ_HANDLED;
1240 }
1241
1242 #ifdef CONFIG_NET_POLL_CONTROLLER
1243 static void xennet_poll_controller(struct net_device *dev)
1244 {
1245         /* Poll each queue */
1246         struct netfront_info *info = netdev_priv(dev);
1247         unsigned int num_queues = dev->real_num_tx_queues;
1248         unsigned int i;
1249         for (i = 0; i < num_queues; ++i)
1250                 xennet_interrupt(0, &info->queues[i]);
1251 }
1252 #endif
1253
1254 static const struct net_device_ops xennet_netdev_ops = {
1255         .ndo_open            = xennet_open,
1256         .ndo_stop            = xennet_close,
1257         .ndo_start_xmit      = xennet_start_xmit,
1258         .ndo_change_mtu      = xennet_change_mtu,
1259         .ndo_get_stats64     = xennet_get_stats64,
1260         .ndo_set_mac_address = eth_mac_addr,
1261         .ndo_validate_addr   = eth_validate_addr,
1262         .ndo_fix_features    = xennet_fix_features,
1263         .ndo_set_features    = xennet_set_features,
1264         .ndo_select_queue    = xennet_select_queue,
1265 #ifdef CONFIG_NET_POLL_CONTROLLER
1266         .ndo_poll_controller = xennet_poll_controller,
1267 #endif
1268 };
1269
1270 static void xennet_free_netdev(struct net_device *netdev)
1271 {
1272         struct netfront_info *np = netdev_priv(netdev);
1273
1274         free_percpu(np->rx_stats);
1275         free_percpu(np->tx_stats);
1276         free_netdev(netdev);
1277 }
1278
1279 static struct net_device *xennet_create_dev(struct xenbus_device *dev)
1280 {
1281         int err;
1282         struct net_device *netdev;
1283         struct netfront_info *np;
1284
1285         netdev = alloc_etherdev_mq(sizeof(struct netfront_info), xennet_max_queues);
1286         if (!netdev)
1287                 return ERR_PTR(-ENOMEM);
1288
1289         np                   = netdev_priv(netdev);
1290         np->xbdev            = dev;
1291
1292         np->queues = NULL;
1293
1294         err = -ENOMEM;
1295         np->rx_stats = netdev_alloc_pcpu_stats(struct netfront_stats);
1296         if (np->rx_stats == NULL)
1297                 goto exit;
1298         np->tx_stats = netdev_alloc_pcpu_stats(struct netfront_stats);
1299         if (np->tx_stats == NULL)
1300                 goto exit;
1301
1302         netdev->netdev_ops      = &xennet_netdev_ops;
1303
1304         netdev->features        = NETIF_F_IP_CSUM | NETIF_F_RXCSUM |
1305                                   NETIF_F_GSO_ROBUST;
1306         netdev->hw_features     = NETIF_F_SG |
1307                                   NETIF_F_IPV6_CSUM |
1308                                   NETIF_F_TSO | NETIF_F_TSO6;
1309
1310         /*
1311          * Assume that all hw features are available for now. This set
1312          * will be adjusted by the call to netdev_update_features() in
1313          * xennet_connect() which is the earliest point where we can
1314          * negotiate with the backend regarding supported features.
1315          */
1316         netdev->features |= netdev->hw_features;
1317
1318         netdev->ethtool_ops = &xennet_ethtool_ops;
1319         netdev->min_mtu = ETH_MIN_MTU;
1320         netdev->max_mtu = XEN_NETIF_MAX_TX_SIZE;
1321         SET_NETDEV_DEV(netdev, &dev->dev);
1322
1323         np->netdev = netdev;
1324
1325         netif_carrier_off(netdev);
1326
1327         return netdev;
1328
1329  exit:
1330         xennet_free_netdev(netdev);
1331         return ERR_PTR(err);
1332 }
1333
1334 /**
1335  * Entry point to this code when a new device is created.  Allocate the basic
1336  * structures and the ring buffers for communication with the backend, and
1337  * inform the backend of the appropriate details for those.
1338  */
1339 static int netfront_probe(struct xenbus_device *dev,
1340                           const struct xenbus_device_id *id)
1341 {
1342         int err;
1343         struct net_device *netdev;
1344         struct netfront_info *info;
1345
1346         netdev = xennet_create_dev(dev);
1347         if (IS_ERR(netdev)) {
1348                 err = PTR_ERR(netdev);
1349                 xenbus_dev_fatal(dev, err, "creating netdev");
1350                 return err;
1351         }
1352
1353         info = netdev_priv(netdev);
1354         dev_set_drvdata(&dev->dev, info);
1355 #ifdef CONFIG_SYSFS
1356         info->netdev->sysfs_groups[0] = &xennet_dev_group;
1357 #endif
1358         err = register_netdev(info->netdev);
1359         if (err) {
1360                 pr_warn("%s: register_netdev err=%d\n", __func__, err);
1361                 goto fail;
1362         }
1363
1364         return 0;
1365
1366  fail:
1367         xennet_free_netdev(netdev);
1368         dev_set_drvdata(&dev->dev, NULL);
1369         return err;
1370 }
1371
1372 static void xennet_end_access(int ref, void *page)
1373 {
1374         /* This frees the page as a side-effect */
1375         if (ref != GRANT_INVALID_REF)
1376                 gnttab_end_foreign_access(ref, 0, (unsigned long)page);
1377 }
1378
1379 static void xennet_disconnect_backend(struct netfront_info *info)
1380 {
1381         unsigned int i = 0;
1382         unsigned int num_queues = info->netdev->real_num_tx_queues;
1383
1384         netif_carrier_off(info->netdev);
1385
1386         for (i = 0; i < num_queues && info->queues; ++i) {
1387                 struct netfront_queue *queue = &info->queues[i];
1388
1389                 del_timer_sync(&queue->rx_refill_timer);
1390
1391                 if (queue->tx_irq && (queue->tx_irq == queue->rx_irq))
1392                         unbind_from_irqhandler(queue->tx_irq, queue);
1393                 if (queue->tx_irq && (queue->tx_irq != queue->rx_irq)) {
1394                         unbind_from_irqhandler(queue->tx_irq, queue);
1395                         unbind_from_irqhandler(queue->rx_irq, queue);
1396                 }
1397                 queue->tx_evtchn = queue->rx_evtchn = 0;
1398                 queue->tx_irq = queue->rx_irq = 0;
1399
1400                 if (netif_running(info->netdev))
1401                         napi_synchronize(&queue->napi);
1402
1403                 xennet_release_tx_bufs(queue);
1404                 xennet_release_rx_bufs(queue);
1405                 gnttab_free_grant_references(queue->gref_tx_head);
1406                 gnttab_free_grant_references(queue->gref_rx_head);
1407
1408                 /* End access and free the pages */
1409                 xennet_end_access(queue->tx_ring_ref, queue->tx.sring);
1410                 xennet_end_access(queue->rx_ring_ref, queue->rx.sring);
1411
1412                 queue->tx_ring_ref = GRANT_INVALID_REF;
1413                 queue->rx_ring_ref = GRANT_INVALID_REF;
1414                 queue->tx.sring = NULL;
1415                 queue->rx.sring = NULL;
1416         }
1417 }
1418
1419 /**
1420  * We are reconnecting to the backend, due to a suspend/resume, or a backend
1421  * driver restart.  We tear down our netif structure and recreate it, but
1422  * leave the device-layer structures intact so that this is transparent to the
1423  * rest of the kernel.
1424  */
1425 static int netfront_resume(struct xenbus_device *dev)
1426 {
1427         struct netfront_info *info = dev_get_drvdata(&dev->dev);
1428
1429         dev_dbg(&dev->dev, "%s\n", dev->nodename);
1430
1431         xennet_disconnect_backend(info);
1432         return 0;
1433 }
1434
1435 static int xen_net_read_mac(struct xenbus_device *dev, u8 mac[])
1436 {
1437         char *s, *e, *macstr;
1438         int i;
1439
1440         macstr = s = xenbus_read(XBT_NIL, dev->nodename, "mac", NULL);
1441         if (IS_ERR(macstr))
1442                 return PTR_ERR(macstr);
1443
1444         for (i = 0; i < ETH_ALEN; i++) {
1445                 mac[i] = simple_strtoul(s, &e, 16);
1446                 if ((s == e) || (*e != ((i == ETH_ALEN-1) ? '\0' : ':'))) {
1447                         kfree(macstr);
1448                         return -ENOENT;
1449                 }
1450                 s = e+1;
1451         }
1452
1453         kfree(macstr);
1454         return 0;
1455 }
1456
1457 static int setup_netfront_single(struct netfront_queue *queue)
1458 {
1459         int err;
1460
1461         err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn);
1462         if (err < 0)
1463                 goto fail;
1464
1465         err = bind_evtchn_to_irqhandler(queue->tx_evtchn,
1466                                         xennet_interrupt,
1467                                         0, queue->info->netdev->name, queue);
1468         if (err < 0)
1469                 goto bind_fail;
1470         queue->rx_evtchn = queue->tx_evtchn;
1471         queue->rx_irq = queue->tx_irq = err;
1472
1473         return 0;
1474
1475 bind_fail:
1476         xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn);
1477         queue->tx_evtchn = 0;
1478 fail:
1479         return err;
1480 }
1481
1482 static int setup_netfront_split(struct netfront_queue *queue)
1483 {
1484         int err;
1485
1486         err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->tx_evtchn);
1487         if (err < 0)
1488                 goto fail;
1489         err = xenbus_alloc_evtchn(queue->info->xbdev, &queue->rx_evtchn);
1490         if (err < 0)
1491                 goto alloc_rx_evtchn_fail;
1492
1493         snprintf(queue->tx_irq_name, sizeof(queue->tx_irq_name),
1494                  "%s-tx", queue->name);
1495         err = bind_evtchn_to_irqhandler(queue->tx_evtchn,
1496                                         xennet_tx_interrupt,
1497                                         0, queue->tx_irq_name, queue);
1498         if (err < 0)
1499                 goto bind_tx_fail;
1500         queue->tx_irq = err;
1501
1502         snprintf(queue->rx_irq_name, sizeof(queue->rx_irq_name),
1503                  "%s-rx", queue->name);
1504         err = bind_evtchn_to_irqhandler(queue->rx_evtchn,
1505                                         xennet_rx_interrupt,
1506                                         0, queue->rx_irq_name, queue);
1507         if (err < 0)
1508                 goto bind_rx_fail;
1509         queue->rx_irq = err;
1510
1511         return 0;
1512
1513 bind_rx_fail:
1514         unbind_from_irqhandler(queue->tx_irq, queue);
1515         queue->tx_irq = 0;
1516 bind_tx_fail:
1517         xenbus_free_evtchn(queue->info->xbdev, queue->rx_evtchn);
1518         queue->rx_evtchn = 0;
1519 alloc_rx_evtchn_fail:
1520         xenbus_free_evtchn(queue->info->xbdev, queue->tx_evtchn);
1521         queue->tx_evtchn = 0;
1522 fail:
1523         return err;
1524 }
1525
1526 static int setup_netfront(struct xenbus_device *dev,
1527                         struct netfront_queue *queue, unsigned int feature_split_evtchn)
1528 {
1529         struct xen_netif_tx_sring *txs;
1530         struct xen_netif_rx_sring *rxs;
1531         grant_ref_t gref;
1532         int err;
1533
1534         queue->tx_ring_ref = GRANT_INVALID_REF;
1535         queue->rx_ring_ref = GRANT_INVALID_REF;
1536         queue->rx.sring = NULL;
1537         queue->tx.sring = NULL;
1538
1539         txs = (struct xen_netif_tx_sring *)get_zeroed_page(GFP_NOIO | __GFP_HIGH);
1540         if (!txs) {
1541                 err = -ENOMEM;
1542                 xenbus_dev_fatal(dev, err, "allocating tx ring page");
1543                 goto fail;
1544         }
1545         SHARED_RING_INIT(txs);
1546         FRONT_RING_INIT(&queue->tx, txs, XEN_PAGE_SIZE);
1547
1548         err = xenbus_grant_ring(dev, txs, 1, &gref);
1549         if (err < 0)
1550                 goto grant_tx_ring_fail;
1551         queue->tx_ring_ref = gref;
1552
1553         rxs = (struct xen_netif_rx_sring *)get_zeroed_page(GFP_NOIO | __GFP_HIGH);
1554         if (!rxs) {
1555                 err = -ENOMEM;
1556                 xenbus_dev_fatal(dev, err, "allocating rx ring page");
1557                 goto alloc_rx_ring_fail;
1558         }
1559         SHARED_RING_INIT(rxs);
1560         FRONT_RING_INIT(&queue->rx, rxs, XEN_PAGE_SIZE);
1561
1562         err = xenbus_grant_ring(dev, rxs, 1, &gref);
1563         if (err < 0)
1564                 goto grant_rx_ring_fail;
1565         queue->rx_ring_ref = gref;
1566
1567         if (feature_split_evtchn)
1568                 err = setup_netfront_split(queue);
1569         /* setup single event channel if
1570          *  a) feature-split-event-channels == 0
1571          *  b) feature-split-event-channels == 1 but failed to setup
1572          */
1573         if (!feature_split_evtchn || (feature_split_evtchn && err))
1574                 err = setup_netfront_single(queue);
1575
1576         if (err)
1577                 goto alloc_evtchn_fail;
1578
1579         return 0;
1580
1581         /* If we fail to setup netfront, it is safe to just revoke access to
1582          * granted pages because backend is not accessing it at this point.
1583          */
1584 alloc_evtchn_fail:
1585         gnttab_end_foreign_access_ref(queue->rx_ring_ref, 0);
1586 grant_rx_ring_fail:
1587         free_page((unsigned long)rxs);
1588 alloc_rx_ring_fail:
1589         gnttab_end_foreign_access_ref(queue->tx_ring_ref, 0);
1590 grant_tx_ring_fail:
1591         free_page((unsigned long)txs);
1592 fail:
1593         return err;
1594 }
1595
1596 /* Queue-specific initialisation
1597  * This used to be done in xennet_create_dev() but must now
1598  * be run per-queue.
1599  */
1600 static int xennet_init_queue(struct netfront_queue *queue)
1601 {
1602         unsigned short i;
1603         int err = 0;
1604
1605         spin_lock_init(&queue->tx_lock);
1606         spin_lock_init(&queue->rx_lock);
1607
1608         timer_setup(&queue->rx_refill_timer, rx_refill_timeout, 0);
1609
1610         snprintf(queue->name, sizeof(queue->name), "%s-q%u",
1611                  queue->info->netdev->name, queue->id);
1612
1613         /* Initialise tx_skbs as a free chain containing every entry. */
1614         queue->tx_skb_freelist = 0;
1615         for (i = 0; i < NET_TX_RING_SIZE; i++) {
1616                 skb_entry_set_link(&queue->tx_skbs[i], i+1);
1617                 queue->grant_tx_ref[i] = GRANT_INVALID_REF;
1618                 queue->grant_tx_page[i] = NULL;
1619         }
1620
1621         /* Clear out rx_skbs */
1622         for (i = 0; i < NET_RX_RING_SIZE; i++) {
1623                 queue->rx_skbs[i] = NULL;
1624                 queue->grant_rx_ref[i] = GRANT_INVALID_REF;
1625         }
1626
1627         /* A grant for every tx ring slot */
1628         if (gnttab_alloc_grant_references(NET_TX_RING_SIZE,
1629                                           &queue->gref_tx_head) < 0) {
1630                 pr_alert("can't alloc tx grant refs\n");
1631                 err = -ENOMEM;
1632                 goto exit;
1633         }
1634
1635         /* A grant for every rx ring slot */
1636         if (gnttab_alloc_grant_references(NET_RX_RING_SIZE,
1637                                           &queue->gref_rx_head) < 0) {
1638                 pr_alert("can't alloc rx grant refs\n");
1639                 err = -ENOMEM;
1640                 goto exit_free_tx;
1641         }
1642
1643         return 0;
1644
1645  exit_free_tx:
1646         gnttab_free_grant_references(queue->gref_tx_head);
1647  exit:
1648         return err;
1649 }
1650
1651 static int write_queue_xenstore_keys(struct netfront_queue *queue,
1652                            struct xenbus_transaction *xbt, int write_hierarchical)
1653 {
1654         /* Write the queue-specific keys into XenStore in the traditional
1655          * way for a single queue, or in a queue subkeys for multiple
1656          * queues.
1657          */
1658         struct xenbus_device *dev = queue->info->xbdev;
1659         int err;
1660         const char *message;
1661         char *path;
1662         size_t pathsize;
1663
1664         /* Choose the correct place to write the keys */
1665         if (write_hierarchical) {
1666                 pathsize = strlen(dev->nodename) + 10;
1667                 path = kzalloc(pathsize, GFP_KERNEL);
1668                 if (!path) {
1669                         err = -ENOMEM;
1670                         message = "out of memory while writing ring references";
1671                         goto error;
1672                 }
1673                 snprintf(path, pathsize, "%s/queue-%u",
1674                                 dev->nodename, queue->id);
1675         } else {
1676                 path = (char *)dev->nodename;
1677         }
1678
1679         /* Write ring references */
1680         err = xenbus_printf(*xbt, path, "tx-ring-ref", "%u",
1681                         queue->tx_ring_ref);
1682         if (err) {
1683                 message = "writing tx-ring-ref";
1684                 goto error;
1685         }
1686
1687         err = xenbus_printf(*xbt, path, "rx-ring-ref", "%u",
1688                         queue->rx_ring_ref);
1689         if (err) {
1690                 message = "writing rx-ring-ref";
1691                 goto error;
1692         }
1693
1694         /* Write event channels; taking into account both shared
1695          * and split event channel scenarios.
1696          */
1697         if (queue->tx_evtchn == queue->rx_evtchn) {
1698                 /* Shared event channel */
1699                 err = xenbus_printf(*xbt, path,
1700                                 "event-channel", "%u", queue->tx_evtchn);
1701                 if (err) {
1702                         message = "writing event-channel";
1703                         goto error;
1704                 }
1705         } else {
1706                 /* Split event channels */
1707                 err = xenbus_printf(*xbt, path,
1708                                 "event-channel-tx", "%u", queue->tx_evtchn);
1709                 if (err) {
1710                         message = "writing event-channel-tx";
1711                         goto error;
1712                 }
1713
1714                 err = xenbus_printf(*xbt, path,
1715                                 "event-channel-rx", "%u", queue->rx_evtchn);
1716                 if (err) {
1717                         message = "writing event-channel-rx";
1718                         goto error;
1719                 }
1720         }
1721
1722         if (write_hierarchical)
1723                 kfree(path);
1724         return 0;
1725
1726 error:
1727         if (write_hierarchical)
1728                 kfree(path);
1729         xenbus_dev_fatal(dev, err, "%s", message);
1730         return err;
1731 }
1732
1733 static void xennet_destroy_queues(struct netfront_info *info)
1734 {
1735         unsigned int i;
1736
1737         rtnl_lock();
1738
1739         for (i = 0; i < info->netdev->real_num_tx_queues; i++) {
1740                 struct netfront_queue *queue = &info->queues[i];
1741
1742                 if (netif_running(info->netdev))
1743                         napi_disable(&queue->napi);
1744                 netif_napi_del(&queue->napi);
1745         }
1746
1747         rtnl_unlock();
1748
1749         kfree(info->queues);
1750         info->queues = NULL;
1751 }
1752
1753 static int xennet_create_queues(struct netfront_info *info,
1754                                 unsigned int *num_queues)
1755 {
1756         unsigned int i;
1757         int ret;
1758
1759         info->queues = kcalloc(*num_queues, sizeof(struct netfront_queue),
1760                                GFP_KERNEL);
1761         if (!info->queues)
1762                 return -ENOMEM;
1763
1764         rtnl_lock();
1765
1766         for (i = 0; i < *num_queues; i++) {
1767                 struct netfront_queue *queue = &info->queues[i];
1768
1769                 queue->id = i;
1770                 queue->info = info;
1771
1772                 ret = xennet_init_queue(queue);
1773                 if (ret < 0) {
1774                         dev_warn(&info->netdev->dev,
1775                                  "only created %d queues\n", i);
1776                         *num_queues = i;
1777                         break;
1778                 }
1779
1780                 netif_napi_add(queue->info->netdev, &queue->napi,
1781                                xennet_poll, 64);
1782                 if (netif_running(info->netdev))
1783                         napi_enable(&queue->napi);
1784         }
1785
1786         netif_set_real_num_tx_queues(info->netdev, *num_queues);
1787
1788         rtnl_unlock();
1789
1790         if (*num_queues == 0) {
1791                 dev_err(&info->netdev->dev, "no queues\n");
1792                 return -EINVAL;
1793         }
1794         return 0;
1795 }
1796
1797 /* Common code used when first setting up, and when resuming. */
1798 static int talk_to_netback(struct xenbus_device *dev,
1799                            struct netfront_info *info)
1800 {
1801         const char *message;
1802         struct xenbus_transaction xbt;
1803         int err;
1804         unsigned int feature_split_evtchn;
1805         unsigned int i = 0;
1806         unsigned int max_queues = 0;
1807         struct netfront_queue *queue = NULL;
1808         unsigned int num_queues = 1;
1809
1810         info->netdev->irq = 0;
1811
1812         /* Check if backend supports multiple queues */
1813         max_queues = xenbus_read_unsigned(info->xbdev->otherend,
1814                                           "multi-queue-max-queues", 1);
1815         num_queues = min(max_queues, xennet_max_queues);
1816
1817         /* Check feature-split-event-channels */
1818         feature_split_evtchn = xenbus_read_unsigned(info->xbdev->otherend,
1819                                         "feature-split-event-channels", 0);
1820
1821         /* Read mac addr. */
1822         err = xen_net_read_mac(dev, info->netdev->dev_addr);
1823         if (err) {
1824                 xenbus_dev_fatal(dev, err, "parsing %s/mac", dev->nodename);
1825                 goto out;
1826         }
1827
1828         if (info->queues)
1829                 xennet_destroy_queues(info);
1830
1831         err = xennet_create_queues(info, &num_queues);
1832         if (err < 0) {
1833                 xenbus_dev_fatal(dev, err, "creating queues");
1834                 kfree(info->queues);
1835                 info->queues = NULL;
1836                 goto out;
1837         }
1838
1839         /* Create shared ring, alloc event channel -- for each queue */
1840         for (i = 0; i < num_queues; ++i) {
1841                 queue = &info->queues[i];
1842                 err = setup_netfront(dev, queue, feature_split_evtchn);
1843                 if (err)
1844                         goto destroy_ring;
1845         }
1846
1847 again:
1848         err = xenbus_transaction_start(&xbt);
1849         if (err) {
1850                 xenbus_dev_fatal(dev, err, "starting transaction");
1851                 goto destroy_ring;
1852         }
1853
1854         if (xenbus_exists(XBT_NIL,
1855                           info->xbdev->otherend, "multi-queue-max-queues")) {
1856                 /* Write the number of queues */
1857                 err = xenbus_printf(xbt, dev->nodename,
1858                                     "multi-queue-num-queues", "%u", num_queues);
1859                 if (err) {
1860                         message = "writing multi-queue-num-queues";
1861                         goto abort_transaction_no_dev_fatal;
1862                 }
1863         }
1864
1865         if (num_queues == 1) {
1866                 err = write_queue_xenstore_keys(&info->queues[0], &xbt, 0); /* flat */
1867                 if (err)
1868                         goto abort_transaction_no_dev_fatal;
1869         } else {
1870                 /* Write the keys for each queue */
1871                 for (i = 0; i < num_queues; ++i) {
1872                         queue = &info->queues[i];
1873                         err = write_queue_xenstore_keys(queue, &xbt, 1); /* hierarchical */
1874                         if (err)
1875                                 goto abort_transaction_no_dev_fatal;
1876                 }
1877         }
1878
1879         /* The remaining keys are not queue-specific */
1880         err = xenbus_printf(xbt, dev->nodename, "request-rx-copy", "%u",
1881                             1);
1882         if (err) {
1883                 message = "writing request-rx-copy";
1884                 goto abort_transaction;
1885         }
1886
1887         err = xenbus_printf(xbt, dev->nodename, "feature-rx-notify", "%d", 1);
1888         if (err) {
1889                 message = "writing feature-rx-notify";
1890                 goto abort_transaction;
1891         }
1892
1893         err = xenbus_printf(xbt, dev->nodename, "feature-sg", "%d", 1);
1894         if (err) {
1895                 message = "writing feature-sg";
1896                 goto abort_transaction;
1897         }
1898
1899         err = xenbus_printf(xbt, dev->nodename, "feature-gso-tcpv4", "%d", 1);
1900         if (err) {
1901                 message = "writing feature-gso-tcpv4";
1902                 goto abort_transaction;
1903         }
1904
1905         err = xenbus_write(xbt, dev->nodename, "feature-gso-tcpv6", "1");
1906         if (err) {
1907                 message = "writing feature-gso-tcpv6";
1908                 goto abort_transaction;
1909         }
1910
1911         err = xenbus_write(xbt, dev->nodename, "feature-ipv6-csum-offload",
1912                            "1");
1913         if (err) {
1914                 message = "writing feature-ipv6-csum-offload";
1915                 goto abort_transaction;
1916         }
1917
1918         err = xenbus_transaction_end(xbt, 0);
1919         if (err) {
1920                 if (err == -EAGAIN)
1921                         goto again;
1922                 xenbus_dev_fatal(dev, err, "completing transaction");
1923                 goto destroy_ring;
1924         }
1925
1926         return 0;
1927
1928  abort_transaction:
1929         xenbus_dev_fatal(dev, err, "%s", message);
1930 abort_transaction_no_dev_fatal:
1931         xenbus_transaction_end(xbt, 1);
1932  destroy_ring:
1933         xennet_disconnect_backend(info);
1934         xennet_destroy_queues(info);
1935  out:
1936         device_unregister(&dev->dev);
1937         return err;
1938 }
1939
1940 static int xennet_connect(struct net_device *dev)
1941 {
1942         struct netfront_info *np = netdev_priv(dev);
1943         unsigned int num_queues = 0;
1944         int err;
1945         unsigned int j = 0;
1946         struct netfront_queue *queue = NULL;
1947
1948         if (!xenbus_read_unsigned(np->xbdev->otherend, "feature-rx-copy", 0)) {
1949                 dev_info(&dev->dev,
1950                          "backend does not support copying receive path\n");
1951                 return -ENODEV;
1952         }
1953
1954         err = talk_to_netback(np->xbdev, np);
1955         if (err)
1956                 return err;
1957
1958         /* talk_to_netback() sets the correct number of queues */
1959         num_queues = dev->real_num_tx_queues;
1960
1961         rtnl_lock();
1962         netdev_update_features(dev);
1963         rtnl_unlock();
1964
1965         /*
1966          * All public and private state should now be sane.  Get
1967          * ready to start sending and receiving packets and give the driver
1968          * domain a kick because we've probably just requeued some
1969          * packets.
1970          */
1971         netif_carrier_on(np->netdev);
1972         for (j = 0; j < num_queues; ++j) {
1973                 queue = &np->queues[j];
1974
1975                 notify_remote_via_irq(queue->tx_irq);
1976                 if (queue->tx_irq != queue->rx_irq)
1977                         notify_remote_via_irq(queue->rx_irq);
1978
1979                 spin_lock_irq(&queue->tx_lock);
1980                 xennet_tx_buf_gc(queue);
1981                 spin_unlock_irq(&queue->tx_lock);
1982
1983                 spin_lock_bh(&queue->rx_lock);
1984                 xennet_alloc_rx_buffers(queue);
1985                 spin_unlock_bh(&queue->rx_lock);
1986         }
1987
1988         return 0;
1989 }
1990
1991 /**
1992  * Callback received when the backend's state changes.
1993  */
1994 static void netback_changed(struct xenbus_device *dev,
1995                             enum xenbus_state backend_state)
1996 {
1997         struct netfront_info *np = dev_get_drvdata(&dev->dev);
1998         struct net_device *netdev = np->netdev;
1999
2000         dev_dbg(&dev->dev, "%s\n", xenbus_strstate(backend_state));
2001
2002         switch (backend_state) {
2003         case XenbusStateInitialising:
2004         case XenbusStateInitialised:
2005         case XenbusStateReconfiguring:
2006         case XenbusStateReconfigured:
2007         case XenbusStateUnknown:
2008                 break;
2009
2010         case XenbusStateInitWait:
2011                 if (dev->state != XenbusStateInitialising)
2012                         break;
2013                 if (xennet_connect(netdev) != 0)
2014                         break;
2015                 xenbus_switch_state(dev, XenbusStateConnected);
2016                 break;
2017
2018         case XenbusStateConnected:
2019                 netdev_notify_peers(netdev);
2020                 break;
2021
2022         case XenbusStateClosed:
2023                 if (dev->state == XenbusStateClosed)
2024                         break;
2025                 /* Missed the backend's CLOSING state -- fallthrough */
2026         case XenbusStateClosing:
2027                 xenbus_frontend_closed(dev);
2028                 break;
2029         }
2030 }
2031
2032 static const struct xennet_stat {
2033         char name[ETH_GSTRING_LEN];
2034         u16 offset;
2035 } xennet_stats[] = {
2036         {
2037                 "rx_gso_checksum_fixup",
2038                 offsetof(struct netfront_info, rx_gso_checksum_fixup)
2039         },
2040 };
2041
2042 static int xennet_get_sset_count(struct net_device *dev, int string_set)
2043 {
2044         switch (string_set) {
2045         case ETH_SS_STATS:
2046                 return ARRAY_SIZE(xennet_stats);
2047         default:
2048                 return -EINVAL;
2049         }
2050 }
2051
2052 static void xennet_get_ethtool_stats(struct net_device *dev,
2053                                      struct ethtool_stats *stats, u64 * data)
2054 {
2055         void *np = netdev_priv(dev);
2056         int i;
2057
2058         for (i = 0; i < ARRAY_SIZE(xennet_stats); i++)
2059                 data[i] = atomic_read((atomic_t *)(np + xennet_stats[i].offset));
2060 }
2061
2062 static void xennet_get_strings(struct net_device *dev, u32 stringset, u8 * data)
2063 {
2064         int i;
2065
2066         switch (stringset) {
2067         case ETH_SS_STATS:
2068                 for (i = 0; i < ARRAY_SIZE(xennet_stats); i++)
2069                         memcpy(data + i * ETH_GSTRING_LEN,
2070                                xennet_stats[i].name, ETH_GSTRING_LEN);
2071                 break;
2072         }
2073 }
2074
2075 static const struct ethtool_ops xennet_ethtool_ops =
2076 {
2077         .get_link = ethtool_op_get_link,
2078
2079         .get_sset_count = xennet_get_sset_count,
2080         .get_ethtool_stats = xennet_get_ethtool_stats,
2081         .get_strings = xennet_get_strings,
2082 };
2083
2084 #ifdef CONFIG_SYSFS
2085 static ssize_t show_rxbuf(struct device *dev,
2086                           struct device_attribute *attr, char *buf)
2087 {
2088         return sprintf(buf, "%lu\n", NET_RX_RING_SIZE);
2089 }
2090
2091 static ssize_t store_rxbuf(struct device *dev,
2092                            struct device_attribute *attr,
2093                            const char *buf, size_t len)
2094 {
2095         char *endp;
2096         unsigned long target;
2097
2098         if (!capable(CAP_NET_ADMIN))
2099                 return -EPERM;
2100
2101         target = simple_strtoul(buf, &endp, 0);
2102         if (endp == buf)
2103                 return -EBADMSG;
2104
2105         /* rxbuf_min and rxbuf_max are no longer configurable. */
2106
2107         return len;
2108 }
2109
2110 static DEVICE_ATTR(rxbuf_min, S_IRUGO|S_IWUSR, show_rxbuf, store_rxbuf);
2111 static DEVICE_ATTR(rxbuf_max, S_IRUGO|S_IWUSR, show_rxbuf, store_rxbuf);
2112 static DEVICE_ATTR(rxbuf_cur, S_IRUGO, show_rxbuf, NULL);
2113
2114 static struct attribute *xennet_dev_attrs[] = {
2115         &dev_attr_rxbuf_min.attr,
2116         &dev_attr_rxbuf_max.attr,
2117         &dev_attr_rxbuf_cur.attr,
2118         NULL
2119 };
2120
2121 static const struct attribute_group xennet_dev_group = {
2122         .attrs = xennet_dev_attrs
2123 };
2124 #endif /* CONFIG_SYSFS */
2125
2126 static int xennet_remove(struct xenbus_device *dev)
2127 {
2128         struct netfront_info *info = dev_get_drvdata(&dev->dev);
2129
2130         dev_dbg(&dev->dev, "%s\n", dev->nodename);
2131
2132         xennet_disconnect_backend(info);
2133
2134         unregister_netdev(info->netdev);
2135
2136         if (info->queues)
2137                 xennet_destroy_queues(info);
2138         xennet_free_netdev(info->netdev);
2139
2140         return 0;
2141 }
2142
2143 static const struct xenbus_device_id netfront_ids[] = {
2144         { "vif" },
2145         { "" }
2146 };
2147
2148 static struct xenbus_driver netfront_driver = {
2149         .ids = netfront_ids,
2150         .probe = netfront_probe,
2151         .remove = xennet_remove,
2152         .resume = netfront_resume,
2153         .otherend_changed = netback_changed,
2154 };
2155
2156 static int __init netif_init(void)
2157 {
2158         if (!xen_domain())
2159                 return -ENODEV;
2160
2161         if (!xen_has_pv_nic_devices())
2162                 return -ENODEV;
2163
2164         pr_info("Initialising Xen virtual ethernet driver\n");
2165
2166         /* Allow as many queues as there are CPUs inut max. 8 if user has not
2167          * specified a value.
2168          */
2169         if (xennet_max_queues == 0)
2170                 xennet_max_queues = min_t(unsigned int, MAX_QUEUES_DEFAULT,
2171                                           num_online_cpus());
2172
2173         return xenbus_register_frontend(&netfront_driver);
2174 }
2175 module_init(netif_init);
2176
2177
2178 static void __exit netif_exit(void)
2179 {
2180         xenbus_unregister_driver(&netfront_driver);
2181 }
2182 module_exit(netif_exit);
2183
2184 MODULE_DESCRIPTION("Xen virtual network device frontend");
2185 MODULE_LICENSE("GPL");
2186 MODULE_ALIAS("xen:vif");
2187 MODULE_ALIAS("xennet");