blob: 919b6509455cfbaf45ba63c7d8b378fa13a8e758 [file] [log] [blame]
Ian Campbellf942dc22011-03-15 00:06:18 +00001/*
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
Stefano Stabellinica981632012-08-08 17:21:23 +000043#include <xen/xen.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000044#include <xen/events.h>
45#include <xen/interface/memory.h>
46
47#include <asm/xen/hypercall.h>
48#include <asm/xen/page.h>
49
Wei Liue1f00a692013-05-22 06:34:45 +000050/* 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
Wei Liu2810e5b2013-04-22 02:20:42 +000057/*
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 */
Wei Liu37641492013-05-02 00:43:59 +000061#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
Wei Liu2810e5b2013-04-22 02:20:42 +000072
Wei Liu2810e5b2013-04-22 02:20:42 +000073/*
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 */
Wei Liub3f980b2013-08-26 12:59:38 +010078static inline int pending_tx_is_head(struct xenvif *vif, RING_IDX idx)
Wei Liu2810e5b2013-04-22 02:20:42 +000079{
Wei Liub3f980b2013-08-26 12:59:38 +010080 return vif->pending_tx_info[idx].head != INVALID_PENDING_RING_IDX;
Wei Liu2810e5b2013-04-22 02:20:42 +000081}
82
Wei Liu73764192013-08-26 12:59:39 +010083static void xenvif_idx_release(struct xenvif *vif, u16 pending_idx,
84 u8 status);
85
Ian Campbellf942dc22011-03-15 00:06:18 +000086static void make_tx_response(struct xenvif *vif,
87 struct xen_netif_tx_request *txp,
88 s8 st);
Wei Liub3f980b2013-08-26 12:59:38 +010089
90static inline int tx_work_todo(struct xenvif *vif);
91static inline int rx_work_todo(struct xenvif *vif);
92
Ian Campbellf942dc22011-03-15 00:06:18 +000093static 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
Wei Liub3f980b2013-08-26 12:59:38 +0100100static inline unsigned long idx_to_pfn(struct xenvif *vif,
Ian Campbellea066ad2011-10-05 00:28:46 +0000101 u16 idx)
Ian Campbellf942dc22011-03-15 00:06:18 +0000102{
Wei Liub3f980b2013-08-26 12:59:38 +0100103 return page_to_pfn(vif->mmap_pages[idx]);
Ian Campbellf942dc22011-03-15 00:06:18 +0000104}
105
Wei Liub3f980b2013-08-26 12:59:38 +0100106static inline unsigned long idx_to_kaddr(struct xenvif *vif,
Ian Campbellea066ad2011-10-05 00:28:46 +0000107 u16 idx)
Ian Campbellf942dc22011-03-15 00:06:18 +0000108{
Wei Liub3f980b2013-08-26 12:59:38 +0100109 return (unsigned long)pfn_to_kaddr(idx_to_pfn(vif, idx));
Ian Campbellf942dc22011-03-15 00:06:18 +0000110}
111
Paul Durrant2eba61d2013-10-16 17:50:29 +0100112/* 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.
Ian Campbellf942dc22011-03-15 00:06:18 +0000116 */
Paul Durrant2eba61d2013-10-16 17:50:29 +0100117#define PKT_PROT_LEN 128
Ian Campbellf942dc22011-03-15 00:06:18 +0000118
Ian Campbellea066ad2011-10-05 00:28:46 +0000119static 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
Ian Campbellf942dc22011-03-15 00:06:18 +0000129static inline pending_ring_idx_t pending_index(unsigned i)
130{
131 return i & (MAX_PENDING_REQS-1);
132}
133
Wei Liub3f980b2013-08-26 12:59:38 +0100134static inline pending_ring_idx_t nr_pending_reqs(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000135{
136 return MAX_PENDING_REQS -
Wei Liub3f980b2013-08-26 12:59:38 +0100137 vif->pending_prod + vif->pending_cons;
Ian Campbellf942dc22011-03-15 00:06:18 +0000138}
139
140static int max_required_rx_slots(struct xenvif *vif)
141{
142 int max = DIV_ROUND_UP(vif->dev->mtu, PAGE_SIZE);
143
Wei Liu2810e5b2013-04-22 02:20:42 +0000144 /* XXX FIXME: RX path dependent on MAX_SKB_FRAGS */
Paul Durrant82cada22013-10-16 17:50:32 +0100145 if (vif->can_sg || vif->gso_mask || vif->gso_prefix_mask)
Ian Campbellf942dc22011-03-15 00:06:18 +0000146 max += MAX_SKB_FRAGS + 1; /* extra_info + frags */
147
148 return max;
149}
150
Wei Liu73764192013-08-26 12:59:39 +0100151int xenvif_rx_ring_full(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000152{
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
Wei Liu73764192013-08-26 12:59:39 +0100160int xenvif_must_stop_queue(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000161{
Wei Liu73764192013-08-26 12:59:39 +0100162 if (!xenvif_rx_ring_full(vif))
Ian Campbellf942dc22011-03-15 00:06:18 +0000163 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
Wei Liu73764192013-08-26 12:59:39 +0100169 return xenvif_rx_ring_full(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000170}
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
Wei Liu33bc8012013-10-08 10:54:21 +0100212struct 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
Ian Campbellf942dc22011-03-15 00:06:18 +0000255/*
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
Wei Liu73764192013-08-26 12:59:39 +0100258 * xenvif_gop_frag_copy.
Ian Campbellf942dc22011-03-15 00:06:18 +0000259 */
Wei Liu73764192013-08-26 12:59:39 +0100260unsigned int xenvif_count_skb_slots(struct xenvif *vif, struct sk_buff *skb)
Ian Campbellf942dc22011-03-15 00:06:18 +0000261{
Wei Liu33bc8012013-10-08 10:54:21 +0100262 struct xenvif_count_slot_state state;
Ian Campbellf942dc22011-03-15 00:06:18 +0000263 unsigned int count;
Wei Liu33bc8012013-10-08 10:54:21 +0100264 unsigned char *data;
265 unsigned i;
Ian Campbellf942dc22011-03-15 00:06:18 +0000266
Wei Liu33bc8012013-10-08 10:54:21 +0100267 state.head = true;
268 state.copy_off = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000269
Wei Liu33bc8012013-10-08 10:54:21 +0100270 /* Slot for the first (partial) page of data. */
271 count = 1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000272
Wei Liu33bc8012013-10-08 10:54:21 +0100273 /* Need a slot for the GSO prefix for GSO extra data? */
Ian Campbellf942dc22011-03-15 00:06:18 +0000274 if (skb_shinfo(skb)->gso_size)
275 count++;
276
Wei Liu33bc8012013-10-08 10:54:21 +0100277 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;
281
282 if (data + size > skb_tail_pointer(skb))
283 size = skb_tail_pointer(skb) - data;
284
285 count += xenvif_count_frag_slots(vif, offset, size, &state);
286
287 data += size;
288 }
289
Ian Campbellf942dc22011-03-15 00:06:18 +0000290 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Eric Dumazet9e903e02011-10-18 21:00:24 +0000291 unsigned long size = skb_frag_size(&skb_shinfo(skb)->frags[i]);
Ian Campbell6a8ed462012-10-10 03:48:42 +0000292 unsigned long offset = skb_shinfo(skb)->frags[i].page_offset;
Ian Campbell6a8ed462012-10-10 03:48:42 +0000293
Wei Liu33bc8012013-10-08 10:54:21 +0100294 count += xenvif_count_frag_slots(vif, offset, size, &state);
Ian Campbellf942dc22011-03-15 00:06:18 +0000295 }
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;
Wei Liub3f980b2013-08-26 12:59:38 +0100303 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000304 int copy_off;
305 grant_ref_t copy_gref;
306};
307
Wei Liub3f980b2013-08-26 12:59:38 +0100308static struct xenvif_rx_meta *get_next_rx_buffer(struct xenvif *vif,
309 struct netrx_pending_operations *npo)
Ian Campbellf942dc22011-03-15 00:06:18 +0000310{
Wei Liub3f980b2013-08-26 12:59:38 +0100311 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000312 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++;
Paul Durrant82cada22013-10-16 17:50:32 +0100317 meta->gso_type = XEN_NETIF_GSO_TYPE_NONE;
Ian Campbellf942dc22011-03-15 00:06:18 +0000318 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
Wei Liu33bc8012013-10-08 10:54:21 +0100328/*
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 */
Wei Liu73764192013-08-26 12:59:39 +0100332static 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,
Wei Liu33bc8012013-10-08 10:54:21 +0100335 unsigned long offset, int *head)
Ian Campbellf942dc22011-03-15 00:06:18 +0000336{
337 struct gnttab_copy *copy_gop;
Wei Liub3f980b2013-08-26 12:59:38 +0100338 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000339 unsigned long bytes;
Paul Durrant82cada22013-10-16 17:50:32 +0100340 int gso_type;
Ian Campbellf942dc22011-03-15 00:06:18 +0000341
342 /* Data must not cross a page boundary. */
Ian Campbell6a8ed462012-10-10 03:48:42 +0000343 BUG_ON(size + offset > PAGE_SIZE<<compound_order(page));
Ian Campbellf942dc22011-03-15 00:06:18 +0000344
345 meta = npo->meta + npo->meta_prod - 1;
346
Ian Campbell6a8ed462012-10-10 03:48:42 +0000347 /* Skip unused frames from start of page */
348 page += offset >> PAGE_SHIFT;
349 offset &= ~PAGE_MASK;
350
Ian Campbellf942dc22011-03-15 00:06:18 +0000351 while (size > 0) {
Ian Campbell6a8ed462012-10-10 03:48:42 +0000352 BUG_ON(offset >= PAGE_SIZE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000353 BUG_ON(npo->copy_off > MAX_BUFFER_OFFSET);
354
Ian Campbell6a8ed462012-10-10 03:48:42 +0000355 bytes = PAGE_SIZE - offset;
356
357 if (bytes > size)
358 bytes = size;
359
Wei Liu33bc8012013-10-08 10:54:21 +0100360 if (start_new_rx_buffer(npo->copy_off, bytes, *head)) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000361 /*
362 * Netfront requires there to be some data in the head
363 * buffer.
364 */
Wei Liu33bc8012013-10-08 10:54:21 +0100365 BUG_ON(*head);
Ian Campbellf942dc22011-03-15 00:06:18 +0000366
367 meta = get_next_rx_buffer(vif, npo);
368 }
369
Ian Campbellf942dc22011-03-15 00:06:18 +0000370 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;
Wei Liub3f980b2013-08-26 12:59:38 +0100375 copy_gop->len = bytes;
376
Wei Liu43e9d192013-08-26 12:59:37 +0100377 copy_gop->source.domid = DOMID_SELF;
378 copy_gop->source.u.gmfn = virt_to_mfn(page_address(page));
Ian Campbellf942dc22011-03-15 00:06:18 +0000379 copy_gop->source.offset = offset;
Ian Campbellf942dc22011-03-15 00:06:18 +0000380
Wei Liub3f980b2013-08-26 12:59:38 +0100381 copy_gop->dest.domid = vif->domid;
Ian Campbellf942dc22011-03-15 00:06:18 +0000382 copy_gop->dest.offset = npo->copy_off;
383 copy_gop->dest.u.ref = npo->copy_gref;
Ian Campbellf942dc22011-03-15 00:06:18 +0000384
385 npo->copy_off += bytes;
386 meta->size += bytes;
387
388 offset += bytes;
389 size -= bytes;
390
Ian Campbell6a8ed462012-10-10 03:48:42 +0000391 /* Next frame */
392 if (offset == PAGE_SIZE && size) {
393 BUG_ON(!PageCompound(page));
394 page++;
395 offset = 0;
396 }
397
Ian Campbellf942dc22011-03-15 00:06:18 +0000398 /* Leave a gap for the GSO descriptor. */
Paul Durrant82cada22013-10-16 17:50:32 +0100399 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))
Ian Campbellf942dc22011-03-15 00:06:18 +0000407 vif->rx.req_cons++;
408
Wei Liu33bc8012013-10-08 10:54:21 +0100409 *head = 0; /* There must be something in this buffer now. */
Ian Campbellf942dc22011-03-15 00:06:18 +0000410
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 */
Wei Liu73764192013-08-26 12:59:39 +0100426static int xenvif_gop_skb(struct sk_buff *skb,
427 struct netrx_pending_operations *npo)
Ian Campbellf942dc22011-03-15 00:06:18 +0000428{
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;
Wei Liub3f980b2013-08-26 12:59:38 +0100433 struct xenvif_rx_meta *meta;
Ian Campbellf942dc22011-03-15 00:06:18 +0000434 unsigned char *data;
Wei Liu33bc8012013-10-08 10:54:21 +0100435 int head = 1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000436 int old_meta_prod;
Paul Durrant82cada22013-10-16 17:50:32 +0100437 int gso_type;
438 int gso_size;
Ian Campbellf942dc22011-03-15 00:06:18 +0000439
440 old_meta_prod = npo->meta_prod;
441
Paul Durrant82cada22013-10-16 17:50:32 +0100442 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
Ian Campbellf942dc22011-03-15 00:06:18 +0000453 /* Set up a GSO prefix descriptor, if necessary */
Paul Durrant82cada22013-10-16 17:50:32 +0100454 if ((1 << skb_shinfo(skb)->gso_type) & vif->gso_prefix_mask) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000455 req = RING_GET_REQUEST(&vif->rx, vif->rx.req_cons++);
456 meta = npo->meta + npo->meta_prod++;
Paul Durrant82cada22013-10-16 17:50:32 +0100457 meta->gso_type = gso_type;
458 meta->gso_size = gso_size;
Ian Campbellf942dc22011-03-15 00:06:18 +0000459 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
Paul Durrant82cada22013-10-16 17:50:32 +0100466 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;
Ian Campbellf942dc22011-03-15 00:06:18 +0000471 meta->gso_size = 0;
Paul Durrant82cada22013-10-16 17:50:32 +0100472 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000473
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
Wei Liu73764192013-08-26 12:59:39 +0100487 xenvif_gop_frag_copy(vif, skb, npo,
Wei Liu33bc8012013-10-08 10:54:21 +0100488 virt_to_page(data), len, offset, &head);
Ian Campbellf942dc22011-03-15 00:06:18 +0000489 data += len;
490 }
491
492 for (i = 0; i < nr_frags; i++) {
Wei Liu73764192013-08-26 12:59:39 +0100493 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,
Wei Liu33bc8012013-10-08 10:54:21 +0100497 &head);
Ian Campbellf942dc22011-03-15 00:06:18 +0000498 }
499
500 return npo->meta_prod - old_meta_prod;
501}
502
503/*
Wei Liu73764192013-08-26 12:59:39 +0100504 * This is a twin to xenvif_gop_skb. Assume that xenvif_gop_skb was
Ian Campbellf942dc22011-03-15 00:06:18 +0000505 * 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 */
Wei Liu73764192013-08-26 12:59:39 +0100509static int xenvif_check_gop(struct xenvif *vif, int nr_meta_slots,
510 struct netrx_pending_operations *npo)
Ian Campbellf942dc22011-03-15 00:06:18 +0000511{
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
Wei Liu73764192013-08-26 12:59:39 +0100529static void xenvif_add_frag_responses(struct xenvif *vif, int status,
530 struct xenvif_rx_meta *meta,
531 int nr_meta_slots)
Ian Campbellf942dc22011-03-15 00:06:18 +0000532{
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
Wei Liu33bc8012013-10-08 10:54:21 +0100555struct skb_cb_overlay {
556 int meta_slots_used;
557};
558
Wei Liu73764192013-08-26 12:59:39 +0100559static void xenvif_kick_thread(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000560{
Wei Liub3f980b2013-08-26 12:59:38 +0100561 wake_up(&vif->wq);
562}
563
Wei Liu73764192013-08-26 12:59:39 +0100564void xenvif_rx_action(struct xenvif *vif)
Wei Liub3f980b2013-08-26 12:59:38 +0100565{
Ian Campbellf942dc22011-03-15 00:06:18 +0000566 s8 status;
Wei Liue1f00a692013-05-22 06:34:45 +0000567 u16 flags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000568 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;
Wei Liub3f980b2013-08-26 12:59:38 +0100577 int need_to_notify = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000578
579 struct netrx_pending_operations npo = {
Wei Liub3f980b2013-08-26 12:59:38 +0100580 .copy = vif->grant_copy_op,
581 .meta = vif->meta,
Ian Campbellf942dc22011-03-15 00:06:18 +0000582 };
583
584 skb_queue_head_init(&rxq);
585
586 count = 0;
587
Wei Liub3f980b2013-08-26 12:59:38 +0100588 while ((skb = skb_dequeue(&vif->rx_queue)) != NULL) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000589 vif = netdev_priv(skb->dev);
590 nr_frags = skb_shinfo(skb)->nr_frags;
591
592 sco = (struct skb_cb_overlay *)skb->cb;
Wei Liu73764192013-08-26 12:59:39 +0100593 sco->meta_slots_used = xenvif_gop_skb(skb, &npo);
Ian Campbellf942dc22011-03-15 00:06:18 +0000594
Wei Liu33bc8012013-10-08 10:54:21 +0100595 count += nr_frags + 1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000596
597 __skb_queue_tail(&rxq, skb);
598
599 /* Filled the batch queue? */
Wei Liu33bc8012013-10-08 10:54:21 +0100600 /* XXX FIXME: RX path dependent on MAX_SKB_FRAGS */
601 if (count + MAX_SKB_FRAGS >= XEN_NETIF_RX_RING_SIZE)
Ian Campbellf942dc22011-03-15 00:06:18 +0000602 break;
603 }
604
Wei Liub3f980b2013-08-26 12:59:38 +0100605 BUG_ON(npo.meta_prod > ARRAY_SIZE(vif->meta));
Ian Campbellf942dc22011-03-15 00:06:18 +0000606
607 if (!npo.copy_prod)
608 return;
609
Wei Liub3f980b2013-08-26 12:59:38 +0100610 BUG_ON(npo.copy_prod > ARRAY_SIZE(vif->grant_copy_op));
611 gnttab_batch_copy(vif->grant_copy_op, npo.copy_prod);
Ian Campbellf942dc22011-03-15 00:06:18 +0000612
613 while ((skb = __skb_dequeue(&rxq)) != NULL) {
614 sco = (struct skb_cb_overlay *)skb->cb;
615
616 vif = netdev_priv(skb->dev);
617
Paul Durrant82cada22013-10-16 17:50:32 +0100618 if ((1 << vif->meta[npo.meta_cons].gso_type) &
619 vif->gso_prefix_mask) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000620 resp = RING_GET_RESPONSE(&vif->rx,
Wei Liub3f980b2013-08-26 12:59:38 +0100621 vif->rx.rsp_prod_pvt++);
Ian Campbellf942dc22011-03-15 00:06:18 +0000622
623 resp->flags = XEN_NETRXF_gso_prefix | XEN_NETRXF_more_data;
624
Wei Liub3f980b2013-08-26 12:59:38 +0100625 resp->offset = vif->meta[npo.meta_cons].gso_size;
626 resp->id = vif->meta[npo.meta_cons].id;
Ian Campbellf942dc22011-03-15 00:06:18 +0000627 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
Wei Liu73764192013-08-26 12:59:39 +0100637 status = xenvif_check_gop(vif, sco->meta_slots_used, &npo);
Ian Campbellf942dc22011-03-15 00:06:18 +0000638
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;
Wei Liub3f980b2013-08-26 12:59:38 +0100651 resp = make_rx_response(vif, vif->meta[npo.meta_cons].id,
Ian Campbellf942dc22011-03-15 00:06:18 +0000652 status, offset,
Wei Liub3f980b2013-08-26 12:59:38 +0100653 vif->meta[npo.meta_cons].size,
Ian Campbellf942dc22011-03-15 00:06:18 +0000654 flags);
655
Paul Durrant82cada22013-10-16 17:50:32 +0100656 if ((1 << vif->meta[npo.meta_cons].gso_type) &
657 vif->gso_mask) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000658 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
Paul Durrant82cada22013-10-16 17:50:32 +0100665 gso->u.gso.type = vif->meta[npo.meta_cons].gso_type;
Wei Liub3f980b2013-08-26 12:59:38 +0100666 gso->u.gso.size = vif->meta[npo.meta_cons].gso_size;
Ian Campbellf942dc22011-03-15 00:06:18 +0000667 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
Wei Liu73764192013-08-26 12:59:39 +0100674 xenvif_add_frag_responses(vif, status,
675 vif->meta + npo.meta_cons + 1,
676 sco->meta_slots_used);
Ian Campbellf942dc22011-03-15 00:06:18 +0000677
678 RING_PUSH_RESPONSES_AND_CHECK_NOTIFY(&vif->rx, ret);
Ian Campbellf942dc22011-03-15 00:06:18 +0000679
Wei Liub3f980b2013-08-26 12:59:38 +0100680 if (ret)
681 need_to_notify = 1;
682
Ian Campbellf942dc22011-03-15 00:06:18 +0000683 xenvif_notify_tx_completion(vif);
684
Ian Campbellf942dc22011-03-15 00:06:18 +0000685 npo.meta_cons += sco->meta_slots_used;
686 dev_kfree_skb(skb);
687 }
688
Wei Liub3f980b2013-08-26 12:59:38 +0100689 if (need_to_notify)
Wei Liue1f00a692013-05-22 06:34:45 +0000690 notify_remote_via_irq(vif->rx_irq);
Ian Campbellf942dc22011-03-15 00:06:18 +0000691
692 /* More work to do? */
Wei Liub3f980b2013-08-26 12:59:38 +0100693 if (!skb_queue_empty(&vif->rx_queue))
Wei Liu73764192013-08-26 12:59:39 +0100694 xenvif_kick_thread(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000695}
696
Wei Liu73764192013-08-26 12:59:39 +0100697void xenvif_queue_tx_skb(struct xenvif *vif, struct sk_buff *skb)
Ian Campbellf942dc22011-03-15 00:06:18 +0000698{
Wei Liub3f980b2013-08-26 12:59:38 +0100699 skb_queue_tail(&vif->rx_queue, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +0000700
Wei Liu73764192013-08-26 12:59:39 +0100701 xenvif_kick_thread(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000702}
703
Wei Liu73764192013-08-26 12:59:39 +0100704void xenvif_check_rx_xenvif(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000705{
706 int more_to_do;
707
708 RING_FINAL_CHECK_FOR_REQUESTS(&vif->tx, more_to_do);
709
710 if (more_to_do)
Wei Liub3f980b2013-08-26 12:59:38 +0100711 napi_schedule(&vif->napi);
Ian Campbellf942dc22011-03-15 00:06:18 +0000712}
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);
Wei Liu73764192013-08-26 12:59:39 +0100738 xenvif_check_rx_xenvif(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000739}
740
Wei Liu73764192013-08-26 12:59:39 +0100741static void xenvif_tx_err(struct xenvif *vif,
742 struct xen_netif_tx_request *txp, RING_IDX end)
Ian Campbellf942dc22011-03-15 00:06:18 +0000743{
744 RING_IDX cons = vif->tx.req_cons;
745
746 do {
747 make_tx_response(vif, txp, XEN_NETIF_RSP_ERROR);
Ian Campbellb9149722013-02-06 23:41:38 +0000748 if (cons == end)
Ian Campbellf942dc22011-03-15 00:06:18 +0000749 break;
750 txp = RING_GET_REQUEST(&vif->tx, cons++);
751 } while (1);
752 vif->tx.req_cons = cons;
Ian Campbellf942dc22011-03-15 00:06:18 +0000753}
754
Wei Liu73764192013-08-26 12:59:39 +0100755static void xenvif_fatal_tx_err(struct xenvif *vif)
Ian Campbell488562862013-02-06 23:41:35 +0000756{
757 netdev_err(vif->dev, "fatal error; disabling device\n");
758 xenvif_carrier_off(vif);
Ian Campbell488562862013-02-06 23:41:35 +0000759}
760
Wei Liu73764192013-08-26 12:59:39 +0100761static 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)
Ian Campbellf942dc22011-03-15 00:06:18 +0000765{
766 RING_IDX cons = vif->tx.req_cons;
Wei Liu2810e5b2013-04-22 02:20:42 +0000767 int slots = 0;
768 int drop_err = 0;
Wei Liu59ccb4e2013-05-02 00:43:58 +0000769 int more_data;
Ian Campbellf942dc22011-03-15 00:06:18 +0000770
771 if (!(first->flags & XEN_NETTXF_more_data))
772 return 0;
773
774 do {
Wei Liu59ccb4e2013-05-02 00:43:58 +0000775 struct xen_netif_tx_request dropped_tx = { 0 };
776
Wei Liu2810e5b2013-04-22 02:20:42 +0000777 if (slots >= work_to_do) {
778 netdev_err(vif->dev,
779 "Asked for %d slots but exceeds this limit\n",
780 work_to_do);
Wei Liu73764192013-08-26 12:59:39 +0100781 xenvif_fatal_tx_err(vif);
David Vrabel35876b52013-02-14 03:18:57 +0000782 return -ENODATA;
Ian Campbellf942dc22011-03-15 00:06:18 +0000783 }
784
Wei Liu2810e5b2013-04-22 02:20:42 +0000785 /* This guest is really using too many slots and
786 * considered malicious.
787 */
Wei Liu37641492013-05-02 00:43:59 +0000788 if (unlikely(slots >= fatal_skb_slots)) {
Wei Liu2810e5b2013-04-22 02:20:42 +0000789 netdev_err(vif->dev,
790 "Malicious frontend using %d slots, threshold %u\n",
Wei Liu37641492013-05-02 00:43:59 +0000791 slots, fatal_skb_slots);
Wei Liu73764192013-08-26 12:59:39 +0100792 xenvif_fatal_tx_err(vif);
David Vrabel35876b52013-02-14 03:18:57 +0000793 return -E2BIG;
Ian Campbellf942dc22011-03-15 00:06:18 +0000794 }
795
Wei Liu2810e5b2013-04-22 02:20:42 +0000796 /* Xen network protocol had implicit dependency on
Wei Liu37641492013-05-02 00:43:59 +0000797 * 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
Wei Liu2810e5b2013-04-22 02:20:42 +0000802 */
Wei Liu37641492013-05-02 00:43:59 +0000803 if (!drop_err && slots >= XEN_NETBK_LEGACY_SLOTS_MAX) {
Wei Liu2810e5b2013-04-22 02:20:42 +0000804 if (net_ratelimit())
805 netdev_dbg(vif->dev,
806 "Too many slots (%d) exceeding limit (%d), dropping packet\n",
Wei Liu37641492013-05-02 00:43:59 +0000807 slots, XEN_NETBK_LEGACY_SLOTS_MAX);
Wei Liu2810e5b2013-04-22 02:20:42 +0000808 drop_err = -E2BIG;
809 }
810
Wei Liu59ccb4e2013-05-02 00:43:58 +0000811 if (drop_err)
812 txp = &dropped_tx;
813
Wei Liu2810e5b2013-04-22 02:20:42 +0000814 memcpy(txp, RING_GET_REQUEST(&vif->tx, cons + slots),
Ian Campbellf942dc22011-03-15 00:06:18 +0000815 sizeof(*txp));
Wei Liu03393fd52013-04-22 02:20:43 +0000816
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;
Ian Campbellf942dc22011-03-15 00:06:18 +0000832 }
833
834 first->size -= txp->size;
Wei Liu2810e5b2013-04-22 02:20:42 +0000835 slots++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000836
837 if (unlikely((txp->offset + txp->size) > PAGE_SIZE)) {
Wei Liu2810e5b2013-04-22 02:20:42 +0000838 netdev_err(vif->dev, "Cross page boundary, txp->offset: %x, size: %u\n",
Ian Campbellf942dc22011-03-15 00:06:18 +0000839 txp->offset, txp->size);
Wei Liu73764192013-08-26 12:59:39 +0100840 xenvif_fatal_tx_err(vif);
David Vrabel35876b52013-02-14 03:18:57 +0000841 return -EINVAL;
Ian Campbellf942dc22011-03-15 00:06:18 +0000842 }
Wei Liu59ccb4e2013-05-02 00:43:58 +0000843
844 more_data = txp->flags & XEN_NETTXF_more_data;
845
846 if (!drop_err)
847 txp++;
848
849 } while (more_data);
Wei Liu2810e5b2013-04-22 02:20:42 +0000850
851 if (drop_err) {
Wei Liu73764192013-08-26 12:59:39 +0100852 xenvif_tx_err(vif, first, cons + slots);
Wei Liu2810e5b2013-04-22 02:20:42 +0000853 return drop_err;
854 }
855
856 return slots;
Ian Campbellf942dc22011-03-15 00:06:18 +0000857}
858
Wei Liu73764192013-08-26 12:59:39 +0100859static struct page *xenvif_alloc_page(struct xenvif *vif,
860 u16 pending_idx)
Ian Campbellf942dc22011-03-15 00:06:18 +0000861{
862 struct page *page;
Wei Liub3f980b2013-08-26 12:59:38 +0100863
864 page = alloc_page(GFP_ATOMIC|__GFP_COLD);
Ian Campbellf942dc22011-03-15 00:06:18 +0000865 if (!page)
866 return NULL;
Wei Liub3f980b2013-08-26 12:59:38 +0100867 vif->mmap_pages[pending_idx] = page;
868
Ian Campbellf942dc22011-03-15 00:06:18 +0000869 return page;
870}
871
Wei Liu73764192013-08-26 12:59:39 +0100872static 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)
Ian Campbellf942dc22011-03-15 00:06:18 +0000876{
877 struct skb_shared_info *shinfo = skb_shinfo(skb);
878 skb_frag_t *frags = shinfo->frags;
Ian Campbellea066ad2011-10-05 00:28:46 +0000879 u16 pending_idx = *((u16 *)skb->data);
Wei Liu2810e5b2013-04-22 02:20:42 +0000880 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
Wei Liu37641492013-05-02 00:43:59 +0000889 * slots, which can be as large as XEN_NETBK_LEGACY_SLOTS_MAX.
Wei Liu2810e5b2013-04-22 02:20:42 +0000890 */
891 nr_slots = shinfo->nr_frags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000892
893 /* Skip first skb fragment if it is on same page as header fragment. */
Ian Campbellea066ad2011-10-05 00:28:46 +0000894 start = (frag_get_pending_idx(&shinfo->frags[0]) == pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +0000895
Wei Liu2810e5b2013-04-22 02:20:42 +0000896 /* Coalesce tx requests, at this point the packet passed in
897 * should be <= 64K. Any packets larger than 64K have been
Wei Liu73764192013-08-26 12:59:39 +0100898 * handled in xenvif_count_requests().
Wei Liu2810e5b2013-04-22 02:20:42 +0000899 */
900 for (shinfo->nr_frags = slot = start; slot < nr_slots;
901 shinfo->nr_frags++) {
Ian Campbellf942dc22011-03-15 00:06:18 +0000902 struct pending_tx_info *pending_tx_info =
Wei Liub3f980b2013-08-26 12:59:38 +0100903 vif->pending_tx_info;
Ian Campbellf942dc22011-03-15 00:06:18 +0000904
Wei Liub3f980b2013-08-26 12:59:38 +0100905 page = alloc_page(GFP_ATOMIC|__GFP_COLD);
Ian Campbellf942dc22011-03-15 00:06:18 +0000906 if (!page)
Ian Campbell4cc7c1c2013-02-06 23:41:37 +0000907 goto err;
Ian Campbellf942dc22011-03-15 00:06:18 +0000908
Wei Liu2810e5b2013-04-22 02:20:42 +0000909 dst_offset = 0;
910 first = NULL;
911 while (dst_offset < PAGE_SIZE && slot < nr_slots) {
912 gop->flags = GNTCOPY_source_gref;
Ian Campbellf942dc22011-03-15 00:06:18 +0000913
Wei Liu2810e5b2013-04-22 02:20:42 +0000914 gop->source.u.ref = txp->gref;
915 gop->source.domid = vif->domid;
916 gop->source.offset = txp->offset;
Ian Campbellf942dc22011-03-15 00:06:18 +0000917
Wei Liu2810e5b2013-04-22 02:20:42 +0000918 gop->dest.domid = DOMID_SELF;
Ian Campbellf942dc22011-03-15 00:06:18 +0000919
Wei Liu2810e5b2013-04-22 02:20:42 +0000920 gop->dest.offset = dst_offset;
921 gop->dest.u.gmfn = virt_to_mfn(page_address(page));
Ian Campbellf942dc22011-03-15 00:06:18 +0000922
Wei Liu2810e5b2013-04-22 02:20:42 +0000923 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
Wei Liub3f980b2013-08-26 12:59:38 +0100940 index = pending_index(vif->pending_cons++);
Wei Liu2810e5b2013-04-22 02:20:42 +0000941
Wei Liub3f980b2013-08-26 12:59:38 +0100942 pending_idx = vif->pending_ring[index];
Wei Liu2810e5b2013-04-22 02:20:42 +0000943
944 memcpy(&pending_tx_info[pending_idx].req, txp,
945 sizeof(*txp));
Wei Liu2810e5b2013-04-22 02:20:42 +0000946
947 /* Poison these fields, corresponding
948 * fields for head tx req will be set
949 * to correct values after the loop.
950 */
Wei Liub3f980b2013-08-26 12:59:38 +0100951 vif->mmap_pages[pending_idx] = (void *)(~0UL);
Wei Liu2810e5b2013-04-22 02:20:42 +0000952 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 }
964
965 gop++;
966 }
967
968 first->req.offset = 0;
969 first->req.size = dst_offset;
970 first->head = start_idx;
Wei Liub3f980b2013-08-26 12:59:38 +0100971 vif->mmap_pages[head_idx] = page;
Wei Liu2810e5b2013-04-22 02:20:42 +0000972 frag_set_pending_idx(&frags[shinfo->nr_frags], head_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +0000973 }
974
Wei Liu2810e5b2013-04-22 02:20:42 +0000975 BUG_ON(shinfo->nr_frags > MAX_SKB_FRAGS);
976
Ian Campbellf942dc22011-03-15 00:06:18 +0000977 return gop;
Ian Campbell4cc7c1c2013-02-06 23:41:37 +0000978err:
979 /* Unwind, freeing all pages and sending error responses. */
Wei Liu2810e5b2013-04-22 02:20:42 +0000980 while (shinfo->nr_frags-- > start) {
Wei Liu73764192013-08-26 12:59:39 +0100981 xenvif_idx_release(vif,
Wei Liu2810e5b2013-04-22 02:20:42 +0000982 frag_get_pending_idx(&frags[shinfo->nr_frags]),
983 XEN_NETIF_RSP_ERROR);
Ian Campbell4cc7c1c2013-02-06 23:41:37 +0000984 }
985 /* The head too, if necessary. */
986 if (start)
Wei Liu73764192013-08-26 12:59:39 +0100987 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_ERROR);
Ian Campbell4cc7c1c2013-02-06 23:41:37 +0000988
989 return NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +0000990}
991
Wei Liu73764192013-08-26 12:59:39 +0100992static int xenvif_tx_check_gop(struct xenvif *vif,
993 struct sk_buff *skb,
994 struct gnttab_copy **gopp)
Ian Campbellf942dc22011-03-15 00:06:18 +0000995{
996 struct gnttab_copy *gop = *gopp;
Ian Campbellea066ad2011-10-05 00:28:46 +0000997 u16 pending_idx = *((u16 *)skb->data);
Ian Campbellf942dc22011-03-15 00:06:18 +0000998 struct skb_shared_info *shinfo = skb_shinfo(skb);
Wei Liu2810e5b2013-04-22 02:20:42 +0000999 struct pending_tx_info *tx_info;
Ian Campbellf942dc22011-03-15 00:06:18 +00001000 int nr_frags = shinfo->nr_frags;
1001 int i, err, start;
Wei Liu2810e5b2013-04-22 02:20:42 +00001002 u16 peek; /* peek into next tx request */
Ian Campbellf942dc22011-03-15 00:06:18 +00001003
1004 /* Check status of header. */
1005 err = gop->status;
Matthew Daley7d5145d2013-02-06 23:41:36 +00001006 if (unlikely(err))
Wei Liu73764192013-08-26 12:59:39 +01001007 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_ERROR);
Ian Campbellf942dc22011-03-15 00:06:18 +00001008
1009 /* Skip first skb fragment if it is on same page as header fragment. */
Ian Campbellea066ad2011-10-05 00:28:46 +00001010 start = (frag_get_pending_idx(&shinfo->frags[0]) == pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001011
1012 for (i = start; i < nr_frags; i++) {
1013 int j, newerr;
Wei Liu2810e5b2013-04-22 02:20:42 +00001014 pending_ring_idx_t head;
Ian Campbellf942dc22011-03-15 00:06:18 +00001015
Ian Campbellea066ad2011-10-05 00:28:46 +00001016 pending_idx = frag_get_pending_idx(&shinfo->frags[i]);
Wei Liub3f980b2013-08-26 12:59:38 +01001017 tx_info = &vif->pending_tx_info[pending_idx];
Wei Liu2810e5b2013-04-22 02:20:42 +00001018 head = tx_info->head;
Ian Campbellf942dc22011-03-15 00:06:18 +00001019
1020 /* Check error status: if okay then remember grant handle. */
Wei Liu2810e5b2013-04-22 02:20:42 +00001021 do {
1022 newerr = (++gop)->status;
1023 if (newerr)
1024 break;
Wei Liub3f980b2013-08-26 12:59:38 +01001025 peek = vif->pending_ring[pending_index(++head)];
1026 } while (!pending_tx_is_head(vif, peek));
Wei Liu2810e5b2013-04-22 02:20:42 +00001027
Ian Campbellf942dc22011-03-15 00:06:18 +00001028 if (likely(!newerr)) {
1029 /* Had a previous error? Invalidate this fragment. */
1030 if (unlikely(err))
Wei Liu73764192013-08-26 12:59:39 +01001031 xenvif_idx_release(vif, pending_idx,
1032 XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +00001033 continue;
1034 }
1035
1036 /* Error on this fragment: respond to client with an error. */
Wei Liu73764192013-08-26 12:59:39 +01001037 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_ERROR);
Ian Campbellf942dc22011-03-15 00:06:18 +00001038
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);
Wei Liu73764192013-08-26 12:59:39 +01001045 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +00001046 for (j = start; j < i; j++) {
Jan Beulich5ccb3ea2011-11-18 05:42:05 +00001047 pending_idx = frag_get_pending_idx(&shinfo->frags[j]);
Wei Liu73764192013-08-26 12:59:39 +01001048 xenvif_idx_release(vif, pending_idx,
1049 XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +00001050 }
1051
1052 /* Remember the error: invalidate all subsequent fragments. */
1053 err = newerr;
1054 }
1055
1056 *gopp = gop + 1;
1057 return err;
1058}
1059
Wei Liu73764192013-08-26 12:59:39 +01001060static void xenvif_fill_frags(struct xenvif *vif, struct sk_buff *skb)
Ian Campbellf942dc22011-03-15 00:06:18 +00001061{
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;
Ian Campbellea066ad2011-10-05 00:28:46 +00001069 struct page *page;
1070 u16 pending_idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001071
Ian Campbellea066ad2011-10-05 00:28:46 +00001072 pending_idx = frag_get_pending_idx(frag);
Ian Campbellf942dc22011-03-15 00:06:18 +00001073
Wei Liub3f980b2013-08-26 12:59:38 +01001074 txp = &vif->pending_tx_info[pending_idx].req;
1075 page = virt_to_page(idx_to_kaddr(vif, pending_idx));
Ian Campbellea066ad2011-10-05 00:28:46 +00001076 __skb_fill_page_desc(skb, i, page, txp->offset, txp->size);
Ian Campbellf942dc22011-03-15 00:06:18 +00001077 skb->len += txp->size;
1078 skb->data_len += txp->size;
1079 skb->truesize += txp->size;
1080
Wei Liu73764192013-08-26 12:59:39 +01001081 /* Take an extra reference to offset xenvif_idx_release */
Wei Liub3f980b2013-08-26 12:59:38 +01001082 get_page(vif->mmap_pages[pending_idx]);
Wei Liu73764192013-08-26 12:59:39 +01001083 xenvif_idx_release(vif, pending_idx, XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +00001084 }
1085}
1086
Wei Liu73764192013-08-26 12:59:39 +01001087static int xenvif_get_extras(struct xenvif *vif,
Ian Campbellf942dc22011-03-15 00:06:18 +00001088 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)) {
Ian Campbell488562862013-02-06 23:41:35 +00001096 netdev_err(vif->dev, "Missing extra info\n");
Wei Liu73764192013-08-26 12:59:39 +01001097 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001098 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;
Ian Campbell488562862013-02-06 23:41:35 +00001106 netdev_err(vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001107 "Invalid extra type: %d\n", extra.type);
Wei Liu73764192013-08-26 12:59:39 +01001108 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001109 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
Wei Liu73764192013-08-26 12:59:39 +01001119static int xenvif_set_skb_gso(struct xenvif *vif,
1120 struct sk_buff *skb,
1121 struct xen_netif_extra_info *gso)
Ian Campbellf942dc22011-03-15 00:06:18 +00001122{
1123 if (!gso->u.gso.size) {
Ian Campbell488562862013-02-06 23:41:35 +00001124 netdev_err(vif->dev, "GSO size must not be zero.\n");
Wei Liu73764192013-08-26 12:59:39 +01001125 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001126 return -EINVAL;
1127 }
1128
Paul Durranta9468582013-10-16 17:50:31 +01001129 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:
Ian Campbell488562862013-02-06 23:41:35 +00001137 netdev_err(vif->dev, "Bad GSO type %d.\n", gso->u.gso.type);
Wei Liu73764192013-08-26 12:59:39 +01001138 xenvif_fatal_tx_err(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001139 return -EINVAL;
1140 }
1141
1142 skb_shinfo(skb)->gso_size = gso->u.gso.size;
Ian Campbellf942dc22011-03-15 00:06:18 +00001143
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
Paul Durrant2eba61d2013-10-16 17:50:29 +01001151static 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)
1164{
1165 struct iphdr *iph = (void *)skb->data;
1166 unsigned int header_size;
1167 unsigned int off;
1168 int err = -EPROTO;
1169
1170 off = sizeof(struct iphdr);
1171
1172 header_size = skb->network_header + off + MAX_IPOPTLEN;
1173 maybe_pull_tail(skb, header_size);
1174
1175 off = iph->ihl * 4;
1176
1177 switch (iph->protocol) {
1178 case IPPROTO_TCP:
1179 if (!skb_partial_csum_set(skb, off,
1180 offsetof(struct tcphdr, check)))
1181 goto out;
1182
1183 if (recalculate_partial_csum) {
1184 struct tcphdr *tcph = tcp_hdr(skb);
1185
1186 header_size = skb->network_header +
1187 off +
1188 sizeof(struct tcphdr);
1189 maybe_pull_tail(skb, header_size);
1190
1191 tcph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
1192 skb->len - off,
1193 IPPROTO_TCP, 0);
1194 }
1195 break;
1196 case IPPROTO_UDP:
1197 if (!skb_partial_csum_set(skb, off,
1198 offsetof(struct udphdr, check)))
1199 goto out;
1200
1201 if (recalculate_partial_csum) {
1202 struct udphdr *udph = udp_hdr(skb);
1203
1204 header_size = skb->network_header +
1205 off +
1206 sizeof(struct udphdr);
1207 maybe_pull_tail(skb, header_size);
1208
1209 udph->check = ~csum_tcpudp_magic(iph->saddr, iph->daddr,
1210 skb->len - off,
1211 IPPROTO_UDP, 0);
1212 }
1213 break;
1214 default:
1215 if (net_ratelimit())
1216 netdev_err(vif->dev,
1217 "Attempting to checksum a non-TCP/UDP packet, "
1218 "dropping a protocol %d packet\n",
1219 iph->protocol);
1220 goto out;
1221 }
1222
1223 err = 0;
1224
1225out:
1226 return err;
1227}
1228
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
Ian Campbellf942dc22011-03-15 00:06:18 +00001353static int checksum_setup(struct xenvif *vif, struct sk_buff *skb)
1354{
Ian Campbellf942dc22011-03-15 00:06:18 +00001355 int err = -EPROTO;
1356 int recalculate_partial_csum = 0;
1357
Paul Durrant2eba61d2013-10-16 17:50:29 +01001358 /* A GSO SKB must be CHECKSUM_PARTIAL. However some buggy
Ian Campbellf942dc22011-03-15 00:06:18 +00001359 * 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
Paul Durrant2eba61d2013-10-16 17:50:29 +01001373 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);
Ian Campbellf942dc22011-03-15 00:06:18 +00001377
Ian Campbellf942dc22011-03-15 00:06:18 +00001378 return err;
1379}
1380
1381static bool tx_credit_exceeded(struct xenvif *vif, unsigned size)
1382{
Wei Liu059dfa62013-10-28 12:07:57 +00001383 u64 now = get_jiffies_64();
1384 u64 next_credit = vif->credit_window_start +
Ian Campbellf942dc22011-03-15 00:06:18 +00001385 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? */
Wei Liu059dfa62013-10-28 12:07:57 +00001392 if (time_after_eq64(now, next_credit)) {
1393 vif->credit_window_start = now;
Ian Campbellf942dc22011-03-15 00:06:18 +00001394 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);
Wei Liu059dfa62013-10-28 12:07:57 +00001405 vif->credit_window_start = next_credit;
Ian Campbellf942dc22011-03-15 00:06:18 +00001406
1407 return true;
1408 }
1409
1410 return false;
1411}
1412
Wei Liu73764192013-08-26 12:59:39 +01001413static unsigned xenvif_tx_build_gops(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +00001414{
Wei Liub3f980b2013-08-26 12:59:38 +01001415 struct gnttab_copy *gop = vif->tx_copy_ops, *request_gop;
Ian Campbellf942dc22011-03-15 00:06:18 +00001416 struct sk_buff *skb;
1417 int ret;
1418
Wei Liub3f980b2013-08-26 12:59:38 +01001419 while ((nr_pending_reqs(vif) + XEN_NETBK_LEGACY_SLOTS_MAX
1420 < MAX_PENDING_REQS)) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001421 struct xen_netif_tx_request txreq;
Wei Liu37641492013-05-02 00:43:59 +00001422 struct xen_netif_tx_request txfrags[XEN_NETBK_LEGACY_SLOTS_MAX];
Ian Campbellf942dc22011-03-15 00:06:18 +00001423 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
Ian Campbell488562862013-02-06 23:41:35 +00001431 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);
Wei Liu73764192013-08-26 12:59:39 +01001438 xenvif_fatal_tx_err(vif);
Ian Campbell488562862013-02-06 23:41:35 +00001439 continue;
1440 }
1441
Ian Campbellf942dc22011-03-15 00:06:18 +00001442 RING_FINAL_CHECK_FOR_REQUESTS(&vif->tx, work_to_do);
Wei Liub3f980b2013-08-26 12:59:38 +01001443 if (!work_to_do)
1444 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001445
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 &&
Wei Liub3f980b2013-08-26 12:59:38 +01001452 tx_credit_exceeded(vif, txreq.size))
1453 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001454
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) {
Wei Liu73764192013-08-26 12:59:39 +01001462 work_to_do = xenvif_get_extras(vif, extras,
1463 work_to_do);
Ian Campbellf942dc22011-03-15 00:06:18 +00001464 idx = vif->tx.req_cons;
Ian Campbell488562862013-02-06 23:41:35 +00001465 if (unlikely(work_to_do < 0))
Wei Liub3f980b2013-08-26 12:59:38 +01001466 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001467 }
1468
Wei Liu73764192013-08-26 12:59:39 +01001469 ret = xenvif_count_requests(vif, &txreq, txfrags, work_to_do);
Ian Campbell488562862013-02-06 23:41:35 +00001470 if (unlikely(ret < 0))
Wei Liub3f980b2013-08-26 12:59:38 +01001471 break;
Ian Campbell488562862013-02-06 23:41:35 +00001472
Ian Campbellf942dc22011-03-15 00:06:18 +00001473 idx += ret;
1474
1475 if (unlikely(txreq.size < ETH_HLEN)) {
1476 netdev_dbg(vif->dev,
1477 "Bad packet size: %d\n", txreq.size);
Wei Liu73764192013-08-26 12:59:39 +01001478 xenvif_tx_err(vif, &txreq, idx);
Wei Liub3f980b2013-08-26 12:59:38 +01001479 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001480 }
1481
1482 /* No crossing a page as the payload mustn't fragment. */
1483 if (unlikely((txreq.offset + txreq.size) > PAGE_SIZE)) {
Ian Campbell488562862013-02-06 23:41:35 +00001484 netdev_err(vif->dev,
Ian Campbellf942dc22011-03-15 00:06:18 +00001485 "txreq.offset: %x, size: %u, end: %lu\n",
1486 txreq.offset, txreq.size,
1487 (txreq.offset&~PAGE_MASK) + txreq.size);
Wei Liu73764192013-08-26 12:59:39 +01001488 xenvif_fatal_tx_err(vif);
Wei Liub3f980b2013-08-26 12:59:38 +01001489 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001490 }
1491
Wei Liub3f980b2013-08-26 12:59:38 +01001492 index = pending_index(vif->pending_cons);
1493 pending_idx = vif->pending_ring[index];
Ian Campbellf942dc22011-03-15 00:06:18 +00001494
1495 data_len = (txreq.size > PKT_PROT_LEN &&
Wei Liu37641492013-05-02 00:43:59 +00001496 ret < XEN_NETBK_LEGACY_SLOTS_MAX) ?
Ian Campbellf942dc22011-03-15 00:06:18 +00001497 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");
Wei Liu73764192013-08-26 12:59:39 +01001504 xenvif_tx_err(vif, &txreq, idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001505 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
Wei Liu73764192013-08-26 12:59:39 +01001515 if (xenvif_set_skb_gso(vif, skb, gso)) {
1516 /* Failure in xenvif_set_skb_gso is fatal. */
Ian Campbellf942dc22011-03-15 00:06:18 +00001517 kfree_skb(skb);
Wei Liub3f980b2013-08-26 12:59:38 +01001518 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001519 }
1520 }
1521
1522 /* XXX could copy straight to head */
Wei Liu73764192013-08-26 12:59:39 +01001523 page = xenvif_alloc_page(vif, pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001524 if (!page) {
1525 kfree_skb(skb);
Wei Liu73764192013-08-26 12:59:39 +01001526 xenvif_tx_err(vif, &txreq, idx);
Wei Liub3f980b2013-08-26 12:59:38 +01001527 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001528 }
1529
Ian Campbellf942dc22011-03-15 00:06:18 +00001530 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
Wei Liub3f980b2013-08-26 12:59:38 +01001543 memcpy(&vif->pending_tx_info[pending_idx].req,
Ian Campbellf942dc22011-03-15 00:06:18 +00001544 &txreq, sizeof(txreq));
Wei Liub3f980b2013-08-26 12:59:38 +01001545 vif->pending_tx_info[pending_idx].head = index;
Ian Campbellf942dc22011-03-15 00:06:18 +00001546 *((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++;
Ian Campbellea066ad2011-10-05 00:28:46 +00001553 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1554 pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001555 } else {
Ian Campbellea066ad2011-10-05 00:28:46 +00001556 frag_set_pending_idx(&skb_shinfo(skb)->frags[0],
1557 INVALID_PENDING_IDX);
Ian Campbellf942dc22011-03-15 00:06:18 +00001558 }
1559
Wei Liub3f980b2013-08-26 12:59:38 +01001560 vif->pending_cons++;
Ian Campbellf942dc22011-03-15 00:06:18 +00001561
Wei Liu73764192013-08-26 12:59:39 +01001562 request_gop = xenvif_get_requests(vif, skb, txfrags, gop);
Ian Campbellf942dc22011-03-15 00:06:18 +00001563 if (request_gop == NULL) {
1564 kfree_skb(skb);
Wei Liu73764192013-08-26 12:59:39 +01001565 xenvif_tx_err(vif, &txreq, idx);
Wei Liub3f980b2013-08-26 12:59:38 +01001566 break;
Ian Campbellf942dc22011-03-15 00:06:18 +00001567 }
1568 gop = request_gop;
1569
Wei Liub3f980b2013-08-26 12:59:38 +01001570 __skb_queue_tail(&vif->tx_queue, skb);
Annie Li1e0b6ea2012-06-27 00:46:58 +00001571
Ian Campbellf942dc22011-03-15 00:06:18 +00001572 vif->tx.req_cons = idx;
Ian Campbellf942dc22011-03-15 00:06:18 +00001573
Wei Liub3f980b2013-08-26 12:59:38 +01001574 if ((gop-vif->tx_copy_ops) >= ARRAY_SIZE(vif->tx_copy_ops))
Ian Campbellf942dc22011-03-15 00:06:18 +00001575 break;
1576 }
1577
Wei Liub3f980b2013-08-26 12:59:38 +01001578 return gop - vif->tx_copy_ops;
Ian Campbellf942dc22011-03-15 00:06:18 +00001579}
1580
Ian Campbellf942dc22011-03-15 00:06:18 +00001581
Wei Liu73764192013-08-26 12:59:39 +01001582static int xenvif_tx_submit(struct xenvif *vif, int budget)
Wei Liub3f980b2013-08-26 12:59:38 +01001583{
1584 struct gnttab_copy *gop = vif->tx_copy_ops;
1585 struct sk_buff *skb;
1586 int work_done = 0;
1587
1588 while (work_done < budget &&
1589 (skb = __skb_dequeue(&vif->tx_queue)) != NULL) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001590 struct xen_netif_tx_request *txp;
Ian Campbellf942dc22011-03-15 00:06:18 +00001591 u16 pending_idx;
1592 unsigned data_len;
1593
1594 pending_idx = *((u16 *)skb->data);
Wei Liub3f980b2013-08-26 12:59:38 +01001595 txp = &vif->pending_tx_info[pending_idx].req;
Ian Campbellf942dc22011-03-15 00:06:18 +00001596
1597 /* Check the remap error code. */
Wei Liu73764192013-08-26 12:59:39 +01001598 if (unlikely(xenvif_tx_check_gop(vif, skb, &gop))) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001599 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,
Wei Liub3f980b2013-08-26 12:59:38 +01001607 (void *)(idx_to_kaddr(vif, pending_idx)|txp->offset),
Ian Campbellf942dc22011-03-15 00:06:18 +00001608 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. */
Wei Liu73764192013-08-26 12:59:39 +01001615 xenvif_idx_release(vif, pending_idx,
1616 XEN_NETIF_RSP_OKAY);
Ian Campbellf942dc22011-03-15 00:06:18 +00001617 }
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
Wei Liu73764192013-08-26 12:59:39 +01001624 xenvif_fill_frags(vif, skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001625
Paul Durrant2eba61d2013-10-16 17:50:29 +01001626 if (skb_is_nonlinear(skb) && skb_headlen(skb) < PKT_PROT_LEN) {
Ian Campbellf942dc22011-03-15 00:06:18 +00001627 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);
Jason Wangf9ca8f72013-03-25 20:19:58 +00001633 skb_reset_network_header(skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001634
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
Jason Wang40893fd2013-03-26 23:11:22 +00001642 skb_probe_transport_header(skb, 0);
Jason Wangf9ca8f72013-03-25 20:19:58 +00001643
Ian Campbellf942dc22011-03-15 00:06:18 +00001644 vif->dev->stats.rx_bytes += skb->len;
1645 vif->dev->stats.rx_packets++;
1646
Wei Liub3f980b2013-08-26 12:59:38 +01001647 work_done++;
1648
1649 netif_receive_skb(skb);
Ian Campbellf942dc22011-03-15 00:06:18 +00001650 }
Wei Liub3f980b2013-08-26 12:59:38 +01001651
1652 return work_done;
Ian Campbellf942dc22011-03-15 00:06:18 +00001653}
1654
1655/* Called after netfront has transmitted */
Wei Liu73764192013-08-26 12:59:39 +01001656int xenvif_tx_action(struct xenvif *vif, int budget)
Ian Campbellf942dc22011-03-15 00:06:18 +00001657{
1658 unsigned nr_gops;
Wei Liub3f980b2013-08-26 12:59:38 +01001659 int work_done;
Ian Campbellf942dc22011-03-15 00:06:18 +00001660
Wei Liub3f980b2013-08-26 12:59:38 +01001661 if (unlikely(!tx_work_todo(vif)))
1662 return 0;
1663
Wei Liu73764192013-08-26 12:59:39 +01001664 nr_gops = xenvif_tx_build_gops(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001665
1666 if (nr_gops == 0)
Wei Liub3f980b2013-08-26 12:59:38 +01001667 return 0;
Andres Lagar-Cavillac5718982012-09-14 14:26:59 +00001668
Wei Liub3f980b2013-08-26 12:59:38 +01001669 gnttab_batch_copy(vif->tx_copy_ops, nr_gops);
Ian Campbellf942dc22011-03-15 00:06:18 +00001670
Wei Liu73764192013-08-26 12:59:39 +01001671 work_done = xenvif_tx_submit(vif, nr_gops);
Wei Liub3f980b2013-08-26 12:59:38 +01001672
1673 return work_done;
Ian Campbellf942dc22011-03-15 00:06:18 +00001674}
1675
Wei Liu73764192013-08-26 12:59:39 +01001676static void xenvif_idx_release(struct xenvif *vif, u16 pending_idx,
1677 u8 status)
Ian Campbellf942dc22011-03-15 00:06:18 +00001678{
Ian Campbellf942dc22011-03-15 00:06:18 +00001679 struct pending_tx_info *pending_tx_info;
Wei Liu2810e5b2013-04-22 02:20:42 +00001680 pending_ring_idx_t head;
1681 u16 peek; /* peek into next tx request */
1682
Wei Liub3f980b2013-08-26 12:59:38 +01001683 BUG_ON(vif->mmap_pages[pending_idx] == (void *)(~0UL));
Ian Campbellf942dc22011-03-15 00:06:18 +00001684
1685 /* Already complete? */
Wei Liub3f980b2013-08-26 12:59:38 +01001686 if (vif->mmap_pages[pending_idx] == NULL)
Ian Campbellf942dc22011-03-15 00:06:18 +00001687 return;
1688
Wei Liub3f980b2013-08-26 12:59:38 +01001689 pending_tx_info = &vif->pending_tx_info[pending_idx];
Ian Campbellf942dc22011-03-15 00:06:18 +00001690
Wei Liu2810e5b2013-04-22 02:20:42 +00001691 head = pending_tx_info->head;
Ian Campbellf942dc22011-03-15 00:06:18 +00001692
Wei Liub3f980b2013-08-26 12:59:38 +01001693 BUG_ON(!pending_tx_is_head(vif, head));
1694 BUG_ON(vif->pending_ring[pending_index(head)] != pending_idx);
Ian Campbellf942dc22011-03-15 00:06:18 +00001695
Wei Liu2810e5b2013-04-22 02:20:42 +00001696 do {
1697 pending_ring_idx_t index;
1698 pending_ring_idx_t idx = pending_index(head);
Wei Liub3f980b2013-08-26 12:59:38 +01001699 u16 info_idx = vif->pending_ring[idx];
Ian Campbellf942dc22011-03-15 00:06:18 +00001700
Wei Liub3f980b2013-08-26 12:59:38 +01001701 pending_tx_info = &vif->pending_tx_info[info_idx];
Wei Liu2810e5b2013-04-22 02:20:42 +00001702 make_tx_response(vif, &pending_tx_info->req, status);
Ian Campbellf942dc22011-03-15 00:06:18 +00001703
Wei Liu2810e5b2013-04-22 02:20:42 +00001704 /* 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
Wei Liub3f980b2013-08-26 12:59:38 +01001710 index = pending_index(vif->pending_prod++);
1711 vif->pending_ring[index] = vif->pending_ring[info_idx];
Wei Liu2810e5b2013-04-22 02:20:42 +00001712
Wei Liub3f980b2013-08-26 12:59:38 +01001713 peek = vif->pending_ring[pending_index(++head)];
Wei Liu2810e5b2013-04-22 02:20:42 +00001714
Wei Liub3f980b2013-08-26 12:59:38 +01001715 } while (!pending_tx_is_head(vif, peek));
Wei Liu2810e5b2013-04-22 02:20:42 +00001716
Wei Liub3f980b2013-08-26 12:59:38 +01001717 put_page(vif->mmap_pages[pending_idx]);
1718 vif->mmap_pages[pending_idx] = NULL;
Ian Campbellf942dc22011-03-15 00:06:18 +00001719}
1720
Wei Liu2810e5b2013-04-22 02:20:42 +00001721
Ian Campbellf942dc22011-03-15 00:06:18 +00001722static 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)
Wei Liue1f00a692013-05-22 06:34:45 +00001740 notify_remote_via_irq(vif->tx_irq);
Ian Campbellf942dc22011-03-15 00:06:18 +00001741}
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
Wei Liub3f980b2013-08-26 12:59:38 +01001766static inline int rx_work_todo(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +00001767{
Wei Liub3f980b2013-08-26 12:59:38 +01001768 return !skb_queue_empty(&vif->rx_queue);
Ian Campbellf942dc22011-03-15 00:06:18 +00001769}
1770
Wei Liub3f980b2013-08-26 12:59:38 +01001771static inline int tx_work_todo(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +00001772{
1773
Wei Liub3f980b2013-08-26 12:59:38 +01001774 if (likely(RING_HAS_UNCONSUMED_REQUESTS(&vif->tx)) &&
1775 (nr_pending_reqs(vif) + XEN_NETBK_LEGACY_SLOTS_MAX
1776 < MAX_PENDING_REQS))
Ian Campbellf942dc22011-03-15 00:06:18 +00001777 return 1;
1778
1779 return 0;
1780}
1781
Wei Liu73764192013-08-26 12:59:39 +01001782void xenvif_unmap_frontend_rings(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +00001783{
David Vrabelc9d63692011-09-29 16:53:31 +01001784 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);
Ian Campbellf942dc22011-03-15 00:06:18 +00001790}
1791
Wei Liu73764192013-08-26 12:59:39 +01001792int xenvif_map_frontend_rings(struct xenvif *vif,
1793 grant_ref_t tx_ring_ref,
1794 grant_ref_t rx_ring_ref)
Ian Campbellf942dc22011-03-15 00:06:18 +00001795{
David Vrabelc9d63692011-09-29 16:53:31 +01001796 void *addr;
Ian Campbellf942dc22011-03-15 00:06:18 +00001797 struct xen_netif_tx_sring *txs;
1798 struct xen_netif_rx_sring *rxs;
1799
1800 int err = -ENOMEM;
1801
David Vrabelc9d63692011-09-29 16:53:31 +01001802 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(vif),
1803 tx_ring_ref, &addr);
1804 if (err)
Ian Campbellf942dc22011-03-15 00:06:18 +00001805 goto err;
1806
David Vrabelc9d63692011-09-29 16:53:31 +01001807 txs = (struct xen_netif_tx_sring *)addr;
Ian Campbellf942dc22011-03-15 00:06:18 +00001808 BACK_RING_INIT(&vif->tx, txs, PAGE_SIZE);
1809
David Vrabelc9d63692011-09-29 16:53:31 +01001810 err = xenbus_map_ring_valloc(xenvif_to_xenbus_device(vif),
1811 rx_ring_ref, &addr);
1812 if (err)
Ian Campbellf942dc22011-03-15 00:06:18 +00001813 goto err;
Ian Campbellf942dc22011-03-15 00:06:18 +00001814
David Vrabelc9d63692011-09-29 16:53:31 +01001815 rxs = (struct xen_netif_rx_sring *)addr;
Ian Campbellf942dc22011-03-15 00:06:18 +00001816 BACK_RING_INIT(&vif->rx, rxs, PAGE_SIZE);
1817
David Vrabelc9d63692011-09-29 16:53:31 +01001818 vif->rx_req_cons_peek = 0;
1819
Ian Campbellf942dc22011-03-15 00:06:18 +00001820 return 0;
1821
1822err:
Wei Liu73764192013-08-26 12:59:39 +01001823 xenvif_unmap_frontend_rings(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +00001824 return err;
1825}
1826
Wei Liu73764192013-08-26 12:59:39 +01001827int xenvif_kthread(void *data)
Wei Liub3f980b2013-08-26 12:59:38 +01001828{
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))
Wei Liu73764192013-08-26 12:59:39 +01001839 xenvif_rx_action(vif);
Wei Liub3f980b2013-08-26 12:59:38 +01001840
1841 cond_resched();
1842 }
1843
1844 return 0;
1845}
1846
Ian Campbellf942dc22011-03-15 00:06:18 +00001847static int __init netback_init(void)
1848{
Ian Campbellf942dc22011-03-15 00:06:18 +00001849 int rc = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +00001850
Daniel De Graaf2a14b2442011-12-14 15:12:13 -05001851 if (!xen_domain())
Ian Campbellf942dc22011-03-15 00:06:18 +00001852 return -ENODEV;
1853
Wei Liu37641492013-05-02 00:43:59 +00001854 if (fatal_skb_slots < XEN_NETBK_LEGACY_SLOTS_MAX) {
Joe Perches383eda32013-06-27 21:57:49 -07001855 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);
Wei Liu37641492013-05-02 00:43:59 +00001857 fatal_skb_slots = XEN_NETBK_LEGACY_SLOTS_MAX;
Wei Liu2810e5b2013-04-22 02:20:42 +00001858 }
1859
Ian Campbellf942dc22011-03-15 00:06:18 +00001860 rc = xenvif_xenbus_init();
1861 if (rc)
1862 goto failed_init;
1863
1864 return 0;
1865
1866failed_init:
Ian Campbellf942dc22011-03-15 00:06:18 +00001867 return rc;
Ian Campbellf942dc22011-03-15 00:06:18 +00001868}
1869
1870module_init(netback_init);
1871
Wei Liub103f352013-05-16 23:26:11 +00001872static void __exit netback_fini(void)
1873{
Wei Liub103f352013-05-16 23:26:11 +00001874 xenvif_xenbus_fini();
Wei Liub103f352013-05-16 23:26:11 +00001875}
1876module_exit(netback_fini);
1877
Ian Campbellf942dc22011-03-15 00:06:18 +00001878MODULE_LICENSE("Dual BSD/GPL");
Bastian Blankf984cec2011-06-30 11:19:09 -07001879MODULE_ALIAS("xen-backend:vif");