sit: use kfree_skb to replace dev_kfree_skb
[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>
40
41#include <net/tcp.h>
42
ca981633 43#include <xen/xen.h>
f942dc25
IC
44#include <xen/events.h>
45#include <xen/interface/memory.h>
46
47#include <asm/xen/hypercall.h>
48#include <asm/xen/page.h>
49
e1f00a69
WL
50/* Provide an option to disable split event channels at load time as
51 * event channels are limited resource. Split event channels are
52 * enabled by default.
53 */
54bool separate_tx_rx_irq = 1;
55module_param(separate_tx_rx_irq, bool, 0644);
56
2810e5b9
WL
57/*
58 * This is the maximum slots a skb can have. If a guest sends a skb
59 * which exceeds this limit it is considered malicious.
60 */
37641494
WL
61#define FATAL_SKB_SLOTS_DEFAULT 20
62static unsigned int fatal_skb_slots = FATAL_SKB_SLOTS_DEFAULT;
63module_param(fatal_skb_slots, uint, 0444);
64
65/*
66 * To avoid confusion, we define XEN_NETBK_LEGACY_SLOTS_MAX indicating
67 * the maximum slots a valid packet can use. Now this value is defined
68 * to be XEN_NETIF_NR_SLOTS_MIN, which is supposed to be supported by
69 * all backend.
70 */
71#define XEN_NETBK_LEGACY_SLOTS_MAX XEN_NETIF_NR_SLOTS_MIN
2810e5b9 72
2810e5b9
WL
73/*
74 * If head != INVALID_PENDING_RING_IDX, it means this tx request is head of
75 * one or more merged tx requests, otherwise it is the continuation of
76 * previous tx request.
77 */
b3f980bd 78static inline int pending_tx_is_head(struct xenvif *vif, RING_IDX idx)
f942dc25 79{
b3f980bd 80 return vif->pending_tx_info[idx].head != INVALID_PENDING_RING_IDX;
f942dc25
IC
81}
82
7376419a
WL
83static void xenvif_idx_release(struct xenvif *vif, u16 pending_idx,
84 u8 status);
85
f942dc25
IC
86static void make_tx_response(struct xenvif *vif,
87 struct xen_netif_tx_request *txp,
88 s8 st);
b3f980bd
WL
89
90static inline int tx_work_todo(struct xenvif *vif);
91static inline int rx_work_todo(struct xenvif *vif);
92
f942dc25
IC
93static struct xen_netif_rx_response *make_rx_response(struct xenvif *vif,
94 u16 id,
95 s8 st,
96 u16 offset,
97 u16 size,
98 u16 flags);
99
b3f980bd 100static inline unsigned long idx_to_pfn(struct xenvif *vif,
ea066ad1 101 u16 idx)
f942dc25 102{
b3f980bd 103 return page_to_pfn(vif->mmap_pages[idx]);
f942dc25
IC
104}
105
b3f980bd 106static inline unsigned long idx_to_kaddr(struct xenvif *vif,
ea066ad1 107 u16 idx)
f942dc25 108{
b3f980bd 109 return (unsigned long)pfn_to_kaddr(idx_to_pfn(vif, idx));
f942dc25
IC
110}
111
2eba61d5
PD
112/* This is a miniumum size for the linear area to avoid lots of
113 * calls to __pskb_pull_tail() as we set up checksum offsets. The
114 * value 128 was chosen as it covers all IPv4 and most likely
115 * IPv6 headers.
f942dc25 116 */
2eba61d5 117#define PKT_PROT_LEN 128
f942dc25 118
ea066ad1
IC
119static u16 frag_get_pending_idx(skb_frag_t *frag)
120{
121 return (u16)frag->page_offset;
122}
123
124static void frag_set_pending_idx(skb_frag_t *frag, u16 pending_idx)
125{
126 frag->page_offset = pending_idx;
127}
128
f942dc25
IC
129static inline pending_ring_idx_t pending_index(unsigned i)
130{
131 return i & (MAX_PENDING_REQS-1);
132}
133
b3f980bd 134static inline pending_ring_idx_t nr_pending_reqs(struct xenvif *vif)
f942dc25
IC
135{
136 return MAX_PENDING_REQS -
b3f980bd 137 vif->pending_prod + vif->pending_cons;
f942dc25
IC
138}
139
140static int max_required_rx_slots(struct xenvif *vif)
141{
142 int max = DIV_ROUND_UP(vif->dev->mtu, PAGE_SIZE);
143
2810e5b9 144 /* XXX FIXME: RX path dependent on MAX_SKB_FRAGS */
82cada22 145 if (vif->can_sg || vif->gso_mask || vif->gso_prefix_mask)
f942dc25
IC
146 max += MAX_SKB_FRAGS + 1; /* extra_info + frags */
147
148 return max;
149}
150
7376419a 151int xenvif_rx_ring_full(struct xenvif *vif)
f942dc25
IC
152{
153 RING_IDX peek = vif->rx_req_cons_peek;
154 RING_IDX needed = max_required_rx_slots(vif);
155
156 return ((vif->rx.sring->req_prod - peek) < needed) ||
157 ((vif->rx.rsp_prod_pvt + XEN_NETIF_RX_RING_SIZE - peek) < needed);
158}
159
7376419a 160int xenvif_must_stop_queue(struct xenvif *vif)
f942dc25 161{
7376419a 162 if (!xenvif_rx_ring_full(vif))
f942dc25
IC
163 return 0;
164
165 vif->rx.sring->req_event = vif->rx_req_cons_peek +
166 max_required_rx_slots(vif);
167 mb(); /* request notification /then/ check the queue */
168
7376419a 169 return xenvif_rx_ring_full(vif);
f942dc25
IC
170}
171
172/*
173 * Returns true if we should start a new receive buffer instead of
174 * adding 'size' bytes to a buffer which currently contains 'offset'
175 * bytes.
176 */
177static bool start_new_rx_buffer(int offset, unsigned long size, int head)
178{
179 /* simple case: we have completely filled the current buffer. */
180 if (offset == MAX_BUFFER_OFFSET)
181 return true;
182
183 /*
184 * complex case: start a fresh buffer if the current frag
185 * would overflow the current buffer but only if:
186 * (i) this frag would fit completely in the next buffer
187 * and (ii) there is already some data in the current buffer
188 * and (iii) this is not the head buffer.
189 *
190 * Where:
191 * - (i) stops us splitting a frag into two copies
192 * unless the frag is too large for a single buffer.
193 * - (ii) stops us from leaving a buffer pointlessly empty.
194 * - (iii) stops us leaving the first buffer
195 * empty. Strictly speaking this is already covered
196 * by (ii) but is explicitly checked because
197 * netfront relies on the first buffer being
198 * non-empty and can crash otherwise.
199 *
200 * This means we will effectively linearise small
201 * frags but do not needlessly split large buffers
202 * into multiple copies tend to give large frags their
203 * own buffers as before.
204 */
205 if ((offset + size > MAX_BUFFER_OFFSET) &&
206 (size <= MAX_BUFFER_OFFSET) && offset && !head)
207 return true;
208
209 return false;
210}
211
33bc801d
WL
212struct xenvif_count_slot_state {
213 unsigned long copy_off;
214 bool head;
215};
216
217unsigned int xenvif_count_frag_slots(struct xenvif *vif,
218 unsigned long offset, unsigned long size,
219 struct xenvif_count_slot_state *state)
220{
221 unsigned count = 0;
222
223 offset &= ~PAGE_MASK;
224
225 while (size > 0) {
226 unsigned long bytes;
227
228 bytes = PAGE_SIZE - offset;
229
230 if (bytes > size)
231 bytes = size;
232
233 if (start_new_rx_buffer(state->copy_off, bytes, state->head)) {
234 count++;
235 state->copy_off = 0;
236 }
237
238 if (state->copy_off + bytes > MAX_BUFFER_OFFSET)
239 bytes = MAX_BUFFER_OFFSET - state->copy_off;
240
241 state->copy_off += bytes;
242
243 offset += bytes;
244 size -= bytes;
245
246 if (offset == PAGE_SIZE)
247 offset = 0;
248
249 state->head = false;
250 }
251
252 return count;
253}
254
f942dc25
IC
255/*
256 * Figure out how many ring slots we're going to need to send @skb to
257 * the guest. This function is essentially a dry run of
7376419a 258 * xenvif_gop_frag_copy.
f942dc25 259 */
7376419a 260unsigned int xenvif_count_skb_slots(struct xenvif *vif, struct sk_buff *skb)
f942dc25 261{
33bc801d 262 struct xenvif_count_slot_state state;
f942dc25 263 unsigned int count;
33bc801d
WL
264 unsigned char *data;
265 unsigned i;
f942dc25 266
33bc801d
WL
267 state.head = true;
268 state.copy_off = 0;
f942dc25 269
33bc801d
WL
270 /* Slot for the first (partial) page of data. */
271 count = 1;
f942dc25 272
33bc801d 273 /* Need a slot for the GSO prefix for GSO extra data? */
f942dc25
IC
274 if (skb_shinfo(skb)->gso_size)
275 count++;
276
33bc801d
WL
277 data = skb->data;
278 while (data < skb_tail_pointer(skb)) {
279 unsigned long offset = offset_in_page(data);
280 unsigned long size = PAGE_SIZE - offset;
4f0581d2 281
33bc801d
WL
282 if (data + size > skb_tail_pointer(skb))
283 size = skb_tail_pointer(skb) - data;
6a8ed462 284
33bc801d 285 count += xenvif_count_frag_slots(vif, offset, size, &state);
4f0581d2 286
33bc801d
WL
287 data += size;
288 }
4f0581d2 289
33bc801d
WL
290 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
291 unsigned long size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
292 unsigned long offset = skb_shinfo(skb)->frags[i].page_offset;
4f0581d2 293
33bc801d 294 count += xenvif_count_frag_slots(vif, offset, size, &state);
f942dc25
IC
295 }
296 return count;
297}
298
299struct netrx_pending_operations {
300 unsigned copy_prod, copy_cons;
301 unsigned meta_prod, meta_cons;
302 struct gnttab_copy *copy;
b3f980bd 303 struct xenvif_rx_meta *meta;
f942dc25
IC
304 int copy_off;
305 grant_ref_t copy_gref;
306};
307
b3f980bd
WL
308static struct xenvif_rx_meta *get_next_rx_buffer(struct xenvif *vif,
309 struct netrx_pending_operations *npo)
f942dc25 310{
b3f980bd 311 struct xenvif_rx_meta *meta;
f942dc25
IC
312 struct xen_netif_rx_request *req;
313
314 req = RING_GET_REQUEST(&vif->rx, vif->rx.req_cons++);
315
316 meta = npo->meta + npo->meta_prod++;
82cada22 317 meta->gso_type = XEN_NETIF_GSO_TYPE_NONE;
f942dc25
IC
318 meta->gso_size = 0;
319 meta->size = 0;
320 meta->id = req->id;
321
322 npo->copy_off = 0;
323 npo->copy_gref = req->gref;
324
325 return meta;
326}
327
33bc801d
WL
328/*
329 * Set up the grant operations for this fragment. If it's a flipping
330 * interface, we also set up the unmap request from here.
331 */
7376419a
WL
332static void xenvif_gop_frag_copy(struct xenvif *vif, struct sk_buff *skb,
333 struct netrx_pending_operations *npo,
334 struct page *page, unsigned long size,
33bc801d 335 unsigned long offset, int *head)
f942dc25
IC
336{
337 struct gnttab_copy *copy_gop;
b3f980bd 338 struct xenvif_rx_meta *meta;
f942dc25 339 unsigned long bytes;
82cada22 340 int gso_type;
f942dc25
IC
341
342 /* Data must not cross a page boundary. */
6a8ed462 343 BUG_ON(size + offset > PAGE_SIZE<<compound_order(page));
f942dc25
IC
344
345 meta = npo->meta + npo->meta_prod - 1;
346
6a8ed462
IC
347 /* Skip unused frames from start of page */
348 page += offset >> PAGE_SHIFT;
349 offset &= ~PAGE_MASK;
350
f942dc25 351 while (size > 0) {
6a8ed462 352 BUG_ON(offset >= PAGE_SIZE);
f942dc25
IC
353 BUG_ON(npo->copy_off > MAX_BUFFER_OFFSET);
354
6a8ed462
IC
355 bytes = PAGE_SIZE - offset;
356
357 if (bytes > size)
358 bytes = size;
359
33bc801d 360 if (start_new_rx_buffer(npo->copy_off, bytes, *head)) {
f942dc25
IC
361 /*
362 * Netfront requires there to be some data in the head
363 * buffer.
364 */
33bc801d 365 BUG_ON(*head);
f942dc25
IC
366
367 meta = get_next_rx_buffer(vif, npo);
368 }
369
f942dc25
IC
370 if (npo->copy_off + bytes > MAX_BUFFER_OFFSET)
371 bytes = MAX_BUFFER_OFFSET - npo->copy_off;
372
373 copy_gop = npo->copy + npo->copy_prod++;
374 copy_gop->flags = GNTCOPY_dest_gref;
b3f980bd
WL
375 copy_gop->len = bytes;
376
43e9d194
WL
377 copy_gop->source.domid = DOMID_SELF;
378 copy_gop->source.u.gmfn = virt_to_mfn(page_address(page));
f942dc25 379 copy_gop->source.offset = offset;
f942dc25 380
b3f980bd 381 copy_gop->dest.domid = vif->domid;
f942dc25
IC
382 copy_gop->dest.offset = npo->copy_off;
383 copy_gop->dest.u.ref = npo->copy_gref;
f942dc25
IC
384
385 npo->copy_off += bytes;
386 meta->size += bytes;
387
388 offset += bytes;
389 size -= bytes;
390
6a8ed462
IC
391 /* Next frame */
392 if (offset == PAGE_SIZE && size) {
393 BUG_ON(!PageCompound(page));
394 page++;
395 offset = 0;
396 }
397
f942dc25 398 /* Leave a gap for the GSO descriptor. */
82cada22
PD
399 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4)
400 gso_type = XEN_NETIF_GSO_TYPE_TCPV4;
401 else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6)
402 gso_type = XEN_NETIF_GSO_TYPE_TCPV6;
403 else
404 gso_type = XEN_NETIF_GSO_TYPE_NONE;
405
406 if (*head && ((1 << gso_type) & vif->gso_mask))
f942dc25
IC
407 vif->rx.req_cons++;
408
33bc801d 409 *head = 0; /* There must be something in this buffer now. */
f942dc25
IC
410
411 }
412}
413
414/*
415 * Prepare an SKB to be transmitted to the frontend.
416 *
417 * This function is responsible for allocating grant operations, meta
418 * structures, etc.
419 *
420 * It returns the number of meta structures consumed. The number of
421 * ring slots used is always equal to the number of meta slots used
422 * plus the number of GSO descriptors used. Currently, we use either
423 * zero GSO descriptors (for non-GSO packets) or one descriptor (for
424 * frontend-side LRO).
425 */
7376419a
WL
426static int xenvif_gop_skb(struct sk_buff *skb,
427 struct netrx_pending_operations *npo)
f942dc25
IC
428{
429 struct xenvif *vif = netdev_priv(skb->dev);
430 int nr_frags = skb_shinfo(skb)->nr_frags;
431 int i;
432 struct xen_netif_rx_request *req;
b3f980bd 433 struct xenvif_rx_meta *meta;
f942dc25 434 unsigned char *data;
33bc801d 435 int head = 1;
f942dc25 436 int old_meta_prod;
82cada22
PD
437 int gso_type;
438 int gso_size;
f942dc25
IC
439
440 old_meta_prod = npo->meta_prod;
441
82cada22
PD
442 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
443 gso_type = XEN_NETIF_GSO_TYPE_TCPV4;
444 gso_size = skb_shinfo(skb)->gso_size;
445 } else if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV6) {
446 gso_type = XEN_NETIF_GSO_TYPE_TCPV6;
447 gso_size = skb_shinfo(skb)->gso_size;
448 } else {
449 gso_type = XEN_NETIF_GSO_TYPE_NONE;
450 gso_size = 0;
451 }
452
f942dc25 453 /* Set up a GSO prefix descriptor, if necessary */
82cada22 454 if ((1 << skb_shinfo(skb)->gso_type) & vif->gso_prefix_mask) {
f942dc25
IC
455 req = RING_GET_REQUEST(&vif->rx, vif->rx.req_cons++);
456 meta = npo->meta + npo->meta_prod++;
82cada22
PD
457 meta->gso_type = gso_type;
458 meta->gso_size = gso_size;
f942dc25
IC
459 meta->size = 0;
460 meta->id = req->id;
461 }
462
463 req = RING_GET_REQUEST(&vif->rx, vif->rx.req_cons++);
464 meta = npo->meta + npo->meta_prod++;
465
82cada22
PD
466 if ((1 << gso_type) & vif->gso_mask) {
467 meta->gso_type = gso_type;
468 meta->gso_size = gso_size;
469 } else {
470 meta->gso_type = XEN_NETIF_GSO_TYPE_NONE;
f942dc25 471 meta->gso_size = 0;
82cada22 472 }
f942dc25
IC
473
474 meta->size = 0;
475 meta->id = req->id;
476 npo->copy_off = 0;
477 npo->copy_gref = req->gref;
478
479 data = skb->data;
480 while (data < skb_tail_pointer(skb)) {
481 unsigned int offset = offset_in_page(data);
482 unsigned int len = PAGE_SIZE - offset;
483
484 if (data + len > skb_tail_pointer(skb))
485 len = skb_tail_pointer(skb) - data;
486
7376419a 487 xenvif_gop_frag_copy(vif, skb, npo,
33bc801d 488 virt_to_page(data), len, offset, &head);
f942dc25
IC
489 data += len;
490 }
491
492 for (i = 0; i < nr_frags; i++) {
7376419a
WL
493 xenvif_gop_frag_copy(vif, skb, npo,
494 skb_frag_page(&skb_shinfo(skb)->frags[i]),
495 skb_frag_size(&skb_shinfo(skb)->frags[i]),
496 skb_shinfo(skb)->frags[i].page_offset,
33bc801d 497 &head);
f942dc25
IC
498 }
499
500 return npo->meta_prod - old_meta_prod;
501}
502
503/*
7376419a 504 * This is a twin to xenvif_gop_skb. Assume that xenvif_gop_skb was
f942dc25
IC
505 * used to set up the operations on the top of
506 * netrx_pending_operations, which have since been done. Check that
507 * they didn't give any errors and advance over them.
508 */
7376419a
WL
509static int xenvif_check_gop(struct xenvif *vif, int nr_meta_slots,
510 struct netrx_pending_operations *npo)
f942dc25
IC
511{
512 struct gnttab_copy *copy_op;
513 int status = XEN_NETIF_RSP_OKAY;
514 int i;
515
516 for (i = 0; i < nr_meta_slots; i++) {
517 copy_op = npo->copy + npo->copy_cons++;
518 if (copy_op->status != GNTST_okay) {
519 netdev_dbg(vif->dev,
520 "Bad status %d from copy to DOM%d.\n",
521 copy_op->status, vif->domid);
522 status = XEN_NETIF_RSP_ERROR;
523 }
524 }
525
526 return status;
527}
528
7376419a
WL
529static void xenvif_add_frag_responses(struct xenvif *vif, int status,
530 struct xenvif_rx_meta *meta,
531 int nr_meta_slots)
f942dc25
IC
532{
533 int i;
534 unsigned long offset;
535
536 /* No fragments used */
537 if (nr_meta_slots <= 1)
538 return;
539
540 nr_meta_slots--;
541
542 for (i = 0; i < nr_meta_slots; i++) {
543 int flags;
544 if (i == nr_meta_slots - 1)
545 flags = 0;
546 else
547 flags = XEN_NETRXF_more_data;
548
549 offset = 0;
550 make_rx_response(vif, meta[i].id, status, offset,
551 meta[i].size, flags);
552 }
553}
554
33bc801d
WL
555struct skb_cb_overlay {
556 int meta_slots_used;
557};
558
7376419a 559static void xenvif_kick_thread(struct xenvif *vif)
b3f980bd
WL
560{
561 wake_up(&vif->wq);
562}
563
7376419a 564void xenvif_rx_action(struct xenvif *vif)
f942dc25 565{
f942dc25 566 s8 status;
e1f00a69 567 u16 flags;
f942dc25
IC
568 struct xen_netif_rx_response *resp;
569 struct sk_buff_head rxq;
570 struct sk_buff *skb;
571 LIST_HEAD(notify);
572 int ret;
573 int nr_frags;
574 int count;
575 unsigned long offset;
576 struct skb_cb_overlay *sco;
b3f980bd 577 int need_to_notify = 0;
f942dc25
IC
578
579 struct netrx_pending_operations npo = {
b3f980bd
WL
580 .copy = vif->grant_copy_op,
581 .meta = vif->meta,
f942dc25
IC
582 };
583
584 skb_queue_head_init(&rxq);
585
586 count = 0;
587
b3f980bd 588 while ((skb = skb_dequeue(&vif->rx_queue)) != NULL) {
f942dc25
IC
589 vif = netdev_priv(skb->dev);
590 nr_frags = skb_shinfo(skb)->nr_frags;
591
592 sco = (struct skb_cb_overlay *)skb->cb;
7376419a 593 sco->meta_slots_used = xenvif_gop_skb(skb, &npo);
f942dc25 594
33bc801d 595 count += nr_frags + 1;
f942dc25
IC
596
597 __skb_queue_tail(&rxq, skb);
598
599 /* Filled the batch queue? */
33bc801d
WL
600 /* XXX FIXME: RX path dependent on MAX_SKB_FRAGS */
601 if (count + MAX_SKB_FRAGS >= XEN_NETIF_RX_RING_SIZE)
f942dc25
IC
602 break;
603 }
604
b3f980bd 605 BUG_ON(npo.meta_prod > ARRAY_SIZE(vif->meta));
f942dc25
IC
606
607 if (!npo.copy_prod)
608 return;
609
b3f980bd
WL
610 BUG_ON(npo.copy_prod > ARRAY_SIZE(vif->grant_copy_op));
611 gnttab_batch_copy(vif->grant_copy_op, npo.copy_prod);
f942dc25
IC
612
613 while ((skb = __skb_dequeue(&rxq)) != NULL) {
614 sco = (struct skb_cb_overlay *)skb->cb;
615
616 vif = netdev_priv(skb->dev);
617
82cada22
PD
618 if ((1 << vif->meta[npo.meta_cons].gso_type) &
619 vif->gso_prefix_mask) {
f942dc25 620 resp = RING_GET_RESPONSE(&vif->rx,
b3f980bd 621 vif->rx.rsp_prod_pvt++);
f942dc25
IC
622
623 resp->flags = XEN_NETRXF_gso_prefix | XEN_NETRXF_more_data;
624
b3f980bd
WL
625 resp->offset = vif->meta[npo.meta_cons].gso_size;
626 resp->id = vif->meta[npo.meta_cons].id;
f942dc25
IC
627 resp->status = sco->meta_slots_used;
628
629 npo.meta_cons++;
630 sco->meta_slots_used--;
631 }
632
633
634 vif->dev->stats.tx_bytes += skb->len;
635 vif->dev->stats.tx_packets++;
636
7376419a 637 status = xenvif_check_gop(vif, sco->meta_slots_used, &npo);
f942dc25
IC
638
639 if (sco->meta_slots_used == 1)
640 flags = 0;
641 else
642 flags = XEN_NETRXF_more_data;
643
644 if (skb->ip_summed == CHECKSUM_PARTIAL) /* local packet? */
645 flags |= XEN_NETRXF_csum_blank | XEN_NETRXF_data_validated;
646 else if (skb->ip_summed == CHECKSUM_UNNECESSARY)
647 /* remote but checksummed. */
648 flags |= XEN_NETRXF_data_validated;
649
650 offset = 0;
b3f980bd 651 resp = make_rx_response(vif, vif->meta[npo.meta_cons].id,
f942dc25 652 status, offset,
b3f980bd 653 vif->meta[npo.meta_cons].size,
f942dc25
IC
654 flags);
655
82cada22
PD
656 if ((1 << vif->meta[npo.meta_cons].gso_type) &
657 vif->gso_mask) {
f942dc25
IC
658 struct xen_netif_extra_info *gso =
659 (struct xen_netif_extra_info *)
660 RING_GET_RESPONSE(&vif->rx,
661 vif->rx.rsp_prod_pvt++);
662
663 resp->flags |= XEN_NETRXF_extra_info;
664
82cada22 665 gso->u.gso.type = vif->meta[npo.meta_cons].gso_type;
b3f980bd 666 gso->u.gso.size = vif->meta[npo.meta_cons].gso_size;
f942dc25
IC
667 gso->u.gso.pad = 0;
668 gso->u.gso.features = 0;
669
670 gso->type = XEN_NETIF_EXTRA_TYPE_GSO;
671 gso->flags = 0;
672 }
673
7376419a
WL
674 xenvif_add_frag_responses(vif, status,
675 vif->meta + npo.meta_cons + 1,
676 sco->meta_slots_used);
f942dc25
IC
677
678 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&vif->rx, ret);
f942dc25 679
b3f980bd
WL
680 if (ret)
681 need_to_notify = 1;
682
f942dc25
IC
683 xenvif_notify_tx_completion(vif);
684
f942dc25
IC
685 npo.meta_cons += sco->meta_slots_used;
686 dev_kfree_skb(skb);
687 }
688
b3f980bd 689 if (need_to_notify)
e1f00a69 690 notify_remote_via_irq(vif->rx_irq);
f942dc25
IC
691
692 /* More work to do? */
b3f980bd 693 if (!skb_queue_empty(&vif->rx_queue))
7376419a 694 xenvif_kick_thread(vif);
f942dc25
IC
695}
696
7376419a 697void xenvif_queue_tx_skb(struct xenvif *vif, struct sk_buff *skb)
f942dc25 698{
b3f980bd 699 skb_queue_tail(&vif->rx_queue, skb);
f942dc25 700
7376419a 701 xenvif_kick_thread(vif);
f942dc25
IC
702}
703
7376419a 704void xenvif_check_rx_xenvif(struct xenvif *vif)
f942dc25
IC
705{
706 int more_to_do;
707
708 RING_FINAL_CHECK_FOR_REQUESTS(&vif->tx, more_to_do);
709
710 if (more_to_do)
b3f980bd 711 napi_schedule(&vif->napi);
f942dc25
IC
712}
713
714static void tx_add_credit(struct xenvif *vif)
715{
716 unsigned long max_burst, max_credit;
717
718 /*
719 * Allow a burst big enough to transmit a jumbo packet of up to 128kB.
720 * Otherwise the interface can seize up due to insufficient credit.
721 */
722 max_burst = RING_GET_REQUEST(&vif->tx, vif->tx.req_cons)->size;
723 max_burst = min(max_burst, 131072UL);
724 max_burst = max(max_burst, vif->credit_bytes);
725
726 /* Take care that adding a new chunk of credit doesn't wrap to zero. */
727 max_credit = vif->remaining_credit + vif->credit_bytes;
728 if (max_credit < vif->remaining_credit)
729 max_credit = ULONG_MAX; /* wrapped: clamp to ULONG_MAX */
730
731 vif->remaining_credit = min(max_credit, max_burst);
732}
733
734static void tx_credit_callback(unsigned long data)
735{
736 struct xenvif *vif = (struct xenvif *)data;
737 tx_add_credit(vif);
7376419a 738 xenvif_check_rx_xenvif(vif);
f942dc25
IC
739}
740
7376419a
WL
741static void xenvif_tx_err(struct xenvif *vif,
742 struct xen_netif_tx_request *txp, RING_IDX end)
f942dc25
IC
743{
744 RING_IDX cons = vif->tx.req_cons;
745
746 do {
747 make_tx_response(vif, txp, XEN_NETIF_RSP_ERROR);
b9149729 748 if (cons == end)
f942dc25
IC
749 break;
750 txp = RING_GET_REQUEST(&vif->tx, cons++);
751 } while (1);
752 vif->tx.req_cons = cons;
f942dc25
IC
753}
754
7376419a 755static void xenvif_fatal_tx_err(struct xenvif *vif)
48856286
IC
756{
757 netdev_err(vif->dev, "fatal error; disabling device\n");
758 xenvif_carrier_off(vif);
48856286
IC
759}
760
7376419a
WL
761static int xenvif_count_requests(struct xenvif *vif,
762 struct xen_netif_tx_request *first,
763 struct xen_netif_tx_request *txp,
764 int work_to_do)
f942dc25
IC
765{
766 RING_IDX cons = vif->tx.req_cons;
2810e5b9
WL
767 int slots = 0;
768 int drop_err = 0;
59ccb4eb 769 int more_data;
f942dc25
IC
770
771 if (!(first->flags & XEN_NETTXF_more_data))
772 return 0;
773
774 do {
59ccb4eb
WL
775 struct xen_netif_tx_request dropped_tx = { 0 };
776
2810e5b9
WL
777 if (slots >= work_to_do) {
778 netdev_err(vif->dev,
779 "Asked for %d slots but exceeds this limit\n",
780 work_to_do);
7376419a 781 xenvif_fatal_tx_err(vif);
35876b5f 782 return -ENODATA;
f942dc25
IC
783 }
784
2810e5b9
WL
785 /* This guest is really using too many slots and
786 * considered malicious.
787 */
37641494 788 if (unlikely(slots >= fatal_skb_slots)) {
2810e5b9
WL
789 netdev_err(vif->dev,
790 "Malicious frontend using %d slots, threshold %u\n",
37641494 791 slots, fatal_skb_slots);
7376419a 792 xenvif_fatal_tx_err(vif);
35876b5f 793 return -E2BIG;
f942dc25
IC
794 }
795
2810e5b9 796 /* Xen network protocol had implicit dependency on
37641494
WL
797 * MAX_SKB_FRAGS. XEN_NETBK_LEGACY_SLOTS_MAX is set to
798 * the historical MAX_SKB_FRAGS value 18 to honor the
799 * same behavior as before. Any packet using more than
800 * 18 slots but less than fatal_skb_slots slots is
801 * dropped
2810e5b9 802 */
37641494 803 if (!drop_err && slots >= XEN_NETBK_LEGACY_SLOTS_MAX) {
2810e5b9
WL
804 if (net_ratelimit())
805 netdev_dbg(vif->dev,
806 "Too many slots (%d) exceeding limit (%d), dropping packet\n",
37641494 807 slots, XEN_NETBK_LEGACY_SLOTS_MAX);
2810e5b9
WL
808 drop_err = -E2BIG;
809 }
810
59ccb4eb
WL
811 if (drop_err)
812 txp = &dropped_tx;
813
2810e5b9 814 memcpy(txp, RING_GET_REQUEST(&vif->tx, cons + slots),
f942dc25 815 sizeof(*txp));
03393fd5
WL
816
817 /* If the guest submitted a frame >= 64 KiB then
818 * first->size overflowed and following slots will
819 * appear to be larger than the frame.
820 *
821 * This cannot be fatal error as there are buggy
822 * frontends that do this.
823 *
824 * Consume all slots and drop the packet.
825 */
826 if (!drop_err && txp->size > first->size) {
827 if (net_ratelimit())
828 netdev_dbg(vif->dev,
829 "Invalid tx request, slot size %u > remaining size %u\n",
830 txp->size, first->size);
831 drop_err = -EIO;
f942dc25
IC
832 }
833
834 first->size -= txp->size;
2810e5b9 835 slots++;
f942dc25
IC
836
837 if (unlikely((txp->offset + txp->size) > PAGE_SIZE)) {
2810e5b9 838 netdev_err(vif->dev, "Cross page boundary, txp->offset: %x, size: %u\n",
f942dc25 839 txp->offset, txp->size);
7376419a 840 xenvif_fatal_tx_err(vif);
35876b5f 841 return -EINVAL;
f942dc25 842 }
59ccb4eb
WL
843
844 more_data = txp->flags & XEN_NETTXF_more_data;
845
846 if (!drop_err)
847 txp++;
848
849 } while (more_data);
2810e5b9
WL
850
851 if (drop_err) {
7376419a 852 xenvif_tx_err(vif, first, cons + slots);
2810e5b9
WL
853 return drop_err;
854 }
855
856 return slots;
f942dc25
IC
857}
858
7376419a
WL
859static struct page *xenvif_alloc_page(struct xenvif *vif,
860 u16 pending_idx)
f942dc25
IC
861{
862 struct page *page;
b3f980bd
WL
863
864 page = alloc_page(GFP_ATOMIC|__GFP_COLD);
f942dc25
IC
865 if (!page)
866 return NULL;
b3f980bd
WL
867 vif->mmap_pages[pending_idx] = page;
868
f942dc25
IC
869 return page;
870}
871
7376419a
WL
872static struct gnttab_copy *xenvif_get_requests(struct xenvif *vif,
873 struct sk_buff *skb,
874 struct xen_netif_tx_request *txp,
875 struct gnttab_copy *gop)
f942dc25
IC
876{
877 struct skb_shared_info *shinfo = skb_shinfo(skb);
878 skb_frag_t *frags = shinfo->frags;
ea066ad1 879 u16 pending_idx = *((u16 *)skb->data);
2810e5b9
WL
880 u16 head_idx = 0;
881 int slot, start;
882 struct page *page;
883 pending_ring_idx_t index, start_idx = 0;
884 uint16_t dst_offset;
885 unsigned int nr_slots;
886 struct pending_tx_info *first = NULL;
887
888 /* At this point shinfo->nr_frags is in fact the number of
37641494 889 * slots, which can be as large as XEN_NETBK_LEGACY_SLOTS_MAX.
2810e5b9
WL
890 */
891 nr_slots = shinfo->nr_frags;
f942dc25
IC
892
893 /* Skip first skb fragment if it is on same page as header fragment. */
ea066ad1 894 start = (frag_get_pending_idx(&shinfo->frags[0]) == pending_idx);
f942dc25 895
2810e5b9
WL
896 /* Coalesce tx requests, at this point the packet passed in
897 * should be <= 64K. Any packets larger than 64K have been
7376419a 898 * handled in xenvif_count_requests().
2810e5b9
WL
899 */
900 for (shinfo->nr_frags = slot = start; slot < nr_slots;
901 shinfo->nr_frags++) {
f942dc25 902 struct pending_tx_info *pending_tx_info =
b3f980bd 903 vif->pending_tx_info;
f942dc25 904
b3f980bd 905 page = alloc_page(GFP_ATOMIC|__GFP_COLD);
f942dc25 906 if (!page)
4cc7c1cb 907 goto err;
f942dc25 908
2810e5b9
WL
909 dst_offset = 0;
910 first = NULL;
911 while (dst_offset < PAGE_SIZE && slot < nr_slots) {
912 gop->flags = GNTCOPY_source_gref;
913
914 gop->source.u.ref = txp->gref;
915 gop->source.domid = vif->domid;
916 gop->source.offset = txp->offset;
917
918 gop->dest.domid = DOMID_SELF;
919
920 gop->dest.offset = dst_offset;
921 gop->dest.u.gmfn = virt_to_mfn(page_address(page));
922
923 if (dst_offset + txp->size > PAGE_SIZE) {
924 /* This page can only merge a portion
925 * of tx request. Do not increment any
926 * pointer / counter here. The txp
927 * will be dealt with in future
928 * rounds, eventually hitting the
929 * `else` branch.
930 */
931 gop->len = PAGE_SIZE - dst_offset;
932 txp->offset += gop->len;
933 txp->size -= gop->len;
934 dst_offset += gop->len; /* quit loop */
935 } else {
936 /* This tx request can be merged in the page */
937 gop->len = txp->size;
938 dst_offset += gop->len;
939
b3f980bd 940 index = pending_index(vif->pending_cons++);
2810e5b9 941
b3f980bd 942 pending_idx = vif->pending_ring[index];
2810e5b9
WL
943
944 memcpy(&pending_tx_info[pending_idx].req, txp,
945 sizeof(*txp));
2810e5b9
WL
946
947 /* Poison these fields, corresponding
948 * fields for head tx req will be set
949 * to correct values after the loop.
950 */
b3f980bd 951 vif->mmap_pages[pending_idx] = (void *)(~0UL);
2810e5b9
WL
952 pending_tx_info[pending_idx].head =
953 INVALID_PENDING_RING_IDX;
954
955 if (!first) {
956 first = &pending_tx_info[pending_idx];
957 start_idx = index;
958 head_idx = pending_idx;
959 }
960
961 txp++;
962 slot++;
963 }
f942dc25 964
2810e5b9
WL
965 gop++;
966 }
f942dc25 967
2810e5b9
WL
968 first->req.offset = 0;
969 first->req.size = dst_offset;
970 first->head = start_idx;
b3f980bd 971 vif->mmap_pages[head_idx] = page;
2810e5b9 972 frag_set_pending_idx(&frags[shinfo->nr_frags], head_idx);
f942dc25
IC
973 }
974
2810e5b9
WL
975 BUG_ON(shinfo->nr_frags > MAX_SKB_FRAGS);
976
f942dc25 977 return gop;
4cc7c1cb
IC
978err:
979 /* Unwind, freeing all pages and sending error responses. */
2810e5b9 980 while (shinfo->nr_frags-- > start) {
7376419a 981 xenvif_idx_release(vif,
2810e5b9
WL
982 frag_get_pending_idx(&frags[shinfo->nr_frags]),
983 XEN_NETIF_RSP_ERROR);
4cc7c1cb
IC
984 }
985 /* The head too, if necessary. */
986 if (start)
7376419a 987 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_ERROR);
4cc7c1cb
IC
988
989 return NULL;
f942dc25
IC
990}
991
7376419a
WL
992static int xenvif_tx_check_gop(struct xenvif *vif,
993 struct sk_buff *skb,
994 struct gnttab_copy **gopp)
f942dc25
IC
995{
996 struct gnttab_copy *gop = *gopp;
ea066ad1 997 u16 pending_idx = *((u16 *)skb->data);
f942dc25 998 struct skb_shared_info *shinfo = skb_shinfo(skb);
2810e5b9 999 struct pending_tx_info *tx_info;
f942dc25
IC
1000 int nr_frags = shinfo->nr_frags;
1001 int i, err, start;
2810e5b9 1002 u16 peek; /* peek into next tx request */
f942dc25
IC
1003
1004 /* Check status of header. */
1005 err = gop->status;
7d5145d8 1006 if (unlikely(err))
7376419a 1007 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_ERROR);
f942dc25
IC
1008
1009 /* Skip first skb fragment if it is on same page as header fragment. */
ea066ad1 1010 start = (frag_get_pending_idx(&shinfo->frags[0]) == pending_idx);
f942dc25
IC
1011
1012 for (i = start; i < nr_frags; i++) {
1013 int j, newerr;
2810e5b9 1014 pending_ring_idx_t head;
f942dc25 1015
ea066ad1 1016 pending_idx = frag_get_pending_idx(&shinfo->frags[i]);
b3f980bd 1017 tx_info = &vif->pending_tx_info[pending_idx];
2810e5b9 1018 head = tx_info->head;
f942dc25
IC
1019
1020 /* Check error status: if okay then remember grant handle. */
2810e5b9
WL
1021 do {
1022 newerr = (++gop)->status;
1023 if (newerr)
1024 break;
b3f980bd
WL
1025 peek = vif->pending_ring[pending_index(++head)];
1026 } while (!pending_tx_is_head(vif, peek));
2810e5b9 1027
f942dc25
IC
1028 if (likely(!newerr)) {
1029 /* Had a previous error? Invalidate this fragment. */
1030 if (unlikely(err))
7376419a
WL
1031 xenvif_idx_release(vif, pending_idx,
1032 XEN_NETIF_RSP_OKAY);
f942dc25
IC
1033 continue;
1034 }
1035
1036 /* Error on this fragment: respond to client with an error. */
7376419a 1037 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_ERROR);
f942dc25
IC
1038
1039 /* Not the first error? Preceding frags already invalidated. */
1040 if (err)
1041 continue;
1042
1043 /* First error: invalidate header and preceding fragments. */
1044 pending_idx = *((u16 *)skb->data);
7376419a 1045 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_OKAY);
f942dc25 1046 for (j = start; j < i; j++) {
5ccb3ea7 1047 pending_idx = frag_get_pending_idx(&shinfo->frags[j]);
7376419a
WL
1048 xenvif_idx_release(vif, pending_idx,
1049 XEN_NETIF_RSP_OKAY);
f942dc25
IC
1050 }
1051
1052 /* Remember the error: invalidate all subsequent fragments. */
1053 err = newerr;
1054 }
1055
1056 *gopp = gop + 1;
1057 return err;
1058}
1059
7376419a 1060static void xenvif_fill_frags(struct xenvif *vif, struct sk_buff *skb)
f942dc25
IC
1061{
1062 struct skb_shared_info *shinfo = skb_shinfo(skb);
1063 int nr_frags = shinfo->nr_frags;
1064 int i;
1065
1066 for (i = 0; i < nr_frags; i++) {
1067 skb_frag_t *frag = shinfo->frags + i;
1068 struct xen_netif_tx_request *txp;
ea066ad1
IC
1069 struct page *page;
1070 u16 pending_idx;
f942dc25 1071
ea066ad1 1072 pending_idx = frag_get_pending_idx(frag);
f942dc25 1073
b3f980bd
WL
1074 txp = &vif->pending_tx_info[pending_idx].req;
1075 page = virt_to_page(idx_to_kaddr(vif, pending_idx));
ea066ad1 1076 __skb_fill_page_desc(skb, i, page, txp->offset, txp->size);
f942dc25
IC
1077 skb->len += txp->size;
1078 skb->data_len += txp->size;
1079 skb->truesize += txp->size;
1080
7376419a 1081 /* Take an extra reference to offset xenvif_idx_release */
b3f980bd 1082 get_page(vif->mmap_pages[pending_idx]);
7376419a 1083 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_OKAY);
f942dc25
IC
1084 }
1085}
1086
7376419a 1087static int xenvif_get_extras(struct xenvif *vif,
f942dc25
IC
1088 struct xen_netif_extra_info *extras,
1089 int work_to_do)
1090{
1091 struct xen_netif_extra_info extra;
1092 RING_IDX cons = vif->tx.req_cons;
1093
1094 do {
1095 if (unlikely(work_to_do-- <= 0)) {
48856286 1096 netdev_err(vif->dev, "Missing extra info\n");
7376419a 1097 xenvif_fatal_tx_err(vif);
f942dc25
IC
1098 return -EBADR;
1099 }
1100
1101 memcpy(&extra, RING_GET_REQUEST(&vif->tx, cons),
1102 sizeof(extra));
1103 if (unlikely(!extra.type ||
1104 extra.type >= XEN_NETIF_EXTRA_TYPE_MAX)) {
1105 vif->tx.req_cons = ++cons;
48856286 1106 netdev_err(vif->dev,
f942dc25 1107 "Invalid extra type: %d\n", extra.type);
7376419a 1108 xenvif_fatal_tx_err(vif);
f942dc25
IC
1109 return -EINVAL;
1110 }
1111
1112 memcpy(&extras[extra.type - 1], &extra, sizeof(extra));
1113 vif->tx.req_cons = ++cons;
1114 } while (extra.flags & XEN_NETIF_EXTRA_FLAG_MORE);
1115
1116 return work_to_do;
1117}
1118
7376419a
WL
1119static int xenvif_set_skb_gso(struct xenvif *vif,
1120 struct sk_buff *skb,
1121 struct xen_netif_extra_info *gso)
f942dc25
IC
1122{
1123 if (!gso->u.gso.size) {
48856286 1124 netdev_err(vif->dev, "GSO size must not be zero.\n");
7376419a 1125 xenvif_fatal_tx_err(vif);
f942dc25
IC
1126 return -EINVAL;
1127 }
1128
a9468587
PD
1129 switch (gso->u.gso.type) {
1130 case XEN_NETIF_GSO_TYPE_TCPV4:
1131 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV4;
1132 break;
1133 case XEN_NETIF_GSO_TYPE_TCPV6:
1134 skb_shinfo(skb)->gso_type = SKB_GSO_TCPV6;
1135 break;
1136 default:
48856286 1137 netdev_err(vif->dev, "Bad GSO type %d.\n", gso->u.gso.type);
7376419a 1138 xenvif_fatal_tx_err(vif);
f942dc25
IC
1139 return -EINVAL;
1140 }
1141
1142 skb_shinfo(skb)->gso_size = gso->u.gso.size;
f942dc25
IC
1143
1144 /* Header must be checked, and gso_segs computed. */
1145 skb_shinfo(skb)->gso_type |= SKB_GSO_DODGY;
1146 skb_shinfo(skb)->gso_segs = 0;
1147
1148 return 0;
1149}
1150
2eba61d5
PD
1151static inline void maybe_pull_tail(struct sk_buff *skb, unsigned int len)
1152{
1153 if (skb_is_nonlinear(skb) && skb_headlen(skb) < len) {
1154 /* If we need to pullup then pullup to the max, so we
1155 * won't need to do it again.
1156 */
1157 int target = min_t(int, skb->len, MAX_TCP_HEADER);
1158 __pskb_pull_tail(skb, target - skb_headlen(skb));
1159 }
1160}
1161
1162static int checksum_setup_ip(struct xenvif *vif, struct sk_buff *skb,
1163 int recalculate_partial_csum)
f942dc25 1164{
2eba61d5
PD
1165 struct iphdr *iph = (void *)skb->data;
1166 unsigned int header_size;
1167 unsigned int off;
f942dc25 1168 int err = -EPROTO;
f942dc25 1169
2eba61d5 1170 off = sizeof(struct iphdr);
f942dc25 1171
2eba61d5
PD
1172 header_size = skb->network_header + off + MAX_IPOPTLEN;
1173 maybe_pull_tail(skb, header_size);
f942dc25 1174
2eba61d5 1175 off = iph->ihl * 4;
f942dc25 1176
f942dc25
IC
1177 switch (iph->protocol) {
1178 case IPPROTO_TCP:
2eba61d5 1179 if (!skb_partial_csum_set(skb, off,
bea89336
JW
1180 offsetof(struct tcphdr, check)))
1181 goto out;
f942dc25
IC
1182
1183 if (recalculate_partial_csum) {
bea89336 1184 struct tcphdr *tcph = tcp_hdr(skb);
2eba61d5
PD
1185
1186 header_size = skb->network_header +
1187 off +
1188 sizeof(struct tcphdr);
1189 maybe_pull_tail(skb, header_size);
1190
f942dc25 1191 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
2eba61d5 1192 skb->len - off,
f942dc25
IC
1193 IPPROTO_TCP, 0);
1194 }
1195 break;
1196 case IPPROTO_UDP:
2eba61d5 1197 if (!skb_partial_csum_set(skb, off,
bea89336
JW
1198 offsetof(struct udphdr, check)))
1199 goto out;
f942dc25
IC
1200
1201 if (recalculate_partial_csum) {
bea89336 1202 struct udphdr *udph = udp_hdr(skb);
2eba61d5
PD
1203
1204 header_size = skb->network_header +
1205 off +
1206 sizeof(struct udphdr);
1207 maybe_pull_tail(skb, header_size);
1208
f942dc25 1209 udph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
2eba61d5 1210 skb->len - off,
f942dc25
IC
1211 IPPROTO_UDP, 0);
1212 }
1213 break;
1214 default:
1215 if (net_ratelimit())
1216 netdev_err(vif->dev,
2eba61d5
PD
1217 "Attempting to checksum a non-TCP/UDP packet, "
1218 "dropping a protocol %d packet\n",
f942dc25
IC
1219 iph->protocol);
1220 goto out;
1221 }
1222
f942dc25
IC
1223 err = 0;
1224
1225out:
1226 return err;
1227}
1228
2eba61d5
PD
1229static int checksum_setup_ipv6(struct xenvif *vif, struct sk_buff *skb,
1230 int recalculate_partial_csum)
1231{
1232 int err = -EPROTO;
1233 struct ipv6hdr *ipv6h = (void *)skb->data;
1234 u8 nexthdr;
1235 unsigned int header_size;
1236 unsigned int off;
1237 bool fragment;
1238 bool done;
1239
1240 done = false;
1241
1242 off = sizeof(struct ipv6hdr);
1243
1244 header_size = skb->network_header + off;
1245 maybe_pull_tail(skb, header_size);
1246
1247 nexthdr = ipv6h->nexthdr;
1248
1249 while ((off <= sizeof(struct ipv6hdr) + ntohs(ipv6h->payload_len)) &&
1250 !done) {
1251 switch (nexthdr) {
1252 case IPPROTO_DSTOPTS:
1253 case IPPROTO_HOPOPTS:
1254 case IPPROTO_ROUTING: {
1255 struct ipv6_opt_hdr *hp = (void *)(skb->data + off);
1256
1257 header_size = skb->network_header +
1258 off +
1259 sizeof(struct ipv6_opt_hdr);
1260 maybe_pull_tail(skb, header_size);
1261
1262 nexthdr = hp->nexthdr;
1263 off += ipv6_optlen(hp);
1264 break;
1265 }
1266 case IPPROTO_AH: {
1267 struct ip_auth_hdr *hp = (void *)(skb->data + off);
1268
1269 header_size = skb->network_header +
1270 off +
1271 sizeof(struct ip_auth_hdr);
1272 maybe_pull_tail(skb, header_size);
1273
1274 nexthdr = hp->nexthdr;
1275 off += (hp->hdrlen+2)<<2;
1276 break;
1277 }
1278 case IPPROTO_FRAGMENT:
1279 fragment = true;
1280 /* fall through */
1281 default:
1282 done = true;
1283 break;
1284 }
1285 }
1286
1287 if (!done) {
1288 if (net_ratelimit())
1289 netdev_err(vif->dev, "Failed to parse packet header\n");
1290 goto out;
1291 }
1292
1293 if (fragment) {
1294 if (net_ratelimit())
1295 netdev_err(vif->dev, "Packet is a fragment!\n");
1296 goto out;
1297 }
1298
1299 switch (nexthdr) {
1300 case IPPROTO_TCP:
1301 if (!skb_partial_csum_set(skb, off,
1302 offsetof(struct tcphdr, check)))
1303 goto out;
1304
1305 if (recalculate_partial_csum) {
1306 struct tcphdr *tcph = tcp_hdr(skb);
1307
1308 header_size = skb->network_header +
1309 off +
1310 sizeof(struct tcphdr);
1311 maybe_pull_tail(skb, header_size);
1312
1313 tcph->check = ~csum_ipv6_magic(&ipv6h->saddr,
1314 &ipv6h->daddr,
1315 skb->len - off,
1316 IPPROTO_TCP, 0);
1317 }
1318 break;
1319 case IPPROTO_UDP:
1320 if (!skb_partial_csum_set(skb, off,
1321 offsetof(struct udphdr, check)))
1322 goto out;
1323
1324 if (recalculate_partial_csum) {
1325 struct udphdr *udph = udp_hdr(skb);
1326
1327 header_size = skb->network_header +
1328 off +
1329 sizeof(struct udphdr);
1330 maybe_pull_tail(skb, header_size);
1331
1332 udph->check = ~csum_ipv6_magic(&ipv6h->saddr,
1333 &ipv6h->daddr,
1334 skb->len - off,
1335 IPPROTO_UDP, 0);
1336 }
1337 break;
1338 default:
1339 if (net_ratelimit())
1340 netdev_err(vif->dev,
1341 "Attempting to checksum a non-TCP/UDP packet, "
1342 "dropping a protocol %d packet\n",
1343 nexthdr);
1344 goto out;
1345 }
1346
1347 err = 0;
1348
1349out:
1350 return err;
1351}
1352
1353static int checksum_setup(struct xenvif *vif, struct sk_buff *skb)
1354{
1355 int err = -EPROTO;
1356 int recalculate_partial_csum = 0;
1357
1358 /* A GSO SKB must be CHECKSUM_PARTIAL. However some buggy
1359 * peers can fail to set NETRXF_csum_blank when sending a GSO
1360 * frame. In this case force the SKB to CHECKSUM_PARTIAL and
1361 * recalculate the partial checksum.
1362 */
1363 if (skb->ip_summed != CHECKSUM_PARTIAL && skb_is_gso(skb)) {
1364 vif->rx_gso_checksum_fixup++;
1365 skb->ip_summed = CHECKSUM_PARTIAL;
1366 recalculate_partial_csum = 1;
1367 }
1368
1369 /* A non-CHECKSUM_PARTIAL SKB does not require setup. */
1370 if (skb->ip_summed != CHECKSUM_PARTIAL)
1371 return 0;
1372
1373 if (skb->protocol == htons(ETH_P_IP))
1374 err = checksum_setup_ip(vif, skb, recalculate_partial_csum);
1375 else if (skb->protocol == htons(ETH_P_IPV6))
1376 err = checksum_setup_ipv6(vif, skb, recalculate_partial_csum);
1377
1378 return err;
1379}
1380
f942dc25
IC
1381static bool tx_credit_exceeded(struct xenvif *vif, unsigned size)
1382{
059dfa6a
WL
1383 u64 now = get_jiffies_64();
1384 u64 next_credit = vif->credit_window_start +
f942dc25
IC
1385 msecs_to_jiffies(vif->credit_usec / 1000);
1386
1387 /* Timer could already be pending in rare cases. */
1388 if (timer_pending(&vif->credit_timeout))
1389 return true;
1390
1391 /* Passed the point where we can replenish credit? */
059dfa6a
WL
1392 if (time_after_eq64(now, next_credit)) {
1393 vif->credit_window_start = now;
f942dc25
IC
1394 tx_add_credit(vif);
1395 }
1396
1397 /* Still too big to send right now? Set a callback. */
1398 if (size > vif->remaining_credit) {
1399 vif->credit_timeout.data =
1400 (unsigned long)vif;
1401 vif->credit_timeout.function =
1402 tx_credit_callback;
1403 mod_timer(&vif->credit_timeout,
1404 next_credit);
059dfa6a 1405 vif->credit_window_start = next_credit;
f942dc25
IC
1406
1407 return true;
1408 }
1409
1410 return false;
1411}
1412
7376419a 1413static unsigned xenvif_tx_build_gops(struct xenvif *vif)
f942dc25 1414{
b3f980bd 1415 struct gnttab_copy *gop = vif->tx_copy_ops, *request_gop;
f942dc25
IC
1416 struct sk_buff *skb;
1417 int ret;
1418
b3f980bd
WL
1419 while ((nr_pending_reqs(vif) + XEN_NETBK_LEGACY_SLOTS_MAX
1420 < MAX_PENDING_REQS)) {
f942dc25 1421 struct xen_netif_tx_request txreq;
37641494 1422 struct xen_netif_tx_request txfrags[XEN_NETBK_LEGACY_SLOTS_MAX];
f942dc25
IC
1423 struct page *page;
1424 struct xen_netif_extra_info extras[XEN_NETIF_EXTRA_TYPE_MAX-1];
1425 u16 pending_idx;
1426 RING_IDX idx;
1427 int work_to_do;
1428 unsigned int data_len;
1429 pending_ring_idx_t index;
1430
48856286
IC
1431 if (vif->tx.sring->req_prod - vif->tx.req_cons >
1432 XEN_NETIF_TX_RING_SIZE) {
1433 netdev_err(vif->dev,
1434 "Impossible number of requests. "
1435 "req_prod %d, req_cons %d, size %ld\n",
1436 vif->tx.sring->req_prod, vif->tx.req_cons,
1437 XEN_NETIF_TX_RING_SIZE);
7376419a 1438 xenvif_fatal_tx_err(vif);
48856286
IC
1439 continue;
1440 }
1441
f942dc25 1442 RING_FINAL_CHECK_FOR_REQUESTS(&vif->tx, work_to_do);
b3f980bd
WL
1443 if (!work_to_do)
1444 break;
f942dc25
IC
1445
1446 idx = vif->tx.req_cons;
1447 rmb(); /* Ensure that we see the request before we copy it. */
1448 memcpy(&txreq, RING_GET_REQUEST(&vif->tx, idx), sizeof(txreq));
1449
1450 /* Credit-based scheduling. */
1451 if (txreq.size > vif->remaining_credit &&
b3f980bd
WL
1452 tx_credit_exceeded(vif, txreq.size))
1453 break;
f942dc25
IC
1454
1455 vif->remaining_credit -= txreq.size;
1456
1457 work_to_do--;
1458 vif->tx.req_cons = ++idx;
1459
1460 memset(extras, 0, sizeof(extras));
1461 if (txreq.flags & XEN_NETTXF_extra_info) {
7376419a
WL
1462 work_to_do = xenvif_get_extras(vif, extras,
1463 work_to_do);
f942dc25 1464 idx = vif->tx.req_cons;
48856286 1465 if (unlikely(work_to_do < 0))
b3f980bd 1466 break;
f942dc25
IC
1467 }
1468
7376419a 1469 ret = xenvif_count_requests(vif, &txreq, txfrags, work_to_do);
48856286 1470 if (unlikely(ret < 0))
b3f980bd 1471 break;
48856286 1472
f942dc25
IC
1473 idx += ret;
1474
1475 if (unlikely(txreq.size < ETH_HLEN)) {
1476 netdev_dbg(vif->dev,
1477 "Bad packet size: %d\n", txreq.size);
7376419a 1478 xenvif_tx_err(vif, &txreq, idx);
b3f980bd 1479 break;
f942dc25
IC
1480 }
1481
1482 /* No crossing a page as the payload mustn't fragment. */
1483 if (unlikely((txreq.offset + txreq.size) > PAGE_SIZE)) {
48856286 1484 netdev_err(vif->dev,
f942dc25
IC
1485 "txreq.offset: %x, size: %u, end: %lu\n",
1486 txreq.offset, txreq.size,
1487 (txreq.offset&~PAGE_MASK) + txreq.size);
7376419a 1488 xenvif_fatal_tx_err(vif);
b3f980bd 1489 break;
f942dc25
IC
1490 }
1491
b3f980bd
WL
1492 index = pending_index(vif->pending_cons);
1493 pending_idx = vif->pending_ring[index];
f942dc25
IC
1494
1495 data_len = (txreq.size > PKT_PROT_LEN &&
37641494 1496 ret < XEN_NETBK_LEGACY_SLOTS_MAX) ?
f942dc25
IC
1497 PKT_PROT_LEN : txreq.size;
1498
1499 skb = alloc_skb(data_len + NET_SKB_PAD + NET_IP_ALIGN,
1500 GFP_ATOMIC | __GFP_NOWARN);
1501 if (unlikely(skb == NULL)) {
1502 netdev_dbg(vif->dev,
1503 "Can't allocate a skb in start_xmit.\n");
7376419a 1504 xenvif_tx_err(vif, &txreq, idx);
f942dc25
IC
1505 break;
1506 }
1507
1508 /* Packets passed to netif_rx() must have some headroom. */
1509 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN);
1510
1511 if (extras[XEN_NETIF_EXTRA_TYPE_GSO - 1].type) {
1512 struct xen_netif_extra_info *gso;
1513 gso = &extras[XEN_NETIF_EXTRA_TYPE_GSO - 1];
1514
7376419a
WL
1515 if (xenvif_set_skb_gso(vif, skb, gso)) {
1516 /* Failure in xenvif_set_skb_gso is fatal. */
f942dc25 1517 kfree_skb(skb);
b3f980bd 1518 break;
f942dc25
IC
1519 }
1520 }
1521
1522 /* XXX could copy straight to head */
7376419a 1523 page = xenvif_alloc_page(vif, pending_idx);
f942dc25
IC
1524 if (!page) {
1525 kfree_skb(skb);
7376419a 1526 xenvif_tx_err(vif, &txreq, idx);
b3f980bd 1527 break;
f942dc25
IC
1528 }
1529
f942dc25
IC
1530 gop->source.u.ref = txreq.gref;
1531 gop->source.domid = vif->domid;
1532 gop->source.offset = txreq.offset;
1533
1534 gop->dest.u.gmfn = virt_to_mfn(page_address(page));
1535 gop->dest.domid = DOMID_SELF;
1536 gop->dest.offset = txreq.offset;
1537
1538 gop->len = txreq.size;
1539 gop->flags = GNTCOPY_source_gref;
1540
1541 gop++;
1542
b3f980bd 1543 memcpy(&vif->pending_tx_info[pending_idx].req,
f942dc25 1544 &txreq, sizeof(txreq));
b3f980bd 1545 vif->pending_tx_info[pending_idx].head = index;
f942dc25
IC
1546 *((u16 *)skb->data) = pending_idx;
1547
1548 __skb_put(skb, data_len);
1549
1550 skb_shinfo(skb)->nr_frags = ret;
1551 if (data_len < txreq.size) {
1552 skb_shinfo(skb)->nr_frags++;
ea066ad1
IC
1553 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1554 pending_idx);
f942dc25 1555 } else {
ea066ad1
IC
1556 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1557 INVALID_PENDING_IDX);
f942dc25
IC
1558 }
1559
b3f980bd 1560 vif->pending_cons++;
f942dc25 1561
7376419a 1562 request_gop = xenvif_get_requests(vif, skb, txfrags, gop);
f942dc25
IC
1563 if (request_gop == NULL) {
1564 kfree_skb(skb);
7376419a 1565 xenvif_tx_err(vif, &txreq, idx);
b3f980bd 1566 break;
f942dc25
IC
1567 }
1568 gop = request_gop;
1569
b3f980bd 1570 __skb_queue_tail(&vif->tx_queue, skb);
1e0b6eac 1571
f942dc25 1572 vif->tx.req_cons = idx;
f942dc25 1573
b3f980bd 1574 if ((gop-vif->tx_copy_ops) >= ARRAY_SIZE(vif->tx_copy_ops))
f942dc25
IC
1575 break;
1576 }
1577
b3f980bd 1578 return gop - vif->tx_copy_ops;
f942dc25
IC
1579}
1580
b3f980bd 1581
7376419a 1582static int xenvif_tx_submit(struct xenvif *vif, int budget)
f942dc25 1583{
b3f980bd 1584 struct gnttab_copy *gop = vif->tx_copy_ops;
f942dc25 1585 struct sk_buff *skb;
b3f980bd 1586 int work_done = 0;
f942dc25 1587
b3f980bd
WL
1588 while (work_done < budget &&
1589 (skb = __skb_dequeue(&vif->tx_queue)) != NULL) {
f942dc25 1590 struct xen_netif_tx_request *txp;
f942dc25
IC
1591 u16 pending_idx;
1592 unsigned data_len;
1593
1594 pending_idx = *((u16 *)skb->data);
b3f980bd 1595 txp = &vif->pending_tx_info[pending_idx].req;
f942dc25
IC
1596
1597 /* Check the remap error code. */
7376419a 1598 if (unlikely(xenvif_tx_check_gop(vif, skb, &gop))) {
f942dc25
IC
1599 netdev_dbg(vif->dev, "netback grant failed.\n");
1600 skb_shinfo(skb)->nr_frags = 0;
1601 kfree_skb(skb);
1602 continue;
1603 }
1604
1605 data_len = skb->len;
1606 memcpy(skb->data,
b3f980bd 1607 (void *)(idx_to_kaddr(vif, pending_idx)|txp->offset),
f942dc25
IC
1608 data_len);
1609 if (data_len < txp->size) {
1610 /* Append the packet payload as a fragment. */
1611 txp->offset += data_len;
1612 txp->size -= data_len;
1613 } else {
1614 /* Schedule a response immediately. */
7376419a
WL
1615 xenvif_idx_release(vif, pending_idx,
1616 XEN_NETIF_RSP_OKAY);
f942dc25
IC
1617 }
1618
1619 if (txp->flags & XEN_NETTXF_csum_blank)
1620 skb->ip_summed = CHECKSUM_PARTIAL;
1621 else if (txp->flags & XEN_NETTXF_data_validated)
1622 skb->ip_summed = CHECKSUM_UNNECESSARY;
1623
7376419a 1624 xenvif_fill_frags(vif, skb);
f942dc25 1625
2eba61d5 1626 if (skb_is_nonlinear(skb) && skb_headlen(skb) < PKT_PROT_LEN) {
f942dc25
IC
1627 int target = min_t(int, skb->len, PKT_PROT_LEN);
1628 __pskb_pull_tail(skb, target - skb_headlen(skb));
1629 }
1630
1631 skb->dev = vif->dev;
1632 skb->protocol = eth_type_trans(skb, skb->dev);
f9ca8f74 1633 skb_reset_network_header(skb);
f942dc25
IC
1634
1635 if (checksum_setup(vif, skb)) {
1636 netdev_dbg(vif->dev,
1637 "Can't setup checksum in net_tx_action\n");
1638 kfree_skb(skb);
1639 continue;
1640 }
1641
40893fd0 1642 skb_probe_transport_header(skb, 0);
f9ca8f74 1643
f942dc25
IC
1644 vif->dev->stats.rx_bytes += skb->len;
1645 vif->dev->stats.rx_packets++;
1646
b3f980bd
WL
1647 work_done++;
1648
1649 netif_receive_skb(skb);
f942dc25 1650 }
b3f980bd
WL
1651
1652 return work_done;
f942dc25
IC
1653}
1654
1655/* Called after netfront has transmitted */
7376419a 1656int xenvif_tx_action(struct xenvif *vif, int budget)
f942dc25
IC
1657{
1658 unsigned nr_gops;
b3f980bd 1659 int work_done;
f942dc25 1660
b3f980bd
WL
1661 if (unlikely(!tx_work_todo(vif)))
1662 return 0;
1663
7376419a 1664 nr_gops = xenvif_tx_build_gops(vif);
f942dc25
IC
1665
1666 if (nr_gops == 0)
b3f980bd
WL
1667 return 0;
1668
1669 gnttab_batch_copy(vif->tx_copy_ops, nr_gops);
f942dc25 1670
7376419a 1671 work_done = xenvif_tx_submit(vif, nr_gops);
f942dc25 1672
b3f980bd 1673 return work_done;
f942dc25
IC
1674}
1675
7376419a
WL
1676static void xenvif_idx_release(struct xenvif *vif, u16 pending_idx,
1677 u8 status)
f942dc25 1678{
f942dc25 1679 struct pending_tx_info *pending_tx_info;
2810e5b9
WL
1680 pending_ring_idx_t head;
1681 u16 peek; /* peek into next tx request */
1682
b3f980bd 1683 BUG_ON(vif->mmap_pages[pending_idx] == (void *)(~0UL));
f942dc25
IC
1684
1685 /* Already complete? */
b3f980bd 1686 if (vif->mmap_pages[pending_idx] == NULL)
f942dc25
IC
1687 return;
1688
b3f980bd 1689 pending_tx_info = &vif->pending_tx_info[pending_idx];
f942dc25 1690
2810e5b9 1691 head = pending_tx_info->head;
f942dc25 1692
b3f980bd
WL
1693 BUG_ON(!pending_tx_is_head(vif, head));
1694 BUG_ON(vif->pending_ring[pending_index(head)] != pending_idx);
f942dc25 1695
2810e5b9
WL
1696 do {
1697 pending_ring_idx_t index;
1698 pending_ring_idx_t idx = pending_index(head);
b3f980bd 1699 u16 info_idx = vif->pending_ring[idx];
f942dc25 1700
b3f980bd 1701 pending_tx_info = &vif->pending_tx_info[info_idx];
2810e5b9
WL
1702 make_tx_response(vif, &pending_tx_info->req, status);
1703
1704 /* Setting any number other than
1705 * INVALID_PENDING_RING_IDX indicates this slot is
1706 * starting a new packet / ending a previous packet.
1707 */
1708 pending_tx_info->head = 0;
1709
b3f980bd
WL
1710 index = pending_index(vif->pending_prod++);
1711 vif->pending_ring[index] = vif->pending_ring[info_idx];
f942dc25 1712
b3f980bd 1713 peek = vif->pending_ring[pending_index(++head)];
2810e5b9 1714
b3f980bd 1715 } while (!pending_tx_is_head(vif, peek));
2810e5b9 1716
b3f980bd
WL
1717 put_page(vif->mmap_pages[pending_idx]);
1718 vif->mmap_pages[pending_idx] = NULL;
f942dc25
IC
1719}
1720
2810e5b9 1721
f942dc25
IC
1722static void make_tx_response(struct xenvif *vif,
1723 struct xen_netif_tx_request *txp,
1724 s8 st)
1725{
1726 RING_IDX i = vif->tx.rsp_prod_pvt;
1727 struct xen_netif_tx_response *resp;
1728 int notify;
1729
1730 resp = RING_GET_RESPONSE(&vif->tx, i);
1731 resp->id = txp->id;
1732 resp->status = st;
1733
1734 if (txp->flags & XEN_NETTXF_extra_info)
1735 RING_GET_RESPONSE(&vif->tx, ++i)->status = XEN_NETIF_RSP_NULL;
1736
1737 vif->tx.rsp_prod_pvt = ++i;
1738 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&vif->tx, notify);
1739 if (notify)
e1f00a69 1740 notify_remote_via_irq(vif->tx_irq);
f942dc25
IC
1741}
1742
1743static struct xen_netif_rx_response *make_rx_response(struct xenvif *vif,
1744 u16 id,
1745 s8 st,
1746 u16 offset,
1747 u16 size,
1748 u16 flags)
1749{
1750 RING_IDX i = vif->rx.rsp_prod_pvt;
1751 struct xen_netif_rx_response *resp;
1752
1753 resp = RING_GET_RESPONSE(&vif->rx, i);
1754 resp->offset = offset;
1755 resp->flags = flags;
1756 resp->id = id;
1757 resp->status = (s16)size;
1758 if (st < 0)
1759 resp->status = (s16)st;
1760
1761 vif->rx.rsp_prod_pvt = ++i;
1762
1763 return resp;
1764}
1765
b3f980bd 1766static inline int rx_work_todo(struct xenvif *vif)
f942dc25 1767{
b3f980bd 1768 return !skb_queue_empty(&vif->rx_queue);
f942dc25
IC
1769}
1770
b3f980bd 1771static inline int tx_work_todo(struct xenvif *vif)
f942dc25
IC
1772{
1773
b3f980bd
WL
1774 if (likely(RING_HAS_UNCONSUMED_REQUESTS(&vif->tx)) &&
1775 (nr_pending_reqs(vif) + XEN_NETBK_LEGACY_SLOTS_MAX
1776 < MAX_PENDING_REQS))
f942dc25
IC
1777 return 1;
1778
1779 return 0;
1780}
1781
7376419a 1782void xenvif_unmap_frontend_rings(struct xenvif *vif)
f942dc25 1783{
c9d63699
DV
1784 if (vif->tx.sring)
1785 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(vif),
1786 vif->tx.sring);
1787 if (vif->rx.sring)
1788 xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(vif),
1789 vif->rx.sring);
f942dc25
IC
1790}
1791
7376419a
WL
1792int xenvif_map_frontend_rings(struct xenvif *vif,
1793 grant_ref_t tx_ring_ref,
1794 grant_ref_t rx_ring_ref)
f942dc25 1795{
c9d63699 1796 void *addr;
f942dc25
IC
1797 struct xen_netif_tx_sring *txs;
1798 struct xen_netif_rx_sring *rxs;
1799
1800 int err = -ENOMEM;
1801
c9d63699
DV
1802 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(vif),
1803 tx_ring_ref, &addr);
1804 if (err)
f942dc25
IC
1805 goto err;
1806
c9d63699 1807 txs = (struct xen_netif_tx_sring *)addr;
f942dc25
IC
1808 BACK_RING_INIT(&vif->tx, txs, PAGE_SIZE);
1809
c9d63699
DV
1810 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(vif),
1811 rx_ring_ref, &addr);
1812 if (err)
f942dc25 1813 goto err;
f942dc25 1814
c9d63699 1815 rxs = (struct xen_netif_rx_sring *)addr;
f942dc25
IC
1816 BACK_RING_INIT(&vif->rx, rxs, PAGE_SIZE);
1817
c9d63699
DV
1818 vif->rx_req_cons_peek = 0;
1819
f942dc25
IC
1820 return 0;
1821
1822err:
7376419a 1823 xenvif_unmap_frontend_rings(vif);
f942dc25
IC
1824 return err;
1825}
1826
7376419a 1827int xenvif_kthread(void *data)
b3f980bd
WL
1828{
1829 struct xenvif *vif = data;
1830
1831 while (!kthread_should_stop()) {
1832 wait_event_interruptible(vif->wq,
1833 rx_work_todo(vif) ||
1834 kthread_should_stop());
1835 if (kthread_should_stop())
1836 break;
1837
1838 if (rx_work_todo(vif))
7376419a 1839 xenvif_rx_action(vif);
b3f980bd
WL
1840
1841 cond_resched();
1842 }
1843
1844 return 0;
1845}
1846
f942dc25
IC
1847static int __init netback_init(void)
1848{
f942dc25 1849 int rc = 0;
f942dc25 1850
2a14b244 1851 if (!xen_domain())
f942dc25
IC
1852 return -ENODEV;
1853
37641494 1854 if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) {
383eda32
JP
1855 pr_info("fatal_skb_slots too small (%d), bump it to XEN_NETBK_LEGACY_SLOTS_MAX (%d)\n",
1856 fatal_skb_slots, XEN_NETBK_LEGACY_SLOTS_MAX);
37641494 1857 fatal_skb_slots = XEN_NETBK_LEGACY_SLOTS_MAX;
2810e5b9
WL
1858 }
1859
f942dc25
IC
1860 rc = xenvif_xenbus_init();
1861 if (rc)
1862 goto failed_init;
1863
1864 return 0;
1865
1866failed_init:
f942dc25 1867 return rc;
f942dc25
IC
1868}
1869
1870module_init(netback_init);
1871
b103f358
WL
1872static void __exit netback_fini(void)
1873{
b103f358 1874 xenvif_xenbus_fini();
b103f358
WL
1875}
1876module_exit(netback_fini);
1877
f942dc25 1878MODULE_LICENSE("Dual BSD/GPL");
f984cec6 1879MODULE_ALIAS("xen-backend:vif");