blob: 5a991266a394677e4f5cc3c1b41106afbb866960 [file] [log] [blame]
Ian Campbellf942dc22011-03-15 00:06:18 +00001/*
2 * This program is free software; you can redistribute it and/or
3 * modify it under the terms of the GNU General Public License version 2
4 * as published by the Free Software Foundation; or, when distributed
5 * separately from the Linux kernel or incorporated into other
6 * software packages, subject to the following license:
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a copy
9 * of this source file (the "Software"), to deal in the Software without
10 * restriction, including without limitation the rights to use, copy, modify,
11 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
12 * and to permit persons to whom the Software is furnished to do so, subject to
13 * the following conditions:
14 *
15 * The above copyright notice and this permission notice shall be included in
16 * all copies or substantial portions of the Software.
17 *
18 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
23 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
24 * IN THE SOFTWARE.
25 */
26
27#ifndef __XEN_NETBACK__COMMON_H__
28#define __XEN_NETBACK__COMMON_H__
29
30#define pr_fmt(fmt) KBUILD_MODNAME ":%s: " fmt, __func__
31
32#include <linux/module.h>
33#include <linux/interrupt.h>
34#include <linux/slab.h>
35#include <linux/ip.h>
36#include <linux/in.h>
37#include <linux/io.h>
38#include <linux/netdevice.h>
39#include <linux/etherdevice.h>
40#include <linux/wait.h>
41#include <linux/sched.h>
42
43#include <xen/interface/io/netif.h>
44#include <xen/interface/grant_table.h>
45#include <xen/grant_table.h>
46#include <xen/xenbus.h>
47
Wei Liub3f980b2013-08-26 12:59:38 +010048typedef unsigned int pending_ring_idx_t;
49#define INVALID_PENDING_RING_IDX (~0U)
50
51/* For the head field in pending_tx_info: it is used to indicate
52 * whether this tx info is the head of one or more coalesced requests.
53 *
54 * When head != INVALID_PENDING_RING_IDX, it means the start of a new
55 * tx requests queue and the end of previous queue.
56 *
57 * An example sequence of head fields (I = INVALID_PENDING_RING_IDX):
58 *
59 * ...|0 I I I|5 I|9 I I I|...
60 * -->|<-INUSE----------------
61 *
62 * After consuming the first slot(s) we have:
63 *
64 * ...|V V V V|5 I|9 I I I|...
65 * -----FREE->|<-INUSE--------
66 *
67 * where V stands for "valid pending ring index". Any number other
68 * than INVALID_PENDING_RING_IDX is OK. These entries are considered
69 * free and can contain any number other than
70 * INVALID_PENDING_RING_IDX. In practice we use 0.
71 *
72 * The in use non-INVALID_PENDING_RING_IDX (say 0, 5 and 9 in the
73 * above example) number is the index into pending_tx_info and
74 * mmap_pages arrays.
75 */
76struct pending_tx_info {
77 struct xen_netif_tx_request req; /* coalesced tx request */
78 pending_ring_idx_t head; /* head != INVALID_PENDING_RING_IDX
79 * if it is head of one or more tx
80 * reqs
81 */
Zoltan Kissf53c3fe2014-03-06 21:48:26 +000082 /* Callback data for released SKBs. The callback is always
83 * xenvif_zerocopy_callback, desc contains the pending_idx, which is
84 * also an index in pending_tx_info array. It is initialized in
85 * xenvif_alloc and it never changes.
86 * skb_shinfo(skb)->destructor_arg points to the first mapped slot's
87 * callback_struct in this array of struct pending_tx_info's, then ctx
88 * to the next, or NULL if there is no more slot for this skb.
89 * ubuf_to_vif is a helper which finds the struct xenvif from a pointer
90 * to this field.
91 */
92 struct ubuf_info callback_struct;
Wei Liub3f980b2013-08-26 12:59:38 +010093};
94
95#define XEN_NETIF_TX_RING_SIZE __CONST_RING_SIZE(xen_netif_tx, PAGE_SIZE)
96#define XEN_NETIF_RX_RING_SIZE __CONST_RING_SIZE(xen_netif_rx, PAGE_SIZE)
97
98struct xenvif_rx_meta {
99 int id;
100 int size;
Paul Durrant82cada22013-10-16 17:50:32 +0100101 int gso_type;
Wei Liub3f980b2013-08-26 12:59:38 +0100102 int gso_size;
103};
104
Paul Durrant82cada22013-10-16 17:50:32 +0100105#define GSO_BIT(type) \
106 (1 << XEN_NETIF_GSO_TYPE_ ## type)
107
Wei Liub3f980b2013-08-26 12:59:38 +0100108/* Discriminate from any valid pending_idx value. */
109#define INVALID_PENDING_IDX 0xFFFF
110
111#define MAX_BUFFER_OFFSET PAGE_SIZE
112
113#define MAX_PENDING_REQS 256
Ian Campbellf942dc22011-03-15 00:06:18 +0000114
Paul Durrantac3d5ac2013-12-23 09:27:17 +0000115/* It's possible for an skb to have a maximal number of frags
116 * but still be less than MAX_BUFFER_OFFSET in size. Thus the
117 * worst-case number of copy operations is MAX_SKB_FRAGS per
118 * ring slot.
119 */
120#define MAX_GRANT_COPY_OPS (MAX_SKB_FRAGS * XEN_NETIF_RX_RING_SIZE)
121
Zoltan Kiss121fa4b2014-03-06 21:48:24 +0000122#define NETBACK_INVALID_HANDLE -1
123
124/* To avoid confusion, we define XEN_NETBK_LEGACY_SLOTS_MAX indicating
125 * the maximum slots a valid packet can use. Now this value is defined
126 * to be XEN_NETIF_NR_SLOTS_MIN, which is supposed to be supported by
127 * all backend.
128 */
129#define XEN_NETBK_LEGACY_SLOTS_MAX XEN_NETIF_NR_SLOTS_MIN
130
Ian Campbellf942dc22011-03-15 00:06:18 +0000131struct xenvif {
132 /* Unique identifier for this interface. */
133 domid_t domid;
134 unsigned int handle;
135
Wei Liub3f980b2013-08-26 12:59:38 +0100136 /* Use NAPI for guest TX */
137 struct napi_struct napi;
Wei Liue1f00a692013-05-22 06:34:45 +0000138 /* When feature-split-event-channels = 0, tx_irq = rx_irq. */
139 unsigned int tx_irq;
Wei Liue1f00a692013-05-22 06:34:45 +0000140 /* Only used when feature-split-event-channels = 1 */
141 char tx_irq_name[IFNAMSIZ+4]; /* DEVNAME-tx */
Ian Campbellf942dc22011-03-15 00:06:18 +0000142 struct xen_netif_tx_back_ring tx;
Wei Liub3f980b2013-08-26 12:59:38 +0100143 struct sk_buff_head tx_queue;
144 struct page *mmap_pages[MAX_PENDING_REQS];
145 pending_ring_idx_t pending_prod;
146 pending_ring_idx_t pending_cons;
147 u16 pending_ring[MAX_PENDING_REQS];
148 struct pending_tx_info pending_tx_info[MAX_PENDING_REQS];
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000149 grant_handle_t grant_tx_handle[MAX_PENDING_REQS];
Wei Liub3f980b2013-08-26 12:59:38 +0100150
151 /* Coalescing tx requests before copying makes number of grant
152 * copy ops greater or equal to number of slots required. In
153 * worst case a tx request consumes 2 gnttab_copy.
154 */
155 struct gnttab_copy tx_copy_ops[2*MAX_PENDING_REQS];
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000156 struct gnttab_map_grant_ref tx_map_ops[MAX_PENDING_REQS];
157 struct gnttab_unmap_grant_ref tx_unmap_ops[MAX_PENDING_REQS];
158 /* passed to gnttab_[un]map_refs with pages under (un)mapping */
159 struct page *pages_to_map[MAX_PENDING_REQS];
160 struct page *pages_to_unmap[MAX_PENDING_REQS];
Wei Liub3f980b2013-08-26 12:59:38 +0100161
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000162 /* This prevents zerocopy callbacks to race over dealloc_ring */
163 spinlock_t callback_lock;
164 /* This prevents dealloc thread and NAPI instance to race over response
165 * creation and pending_ring in xenvif_idx_release. In xenvif_tx_err
166 * it only protect response creation
167 */
168 spinlock_t response_lock;
169 pending_ring_idx_t dealloc_prod;
170 pending_ring_idx_t dealloc_cons;
171 u16 dealloc_ring[MAX_PENDING_REQS];
172 struct task_struct *dealloc_task;
173 wait_queue_head_t dealloc_wq;
Wei Liub3f980b2013-08-26 12:59:38 +0100174
175 /* Use kthread for guest RX */
176 struct task_struct *task;
177 wait_queue_head_t wq;
178 /* When feature-split-event-channels = 0, tx_irq = rx_irq. */
179 unsigned int rx_irq;
180 /* Only used when feature-split-event-channels = 1 */
181 char rx_irq_name[IFNAMSIZ+4]; /* DEVNAME-rx */
Ian Campbellf942dc22011-03-15 00:06:18 +0000182 struct xen_netif_rx_back_ring rx;
Wei Liub3f980b2013-08-26 12:59:38 +0100183 struct sk_buff_head rx_queue;
Zoltan Kiss9ab98312014-02-04 19:54:37 +0000184 RING_IDX rx_last_skb_slots;
Wei Liub3f980b2013-08-26 12:59:38 +0100185
Paul Durrantac3d5ac2013-12-23 09:27:17 +0000186 /* This array is allocated seperately as it is large */
187 struct gnttab_copy *grant_copy_op;
Wei Liub3f980b2013-08-26 12:59:38 +0100188
Paul Durrantac3d5ac2013-12-23 09:27:17 +0000189 /* We create one meta structure per ring request we consume, so
190 * the maximum number is the same as the ring size.
191 */
192 struct xenvif_rx_meta meta[XEN_NETIF_RX_RING_SIZE];
Wei Liub3f980b2013-08-26 12:59:38 +0100193
194 u8 fe_dev_addr[6];
Ian Campbellf942dc22011-03-15 00:06:18 +0000195
Ian Campbellf942dc22011-03-15 00:06:18 +0000196 /* Frontend feature information. */
Paul Durrant82cada22013-10-16 17:50:32 +0100197 int gso_mask;
198 int gso_prefix_mask;
199
Ian Campbellf942dc22011-03-15 00:06:18 +0000200 u8 can_sg:1;
Paul Durrant146c8a72013-10-16 17:50:28 +0100201 u8 ip_csum:1;
202 u8 ipv6_csum:1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000203
204 /* Internal feature information. */
205 u8 can_queue:1; /* can queue packets for receiver? */
206
Ian Campbellf942dc22011-03-15 00:06:18 +0000207 /* Transmit shaping: allow 'credit_bytes' every 'credit_usec'. */
208 unsigned long credit_bytes;
209 unsigned long credit_usec;
210 unsigned long remaining_credit;
211 struct timer_list credit_timeout;
Wei Liu059dfa62013-10-28 12:07:57 +0000212 u64 credit_window_start;
Ian Campbellf942dc22011-03-15 00:06:18 +0000213
214 /* Statistics */
215 unsigned long rx_gso_checksum_fixup;
216
217 /* Miscellaneous private stuff. */
Ian Campbellf942dc22011-03-15 00:06:18 +0000218 struct net_device *dev;
Ian Campbellf942dc22011-03-15 00:06:18 +0000219};
220
David Vrabelc9d63692011-09-29 16:53:31 +0100221static inline struct xenbus_device *xenvif_to_xenbus_device(struct xenvif *vif)
222{
223 return to_xenbus_device(vif->dev->dev.parent);
224}
225
Ian Campbellf942dc22011-03-15 00:06:18 +0000226struct xenvif *xenvif_alloc(struct device *parent,
227 domid_t domid,
228 unsigned int handle);
229
230int xenvif_connect(struct xenvif *vif, unsigned long tx_ring_ref,
Wei Liue1f00a692013-05-22 06:34:45 +0000231 unsigned long rx_ring_ref, unsigned int tx_evtchn,
232 unsigned int rx_evtchn);
Ian Campbellf942dc22011-03-15 00:06:18 +0000233void xenvif_disconnect(struct xenvif *vif);
Paul Durrant279f4382013-09-17 17:46:08 +0100234void xenvif_free(struct xenvif *vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000235
Ian Campbellf942dc22011-03-15 00:06:18 +0000236int xenvif_xenbus_init(void);
Wei Liub103f352013-05-16 23:26:11 +0000237void xenvif_xenbus_fini(void);
Ian Campbellf942dc22011-03-15 00:06:18 +0000238
239int xenvif_schedulable(struct xenvif *vif);
240
Wei Liu73764192013-08-26 12:59:39 +0100241int xenvif_must_stop_queue(struct xenvif *vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000242
243/* (Un)Map communication rings. */
Wei Liu73764192013-08-26 12:59:39 +0100244void xenvif_unmap_frontend_rings(struct xenvif *vif);
245int xenvif_map_frontend_rings(struct xenvif *vif,
246 grant_ref_t tx_ring_ref,
247 grant_ref_t rx_ring_ref);
Ian Campbellf942dc22011-03-15 00:06:18 +0000248
Ian Campbellf942dc22011-03-15 00:06:18 +0000249/* Check for SKBs from frontend and schedule backend processing */
Wei Liu73764192013-08-26 12:59:39 +0100250void xenvif_check_rx_xenvif(struct xenvif *vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000251
Ian Campbell488562862013-02-06 23:41:35 +0000252/* Prevent the device from generating any further traffic. */
253void xenvif_carrier_off(struct xenvif *vif);
254
Wei Liu73764192013-08-26 12:59:39 +0100255int xenvif_tx_action(struct xenvif *vif, int budget);
Wei Liub3f980b2013-08-26 12:59:38 +0100256
Zoltan Kiss121fa4b2014-03-06 21:48:24 +0000257int xenvif_kthread_guest_rx(void *data);
Paul Durrantca2f09f2013-12-06 16:36:07 +0000258void xenvif_kick_thread(struct xenvif *vif);
259
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000260int xenvif_dealloc_kthread(void *data);
261
Paul Durrantca2f09f2013-12-06 16:36:07 +0000262/* Determine whether the needed number of slots (req) are available,
263 * and set req_event if not.
264 */
265bool xenvif_rx_ring_slots_available(struct xenvif *vif, int needed);
266
267void xenvif_stop_queue(struct xenvif *vif);
Wei Liub3f980b2013-08-26 12:59:38 +0100268
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000269/* Callback from stack when TX packet can be released */
270void xenvif_zerocopy_callback(struct ubuf_info *ubuf, bool zerocopy_success);
271
272/* Unmap a pending page and release it back to the guest */
273void xenvif_idx_unmap(struct xenvif *vif, u16 pending_idx);
274
Zoltan Kiss121fa4b2014-03-06 21:48:24 +0000275static inline pending_ring_idx_t nr_pending_reqs(struct xenvif *vif)
276{
277 return MAX_PENDING_REQS -
278 vif->pending_prod + vif->pending_cons;
279}
280
281static inline bool xenvif_tx_pending_slots_available(struct xenvif *vif)
282{
283 return nr_pending_reqs(vif) + XEN_NETBK_LEGACY_SLOTS_MAX
284 < MAX_PENDING_REQS;
285}
286
Zoltan Kiss3e2234b2014-03-06 21:48:25 +0000287/* Callback from stack when TX packet can be released */
288void xenvif_zerocopy_callback(struct ubuf_info *ubuf, bool zerocopy_success);
289
Wei Liue1f00a692013-05-22 06:34:45 +0000290extern bool separate_tx_rx_irq;
291
Ian Campbellf942dc22011-03-15 00:06:18 +0000292#endif /* __XEN_NETBACK__COMMON_H__ */