xen/balloon: pre-allocate p2m entries for ballooned pages
[linux-2.6-block.git] / drivers / net / xen-netback / netback.c
CommitLineData
f942dc25
IC
1/*
2 * Back-end of the driver for virtual network devices. This portion of the
3 * driver exports a 'unified' network-device interface that can be accessed
4 * by any operating system that implements a compatible front end. A
5 * reference front-end implementation can be found in:
6 * drivers/net/xen-netfront.c
7 *
8 * Copyright (c) 2002-2005, K A Fraser
9 *
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License version 2
12 * as published by the Free Software Foundation; or, when distributed
13 * separately from the Linux kernel or incorporated into other
14 * software packages, subject to the following license:
15 *
16 * Permission is hereby granted, free of charge, to any person obtaining a copy
17 * of this source file (the "Software"), to deal in the Software without
18 * restriction, including without limitation the rights to use, copy, modify,
19 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
20 * and to permit persons to whom the Software is furnished to do so, subject to
21 * the following conditions:
22 *
23 * The above copyright notice and this permission notice shall be included in
24 * all copies or substantial portions of the Software.
25 *
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
27 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
28 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
29 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
30 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
31 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
32 * IN THE SOFTWARE.
33 */
34
35#include "common.h"
36
37#include <linux/kthread.h>
38#include <linux/if_vlan.h>
39#include <linux/udp.h>
e3377f36 40#include <linux/highmem.h>
f942dc25
IC
41
42#include <net/tcp.h>
43
ca981633 44#include <xen/xen.h>
f942dc25
IC
45#include <xen/events.h>
46#include <xen/interface/memory.h>
a9fd60e2 47#include <xen/page.h>
f942dc25
IC
48
49#include <asm/xen/hypercall.h>
f942dc25 50
e1f00a69
WL
51/* Provide an option to disable split event channels at load time as
52 * event channels are limited resource. Split event channels are
53 * enabled by default.
54 */
c489dbb1 55bool separate_tx_rx_irq = true;
e1f00a69
WL
56module_param(separate_tx_rx_irq, bool, 0644);
57
f48da8b1
DV
58/* The time that packets can stay on the guest Rx internal queue
59 * before they are dropped.
09350788
ZK
60 */
61unsigned int rx_drain_timeout_msecs = 10000;
62module_param(rx_drain_timeout_msecs, uint, 0444);
09350788 63
ecf08d2d
DV
64/* The length of time before the frontend is considered unresponsive
65 * because it isn't providing Rx slots.
66 */
26c0e102 67unsigned int rx_stall_timeout_msecs = 60000;
ecf08d2d 68module_param(rx_stall_timeout_msecs, uint, 0444);
ecf08d2d 69
8d3d53b3
AB
70unsigned int xenvif_max_queues;
71module_param_named(max_queues, xenvif_max_queues, uint, 0644);
72MODULE_PARM_DESC(max_queues,
73 "Maximum number of queues per virtual interface");
74
2810e5b9
WL
75/*
76 * This is the maximum slots a skb can have. If a guest sends a skb
77 * which exceeds this limit it is considered malicious.
78 */
37641494
WL
79#define FATAL_SKB_SLOTS_DEFAULT 20
80static unsigned int fatal_skb_slots = FATAL_SKB_SLOTS_DEFAULT;
81module_param(fatal_skb_slots, uint, 0444);
82
7e5d7753
MC
83/* The amount to copy out of the first guest Tx slot into the skb's
84 * linear area. If the first slot has more data, it will be mapped
85 * and put into the first frag.
86 *
87 * This is sized to avoid pulling headers from the frags for most
88 * TCP/IP packets.
89 */
90#define XEN_NETBACK_TX_COPY_LEN 128
91
92
e9ce7cb6 93static void xenvif_idx_release(struct xenvif_queue *queue, u16 pending_idx,
7376419a
WL
94 u8 status);
95
e9ce7cb6 96static void make_tx_response(struct xenvif_queue *queue,
f942dc25
IC
97 struct xen_netif_tx_request *txp,
98 s8 st);
c8a4d299 99static void push_tx_responses(struct xenvif_queue *queue);
b3f980bd 100
e9ce7cb6 101static inline int tx_work_todo(struct xenvif_queue *queue);
b3f980bd 102
e9ce7cb6 103static struct xen_netif_rx_response *make_rx_response(struct xenvif_queue *queue,
f942dc25
IC
104 u16 id,
105 s8 st,
106 u16 offset,
107 u16 size,
108 u16 flags);
109
e9ce7cb6 110static inline unsigned long idx_to_pfn(struct xenvif_queue *queue,
ea066ad1 111 u16 idx)
f942dc25 112{
e9ce7cb6 113 return page_to_pfn(queue->mmap_pages[idx]);
f942dc25
IC
114}
115
e9ce7cb6 116static inline unsigned long idx_to_kaddr(struct xenvif_queue *queue,
ea066ad1 117 u16 idx)
f942dc25 118{
e9ce7cb6 119 return (unsigned long)pfn_to_kaddr(idx_to_pfn(queue, idx));
f942dc25
IC
120}
121
7aceb47a
ZK
122#define callback_param(vif, pending_idx) \
123 (vif->pending_tx_info[pending_idx].callback_struct)
124
f53c3fe8
ZK
125/* Find the containing VIF's structure from a pointer in pending_tx_info array
126 */
e9ce7cb6 127static inline struct xenvif_queue *ubuf_to_queue(const struct ubuf_info *ubuf)
3e2234b3 128{
f53c3fe8
ZK
129 u16 pending_idx = ubuf->desc;
130 struct pending_tx_info *temp =
131 container_of(ubuf, struct pending_tx_info, callback_struct);
132 return container_of(temp - pending_idx,
e9ce7cb6 133 struct xenvif_queue,
f53c3fe8 134 pending_tx_info[0]);
3e2234b3 135}
f53c3fe8 136
ea066ad1
IC
137static u16 frag_get_pending_idx(skb_frag_t *frag)
138{
139 return (u16)frag->page_offset;
140}
141
142static void frag_set_pending_idx(skb_frag_t *frag, u16 pending_idx)
143{
144 frag->page_offset = pending_idx;
145}
146
f942dc25
IC
147static inline pending_ring_idx_t pending_index(unsigned i)
148{
149 return i & (MAX_PENDING_REQS-1);
150}
151
1d5d4852
DV
152static int xenvif_rx_ring_slots_needed(struct xenvif *vif)
153{
154 if (vif->gso_mask)
155 return DIV_ROUND_UP(vif->dev->gso_max_size, PAGE_SIZE) + 1;
156 else
157 return DIV_ROUND_UP(vif->dev->mtu, PAGE_SIZE);
158}
159
160static bool xenvif_rx_ring_slots_available(struct xenvif_queue *queue)
f942dc25 161{
ca2f09f2 162 RING_IDX prod, cons;
1d5d4852
DV
163 int needed;
164
165 needed = xenvif_rx_ring_slots_needed(queue->vif);
f942dc25 166
ca2f09f2 167 do {
e9ce7cb6
WL
168 prod = queue->rx.sring->req_prod;
169 cons = queue->rx.req_cons;
f942dc25 170
ca2f09f2
PD
171 if (prod - cons >= needed)
172 return true;
f942dc25 173
e9ce7cb6 174 queue->rx.sring->req_event = prod + 1;
f942dc25 175
ca2f09f2
PD
176 /* Make sure event is visible before we check prod
177 * again.
178 */
179 mb();
e9ce7cb6 180 } while (queue->rx.sring->req_prod != prod);
f942dc25 181
ca2f09f2 182 return false;
f942dc25
IC
183}
184
f48da8b1
DV
185void xenvif_rx_queue_tail(struct xenvif_queue *queue, struct sk_buff *skb)
186{
187 unsigned long flags;
188
189 spin_lock_irqsave(&queue->rx_queue.lock, flags);
190
191 __skb_queue_tail(&queue->rx_queue, skb);
192
193 queue->rx_queue_len += skb->len;
194 if (queue->rx_queue_len > queue->rx_queue_max)
195 netif_tx_stop_queue(netdev_get_tx_queue(queue->vif->dev, queue->id));
196
197 spin_unlock_irqrestore(&queue->rx_queue.lock, flags);
198}
199
200static struct sk_buff *xenvif_rx_dequeue(struct xenvif_queue *queue)
201{
202 struct sk_buff *skb;
203
204 spin_lock_irq(&queue->rx_queue.lock);
205
206 skb = __skb_dequeue(&queue->rx_queue);
207 if (skb)
208 queue->rx_queue_len -= skb->len;
209
210 spin_unlock_irq(&queue->rx_queue.lock);
211
212 return skb;
213}
214
215static void xenvif_rx_queue_maybe_wake(struct xenvif_queue *queue)
216{
217 spin_lock_irq(&queue->rx_queue.lock);
218
219 if (queue->rx_queue_len < queue->rx_queue_max)
220 netif_tx_wake_queue(netdev_get_tx_queue(queue->vif->dev, queue->id));
221
222 spin_unlock_irq(&queue->rx_queue.lock);
223}
224
225
226static void xenvif_rx_queue_purge(struct xenvif_queue *queue)
227{
228 struct sk_buff *skb;
229 while ((skb = xenvif_rx_dequeue(queue)) != NULL)
230 kfree_skb(skb);
231}
232
233static void xenvif_rx_queue_drop_expired(struct xenvif_queue *queue)
234{
235 struct sk_buff *skb;
236
237 for(;;) {
238 skb = skb_peek(&queue->rx_queue);
239 if (!skb)
240 break;
241 if (time_before(jiffies, XENVIF_RX_CB(skb)->expires))
242 break;
243 xenvif_rx_dequeue(queue);
244 kfree_skb(skb);
245 }
246}
247
f942dc25
IC
248struct netrx_pending_operations {
249 unsigned copy_prod, copy_cons;
250 unsigned meta_prod, meta_cons;
251 struct gnttab_copy *copy;
b3f980bd 252 struct xenvif_rx_meta *meta;
f942dc25
IC
253 int copy_off;
254 grant_ref_t copy_gref;
255};
256
e9ce7cb6 257static struct xenvif_rx_meta *get_next_rx_buffer(struct xenvif_queue *queue,
b3f980bd 258 struct netrx_pending_operations *npo)
f942dc25 259{
b3f980bd 260 struct xenvif_rx_meta *meta;
f942dc25
IC
261 struct xen_netif_rx_request *req;
262
e9ce7cb6 263 req = RING_GET_REQUEST(&queue->rx, queue->rx.req_cons++);
f942dc25
IC
264
265 meta = npo->meta + npo->meta_prod++;
82cada22 266 meta->gso_type = XEN_NETIF_GSO_TYPE_NONE;
f942dc25
IC
267 meta->gso_size = 0;
268 meta->size = 0;
269 meta->id = req->id;
270
271 npo->copy_off = 0;
272 npo->copy_gref = req->gref;
273
274 return meta;
275}
276
33bc801d
WL
277/*
278 * Set up the grant operations for this fragment. If it's a flipping
279 * interface, we also set up the unmap request from here.
280 */
e9ce7cb6 281static void xenvif_gop_frag_copy(struct xenvif_queue *queue, struct sk_buff *skb,
7376419a
WL
282 struct netrx_pending_operations *npo,
283 struct page *page, unsigned long size,
c2677a6f 284 unsigned long offset, int *head)
f942dc25
IC
285{
286 struct gnttab_copy *copy_gop;
b3f980bd 287 struct xenvif_rx_meta *meta;
f942dc25 288 unsigned long bytes;
5bd07670 289 int gso_type = XEN_NETIF_GSO_TYPE_NONE;
f942dc25
IC
290
291 /* Data must not cross a page boundary. */
6a8ed462 292 BUG_ON(size + offset > PAGE_SIZE<<compound_order(page));
f942dc25
IC
293
294 meta = npo->meta + npo->meta_prod - 1;
295
6a8ed462
IC
296 /* Skip unused frames from start of page */
297 page += offset >> PAGE_SHIFT;
298 offset &= ~PAGE_MASK;
299
f942dc25 300 while (size > 0) {
c2677a6f
JH
301 struct xen_page_foreign *foreign;
302
6a8ed462 303 BUG_ON(offset >= PAGE_SIZE);
f942dc25
IC
304 BUG_ON(npo->copy_off > MAX_BUFFER_OFFSET);
305
1650d545
DV
306 if (npo->copy_off == MAX_BUFFER_OFFSET)
307 meta = get_next_rx_buffer(queue, npo);
6a8ed462 308
1650d545 309 bytes = PAGE_SIZE - offset;
6a8ed462
IC
310 if (bytes > size)
311 bytes = size;
312
f942dc25
IC
313 if (npo->copy_off + bytes > MAX_BUFFER_OFFSET)
314 bytes = MAX_BUFFER_OFFSET - npo->copy_off;
315
316 copy_gop = npo->copy + npo->copy_prod++;
317 copy_gop->flags = GNTCOPY_dest_gref;
b3f980bd
WL
318 copy_gop->len = bytes;
319
c2677a6f
JH
320 foreign = xen_page_foreign(page);
321 if (foreign) {
322 copy_gop->source.domid = foreign->domid;
323 copy_gop->source.u.ref = foreign->gref;
3e2234b3
ZK
324 copy_gop->flags |= GNTCOPY_source_gref;
325 } else {
326 copy_gop->source.domid = DOMID_SELF;
327 copy_gop->source.u.gmfn =
0df4f266 328 virt_to_gfn(page_address(page));
3e2234b3 329 }
f942dc25 330 copy_gop->source.offset = offset;
f942dc25 331
e9ce7cb6 332 copy_gop->dest.domid = queue->vif->domid;
f942dc25
IC
333 copy_gop->dest.offset = npo->copy_off;
334 copy_gop->dest.u.ref = npo->copy_gref;
f942dc25
IC
335
336 npo->copy_off += bytes;
337 meta->size += bytes;
338
339 offset += bytes;
340 size -= bytes;
341
6a8ed462
IC
342 /* Next frame */
343 if (offset == PAGE_SIZE && size) {
344 BUG_ON(!PageCompound(page));
345 page++;
346 offset = 0;
347 }
348
f942dc25 349 /* Leave a gap for the GSO descriptor. */
5bd07670
AL
350 if (skb_is_gso(skb)) {
351 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
352 gso_type = XEN_NETIF_GSO_TYPE_TCPV4;
353 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
354 gso_type = XEN_NETIF_GSO_TYPE_TCPV6;
355 }
82cada22 356
e9ce7cb6
WL
357 if (*head && ((1 << gso_type) & queue->vif->gso_mask))
358 queue->rx.req_cons++;
f942dc25 359
33bc801d 360 *head = 0; /* There must be something in this buffer now. */
f942dc25
IC
361
362 }
363}
364
365/*
366 * Prepare an SKB to be transmitted to the frontend.
367 *
368 * This function is responsible for allocating grant operations, meta
369 * structures, etc.
370 *
371 * It returns the number of meta structures consumed. The number of
372 * ring slots used is always equal to the number of meta slots used
373 * plus the number of GSO descriptors used. Currently, we use either
374 * zero GSO descriptors (for non-GSO packets) or one descriptor (for
375 * frontend-side LRO).
376 */
7376419a 377static int xenvif_gop_skb(struct sk_buff *skb,
e9ce7cb6
WL
378 struct netrx_pending_operations *npo,
379 struct xenvif_queue *queue)
f942dc25
IC
380{
381 struct xenvif *vif = netdev_priv(skb->dev);
382 int nr_frags = skb_shinfo(skb)->nr_frags;
383 int i;
384 struct xen_netif_rx_request *req;
b3f980bd 385 struct xenvif_rx_meta *meta;
f942dc25 386 unsigned char *data;
33bc801d 387 int head = 1;
f942dc25 388 int old_meta_prod;
82cada22 389 int gso_type;
f942dc25
IC
390
391 old_meta_prod = npo->meta_prod;
392
5bd07670
AL
393 gso_type = XEN_NETIF_GSO_TYPE_NONE;
394 if (skb_is_gso(skb)) {
395 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
396 gso_type = XEN_NETIF_GSO_TYPE_TCPV4;
397 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
398 gso_type = XEN_NETIF_GSO_TYPE_TCPV6;
82cada22
PD
399 }
400
f942dc25 401 /* Set up a GSO prefix descriptor, if necessary */
a3314f3d 402 if ((1 << gso_type) & vif->gso_prefix_mask) {
e9ce7cb6 403 req = RING_GET_REQUEST(&queue->rx, queue->rx.req_cons++);
f942dc25 404 meta = npo->meta + npo->meta_prod++;
82cada22 405 meta->gso_type = gso_type;
5bd07670 406 meta->gso_size = skb_shinfo(skb)->gso_size;
f942dc25
IC
407 meta->size = 0;
408 meta->id = req->id;
409 }
410
e9ce7cb6 411 req = RING_GET_REQUEST(&queue->rx, queue->rx.req_cons++);
f942dc25
IC
412 meta = npo->meta + npo->meta_prod++;
413
82cada22
PD
414 if ((1 << gso_type) & vif->gso_mask) {
415 meta->gso_type = gso_type;
5bd07670 416 meta->gso_size = skb_shinfo(skb)->gso_size;
82cada22
PD
417 } else {
418 meta->gso_type = XEN_NETIF_GSO_TYPE_NONE;
f942dc25 419 meta->gso_size = 0;
82cada22 420 }
f942dc25
IC
421
422 meta->size = 0;
423 meta->id = req->id;
424 npo->copy_off = 0;
425 npo->copy_gref = req->gref;
426
427 data = skb->data;
428 while (data < skb_tail_pointer(skb)) {
429 unsigned int offset = offset_in_page(data);
430 unsigned int len = PAGE_SIZE - offset;
431
432 if (data + len > skb_tail_pointer(skb))
433 len = skb_tail_pointer(skb) - data;
434
e9ce7cb6 435 xenvif_gop_frag_copy(queue, skb, npo,
c2677a6f 436 virt_to_page(data), len, offset, &head);
f942dc25
IC
437 data += len;
438 }
439
440 for (i = 0; i < nr_frags; i++) {
e9ce7cb6 441 xenvif_gop_frag_copy(queue, skb, npo,
7376419a
WL
442 skb_frag_page(&skb_shinfo(skb)->frags[i]),
443 skb_frag_size(&skb_shinfo(skb)->frags[i]),
444 skb_shinfo(skb)->frags[i].page_offset,
c2677a6f 445 &head);
f942dc25
IC
446 }
447
448 return npo->meta_prod - old_meta_prod;
449}
450
451/*
7376419a 452 * This is a twin to xenvif_gop_skb. Assume that xenvif_gop_skb was
f942dc25
IC
453 * used to set up the operations on the top of
454 * netrx_pending_operations, which have since been done. Check that
455 * they didn't give any errors and advance over them.
456 */
7376419a
WL
457static int xenvif_check_gop(struct xenvif *vif, int nr_meta_slots,
458 struct netrx_pending_operations *npo)
f942dc25
IC
459{
460 struct gnttab_copy *copy_op;
461 int status = XEN_NETIF_RSP_OKAY;
462 int i;
463
464 for (i = 0; i < nr_meta_slots; i++) {
465 copy_op = npo->copy + npo->copy_cons++;
466 if (copy_op->status != GNTST_okay) {
467 netdev_dbg(vif->dev,
468 "Bad status %d from copy to DOM%d.\n",
469 copy_op->status, vif->domid);
470 status = XEN_NETIF_RSP_ERROR;
471 }
472 }
473
474 return status;
475}
476
e9ce7cb6 477static void xenvif_add_frag_responses(struct xenvif_queue *queue, int status,
7376419a
WL
478 struct xenvif_rx_meta *meta,
479 int nr_meta_slots)
f942dc25
IC
480{
481 int i;
482 unsigned long offset;
483
484 /* No fragments used */
485 if (nr_meta_slots <= 1)
486 return;
487
488 nr_meta_slots--;
489
490 for (i = 0; i < nr_meta_slots; i++) {
491 int flags;
492 if (i == nr_meta_slots - 1)
493 flags = 0;
494 else
495 flags = XEN_NETRXF_more_data;
496
497 offset = 0;
e9ce7cb6 498 make_rx_response(queue, meta[i].id, status, offset,
f942dc25
IC
499 meta[i].size, flags);
500 }
501}
502
e9ce7cb6 503void xenvif_kick_thread(struct xenvif_queue *queue)
b3f980bd 504{
e9ce7cb6 505 wake_up(&queue->wq);
b3f980bd
WL
506}
507
e9ce7cb6 508static void xenvif_rx_action(struct xenvif_queue *queue)
f942dc25 509{
f942dc25 510 s8 status;
e1f00a69 511 u16 flags;
f942dc25
IC
512 struct xen_netif_rx_response *resp;
513 struct sk_buff_head rxq;
514 struct sk_buff *skb;
515 LIST_HEAD(notify);
516 int ret;
f942dc25 517 unsigned long offset;
11b57f90 518 bool need_to_notify = false;
f942dc25
IC
519
520 struct netrx_pending_operations npo = {
e9ce7cb6
WL
521 .copy = queue->grant_copy_op,
522 .meta = queue->meta,
f942dc25
IC
523 };
524
525 skb_queue_head_init(&rxq);
526
1d5d4852 527 while (xenvif_rx_ring_slots_available(queue)
f48da8b1 528 && (skb = xenvif_rx_dequeue(queue)) != NULL) {
ecf08d2d
DV
529 queue->last_rx_time = jiffies;
530
e9ce7cb6 531 XENVIF_RX_CB(skb)->meta_slots_used = xenvif_gop_skb(skb, &npo, queue);
1425c7a4 532
f942dc25 533 __skb_queue_tail(&rxq, skb);
f942dc25
IC
534 }
535
e9ce7cb6 536 BUG_ON(npo.meta_prod > ARRAY_SIZE(queue->meta));
f942dc25
IC
537
538 if (!npo.copy_prod)
ca2f09f2 539 goto done;
f942dc25 540
ac3d5ac2 541 BUG_ON(npo.copy_prod > MAX_GRANT_COPY_OPS);
e9ce7cb6 542 gnttab_batch_copy(queue->grant_copy_op, npo.copy_prod);
f942dc25
IC
543
544 while ((skb = __skb_dequeue(&rxq)) != NULL) {
f942dc25 545
e9ce7cb6
WL
546 if ((1 << queue->meta[npo.meta_cons].gso_type) &
547 queue->vif->gso_prefix_mask) {
548 resp = RING_GET_RESPONSE(&queue->rx,
549 queue->rx.rsp_prod_pvt++);
f942dc25
IC
550
551 resp->flags = XEN_NETRXF_gso_prefix | XEN_NETRXF_more_data;
552
e9ce7cb6
WL
553 resp->offset = queue->meta[npo.meta_cons].gso_size;
554 resp->id = queue->meta[npo.meta_cons].id;
8f13dd96 555 resp->status = XENVIF_RX_CB(skb)->meta_slots_used;
f942dc25
IC
556
557 npo.meta_cons++;
8f13dd96 558 XENVIF_RX_CB(skb)->meta_slots_used--;
f942dc25
IC
559 }
560
561
e9ce7cb6
WL
562 queue->stats.tx_bytes += skb->len;
563 queue->stats.tx_packets++;
f942dc25 564
e9ce7cb6 565 status = xenvif_check_gop(queue->vif,
8f13dd96
ZK
566 XENVIF_RX_CB(skb)->meta_slots_used,
567 &npo);
f942dc25 568
8f13dd96 569 if (XENVIF_RX_CB(skb)->meta_slots_used == 1)
f942dc25
IC
570 flags = 0;
571 else
572 flags = XEN_NETRXF_more_data;
573
574 if (skb->ip_summed == CHECKSUM_PARTIAL) /* local packet? */
575 flags |= XEN_NETRXF_csum_blank | XEN_NETRXF_data_validated;
576 else if (skb->ip_summed == CHECKSUM_UNNECESSARY)
577 /* remote but checksummed. */
578 flags |= XEN_NETRXF_data_validated;
579
580 offset = 0;
e9ce7cb6 581 resp = make_rx_response(queue, queue->meta[npo.meta_cons].id,
f942dc25 582 status, offset,
e9ce7cb6 583 queue->meta[npo.meta_cons].size,
f942dc25
IC
584 flags);
585
e9ce7cb6
WL
586 if ((1 << queue->meta[npo.meta_cons].gso_type) &
587 queue->vif->gso_mask) {
f942dc25
IC
588 struct xen_netif_extra_info *gso =
589 (struct xen_netif_extra_info *)
e9ce7cb6
WL
590 RING_GET_RESPONSE(&queue->rx,
591 queue->rx.rsp_prod_pvt++);
f942dc25
IC
592
593 resp->flags |= XEN_NETRXF_extra_info;
594
e9ce7cb6
WL
595 gso->u.gso.type = queue->meta[npo.meta_cons].gso_type;
596 gso->u.gso.size = queue->meta[npo.meta_cons].gso_size;
f942dc25
IC
597 gso->u.gso.pad = 0;
598 gso->u.gso.features = 0;
599
600 gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
601 gso->flags = 0;
602 }
603
e9ce7cb6
WL
604 xenvif_add_frag_responses(queue, status,
605 queue->meta + npo.meta_cons + 1,
8f13dd96 606 XENVIF_RX_CB(skb)->meta_slots_used);
f942dc25 607
e9ce7cb6 608 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&queue->rx, ret);
f942dc25 609
11b57f90 610 need_to_notify |= !!ret;
b3f980bd 611
8f13dd96 612 npo.meta_cons += XENVIF_RX_CB(skb)->meta_slots_used;
f942dc25
IC
613 dev_kfree_skb(skb);
614 }
615
ca2f09f2 616done:
b3f980bd 617 if (need_to_notify)
e9ce7cb6 618 notify_remote_via_irq(queue->rx_irq);
f942dc25
IC
619}
620
e9ce7cb6 621void xenvif_napi_schedule_or_enable_events(struct xenvif_queue *queue)
f942dc25
IC
622{
623 int more_to_do;
624
e9ce7cb6 625 RING_FINAL_CHECK_FOR_REQUESTS(&queue->tx, more_to_do);
f942dc25
IC
626
627 if (more_to_do)
e9ce7cb6 628 napi_schedule(&queue->napi);
f942dc25
IC
629}
630
e9ce7cb6 631static void tx_add_credit(struct xenvif_queue *queue)
f942dc25
IC
632{
633 unsigned long max_burst, max_credit;
634
635 /*
636 * Allow a burst big enough to transmit a jumbo packet of up to 128kB.
637 * Otherwise the interface can seize up due to insufficient credit.
638 */
e9ce7cb6 639 max_burst = RING_GET_REQUEST(&queue->tx, queue->tx.req_cons)->size;
f942dc25 640 max_burst = min(max_burst, 131072UL);
e9ce7cb6 641 max_burst = max(max_burst, queue->credit_bytes);
f942dc25
IC
642
643 /* Take care that adding a new chunk of credit doesn't wrap to zero. */
e9ce7cb6
WL
644 max_credit = queue->remaining_credit + queue->credit_bytes;
645 if (max_credit < queue->remaining_credit)
f942dc25
IC
646 max_credit = ULONG_MAX; /* wrapped: clamp to ULONG_MAX */
647
e9ce7cb6 648 queue->remaining_credit = min(max_credit, max_burst);
f942dc25
IC
649}
650
edafc132 651void xenvif_tx_credit_callback(unsigned long data)
f942dc25 652{
e9ce7cb6
WL
653 struct xenvif_queue *queue = (struct xenvif_queue *)data;
654 tx_add_credit(queue);
655 xenvif_napi_schedule_or_enable_events(queue);
f942dc25
IC
656}
657
e9ce7cb6 658static void xenvif_tx_err(struct xenvif_queue *queue,
7376419a 659 struct xen_netif_tx_request *txp, RING_IDX end)
f942dc25 660{
e9ce7cb6 661 RING_IDX cons = queue->tx.req_cons;
f53c3fe8 662 unsigned long flags;
f942dc25
IC
663
664 do {
e9ce7cb6
WL
665 spin_lock_irqsave(&queue->response_lock, flags);
666 make_tx_response(queue, txp, XEN_NETIF_RSP_ERROR);
c8a4d299 667 push_tx_responses(queue);
e9ce7cb6 668 spin_unlock_irqrestore(&queue->response_lock, flags);
b9149729 669 if (cons == end)
f942dc25 670 break;
e9ce7cb6 671 txp = RING_GET_REQUEST(&queue->tx, cons++);
f942dc25 672 } while (1);
e9ce7cb6 673 queue->tx.req_cons = cons;
f942dc25
IC
674}
675
7376419a 676static void xenvif_fatal_tx_err(struct xenvif *vif)
48856286
IC
677{
678 netdev_err(vif->dev, "fatal error; disabling device\n");
e9d8b2c2 679 vif->disabled = true;
e9ce7cb6
WL
680 /* Disable the vif from queue 0's kthread */
681 if (vif->queues)
682 xenvif_kick_thread(&vif->queues[0]);
48856286
IC
683}
684
e9ce7cb6 685static int xenvif_count_requests(struct xenvif_queue *queue,
7376419a
WL
686 struct xen_netif_tx_request *first,
687 struct xen_netif_tx_request *txp,
688 int work_to_do)
f942dc25 689{
e9ce7cb6 690 RING_IDX cons = queue->tx.req_cons;
2810e5b9
WL
691 int slots = 0;
692 int drop_err = 0;
59ccb4eb 693 int more_data;
f942dc25
IC
694
695 if (!(first->flags & XEN_NETTXF_more_data))
696 return 0;
697
698 do {
59ccb4eb
WL
699 struct xen_netif_tx_request dropped_tx = { 0 };
700
2810e5b9 701 if (slots >= work_to_do) {
e9ce7cb6 702 netdev_err(queue->vif->dev,
2810e5b9
WL
703 "Asked for %d slots but exceeds this limit\n",
704 work_to_do);
e9ce7cb6 705 xenvif_fatal_tx_err(queue->vif);
35876b5f 706 return -ENODATA;
f942dc25
IC
707 }
708
2810e5b9
WL
709 /* This guest is really using too many slots and
710 * considered malicious.
711 */
37641494 712 if (unlikely(slots >= fatal_skb_slots)) {
e9ce7cb6 713 netdev_err(queue->vif->dev,
2810e5b9 714 "Malicious frontend using %d slots, threshold %u\n",
37641494 715 slots, fatal_skb_slots);
e9ce7cb6 716 xenvif_fatal_tx_err(queue->vif);
35876b5f 717 return -E2BIG;
f942dc25
IC
718 }
719
2810e5b9 720 /* Xen network protocol had implicit dependency on
37641494
WL
721 * MAX_SKB_FRAGS. XEN_NETBK_LEGACY_SLOTS_MAX is set to
722 * the historical MAX_SKB_FRAGS value 18 to honor the
723 * same behavior as before. Any packet using more than
724 * 18 slots but less than fatal_skb_slots slots is
725 * dropped
2810e5b9 726 */
37641494 727 if (!drop_err && slots >= XEN_NETBK_LEGACY_SLOTS_MAX) {
2810e5b9 728 if (net_ratelimit())
e9ce7cb6 729 netdev_dbg(queue->vif->dev,
2810e5b9 730 "Too many slots (%d) exceeding limit (%d), dropping packet\n",
37641494 731 slots, XEN_NETBK_LEGACY_SLOTS_MAX);
2810e5b9
WL
732 drop_err = -E2BIG;
733 }
734
59ccb4eb
WL
735 if (drop_err)
736 txp = &dropped_tx;
737
e9ce7cb6 738 memcpy(txp, RING_GET_REQUEST(&queue->tx, cons + slots),
f942dc25 739 sizeof(*txp));
03393fd5
WL
740
741 /* If the guest submitted a frame >= 64 KiB then
742 * first->size overflowed and following slots will
743 * appear to be larger than the frame.
744 *
745 * This cannot be fatal error as there are buggy
746 * frontends that do this.
747 *
748 * Consume all slots and drop the packet.
749 */
750 if (!drop_err && txp->size > first->size) {
751 if (net_ratelimit())
e9ce7cb6 752 netdev_dbg(queue->vif->dev,
03393fd5
WL
753 "Invalid tx request, slot size %u > remaining size %u\n",
754 txp->size, first->size);
755 drop_err = -EIO;
f942dc25
IC
756 }
757
758 first->size -= txp->size;
2810e5b9 759 slots++;
f942dc25
IC
760
761 if (unlikely((txp->offset + txp->size) > PAGE_SIZE)) {
68946159 762 netdev_err(queue->vif->dev, "Cross page boundary, txp->offset: %u, size: %u\n",
f942dc25 763 txp->offset, txp->size);
e9ce7cb6 764 xenvif_fatal_tx_err(queue->vif);
35876b5f 765 return -EINVAL;
f942dc25 766 }
59ccb4eb
WL
767
768 more_data = txp->flags & XEN_NETTXF_more_data;
769
770 if (!drop_err)
771 txp++;
772
773 } while (more_data);
2810e5b9
WL
774
775 if (drop_err) {
e9ce7cb6 776 xenvif_tx_err(queue, first, cons + slots);
2810e5b9
WL
777 return drop_err;
778 }
779
780 return slots;
f942dc25
IC
781}
782
8f13dd96
ZK
783
784struct xenvif_tx_cb {
785 u16 pending_idx;
786};
787
788#define XENVIF_TX_CB(skb) ((struct xenvif_tx_cb *)(skb)->cb)
789
e9ce7cb6 790static inline void xenvif_tx_create_map_op(struct xenvif_queue *queue,
9074ce24
ZK
791 u16 pending_idx,
792 struct xen_netif_tx_request *txp,
793 struct gnttab_map_grant_ref *mop)
f53c3fe8 794{
e9ce7cb6
WL
795 queue->pages_to_map[mop-queue->tx_map_ops] = queue->mmap_pages[pending_idx];
796 gnttab_set_map_op(mop, idx_to_kaddr(queue, pending_idx),
f53c3fe8 797 GNTMAP_host_map | GNTMAP_readonly,
e9ce7cb6 798 txp->gref, queue->vif->domid);
f53c3fe8 799
e9ce7cb6 800 memcpy(&queue->pending_tx_info[pending_idx].req, txp,
f53c3fe8
ZK
801 sizeof(*txp));
802}
803
e3377f36
ZK
804static inline struct sk_buff *xenvif_alloc_skb(unsigned int size)
805{
806 struct sk_buff *skb =
807 alloc_skb(size + NET_SKB_PAD + NET_IP_ALIGN,
808 GFP_ATOMIC | __GFP_NOWARN);
809 if (unlikely(skb == NULL))
810 return NULL;
811
812 /* Packets passed to netif_rx() must have some headroom. */
813 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
814
815 /* Initialize it here to avoid later surprises */
816 skb_shinfo(skb)->destructor_arg = NULL;
817
818 return skb;
819}
820
e9ce7cb6 821static struct gnttab_map_grant_ref *xenvif_get_requests(struct xenvif_queue *queue,
f53c3fe8
ZK
822 struct sk_buff *skb,
823 struct xen_netif_tx_request *txp,
2475b225
RL
824 struct gnttab_map_grant_ref *gop,
825 unsigned int frag_overflow,
826 struct sk_buff *nskb)
f942dc25
IC
827{
828 struct skb_shared_info *shinfo = skb_shinfo(skb);
829 skb_frag_t *frags = shinfo->frags;
8f13dd96 830 u16 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
62bad319
ZK
831 int start;
832 pending_ring_idx_t index;
2475b225 833 unsigned int nr_slots;
2810e5b9 834
2810e5b9 835 nr_slots = shinfo->nr_frags;
f942dc25
IC
836
837 /* Skip first skb fragment if it is on same page as header fragment. */
ea066ad1 838 start = (frag_get_pending_idx(&shinfo->frags[0]) == pending_idx);
f942dc25 839
f53c3fe8
ZK
840 for (shinfo->nr_frags = start; shinfo->nr_frags < nr_slots;
841 shinfo->nr_frags++, txp++, gop++) {
e9ce7cb6
WL
842 index = pending_index(queue->pending_cons++);
843 pending_idx = queue->pending_ring[index];
844 xenvif_tx_create_map_op(queue, pending_idx, txp, gop);
f53c3fe8 845 frag_set_pending_idx(&frags[shinfo->nr_frags], pending_idx);
f942dc25
IC
846 }
847
e3377f36 848 if (frag_overflow) {
e3377f36
ZK
849
850 shinfo = skb_shinfo(nskb);
851 frags = shinfo->frags;
852
853 for (shinfo->nr_frags = 0; shinfo->nr_frags < frag_overflow;
854 shinfo->nr_frags++, txp++, gop++) {
e9ce7cb6
WL
855 index = pending_index(queue->pending_cons++);
856 pending_idx = queue->pending_ring[index];
857 xenvif_tx_create_map_op(queue, pending_idx, txp, gop);
e3377f36
ZK
858 frag_set_pending_idx(&frags[shinfo->nr_frags],
859 pending_idx);
860 }
861
862 skb_shinfo(skb)->frag_list = nskb;
863 }
2810e5b9 864
f942dc25
IC
865 return gop;
866}
867
e9ce7cb6 868static inline void xenvif_grant_handle_set(struct xenvif_queue *queue,
f53c3fe8
ZK
869 u16 pending_idx,
870 grant_handle_t handle)
871{
e9ce7cb6 872 if (unlikely(queue->grant_tx_handle[pending_idx] !=
f53c3fe8 873 NETBACK_INVALID_HANDLE)) {
e9ce7cb6 874 netdev_err(queue->vif->dev,
68946159 875 "Trying to overwrite active handle! pending_idx: 0x%x\n",
f53c3fe8
ZK
876 pending_idx);
877 BUG();
878 }
e9ce7cb6 879 queue->grant_tx_handle[pending_idx] = handle;
f53c3fe8
ZK
880}
881
e9ce7cb6 882static inline void xenvif_grant_handle_reset(struct xenvif_queue *queue,
f53c3fe8
ZK
883 u16 pending_idx)
884{
e9ce7cb6 885 if (unlikely(queue->grant_tx_handle[pending_idx] ==
f53c3fe8 886 NETBACK_INVALID_HANDLE)) {
e9ce7cb6 887 netdev_err(queue->vif->dev,
68946159 888 "Trying to unmap invalid handle! pending_idx: 0x%x\n",
f53c3fe8
ZK
889 pending_idx);
890 BUG();
891 }
e9ce7cb6 892 queue->grant_tx_handle[pending_idx] = NETBACK_INVALID_HANDLE;
f53c3fe8
ZK
893}
894
e9ce7cb6 895static int xenvif_tx_check_gop(struct xenvif_queue *queue,
7376419a 896 struct sk_buff *skb,
bdab8275
ZK
897 struct gnttab_map_grant_ref **gopp_map,
898 struct gnttab_copy **gopp_copy)
f942dc25 899{
9074ce24 900 struct gnttab_map_grant_ref *gop_map = *gopp_map;
8f13dd96 901 u16 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
1a998d3e
ZK
902 /* This always points to the shinfo of the skb being checked, which
903 * could be either the first or the one on the frag_list
904 */
f942dc25 905 struct skb_shared_info *shinfo = skb_shinfo(skb);
1a998d3e
ZK
906 /* If this is non-NULL, we are currently checking the frag_list skb, and
907 * this points to the shinfo of the first one
908 */
909 struct skb_shared_info *first_shinfo = NULL;
f942dc25 910 int nr_frags = shinfo->nr_frags;
1b860da0
ZK
911 const bool sharedslot = nr_frags &&
912 frag_get_pending_idx(&shinfo->frags[0]) == pending_idx;
bdab8275 913 int i, err;
f942dc25
IC
914
915 /* Check status of header. */
bdab8275 916 err = (*gopp_copy)->status;
bdab8275
ZK
917 if (unlikely(err)) {
918 if (net_ratelimit())
e9ce7cb6 919 netdev_dbg(queue->vif->dev,
00aefceb 920 "Grant copy of header failed! status: %d pending_idx: %u ref: %u\n",
bdab8275
ZK
921 (*gopp_copy)->status,
922 pending_idx,
923 (*gopp_copy)->source.u.ref);
1b860da0
ZK
924 /* The first frag might still have this slot mapped */
925 if (!sharedslot)
926 xenvif_idx_release(queue, pending_idx,
927 XEN_NETIF_RSP_ERROR);
bdab8275 928 }
d8cfbfc4 929 (*gopp_copy)++;
f942dc25 930
e3377f36 931check_frags:
bdab8275 932 for (i = 0; i < nr_frags; i++, gop_map++) {
f942dc25 933 int j, newerr;
f942dc25 934
ea066ad1 935 pending_idx = frag_get_pending_idx(&shinfo->frags[i]);
f942dc25
IC
936
937 /* Check error status: if okay then remember grant handle. */
bdab8275 938 newerr = gop_map->status;
2810e5b9 939
f942dc25 940 if (likely(!newerr)) {
e9ce7cb6 941 xenvif_grant_handle_set(queue,
9074ce24
ZK
942 pending_idx,
943 gop_map->handle);
f942dc25 944 /* Had a previous error? Invalidate this fragment. */
1b860da0 945 if (unlikely(err)) {
e9ce7cb6 946 xenvif_idx_unmap(queue, pending_idx);
1b860da0
ZK
947 /* If the mapping of the first frag was OK, but
948 * the header's copy failed, and they are
949 * sharing a slot, send an error
950 */
951 if (i == 0 && sharedslot)
952 xenvif_idx_release(queue, pending_idx,
953 XEN_NETIF_RSP_ERROR);
954 else
955 xenvif_idx_release(queue, pending_idx,
956 XEN_NETIF_RSP_OKAY);
957 }
f942dc25
IC
958 continue;
959 }
960
961 /* Error on this fragment: respond to client with an error. */
bdab8275 962 if (net_ratelimit())
e9ce7cb6 963 netdev_dbg(queue->vif->dev,
00aefceb 964 "Grant map of %d. frag failed! status: %d pending_idx: %u ref: %u\n",
bdab8275
ZK
965 i,
966 gop_map->status,
967 pending_idx,
968 gop_map->ref);
1b860da0 969
e9ce7cb6 970 xenvif_idx_release(queue, pending_idx, XEN_NETIF_RSP_ERROR);
f942dc25
IC
971
972 /* Not the first error? Preceding frags already invalidated. */
973 if (err)
974 continue;
1b860da0
ZK
975
976 /* First error: if the header haven't shared a slot with the
977 * first frag, release it as well.
978 */
979 if (!sharedslot)
980 xenvif_idx_release(queue,
981 XENVIF_TX_CB(skb)->pending_idx,
982 XEN_NETIF_RSP_OKAY);
983
984 /* Invalidate preceding fragments of this skb. */
bdab8275 985 for (j = 0; j < i; j++) {
5ccb3ea7 986 pending_idx = frag_get_pending_idx(&shinfo->frags[j]);
e9ce7cb6 987 xenvif_idx_unmap(queue, pending_idx);
1b860da0
ZK
988 xenvif_idx_release(queue, pending_idx,
989 XEN_NETIF_RSP_OKAY);
f942dc25
IC
990 }
991
1a998d3e
ZK
992 /* And if we found the error while checking the frag_list, unmap
993 * the first skb's frags
994 */
995 if (first_shinfo) {
996 for (j = 0; j < first_shinfo->nr_frags; j++) {
997 pending_idx = frag_get_pending_idx(&first_shinfo->frags[j]);
998 xenvif_idx_unmap(queue, pending_idx);
1b860da0
ZK
999 xenvif_idx_release(queue, pending_idx,
1000 XEN_NETIF_RSP_OKAY);
1a998d3e 1001 }
f942dc25
IC
1002 }
1003
1004 /* Remember the error: invalidate all subsequent fragments. */
1005 err = newerr;
1006 }
1007
1a998d3e
ZK
1008 if (skb_has_frag_list(skb) && !first_shinfo) {
1009 first_shinfo = skb_shinfo(skb);
1010 shinfo = skb_shinfo(skb_shinfo(skb)->frag_list);
e3377f36 1011 nr_frags = shinfo->nr_frags;
e3377f36
ZK
1012
1013 goto check_frags;
1014 }
1015
bdab8275 1016 *gopp_map = gop_map;
f942dc25
IC
1017 return err;
1018}
1019
e9ce7cb6 1020static void xenvif_fill_frags(struct xenvif_queue *queue, struct sk_buff *skb)
f942dc25
IC
1021{
1022 struct skb_shared_info *shinfo = skb_shinfo(skb);
1023 int nr_frags = shinfo->nr_frags;
1024 int i;
f53c3fe8
ZK
1025 u16 prev_pending_idx = INVALID_PENDING_IDX;
1026
f942dc25
IC
1027 for (i = 0; i < nr_frags; i++) {
1028 skb_frag_t *frag = shinfo->frags + i;
1029 struct xen_netif_tx_request *txp;
ea066ad1
IC
1030 struct page *page;
1031 u16 pending_idx;
f942dc25 1032
ea066ad1 1033 pending_idx = frag_get_pending_idx(frag);
f942dc25 1034
f53c3fe8 1035 /* If this is not the first frag, chain it to the previous*/
bdab8275 1036 if (prev_pending_idx == INVALID_PENDING_IDX)
f53c3fe8 1037 skb_shinfo(skb)->destructor_arg =
e9ce7cb6 1038 &callback_param(queue, pending_idx);
bdab8275 1039 else
e9ce7cb6
WL
1040 callback_param(queue, prev_pending_idx).ctx =
1041 &callback_param(queue, pending_idx);
f53c3fe8 1042
e9ce7cb6 1043 callback_param(queue, pending_idx).ctx = NULL;
f53c3fe8
ZK
1044 prev_pending_idx = pending_idx;
1045
e9ce7cb6
WL
1046 txp = &queue->pending_tx_info[pending_idx].req;
1047 page = virt_to_page(idx_to_kaddr(queue, pending_idx));
ea066ad1 1048 __skb_fill_page_desc(skb, i, page, txp->offset, txp->size);
f942dc25
IC
1049 skb->len += txp->size;
1050 skb->data_len += txp->size;
1051 skb->truesize += txp->size;
1052
f53c3fe8 1053 /* Take an extra reference to offset network stack's put_page */
e9ce7cb6 1054 get_page(queue->mmap_pages[pending_idx]);
f942dc25
IC
1055 }
1056}
1057
e9ce7cb6 1058static int xenvif_get_extras(struct xenvif_queue *queue,
f942dc25
IC
1059 struct xen_netif_extra_info *extras,
1060 int work_to_do)
1061{
1062 struct xen_netif_extra_info extra;
e9ce7cb6 1063 RING_IDX cons = queue->tx.req_cons;
f942dc25
IC
1064
1065 do {
1066 if (unlikely(work_to_do-- <= 0)) {
e9ce7cb6
WL
1067 netdev_err(queue->vif->dev, "Missing extra info\n");
1068 xenvif_fatal_tx_err(queue->vif);
f942dc25
IC
1069 return -EBADR;
1070 }
1071
e9ce7cb6 1072 memcpy(&extra, RING_GET_REQUEST(&queue->tx, cons),
f942dc25
IC
1073 sizeof(extra));
1074 if (unlikely(!extra.type ||
1075 extra.type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
e9ce7cb6
WL
1076 queue->tx.req_cons = ++cons;
1077 netdev_err(queue->vif->dev,
f942dc25 1078 "Invalid extra type: %d\n", extra.type);
e9ce7cb6 1079 xenvif_fatal_tx_err(queue->vif);
f942dc25
IC
1080 return -EINVAL;
1081 }
1082
1083 memcpy(&extras[extra.type - 1], &extra, sizeof(extra));
e9ce7cb6 1084 queue->tx.req_cons = ++cons;
f942dc25
IC
1085 } while (extra.flags & XEN_NETIF_EXTRA_FLAG_MORE);
1086
1087 return work_to_do;
1088}
1089
7376419a
WL
1090static int xenvif_set_skb_gso(struct xenvif *vif,
1091 struct sk_buff *skb,
1092 struct xen_netif_extra_info *gso)
f942dc25
IC
1093{
1094 if (!gso->u.gso.size) {
48856286 1095 netdev_err(vif->dev, "GSO size must not be zero.\n");
7376419a 1096 xenvif_fatal_tx_err(vif);
f942dc25
IC
1097 return -EINVAL;
1098 }
1099
a9468587
PD
1100 switch (gso->u.gso.type) {
1101 case XEN_NETIF_GSO_TYPE_TCPV4:
1102 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1103 break;
1104 case XEN_NETIF_GSO_TYPE_TCPV6:
1105 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1106 break;
1107 default:
48856286 1108 netdev_err(vif->dev, "Bad GSO type %d.\n", gso->u.gso.type);
7376419a 1109 xenvif_fatal_tx_err(vif);
f942dc25
IC
1110 return -EINVAL;
1111 }
1112
1113 skb_shinfo(skb)->gso_size = gso->u.gso.size;
b89587a7 1114 /* gso_segs will be calculated later */
f942dc25
IC
1115
1116 return 0;
1117}
1118
e9ce7cb6 1119static int checksum_setup(struct xenvif_queue *queue, struct sk_buff *skb)
2eba61d5 1120{
2721637c 1121 bool recalculate_partial_csum = false;
2eba61d5
PD
1122
1123 /* A GSO SKB must be CHECKSUM_PARTIAL. However some buggy
1124 * peers can fail to set NETRXF_csum_blank when sending a GSO
1125 * frame. In this case force the SKB to CHECKSUM_PARTIAL and
1126 * recalculate the partial checksum.
1127 */
1128 if (skb->ip_summed != CHECKSUM_PARTIAL && skb_is_gso(skb)) {
e9ce7cb6 1129 queue->stats.rx_gso_checksum_fixup++;
2eba61d5 1130 skb->ip_summed = CHECKSUM_PARTIAL;
2721637c 1131 recalculate_partial_csum = true;
2eba61d5
PD
1132 }
1133
1134 /* A non-CHECKSUM_PARTIAL SKB does not require setup. */
1135 if (skb->ip_summed != CHECKSUM_PARTIAL)
1136 return 0;
1137
2721637c 1138 return skb_checksum_setup(skb, recalculate_partial_csum);
2eba61d5
PD
1139}
1140
e9ce7cb6 1141static bool tx_credit_exceeded(struct xenvif_queue *queue, unsigned size)
f942dc25 1142{
059dfa6a 1143 u64 now = get_jiffies_64();
e9ce7cb6
WL
1144 u64 next_credit = queue->credit_window_start +
1145 msecs_to_jiffies(queue->credit_usec / 1000);
f942dc25
IC
1146
1147 /* Timer could already be pending in rare cases. */
e9ce7cb6 1148 if (timer_pending(&queue->credit_timeout))
f942dc25
IC
1149 return true;
1150
1151 /* Passed the point where we can replenish credit? */
059dfa6a 1152 if (time_after_eq64(now, next_credit)) {
e9ce7cb6
WL
1153 queue->credit_window_start = now;
1154 tx_add_credit(queue);
f942dc25
IC
1155 }
1156
1157 /* Still too big to send right now? Set a callback. */
e9ce7cb6
WL
1158 if (size > queue->remaining_credit) {
1159 queue->credit_timeout.data =
1160 (unsigned long)queue;
e9ce7cb6 1161 mod_timer(&queue->credit_timeout,
f942dc25 1162 next_credit);
e9ce7cb6 1163 queue->credit_window_start = next_credit;
f942dc25
IC
1164
1165 return true;
1166 }
1167
1168 return false;
1169}
1170
210c34dc
PD
1171/* No locking is required in xenvif_mcast_add/del() as they are
1172 * only ever invoked from NAPI poll. An RCU list is used because
1173 * xenvif_mcast_match() is called asynchronously, during start_xmit.
1174 */
1175
1176static int xenvif_mcast_add(struct xenvif *vif, const u8 *addr)
1177{
1178 struct xenvif_mcast_addr *mcast;
1179
1180 if (vif->fe_mcast_count == XEN_NETBK_MCAST_MAX) {
1181 if (net_ratelimit())
1182 netdev_err(vif->dev,
1183 "Too many multicast addresses\n");
1184 return -ENOSPC;
1185 }
1186
1187 mcast = kzalloc(sizeof(*mcast), GFP_ATOMIC);
1188 if (!mcast)
1189 return -ENOMEM;
1190
1191 ether_addr_copy(mcast->addr, addr);
1192 list_add_tail_rcu(&mcast->entry, &vif->fe_mcast_addr);
1193 vif->fe_mcast_count++;
1194
1195 return 0;
1196}
1197
1198static void xenvif_mcast_del(struct xenvif *vif, const u8 *addr)
1199{
1200 struct xenvif_mcast_addr *mcast;
1201
1202 list_for_each_entry_rcu(mcast, &vif->fe_mcast_addr, entry) {
1203 if (ether_addr_equal(addr, mcast->addr)) {
1204 --vif->fe_mcast_count;
1205 list_del_rcu(&mcast->entry);
1206 kfree_rcu(mcast, rcu);
1207 break;
1208 }
1209 }
1210}
1211
1212bool xenvif_mcast_match(struct xenvif *vif, const u8 *addr)
1213{
1214 struct xenvif_mcast_addr *mcast;
1215
1216 rcu_read_lock();
1217 list_for_each_entry_rcu(mcast, &vif->fe_mcast_addr, entry) {
1218 if (ether_addr_equal(addr, mcast->addr)) {
1219 rcu_read_unlock();
1220 return true;
1221 }
1222 }
1223 rcu_read_unlock();
1224
1225 return false;
1226}
1227
1228void xenvif_mcast_addr_list_free(struct xenvif *vif)
1229{
1230 /* No need for locking or RCU here. NAPI poll and TX queue
1231 * are stopped.
1232 */
1233 while (!list_empty(&vif->fe_mcast_addr)) {
1234 struct xenvif_mcast_addr *mcast;
1235
1236 mcast = list_first_entry(&vif->fe_mcast_addr,
1237 struct xenvif_mcast_addr,
1238 entry);
1239 --vif->fe_mcast_count;
1240 list_del(&mcast->entry);
1241 kfree(mcast);
1242 }
1243}
1244
e9ce7cb6 1245static void xenvif_tx_build_gops(struct xenvif_queue *queue,
bdab8275
ZK
1246 int budget,
1247 unsigned *copy_ops,
1248 unsigned *map_ops)
f942dc25 1249{
2475b225
RL
1250 struct gnttab_map_grant_ref *gop = queue->tx_map_ops;
1251 struct sk_buff *skb, *nskb;
f942dc25 1252 int ret;
2475b225 1253 unsigned int frag_overflow;
f942dc25 1254
e9ce7cb6 1255 while (skb_queue_len(&queue->tx_queue) < budget) {
f942dc25 1256 struct xen_netif_tx_request txreq;
37641494 1257 struct xen_netif_tx_request txfrags[XEN_NETBK_LEGACY_SLOTS_MAX];
f942dc25
IC
1258 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX-1];
1259 u16 pending_idx;
1260 RING_IDX idx;
1261 int work_to_do;
1262 unsigned int data_len;
1263 pending_ring_idx_t index;
1264
e9ce7cb6 1265 if (queue->tx.sring->req_prod - queue->tx.req_cons >
48856286 1266 XEN_NETIF_TX_RING_SIZE) {
e9ce7cb6 1267 netdev_err(queue->vif->dev,
48856286
IC
1268 "Impossible number of requests. "
1269 "req_prod %d, req_cons %d, size %ld\n",
e9ce7cb6 1270 queue->tx.sring->req_prod, queue->tx.req_cons,
48856286 1271 XEN_NETIF_TX_RING_SIZE);
e9ce7cb6 1272 xenvif_fatal_tx_err(queue->vif);
e9d8b2c2 1273 break;
48856286
IC
1274 }
1275
e9ce7cb6 1276 work_to_do = RING_HAS_UNCONSUMED_REQUESTS(&queue->tx);
b3f980bd
WL
1277 if (!work_to_do)
1278 break;
f942dc25 1279
e9ce7cb6 1280 idx = queue->tx.req_cons;
f942dc25 1281 rmb(); /* Ensure that we see the request before we copy it. */
e9ce7cb6 1282 memcpy(&txreq, RING_GET_REQUEST(&queue->tx, idx), sizeof(txreq));
f942dc25
IC
1283
1284 /* Credit-based scheduling. */
e9ce7cb6
WL
1285 if (txreq.size > queue->remaining_credit &&
1286 tx_credit_exceeded(queue, txreq.size))
b3f980bd 1287 break;
f942dc25 1288
e9ce7cb6 1289 queue->remaining_credit -= txreq.size;
f942dc25
IC
1290
1291 work_to_do--;
e9ce7cb6 1292 queue->tx.req_cons = ++idx;
f942dc25
IC
1293
1294 memset(extras, 0, sizeof(extras));
1295 if (txreq.flags & XEN_NETTXF_extra_info) {
e9ce7cb6 1296 work_to_do = xenvif_get_extras(queue, extras,
7376419a 1297 work_to_do);
e9ce7cb6 1298 idx = queue->tx.req_cons;
48856286 1299 if (unlikely(work_to_do < 0))
b3f980bd 1300 break;
f942dc25
IC
1301 }
1302
210c34dc
PD
1303 if (extras[XEN_NETIF_EXTRA_TYPE_MCAST_ADD - 1].type) {
1304 struct xen_netif_extra_info *extra;
1305
1306 extra = &extras[XEN_NETIF_EXTRA_TYPE_MCAST_ADD - 1];
1307 ret = xenvif_mcast_add(queue->vif, extra->u.mcast.addr);
1308
1309 make_tx_response(queue, &txreq,
1310 (ret == 0) ?
1311 XEN_NETIF_RSP_OKAY :
1312 XEN_NETIF_RSP_ERROR);
1313 push_tx_responses(queue);
1314 continue;
1315 }
1316
1317 if (extras[XEN_NETIF_EXTRA_TYPE_MCAST_DEL - 1].type) {
1318 struct xen_netif_extra_info *extra;
1319
1320 extra = &extras[XEN_NETIF_EXTRA_TYPE_MCAST_DEL - 1];
1321 xenvif_mcast_del(queue->vif, extra->u.mcast.addr);
1322
1323 make_tx_response(queue, &txreq, XEN_NETIF_RSP_OKAY);
1324 push_tx_responses(queue);
1325 continue;
1326 }
1327
e9ce7cb6 1328 ret = xenvif_count_requests(queue, &txreq, txfrags, work_to_do);
48856286 1329 if (unlikely(ret < 0))
b3f980bd 1330 break;
48856286 1331
f942dc25
IC
1332 idx += ret;
1333
1334 if (unlikely(txreq.size < ETH_HLEN)) {
e9ce7cb6 1335 netdev_dbg(queue->vif->dev,
f942dc25 1336 "Bad packet size: %d\n", txreq.size);
e9ce7cb6 1337 xenvif_tx_err(queue, &txreq, idx);
b3f980bd 1338 break;
f942dc25
IC
1339 }
1340
1341 /* No crossing a page as the payload mustn't fragment. */
1342 if (unlikely((txreq.offset + txreq.size) > PAGE_SIZE)) {
e9ce7cb6 1343 netdev_err(queue->vif->dev,
68946159 1344 "txreq.offset: %u, size: %u, end: %lu\n",
f942dc25 1345 txreq.offset, txreq.size,
dc5e7a81 1346 (unsigned long)(txreq.offset&~PAGE_MASK) + txreq.size);
e9ce7cb6 1347 xenvif_fatal_tx_err(queue->vif);
b3f980bd 1348 break;
f942dc25
IC
1349 }
1350
e9ce7cb6
WL
1351 index = pending_index(queue->pending_cons);
1352 pending_idx = queue->pending_ring[index];
f942dc25 1353
7e5d7753 1354 data_len = (txreq.size > XEN_NETBACK_TX_COPY_LEN &&
37641494 1355 ret < XEN_NETBK_LEGACY_SLOTS_MAX) ?
7e5d7753 1356 XEN_NETBACK_TX_COPY_LEN : txreq.size;
f942dc25 1357
e3377f36 1358 skb = xenvif_alloc_skb(data_len);
f942dc25 1359 if (unlikely(skb == NULL)) {
e9ce7cb6 1360 netdev_dbg(queue->vif->dev,
f942dc25 1361 "Can't allocate a skb in start_xmit.\n");
e9ce7cb6 1362 xenvif_tx_err(queue, &txreq, idx);
f942dc25
IC
1363 break;
1364 }
1365
2475b225
RL
1366 skb_shinfo(skb)->nr_frags = ret;
1367 if (data_len < txreq.size)
1368 skb_shinfo(skb)->nr_frags++;
1369 /* At this point shinfo->nr_frags is in fact the number of
1370 * slots, which can be as large as XEN_NETBK_LEGACY_SLOTS_MAX.
1371 */
1372 frag_overflow = 0;
1373 nskb = NULL;
1374 if (skb_shinfo(skb)->nr_frags > MAX_SKB_FRAGS) {
1375 frag_overflow = skb_shinfo(skb)->nr_frags - MAX_SKB_FRAGS;
1376 BUG_ON(frag_overflow > MAX_SKB_FRAGS);
1377 skb_shinfo(skb)->nr_frags = MAX_SKB_FRAGS;
1378 nskb = xenvif_alloc_skb(0);
1379 if (unlikely(nskb == NULL)) {
1380 kfree_skb(skb);
1381 xenvif_tx_err(queue, &txreq, idx);
1382 if (net_ratelimit())
1383 netdev_err(queue->vif->dev,
1384 "Can't allocate the frag_list skb.\n");
1385 break;
1386 }
1387 }
1388
f942dc25
IC
1389 if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
1390 struct xen_netif_extra_info *gso;
1391 gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
1392
e9ce7cb6 1393 if (xenvif_set_skb_gso(queue->vif, skb, gso)) {
7376419a 1394 /* Failure in xenvif_set_skb_gso is fatal. */
f942dc25 1395 kfree_skb(skb);
2475b225 1396 kfree_skb(nskb);
b3f980bd 1397 break;
f942dc25
IC
1398 }
1399 }
1400
8f13dd96 1401 XENVIF_TX_CB(skb)->pending_idx = pending_idx;
f942dc25
IC
1402
1403 __skb_put(skb, data_len);
e9ce7cb6
WL
1404 queue->tx_copy_ops[*copy_ops].source.u.ref = txreq.gref;
1405 queue->tx_copy_ops[*copy_ops].source.domid = queue->vif->domid;
1406 queue->tx_copy_ops[*copy_ops].source.offset = txreq.offset;
bdab8275 1407
e9ce7cb6 1408 queue->tx_copy_ops[*copy_ops].dest.u.gmfn =
0df4f266 1409 virt_to_gfn(skb->data);
e9ce7cb6
WL
1410 queue->tx_copy_ops[*copy_ops].dest.domid = DOMID_SELF;
1411 queue->tx_copy_ops[*copy_ops].dest.offset =
bdab8275
ZK
1412 offset_in_page(skb->data);
1413
e9ce7cb6
WL
1414 queue->tx_copy_ops[*copy_ops].len = data_len;
1415 queue->tx_copy_ops[*copy_ops].flags = GNTCOPY_source_gref;
bdab8275
ZK
1416
1417 (*copy_ops)++;
f942dc25 1418
f942dc25 1419 if (data_len < txreq.size) {
ea066ad1
IC
1420 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1421 pending_idx);
e9ce7cb6 1422 xenvif_tx_create_map_op(queue, pending_idx, &txreq, gop);
bdab8275 1423 gop++;
f942dc25 1424 } else {
ea066ad1
IC
1425 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1426 INVALID_PENDING_IDX);
e9ce7cb6 1427 memcpy(&queue->pending_tx_info[pending_idx].req, &txreq,
bdab8275 1428 sizeof(txreq));
f942dc25
IC
1429 }
1430
e9ce7cb6 1431 queue->pending_cons++;
f942dc25 1432
2475b225
RL
1433 gop = xenvif_get_requests(queue, skb, txfrags, gop,
1434 frag_overflow, nskb);
f942dc25 1435
e9ce7cb6 1436 __skb_queue_tail(&queue->tx_queue, skb);
1e0b6eac 1437
e9ce7cb6 1438 queue->tx.req_cons = idx;
f942dc25 1439
e9ce7cb6
WL
1440 if (((gop-queue->tx_map_ops) >= ARRAY_SIZE(queue->tx_map_ops)) ||
1441 (*copy_ops >= ARRAY_SIZE(queue->tx_copy_ops)))
f942dc25
IC
1442 break;
1443 }
1444
e9ce7cb6 1445 (*map_ops) = gop - queue->tx_map_ops;
bdab8275 1446 return;
f942dc25
IC
1447}
1448
e3377f36
ZK
1449/* Consolidate skb with a frag_list into a brand new one with local pages on
1450 * frags. Returns 0 or -ENOMEM if can't allocate new pages.
1451 */
e9ce7cb6 1452static int xenvif_handle_frag_list(struct xenvif_queue *queue, struct sk_buff *skb)
e3377f36
ZK
1453{
1454 unsigned int offset = skb_headlen(skb);
1455 skb_frag_t frags[MAX_SKB_FRAGS];
49d9991a 1456 int i, f;
e3377f36
ZK
1457 struct ubuf_info *uarg;
1458 struct sk_buff *nskb = skb_shinfo(skb)->frag_list;
1459
e9ce7cb6
WL
1460 queue->stats.tx_zerocopy_sent += 2;
1461 queue->stats.tx_frag_overflow++;
e3377f36 1462
e9ce7cb6 1463 xenvif_fill_frags(queue, nskb);
e3377f36
ZK
1464 /* Subtract frags size, we will correct it later */
1465 skb->truesize -= skb->data_len;
1466 skb->len += nskb->len;
1467 skb->data_len += nskb->len;
1468
1469 /* create a brand new frags array and coalesce there */
1470 for (i = 0; offset < skb->len; i++) {
1471 struct page *page;
1472 unsigned int len;
1473
1474 BUG_ON(i >= MAX_SKB_FRAGS);
44cc8ed1 1475 page = alloc_page(GFP_ATOMIC);
e3377f36
ZK
1476 if (!page) {
1477 int j;
1478 skb->truesize += skb->data_len;
1479 for (j = 0; j < i; j++)
1480 put_page(frags[j].page.p);
1481 return -ENOMEM;
1482 }
1483
1484 if (offset + PAGE_SIZE < skb->len)
1485 len = PAGE_SIZE;
1486 else
1487 len = skb->len - offset;
1488 if (skb_copy_bits(skb, offset, page_address(page), len))
1489 BUG();
1490
1491 offset += len;
1492 frags[i].page.p = page;
1493 frags[i].page_offset = 0;
1494 skb_frag_size_set(&frags[i], len);
1495 }
49d9991a 1496
b0c21bad
DV
1497 /* Copied all the bits from the frag list -- free it. */
1498 skb_frag_list_init(skb);
1499 xenvif_skb_zerocopy_prepare(queue, nskb);
1500 kfree_skb(nskb);
1501
49d9991a
DV
1502 /* Release all the original (foreign) frags. */
1503 for (f = 0; f < skb_shinfo(skb)->nr_frags; f++)
1504 skb_frag_unref(skb, f);
e3377f36 1505 uarg = skb_shinfo(skb)->destructor_arg;
a64bd934
WL
1506 /* increase inflight counter to offset decrement in callback */
1507 atomic_inc(&queue->inflight_packets);
e3377f36
ZK
1508 uarg->callback(uarg, true);
1509 skb_shinfo(skb)->destructor_arg = NULL;
1510
b0c21bad
DV
1511 /* Fill the skb with the new (local) frags. */
1512 memcpy(skb_shinfo(skb)->frags, frags, i * sizeof(skb_frag_t));
1513 skb_shinfo(skb)->nr_frags = i;
1514 skb->truesize += i * PAGE_SIZE;
e3377f36
ZK
1515
1516 return 0;
1517}
b3f980bd 1518
e9ce7cb6 1519static int xenvif_tx_submit(struct xenvif_queue *queue)
f942dc25 1520{
e9ce7cb6
WL
1521 struct gnttab_map_grant_ref *gop_map = queue->tx_map_ops;
1522 struct gnttab_copy *gop_copy = queue->tx_copy_ops;
f942dc25 1523 struct sk_buff *skb;
b3f980bd 1524 int work_done = 0;
f942dc25 1525
e9ce7cb6 1526 while ((skb = __skb_dequeue(&queue->tx_queue)) != NULL) {
f942dc25 1527 struct xen_netif_tx_request *txp;
f942dc25
IC
1528 u16 pending_idx;
1529 unsigned data_len;
1530
8f13dd96 1531 pending_idx = XENVIF_TX_CB(skb)->pending_idx;
e9ce7cb6 1532 txp = &queue->pending_tx_info[pending_idx].req;
f942dc25
IC
1533
1534 /* Check the remap error code. */
e9ce7cb6 1535 if (unlikely(xenvif_tx_check_gop(queue, skb, &gop_map, &gop_copy))) {
b42cc6e4
ZK
1536 /* If there was an error, xenvif_tx_check_gop is
1537 * expected to release all the frags which were mapped,
1538 * so kfree_skb shouldn't do it again
1539 */
f942dc25 1540 skb_shinfo(skb)->nr_frags = 0;
b42cc6e4
ZK
1541 if (skb_has_frag_list(skb)) {
1542 struct sk_buff *nskb =
1543 skb_shinfo(skb)->frag_list;
1544 skb_shinfo(nskb)->nr_frags = 0;
1545 }
f942dc25
IC
1546 kfree_skb(skb);
1547 continue;
1548 }
1549
1550 data_len = skb->len;
e9ce7cb6 1551 callback_param(queue, pending_idx).ctx = NULL;
f942dc25
IC
1552 if (data_len < txp->size) {
1553 /* Append the packet payload as a fragment. */
1554 txp->offset += data_len;
1555 txp->size -= data_len;
1556 } else {
1557 /* Schedule a response immediately. */
e9ce7cb6 1558 xenvif_idx_release(queue, pending_idx,
bdab8275 1559 XEN_NETIF_RSP_OKAY);
f942dc25
IC
1560 }
1561
1562 if (txp->flags & XEN_NETTXF_csum_blank)
1563 skb->ip_summed = CHECKSUM_PARTIAL;
1564 else if (txp->flags & XEN_NETTXF_data_validated)
1565 skb->ip_summed = CHECKSUM_UNNECESSARY;
1566
e9ce7cb6 1567 xenvif_fill_frags(queue, skb);
f942dc25 1568
e3377f36 1569 if (unlikely(skb_has_frag_list(skb))) {
e9ce7cb6 1570 if (xenvif_handle_frag_list(queue, skb)) {
e3377f36 1571 if (net_ratelimit())
e9ce7cb6 1572 netdev_err(queue->vif->dev,
e3377f36 1573 "Not enough memory to consolidate frag_list!\n");
a64bd934 1574 xenvif_skb_zerocopy_prepare(queue, skb);
e3377f36
ZK
1575 kfree_skb(skb);
1576 continue;
1577 }
1578 }
1579
e9ce7cb6 1580 skb->dev = queue->vif->dev;
f942dc25 1581 skb->protocol = eth_type_trans(skb, skb->dev);
f9ca8f74 1582 skb_reset_network_header(skb);
f942dc25 1583
e9ce7cb6
WL
1584 if (checksum_setup(queue, skb)) {
1585 netdev_dbg(queue->vif->dev,
f942dc25 1586 "Can't setup checksum in net_tx_action\n");
f53c3fe8
ZK
1587 /* We have to set this flag to trigger the callback */
1588 if (skb_shinfo(skb)->destructor_arg)
a64bd934 1589 xenvif_skb_zerocopy_prepare(queue, skb);
f942dc25
IC
1590 kfree_skb(skb);
1591 continue;
1592 }
1593
40893fd0 1594 skb_probe_transport_header(skb, 0);
f9ca8f74 1595
b89587a7
PD
1596 /* If the packet is GSO then we will have just set up the
1597 * transport header offset in checksum_setup so it's now
1598 * straightforward to calculate gso_segs.
1599 */
1600 if (skb_is_gso(skb)) {
1601 int mss = skb_shinfo(skb)->gso_size;
1602 int hdrlen = skb_transport_header(skb) -
1603 skb_mac_header(skb) +
1604 tcp_hdrlen(skb);
1605
1606 skb_shinfo(skb)->gso_segs =
1607 DIV_ROUND_UP(skb->len - hdrlen, mss);
1608 }
1609
e9ce7cb6
WL
1610 queue->stats.rx_bytes += skb->len;
1611 queue->stats.rx_packets++;
f942dc25 1612
b3f980bd
WL
1613 work_done++;
1614
f53c3fe8
ZK
1615 /* Set this flag right before netif_receive_skb, otherwise
1616 * someone might think this packet already left netback, and
1617 * do a skb_copy_ubufs while we are still in control of the
1618 * skb. E.g. the __pskb_pull_tail earlier can do such thing.
1619 */
1bb332af 1620 if (skb_shinfo(skb)->destructor_arg) {
a64bd934 1621 xenvif_skb_zerocopy_prepare(queue, skb);
e9ce7cb6 1622 queue->stats.tx_zerocopy_sent++;
1bb332af 1623 }
f53c3fe8 1624
b3f980bd 1625 netif_receive_skb(skb);
f942dc25 1626 }
b3f980bd
WL
1627
1628 return work_done;
f942dc25
IC
1629}
1630
3e2234b3
ZK
1631void xenvif_zerocopy_callback(struct ubuf_info *ubuf, bool zerocopy_success)
1632{
f53c3fe8
ZK
1633 unsigned long flags;
1634 pending_ring_idx_t index;
e9ce7cb6 1635 struct xenvif_queue *queue = ubuf_to_queue(ubuf);
f53c3fe8
ZK
1636
1637 /* This is the only place where we grab this lock, to protect callbacks
1638 * from each other.
1639 */
e9ce7cb6 1640 spin_lock_irqsave(&queue->callback_lock, flags);
f53c3fe8
ZK
1641 do {
1642 u16 pending_idx = ubuf->desc;
1643 ubuf = (struct ubuf_info *) ubuf->ctx;
e9ce7cb6 1644 BUG_ON(queue->dealloc_prod - queue->dealloc_cons >=
f53c3fe8 1645 MAX_PENDING_REQS);
e9ce7cb6
WL
1646 index = pending_index(queue->dealloc_prod);
1647 queue->dealloc_ring[index] = pending_idx;
f53c3fe8
ZK
1648 /* Sync with xenvif_tx_dealloc_action:
1649 * insert idx then incr producer.
1650 */
1651 smp_wmb();
e9ce7cb6 1652 queue->dealloc_prod++;
f53c3fe8 1653 } while (ubuf);
e9ce7cb6 1654 spin_unlock_irqrestore(&queue->callback_lock, flags);
f53c3fe8 1655
1bb332af 1656 if (likely(zerocopy_success))
e9ce7cb6 1657 queue->stats.tx_zerocopy_success++;
1bb332af 1658 else
e9ce7cb6 1659 queue->stats.tx_zerocopy_fail++;
a64bd934 1660 xenvif_skb_zerocopy_complete(queue);
f53c3fe8
ZK
1661}
1662
e9ce7cb6 1663static inline void xenvif_tx_dealloc_action(struct xenvif_queue *queue)
f53c3fe8
ZK
1664{
1665 struct gnttab_unmap_grant_ref *gop;
1666 pending_ring_idx_t dc, dp;
1667 u16 pending_idx, pending_idx_release[MAX_PENDING_REQS];
1668 unsigned int i = 0;
1669
e9ce7cb6
WL
1670 dc = queue->dealloc_cons;
1671 gop = queue->tx_unmap_ops;
f53c3fe8
ZK
1672
1673 /* Free up any grants we have finished using */
1674 do {
e9ce7cb6 1675 dp = queue->dealloc_prod;
f53c3fe8
ZK
1676
1677 /* Ensure we see all indices enqueued by all
1678 * xenvif_zerocopy_callback().
1679 */
1680 smp_rmb();
1681
1682 while (dc != dp) {
50c2e4dd 1683 BUG_ON(gop - queue->tx_unmap_ops >= MAX_PENDING_REQS);
f53c3fe8 1684 pending_idx =
e9ce7cb6 1685 queue->dealloc_ring[pending_index(dc++)];
f53c3fe8 1686
50c2e4dd 1687 pending_idx_release[gop - queue->tx_unmap_ops] =
f53c3fe8 1688 pending_idx;
50c2e4dd 1689 queue->pages_to_unmap[gop - queue->tx_unmap_ops] =
e9ce7cb6 1690 queue->mmap_pages[pending_idx];
f53c3fe8 1691 gnttab_set_unmap_op(gop,
e9ce7cb6 1692 idx_to_kaddr(queue, pending_idx),
f53c3fe8 1693 GNTMAP_host_map,
e9ce7cb6
WL
1694 queue->grant_tx_handle[pending_idx]);
1695 xenvif_grant_handle_reset(queue, pending_idx);
f53c3fe8
ZK
1696 ++gop;
1697 }
1698
e9ce7cb6 1699 } while (dp != queue->dealloc_prod);
f53c3fe8 1700
e9ce7cb6 1701 queue->dealloc_cons = dc;
f53c3fe8 1702
e9ce7cb6 1703 if (gop - queue->tx_unmap_ops > 0) {
f53c3fe8 1704 int ret;
e9ce7cb6 1705 ret = gnttab_unmap_refs(queue->tx_unmap_ops,
f53c3fe8 1706 NULL,
e9ce7cb6
WL
1707 queue->pages_to_unmap,
1708 gop - queue->tx_unmap_ops);
f53c3fe8 1709 if (ret) {
68946159 1710 netdev_err(queue->vif->dev, "Unmap fail: nr_ops %tu ret %d\n",
e9ce7cb6
WL
1711 gop - queue->tx_unmap_ops, ret);
1712 for (i = 0; i < gop - queue->tx_unmap_ops; ++i) {
f53c3fe8 1713 if (gop[i].status != GNTST_okay)
e9ce7cb6 1714 netdev_err(queue->vif->dev,
68946159 1715 " host_addr: 0x%llx handle: 0x%x status: %d\n",
f53c3fe8
ZK
1716 gop[i].host_addr,
1717 gop[i].handle,
1718 gop[i].status);
1719 }
1720 BUG();
1721 }
1722 }
1723
e9ce7cb6
WL
1724 for (i = 0; i < gop - queue->tx_unmap_ops; ++i)
1725 xenvif_idx_release(queue, pending_idx_release[i],
f53c3fe8 1726 XEN_NETIF_RSP_OKAY);
3e2234b3
ZK
1727}
1728
f53c3fe8 1729
f942dc25 1730/* Called after netfront has transmitted */
e9ce7cb6 1731int xenvif_tx_action(struct xenvif_queue *queue, int budget)
f942dc25 1732{
bdab8275 1733 unsigned nr_mops, nr_cops = 0;
f53c3fe8 1734 int work_done, ret;
f942dc25 1735
e9ce7cb6 1736 if (unlikely(!tx_work_todo(queue)))
b3f980bd
WL
1737 return 0;
1738
e9ce7cb6 1739 xenvif_tx_build_gops(queue, budget, &nr_cops, &nr_mops);
f942dc25 1740
bdab8275 1741 if (nr_cops == 0)
b3f980bd
WL
1742 return 0;
1743
e9ce7cb6 1744 gnttab_batch_copy(queue->tx_copy_ops, nr_cops);
bdab8275 1745 if (nr_mops != 0) {
e9ce7cb6 1746 ret = gnttab_map_refs(queue->tx_map_ops,
bdab8275 1747 NULL,
e9ce7cb6 1748 queue->pages_to_map,
bdab8275
ZK
1749 nr_mops);
1750 BUG_ON(ret);
1751 }
f942dc25 1752
e9ce7cb6 1753 work_done = xenvif_tx_submit(queue);
f942dc25 1754
b3f980bd 1755 return work_done;
f942dc25
IC
1756}
1757
e9ce7cb6 1758static void xenvif_idx_release(struct xenvif_queue *queue, u16 pending_idx,
7376419a 1759 u8 status)
f942dc25 1760{
f942dc25 1761 struct pending_tx_info *pending_tx_info;
f53c3fe8 1762 pending_ring_idx_t index;
f53c3fe8 1763 unsigned long flags;
2810e5b9 1764
e9ce7cb6 1765 pending_tx_info = &queue->pending_tx_info[pending_idx];
7fbb9d84 1766
e9ce7cb6 1767 spin_lock_irqsave(&queue->response_lock, flags);
7fbb9d84 1768
e9ce7cb6 1769 make_tx_response(queue, &pending_tx_info->req, status);
7fbb9d84
DV
1770
1771 /* Release the pending index before pusing the Tx response so
1772 * its available before a new Tx request is pushed by the
1773 * frontend.
1774 */
1775 index = pending_index(queue->pending_prod++);
e9ce7cb6 1776 queue->pending_ring[index] = pending_idx;
7fbb9d84 1777
c8a4d299 1778 push_tx_responses(queue);
7fbb9d84 1779
e9ce7cb6 1780 spin_unlock_irqrestore(&queue->response_lock, flags);
f942dc25
IC
1781}
1782
2810e5b9 1783
e9ce7cb6 1784static void make_tx_response(struct xenvif_queue *queue,
f942dc25
IC
1785 struct xen_netif_tx_request *txp,
1786 s8 st)
1787{
e9ce7cb6 1788 RING_IDX i = queue->tx.rsp_prod_pvt;
f942dc25 1789 struct xen_netif_tx_response *resp;
f942dc25 1790
e9ce7cb6 1791 resp = RING_GET_RESPONSE(&queue->tx, i);
f942dc25
IC
1792 resp->id = txp->id;
1793 resp->status = st;
1794
1795 if (txp->flags & XEN_NETTXF_extra_info)
e9ce7cb6 1796 RING_GET_RESPONSE(&queue->tx, ++i)->status = XEN_NETIF_RSP_NULL;
f942dc25 1797
e9ce7cb6 1798 queue->tx.rsp_prod_pvt = ++i;
f942dc25
IC
1799}
1800
c8a4d299
DV
1801static void push_tx_responses(struct xenvif_queue *queue)
1802{
1803 int notify;
1804
1805 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&queue->tx, notify);
1806 if (notify)
1807 notify_remote_via_irq(queue->tx_irq);
1808}
1809
e9ce7cb6 1810static struct xen_netif_rx_response *make_rx_response(struct xenvif_queue *queue,
f942dc25
IC
1811 u16 id,
1812 s8 st,
1813 u16 offset,
1814 u16 size,
1815 u16 flags)
1816{
e9ce7cb6 1817 RING_IDX i = queue->rx.rsp_prod_pvt;
f942dc25
IC
1818 struct xen_netif_rx_response *resp;
1819
e9ce7cb6 1820 resp = RING_GET_RESPONSE(&queue->rx, i);
f942dc25
IC
1821 resp->offset = offset;
1822 resp->flags = flags;
1823 resp->id = id;
1824 resp->status = (s16)size;
1825 if (st < 0)
1826 resp->status = (s16)st;
1827
e9ce7cb6 1828 queue->rx.rsp_prod_pvt = ++i;
f942dc25
IC
1829
1830 return resp;
1831}
1832
e9ce7cb6 1833void xenvif_idx_unmap(struct xenvif_queue *queue, u16 pending_idx)
f53c3fe8
ZK
1834{
1835 int ret;
1836 struct gnttab_unmap_grant_ref tx_unmap_op;
1837
1838 gnttab_set_unmap_op(&tx_unmap_op,
e9ce7cb6 1839 idx_to_kaddr(queue, pending_idx),
f53c3fe8 1840 GNTMAP_host_map,
e9ce7cb6
WL
1841 queue->grant_tx_handle[pending_idx]);
1842 xenvif_grant_handle_reset(queue, pending_idx);
f53c3fe8
ZK
1843
1844 ret = gnttab_unmap_refs(&tx_unmap_op, NULL,
e9ce7cb6 1845 &queue->mmap_pages[pending_idx], 1);
7aceb47a 1846 if (ret) {
e9ce7cb6 1847 netdev_err(queue->vif->dev,
68946159 1848 "Unmap fail: ret: %d pending_idx: %d host_addr: %llx handle: 0x%x status: %d\n",
7aceb47a
ZK
1849 ret,
1850 pending_idx,
1851 tx_unmap_op.host_addr,
1852 tx_unmap_op.handle,
1853 tx_unmap_op.status);
1854 BUG();
1855 }
f53c3fe8
ZK
1856}
1857
e9ce7cb6 1858static inline int tx_work_todo(struct xenvif_queue *queue)
f942dc25 1859{
e9ce7cb6 1860 if (likely(RING_HAS_UNCONSUMED_REQUESTS(&queue->tx)))
f942dc25
IC
1861 return 1;
1862
1863 return 0;
1864}
1865
e9ce7cb6 1866static inline bool tx_dealloc_work_todo(struct xenvif_queue *queue)
f53c3fe8 1867{
e9ce7cb6 1868 return queue->dealloc_cons != queue->dealloc_prod;
f53c3fe8
ZK
1869}
1870
e9ce7cb6 1871void xenvif_unmap_frontend_rings(struct xenvif_queue *queue)
f942dc25 1872{
e9ce7cb6
WL
1873 if (queue->tx.sring)
1874 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(queue->vif),
1875 queue->tx.sring);
1876 if (queue->rx.sring)
1877 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(queue->vif),
1878 queue->rx.sring);
f942dc25
IC
1879}
1880
e9ce7cb6 1881int xenvif_map_frontend_rings(struct xenvif_queue *queue,
7376419a
WL
1882 grant_ref_t tx_ring_ref,
1883 grant_ref_t rx_ring_ref)
f942dc25 1884{
c9d63699 1885 void *addr;
f942dc25
IC
1886 struct xen_netif_tx_sring *txs;
1887 struct xen_netif_rx_sring *rxs;
1888
1889 int err = -ENOMEM;
1890
e9ce7cb6 1891 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(queue->vif),
ccc9d90a 1892 &tx_ring_ref, 1, &addr);
c9d63699 1893 if (err)
f942dc25
IC
1894 goto err;
1895
c9d63699 1896 txs = (struct xen_netif_tx_sring *)addr;
e9ce7cb6 1897 BACK_RING_INIT(&queue->tx, txs, PAGE_SIZE);
f942dc25 1898
e9ce7cb6 1899 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(queue->vif),
ccc9d90a 1900 &rx_ring_ref, 1, &addr);
c9d63699 1901 if (err)
f942dc25 1902 goto err;
f942dc25 1903
c9d63699 1904 rxs = (struct xen_netif_rx_sring *)addr;
e9ce7cb6 1905 BACK_RING_INIT(&queue->rx, rxs, PAGE_SIZE);
f942dc25
IC
1906
1907 return 0;
1908
1909err:
e9ce7cb6 1910 xenvif_unmap_frontend_rings(queue);
f942dc25
IC
1911 return err;
1912}
1913
ecf08d2d 1914static void xenvif_queue_carrier_off(struct xenvif_queue *queue)
ca2f09f2 1915{
ecf08d2d
DV
1916 struct xenvif *vif = queue->vif;
1917
1918 queue->stalled = true;
1919
1920 /* At least one queue has stalled? Disable the carrier. */
1921 spin_lock(&vif->lock);
1922 if (vif->stalled_queues++ == 0) {
1923 netdev_info(vif->dev, "Guest Rx stalled");
1924 netif_carrier_off(vif->dev);
1925 }
1926 spin_unlock(&vif->lock);
ca2f09f2
PD
1927}
1928
ecf08d2d 1929static void xenvif_queue_carrier_on(struct xenvif_queue *queue)
f34a4cf9 1930{
ecf08d2d 1931 struct xenvif *vif = queue->vif;
f34a4cf9 1932
ecf08d2d
DV
1933 queue->last_rx_time = jiffies; /* Reset Rx stall detection. */
1934 queue->stalled = false;
f34a4cf9 1935
ecf08d2d
DV
1936 /* All queues are ready? Enable the carrier. */
1937 spin_lock(&vif->lock);
1938 if (--vif->stalled_queues == 0) {
1939 netdev_info(vif->dev, "Guest Rx ready");
1940 netif_carrier_on(vif->dev);
1941 }
1942 spin_unlock(&vif->lock);
1943}
f34a4cf9 1944
ecf08d2d
DV
1945static bool xenvif_rx_queue_stalled(struct xenvif_queue *queue)
1946{
1947 RING_IDX prod, cons;
1948
1949 prod = queue->rx.sring->req_prod;
1950 cons = queue->rx.req_cons;
1951
1d5d4852 1952 return !queue->stalled && prod - cons < 1
ecf08d2d 1953 && time_after(jiffies,
26c0e102 1954 queue->last_rx_time + queue->vif->stall_timeout);
ecf08d2d
DV
1955}
1956
1957static bool xenvif_rx_queue_ready(struct xenvif_queue *queue)
1958{
1959 RING_IDX prod, cons;
1960
1961 prod = queue->rx.sring->req_prod;
1962 cons = queue->rx.req_cons;
1963
1d5d4852 1964 return queue->stalled && prod - cons >= 1;
ecf08d2d
DV
1965}
1966
f48da8b1 1967static bool xenvif_have_rx_work(struct xenvif_queue *queue)
ca2f09f2 1968{
f48da8b1 1969 return (!skb_queue_empty(&queue->rx_queue)
1d5d4852 1970 && xenvif_rx_ring_slots_available(queue))
26c0e102
DV
1971 || (queue->vif->stall_timeout &&
1972 (xenvif_rx_queue_stalled(queue)
1973 || xenvif_rx_queue_ready(queue)))
f48da8b1
DV
1974 || kthread_should_stop()
1975 || queue->vif->disabled;
ca2f09f2
PD
1976}
1977
f48da8b1 1978static long xenvif_rx_queue_timeout(struct xenvif_queue *queue)
f34a4cf9 1979{
f48da8b1
DV
1980 struct sk_buff *skb;
1981 long timeout;
f34a4cf9 1982
f48da8b1
DV
1983 skb = skb_peek(&queue->rx_queue);
1984 if (!skb)
1985 return MAX_SCHEDULE_TIMEOUT;
f34a4cf9 1986
f48da8b1
DV
1987 timeout = XENVIF_RX_CB(skb)->expires - jiffies;
1988 return timeout < 0 ? 0 : timeout;
1989}
f34a4cf9 1990
f48da8b1
DV
1991/* Wait until the guest Rx thread has work.
1992 *
1993 * The timeout needs to be adjusted based on the current head of the
1994 * queue (and not just the head at the beginning). In particular, if
1995 * the queue is initially empty an infinite timeout is used and this
1996 * needs to be reduced when a skb is queued.
1997 *
1998 * This cannot be done with wait_event_timeout() because it only
1999 * calculates the timeout once.
2000 */
2001static void xenvif_wait_for_rx_work(struct xenvif_queue *queue)
2002{
2003 DEFINE_WAIT(wait);
2004
2005 if (xenvif_have_rx_work(queue))
2006 return;
2007
2008 for (;;) {
2009 long ret;
2010
2011 prepare_to_wait(&queue->wq, &wait, TASK_INTERRUPTIBLE);
2012 if (xenvif_have_rx_work(queue))
2013 break;
2014 ret = schedule_timeout(xenvif_rx_queue_timeout(queue));
2015 if (!ret)
2016 break;
f34a4cf9 2017 }
f48da8b1 2018 finish_wait(&queue->wq, &wait);
f34a4cf9
ZK
2019}
2020
121fa4b7 2021int xenvif_kthread_guest_rx(void *data)
b3f980bd 2022{
e9ce7cb6 2023 struct xenvif_queue *queue = data;
f48da8b1 2024 struct xenvif *vif = queue->vif;
b3f980bd 2025
26c0e102
DV
2026 if (!vif->stall_timeout)
2027 xenvif_queue_carrier_on(queue);
2028
f48da8b1
DV
2029 for (;;) {
2030 xenvif_wait_for_rx_work(queue);
e9d8b2c2 2031
f34a4cf9
ZK
2032 if (kthread_should_stop())
2033 break;
2034
e9d8b2c2
WL
2035 /* This frontend is found to be rogue, disable it in
2036 * kthread context. Currently this is only set when
2037 * netback finds out frontend sends malformed packet,
2038 * but we cannot disable the interface in softirq
e9ce7cb6
WL
2039 * context so we defer it here, if this thread is
2040 * associated with queue 0.
e9d8b2c2 2041 */
f48da8b1
DV
2042 if (unlikely(vif->disabled && queue->id == 0)) {
2043 xenvif_carrier_off(vif);
42b5212f 2044 break;
09350788
ZK
2045 }
2046
e9ce7cb6
WL
2047 if (!skb_queue_empty(&queue->rx_queue))
2048 xenvif_rx_action(queue);
b3f980bd 2049
ecf08d2d
DV
2050 /* If the guest hasn't provided any Rx slots for a
2051 * while it's probably not responsive, drop the
2052 * carrier so packets are dropped earlier.
2053 */
26c0e102
DV
2054 if (vif->stall_timeout) {
2055 if (xenvif_rx_queue_stalled(queue))
2056 xenvif_queue_carrier_off(queue);
2057 else if (xenvif_rx_queue_ready(queue))
2058 xenvif_queue_carrier_on(queue);
2059 }
ecf08d2d 2060
f48da8b1
DV
2061 /* Queued packets may have foreign pages from other
2062 * domains. These cannot be queued indefinitely as
2063 * this would starve guests of grant refs and transmit
2064 * slots.
2065 */
2066 xenvif_rx_queue_drop_expired(queue);
2067
2068 xenvif_rx_queue_maybe_wake(queue);
2069
b3f980bd
WL
2070 cond_resched();
2071 }
2072
ca2f09f2 2073 /* Bin any remaining skbs */
f48da8b1 2074 xenvif_rx_queue_purge(queue);
ca2f09f2 2075
b3f980bd
WL
2076 return 0;
2077}
2078
a64bd934
WL
2079static bool xenvif_dealloc_kthread_should_stop(struct xenvif_queue *queue)
2080{
2081 /* Dealloc thread must remain running until all inflight
2082 * packets complete.
2083 */
2084 return kthread_should_stop() &&
2085 !atomic_read(&queue->inflight_packets);
2086}
2087
f53c3fe8
ZK
2088int xenvif_dealloc_kthread(void *data)
2089{
e9ce7cb6 2090 struct xenvif_queue *queue = data;
f53c3fe8 2091
a64bd934 2092 for (;;) {
e9ce7cb6
WL
2093 wait_event_interruptible(queue->dealloc_wq,
2094 tx_dealloc_work_todo(queue) ||
a64bd934
WL
2095 xenvif_dealloc_kthread_should_stop(queue));
2096 if (xenvif_dealloc_kthread_should_stop(queue))
f53c3fe8
ZK
2097 break;
2098
e9ce7cb6 2099 xenvif_tx_dealloc_action(queue);
f53c3fe8
ZK
2100 cond_resched();
2101 }
2102
2103 /* Unmap anything remaining*/
e9ce7cb6
WL
2104 if (tx_dealloc_work_todo(queue))
2105 xenvif_tx_dealloc_action(queue);
f53c3fe8
ZK
2106
2107 return 0;
2108}
2109
f942dc25
IC
2110static int __init netback_init(void)
2111{
f942dc25 2112 int rc = 0;
f942dc25 2113
2a14b244 2114 if (!xen_domain())
f942dc25
IC
2115 return -ENODEV;
2116
4c82ac3c
WL
2117 /* Allow as many queues as there are CPUs if user has not
2118 * specified a value.
2119 */
2120 if (xenvif_max_queues == 0)
2121 xenvif_max_queues = num_online_cpus();
8d3d53b3 2122
37641494 2123 if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) {
383eda32
JP
2124 pr_info("fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n",
2125 fatal_skb_slots, XEN_NETBK_LEGACY_SLOTS_MAX);
37641494 2126 fatal_skb_slots = XEN_NETBK_LEGACY_SLOTS_MAX;
2810e5b9
WL
2127 }
2128
f942dc25
IC
2129 rc = xenvif_xenbus_init();
2130 if (rc)
2131 goto failed_init;
2132
f51de243
ZK
2133#ifdef CONFIG_DEBUG_FS
2134 xen_netback_dbg_root = debugfs_create_dir("xen-netback", NULL);
2135 if (IS_ERR_OR_NULL(xen_netback_dbg_root))
2136 pr_warn("Init of debugfs returned %ld!\n",
2137 PTR_ERR(xen_netback_dbg_root));
2138#endif /* CONFIG_DEBUG_FS */
2139
f942dc25
IC
2140 return 0;
2141
2142failed_init:
f942dc25 2143 return rc;
f942dc25
IC
2144}
2145
2146module_init(netback_init);
2147
b103f358
WL
2148static void __exit netback_fini(void)
2149{
f51de243
ZK
2150#ifdef CONFIG_DEBUG_FS
2151 if (!IS_ERR_OR_NULL(xen_netback_dbg_root))
2152 debugfs_remove_recursive(xen_netback_dbg_root);
2153#endif /* CONFIG_DEBUG_FS */
b103f358 2154 xenvif_xenbus_fini();
b103f358
WL
2155}
2156module_exit(netback_fini);
2157
f942dc25 2158MODULE_LICENSE("Dual BSD/GPL");
f984cec6 2159MODULE_ALIAS("xen-backend:vif");