blob: ef75b45e508508db008d9491fba0887bf7b2cb60 [file] [log] [blame]
Ian Campbellf942dc22011-03-15 00:06:18 +00001/*
2 * Network-device interface management.
3 *
4 * Copyright (c) 2004-2005, Keir Fraser
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License version 2
8 * as published by the Free Software Foundation; or, when distributed
9 * separately from the Linux kernel or incorporated into other
10 * software packages, subject to the following license:
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this source file (the "Software"), to deal in the Software without
14 * restriction, including without limitation the rights to use, copy, modify,
15 * merge, publish, distribute, sublicense, and/or sell copies of the Software,
16 * and to permit persons to whom the Software is furnished to do so, subject to
17 * the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
28 * IN THE SOFTWARE.
29 */
30
31#include "common.h"
32
Wei Liub3f980b2013-08-26 12:59:38 +010033#include <linux/kthread.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000034#include <linux/ethtool.h>
35#include <linux/rtnetlink.h>
36#include <linux/if_vlan.h>
Arnd Bergmanne7b599d2014-06-10 10:34:36 +020037#include <linux/vmalloc.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000038
39#include <xen/events.h>
40#include <asm/xen/hypercall.h>
Zoltan Kissf53c3fe2014-03-06 21:48:26 +000041#include <xen/balloon.h>
Ian Campbellf942dc22011-03-15 00:06:18 +000042
43#define XENVIF_QUEUE_LENGTH 32
Wei Liub3f980b2013-08-26 12:59:38 +010044#define XENVIF_NAPI_WEIGHT 64
Ian Campbellf942dc22011-03-15 00:06:18 +000045
Wei Liue9ce7cb2014-06-04 10:30:42 +010046static inline void xenvif_stop_queue(struct xenvif_queue *queue)
47{
48 struct net_device *dev = queue->vif->dev;
49
50 if (!queue->vif->can_queue)
51 return;
52
53 netif_tx_stop_queue(netdev_get_tx_queue(dev, queue->id));
54}
55
Ian Campbellf942dc22011-03-15 00:06:18 +000056int xenvif_schedulable(struct xenvif *vif)
57{
58 return netif_running(vif->dev) && netif_carrier_ok(vif->dev);
59}
60
Wei Liue1f00a692013-05-22 06:34:45 +000061static irqreturn_t xenvif_tx_interrupt(int irq, void *dev_id)
Ian Campbellf942dc22011-03-15 00:06:18 +000062{
Wei Liue9ce7cb2014-06-04 10:30:42 +010063 struct xenvif_queue *queue = dev_id;
Ian Campbellf942dc22011-03-15 00:06:18 +000064
Wei Liue9ce7cb2014-06-04 10:30:42 +010065 if (RING_HAS_UNCONSUMED_REQUESTS(&queue->tx))
66 napi_schedule(&queue->napi);
Ian Campbellf942dc22011-03-15 00:06:18 +000067
Wei Liue1f00a692013-05-22 06:34:45 +000068 return IRQ_HANDLED;
69}
70
Wei Liue9ce7cb2014-06-04 10:30:42 +010071int xenvif_poll(struct napi_struct *napi, int budget)
Wei Liub3f980b2013-08-26 12:59:38 +010072{
Wei Liue9ce7cb2014-06-04 10:30:42 +010073 struct xenvif_queue *queue =
74 container_of(napi, struct xenvif_queue, napi);
Wei Liub3f980b2013-08-26 12:59:38 +010075 int work_done;
76
Wei Liue9d8b2c2014-04-01 12:46:12 +010077 /* This vif is rogue, we pretend we've there is nothing to do
78 * for this vif to deschedule it from NAPI. But this interface
79 * will be turned off in thread context later.
80 */
Wei Liue9ce7cb2014-06-04 10:30:42 +010081 if (unlikely(queue->vif->disabled)) {
Wei Liue9d8b2c2014-04-01 12:46:12 +010082 napi_complete(napi);
83 return 0;
84 }
85
Wei Liue9ce7cb2014-06-04 10:30:42 +010086 work_done = xenvif_tx_action(queue, budget);
Wei Liub3f980b2013-08-26 12:59:38 +010087
88 if (work_done < budget) {
David Vrabel0d08fce2014-05-16 12:26:04 +010089 napi_complete(napi);
Wei Liue9ce7cb2014-06-04 10:30:42 +010090 xenvif_napi_schedule_or_enable_events(queue);
Wei Liub3f980b2013-08-26 12:59:38 +010091 }
92
93 return work_done;
94}
95
Wei Liue1f00a692013-05-22 06:34:45 +000096static irqreturn_t xenvif_rx_interrupt(int irq, void *dev_id)
97{
Wei Liue9ce7cb2014-06-04 10:30:42 +010098 struct xenvif_queue *queue = dev_id;
Wei Liue1f00a692013-05-22 06:34:45 +000099
Wei Liue9ce7cb2014-06-04 10:30:42 +0100100 xenvif_kick_thread(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000101
102 return IRQ_HANDLED;
103}
104
Zoltan Kissf51de242014-07-08 19:49:14 +0100105irqreturn_t xenvif_interrupt(int irq, void *dev_id)
Wei Liue1f00a692013-05-22 06:34:45 +0000106{
107 xenvif_tx_interrupt(irq, dev_id);
108 xenvif_rx_interrupt(irq, dev_id);
109
110 return IRQ_HANDLED;
111}
112
Wei Liue9ce7cb2014-06-04 10:30:42 +0100113int xenvif_queue_stopped(struct xenvif_queue *queue)
Zoltan Kiss09350782014-03-06 21:48:30 +0000114{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100115 struct net_device *dev = queue->vif->dev;
116 unsigned int id = queue->id;
117 return netif_tx_queue_stopped(netdev_get_tx_queue(dev, id));
118}
Zoltan Kiss09350782014-03-06 21:48:30 +0000119
Wei Liue9ce7cb2014-06-04 10:30:42 +0100120void xenvif_wake_queue(struct xenvif_queue *queue)
121{
122 struct net_device *dev = queue->vif->dev;
123 unsigned int id = queue->id;
124 netif_tx_wake_queue(netdev_get_tx_queue(dev, id));
125}
126
127/* Callback to wake the queue and drain it on timeout */
128static void xenvif_wake_queue_callback(unsigned long data)
129{
130 struct xenvif_queue *queue = (struct xenvif_queue *)data;
131
132 if (xenvif_queue_stopped(queue)) {
133 netdev_err(queue->vif->dev, "draining TX queue\n");
134 queue->rx_queue_purge = true;
135 xenvif_kick_thread(queue);
136 xenvif_wake_queue(queue);
Zoltan Kiss09350782014-03-06 21:48:30 +0000137 }
138}
139
Ian Campbellf942dc22011-03-15 00:06:18 +0000140static int xenvif_start_xmit(struct sk_buff *skb, struct net_device *dev)
141{
142 struct xenvif *vif = netdev_priv(dev);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100143 struct xenvif_queue *queue = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100144 unsigned int num_queues = vif->num_queues;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100145 u16 index;
Paul Durrantca2f09f2013-12-06 16:36:07 +0000146 int min_slots_needed;
Ian Campbellf942dc22011-03-15 00:06:18 +0000147
148 BUG_ON(skb->dev != dev);
149
Wei Liue9ce7cb2014-06-04 10:30:42 +0100150 /* Drop the packet if queues are not set up */
151 if (num_queues < 1)
152 goto drop;
153
154 /* Obtain the queue to be used to transmit this packet */
155 index = skb_get_queue_mapping(skb);
156 if (index >= num_queues) {
157 pr_warn_ratelimited("Invalid queue %hu for packet on interface %s\n.",
158 index, vif->dev->name);
159 index %= num_queues;
160 }
161 queue = &vif->queues[index];
162
163 /* Drop the packet if queue is not ready */
164 if (queue->task == NULL ||
165 queue->dealloc_task == NULL ||
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000166 !xenvif_schedulable(vif))
Ian Campbellf942dc22011-03-15 00:06:18 +0000167 goto drop;
168
Paul Durrantca2f09f2013-12-06 16:36:07 +0000169 /* At best we'll need one slot for the header and one for each
170 * frag.
171 */
172 min_slots_needed = 1 + skb_shinfo(skb)->nr_frags;
Ian Campbellf942dc22011-03-15 00:06:18 +0000173
Paul Durrantca2f09f2013-12-06 16:36:07 +0000174 /* If the skb is GSO then we'll also need an extra slot for the
175 * metadata.
176 */
Wei Liu836fbaf2014-03-11 12:45:32 +0000177 if (skb_is_gso(skb))
Paul Durrantca2f09f2013-12-06 16:36:07 +0000178 min_slots_needed++;
Ian Campbellf942dc22011-03-15 00:06:18 +0000179
Paul Durrantca2f09f2013-12-06 16:36:07 +0000180 /* If the skb can't possibly fit in the remaining slots
181 * then turn off the queue to give the ring a chance to
182 * drain.
183 */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100184 if (!xenvif_rx_ring_slots_available(queue, min_slots_needed)) {
185 queue->wake_queue.function = xenvif_wake_queue_callback;
186 queue->wake_queue.data = (unsigned long)queue;
187 xenvif_stop_queue(queue);
188 mod_timer(&queue->wake_queue,
Zoltan Kiss09350782014-03-06 21:48:30 +0000189 jiffies + rx_drain_timeout_jiffies);
190 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000191
Wei Liue9ce7cb2014-06-04 10:30:42 +0100192 skb_queue_tail(&queue->rx_queue, skb);
193 xenvif_kick_thread(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000194
195 return NETDEV_TX_OK;
196
197 drop:
198 vif->dev->stats.tx_dropped++;
199 dev_kfree_skb(skb);
200 return NETDEV_TX_OK;
201}
202
Ian Campbellf942dc22011-03-15 00:06:18 +0000203static struct net_device_stats *xenvif_get_stats(struct net_device *dev)
204{
205 struct xenvif *vif = netdev_priv(dev);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100206 struct xenvif_queue *queue = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100207 unsigned int num_queues = vif->num_queues;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100208 unsigned long rx_bytes = 0;
209 unsigned long rx_packets = 0;
210 unsigned long tx_bytes = 0;
211 unsigned long tx_packets = 0;
212 unsigned int index;
213
214 if (vif->queues == NULL)
215 goto out;
216
217 /* Aggregate tx and rx stats from each queue */
218 for (index = 0; index < num_queues; ++index) {
219 queue = &vif->queues[index];
220 rx_bytes += queue->stats.rx_bytes;
221 rx_packets += queue->stats.rx_packets;
222 tx_bytes += queue->stats.tx_bytes;
223 tx_packets += queue->stats.tx_packets;
224 }
225
226out:
227 vif->dev->stats.rx_bytes = rx_bytes;
228 vif->dev->stats.rx_packets = rx_packets;
229 vif->dev->stats.tx_bytes = tx_bytes;
230 vif->dev->stats.tx_packets = tx_packets;
231
Ian Campbellf942dc22011-03-15 00:06:18 +0000232 return &vif->dev->stats;
233}
234
235static void xenvif_up(struct xenvif *vif)
236{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100237 struct xenvif_queue *queue = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100238 unsigned int num_queues = vif->num_queues;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100239 unsigned int queue_index;
240
241 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
242 queue = &vif->queues[queue_index];
243 napi_enable(&queue->napi);
244 enable_irq(queue->tx_irq);
245 if (queue->tx_irq != queue->rx_irq)
246 enable_irq(queue->rx_irq);
247 xenvif_napi_schedule_or_enable_events(queue);
248 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000249}
250
251static void xenvif_down(struct xenvif *vif)
252{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100253 struct xenvif_queue *queue = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100254 unsigned int num_queues = vif->num_queues;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100255 unsigned int queue_index;
256
257 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
258 queue = &vif->queues[queue_index];
259 napi_disable(&queue->napi);
260 disable_irq(queue->tx_irq);
261 if (queue->tx_irq != queue->rx_irq)
262 disable_irq(queue->rx_irq);
263 del_timer_sync(&queue->credit_timeout);
264 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000265}
266
267static int xenvif_open(struct net_device *dev)
268{
269 struct xenvif *vif = netdev_priv(dev);
270 if (netif_carrier_ok(dev))
271 xenvif_up(vif);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100272 netif_tx_start_all_queues(dev);
Ian Campbellf942dc22011-03-15 00:06:18 +0000273 return 0;
274}
275
276static int xenvif_close(struct net_device *dev)
277{
278 struct xenvif *vif = netdev_priv(dev);
279 if (netif_carrier_ok(dev))
280 xenvif_down(vif);
Wei Liue9ce7cb2014-06-04 10:30:42 +0100281 netif_tx_stop_all_queues(dev);
Ian Campbellf942dc22011-03-15 00:06:18 +0000282 return 0;
283}
284
285static int xenvif_change_mtu(struct net_device *dev, int mtu)
286{
287 struct xenvif *vif = netdev_priv(dev);
288 int max = vif->can_sg ? 65535 - VLAN_ETH_HLEN : ETH_DATA_LEN;
289
290 if (mtu > max)
291 return -EINVAL;
292 dev->mtu = mtu;
293 return 0;
294}
295
Michał Mirosławc8f44af2011-11-15 15:29:55 +0000296static netdev_features_t xenvif_fix_features(struct net_device *dev,
297 netdev_features_t features)
Ian Campbellf942dc22011-03-15 00:06:18 +0000298{
299 struct xenvif *vif = netdev_priv(dev);
Ian Campbellf942dc22011-03-15 00:06:18 +0000300
Michał Mirosław47103042011-04-19 03:35:06 +0000301 if (!vif->can_sg)
302 features &= ~NETIF_F_SG;
Paul Durrant82cada22013-10-16 17:50:32 +0100303 if (~(vif->gso_mask | vif->gso_prefix_mask) & GSO_BIT(TCPV4))
Michał Mirosław47103042011-04-19 03:35:06 +0000304 features &= ~NETIF_F_TSO;
Paul Durrant82cada22013-10-16 17:50:32 +0100305 if (~(vif->gso_mask | vif->gso_prefix_mask) & GSO_BIT(TCPV6))
306 features &= ~NETIF_F_TSO6;
Paul Durrant146c8a72013-10-16 17:50:28 +0100307 if (!vif->ip_csum)
Michał Mirosław47103042011-04-19 03:35:06 +0000308 features &= ~NETIF_F_IP_CSUM;
Paul Durrant146c8a72013-10-16 17:50:28 +0100309 if (!vif->ipv6_csum)
310 features &= ~NETIF_F_IPV6_CSUM;
Ian Campbellf942dc22011-03-15 00:06:18 +0000311
Michał Mirosław47103042011-04-19 03:35:06 +0000312 return features;
Ian Campbellf942dc22011-03-15 00:06:18 +0000313}
314
315static const struct xenvif_stat {
316 char name[ETH_GSTRING_LEN];
317 u16 offset;
318} xenvif_stats[] = {
319 {
320 "rx_gso_checksum_fixup",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100321 offsetof(struct xenvif_stats, rx_gso_checksum_fixup)
Ian Campbellf942dc22011-03-15 00:06:18 +0000322 },
Zoltan Kiss1bb332a2014-03-06 21:48:28 +0000323 /* If (sent != success + fail), there are probably packets never
324 * freed up properly!
325 */
326 {
327 "tx_zerocopy_sent",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100328 offsetof(struct xenvif_stats, tx_zerocopy_sent),
Zoltan Kiss1bb332a2014-03-06 21:48:28 +0000329 },
330 {
331 "tx_zerocopy_success",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100332 offsetof(struct xenvif_stats, tx_zerocopy_success),
Zoltan Kiss1bb332a2014-03-06 21:48:28 +0000333 },
334 {
335 "tx_zerocopy_fail",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100336 offsetof(struct xenvif_stats, tx_zerocopy_fail)
Zoltan Kiss1bb332a2014-03-06 21:48:28 +0000337 },
Zoltan Kisse3377f32014-03-06 21:48:29 +0000338 /* Number of packets exceeding MAX_SKB_FRAG slots. You should use
339 * a guest with the same MAX_SKB_FRAG
340 */
341 {
342 "tx_frag_overflow",
Wei Liue9ce7cb2014-06-04 10:30:42 +0100343 offsetof(struct xenvif_stats, tx_frag_overflow)
Zoltan Kisse3377f32014-03-06 21:48:29 +0000344 },
Ian Campbellf942dc22011-03-15 00:06:18 +0000345};
346
347static int xenvif_get_sset_count(struct net_device *dev, int string_set)
348{
349 switch (string_set) {
350 case ETH_SS_STATS:
351 return ARRAY_SIZE(xenvif_stats);
352 default:
353 return -EINVAL;
354 }
355}
356
357static void xenvif_get_ethtool_stats(struct net_device *dev,
358 struct ethtool_stats *stats, u64 * data)
359{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100360 struct xenvif *vif = netdev_priv(dev);
Wei Liuf7b50c42014-06-23 10:50:17 +0100361 unsigned int num_queues = vif->num_queues;
Ian Campbellf942dc22011-03-15 00:06:18 +0000362 int i;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100363 unsigned int queue_index;
364 struct xenvif_stats *vif_stats;
Ian Campbellf942dc22011-03-15 00:06:18 +0000365
Wei Liue9ce7cb2014-06-04 10:30:42 +0100366 for (i = 0; i < ARRAY_SIZE(xenvif_stats); i++) {
367 unsigned long accum = 0;
368 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
369 vif_stats = &vif->queues[queue_index].stats;
370 accum += *(unsigned long *)(vif_stats + xenvif_stats[i].offset);
371 }
372 data[i] = accum;
373 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000374}
375
376static void xenvif_get_strings(struct net_device *dev, u32 stringset, u8 * data)
377{
378 int i;
379
380 switch (stringset) {
381 case ETH_SS_STATS:
382 for (i = 0; i < ARRAY_SIZE(xenvif_stats); i++)
383 memcpy(data + i * ETH_GSTRING_LEN,
384 xenvif_stats[i].name, ETH_GSTRING_LEN);
385 break;
386 }
387}
388
stephen hemminger813abbb2012-01-04 11:56:58 +0000389static const struct ethtool_ops xenvif_ethtool_ops = {
Ian Campbellf942dc22011-03-15 00:06:18 +0000390 .get_link = ethtool_op_get_link,
391
392 .get_sset_count = xenvif_get_sset_count,
393 .get_ethtool_stats = xenvif_get_ethtool_stats,
394 .get_strings = xenvif_get_strings,
395};
396
stephen hemminger813abbb2012-01-04 11:56:58 +0000397static const struct net_device_ops xenvif_netdev_ops = {
Ian Campbellf942dc22011-03-15 00:06:18 +0000398 .ndo_start_xmit = xenvif_start_xmit,
399 .ndo_get_stats = xenvif_get_stats,
400 .ndo_open = xenvif_open,
401 .ndo_stop = xenvif_close,
402 .ndo_change_mtu = xenvif_change_mtu,
Michał Mirosław47103042011-04-19 03:35:06 +0000403 .ndo_fix_features = xenvif_fix_features,
Matt Wilson4a633a62013-01-22 08:08:25 +0000404 .ndo_set_mac_address = eth_mac_addr,
405 .ndo_validate_addr = eth_validate_addr,
Ian Campbellf942dc22011-03-15 00:06:18 +0000406};
407
408struct xenvif *xenvif_alloc(struct device *parent, domid_t domid,
409 unsigned int handle)
410{
411 int err;
412 struct net_device *dev;
413 struct xenvif *vif;
414 char name[IFNAMSIZ] = {};
415
416 snprintf(name, IFNAMSIZ - 1, "vif%u.%u", domid, handle);
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +0100417 /* Allocate a netdev with the max. supported number of queues.
418 * When the guest selects the desired number, it will be updated
Wei Liuf7b50c42014-06-23 10:50:17 +0100419 * via netif_set_real_num_*_queues().
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +0100420 */
421 dev = alloc_netdev_mq(sizeof(struct xenvif), name, ether_setup,
422 xenvif_max_queues);
Ian Campbellf942dc22011-03-15 00:06:18 +0000423 if (dev == NULL) {
Wei Liub3f980b2013-08-26 12:59:38 +0100424 pr_warn("Could not allocate netdev for %s\n", name);
Ian Campbellf942dc22011-03-15 00:06:18 +0000425 return ERR_PTR(-ENOMEM);
426 }
427
428 SET_NETDEV_DEV(dev, parent);
429
430 vif = netdev_priv(dev);
Paul Durrantac3d5ac2013-12-23 09:27:17 +0000431
Ian Campbellf942dc22011-03-15 00:06:18 +0000432 vif->domid = domid;
433 vif->handle = handle;
Ian Campbellf942dc22011-03-15 00:06:18 +0000434 vif->can_sg = 1;
Paul Durrant146c8a72013-10-16 17:50:28 +0100435 vif->ip_csum = 1;
Ian Campbellf942dc22011-03-15 00:06:18 +0000436 vif->dev = dev;
Wei Liue9d8b2c2014-04-01 12:46:12 +0100437 vif->disabled = false;
438
Wei Liuf7b50c42014-06-23 10:50:17 +0100439 /* Start out with no queues. */
Wei Liue9ce7cb2014-06-04 10:30:42 +0100440 vif->queues = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100441 vif->num_queues = 0;
Zoltan Kiss09350782014-03-06 21:48:30 +0000442
Ian Campbellf942dc22011-03-15 00:06:18 +0000443 dev->netdev_ops = &xenvif_netdev_ops;
Paul Durrant146c8a72013-10-16 17:50:28 +0100444 dev->hw_features = NETIF_F_SG |
445 NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
Paul Durrant82cada22013-10-16 17:50:32 +0100446 NETIF_F_TSO | NETIF_F_TSO6;
Paul Durrant7365bcf2013-10-16 17:50:30 +0100447 dev->features = dev->hw_features | NETIF_F_RXCSUM;
Wilfried Klaebe7ad24ea2014-05-11 00:12:32 +0000448 dev->ethtool_ops = &xenvif_ethtool_ops;
Ian Campbellf942dc22011-03-15 00:06:18 +0000449
450 dev->tx_queue_len = XENVIF_QUEUE_LENGTH;
451
452 /*
453 * Initialise a dummy MAC address. We choose the numerically
454 * largest non-broadcast address to prevent the address getting
455 * stolen by an Ethernet bridge for STP purposes.
456 * (FE:FF:FF:FF:FF:FF)
457 */
458 memset(dev->dev_addr, 0xFF, ETH_ALEN);
459 dev->dev_addr[0] &= ~0x01;
460
461 netif_carrier_off(dev);
462
463 err = register_netdev(dev);
464 if (err) {
465 netdev_warn(dev, "Could not register device: err=%d\n", err);
466 free_netdev(dev);
467 return ERR_PTR(err);
468 }
469
470 netdev_dbg(dev, "Successfully created xenvif\n");
Paul Durrant279f4382013-09-17 17:46:08 +0100471
472 __module_get(THIS_MODULE);
473
Ian Campbellf942dc22011-03-15 00:06:18 +0000474 return vif;
475}
476
Wei Liue9ce7cb2014-06-04 10:30:42 +0100477int xenvif_init_queue(struct xenvif_queue *queue)
Ian Campbellf942dc22011-03-15 00:06:18 +0000478{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100479 int err, i;
Ian Campbellf942dc22011-03-15 00:06:18 +0000480
Wei Liue9ce7cb2014-06-04 10:30:42 +0100481 queue->credit_bytes = queue->remaining_credit = ~0UL;
482 queue->credit_usec = 0UL;
483 init_timer(&queue->credit_timeout);
484 queue->credit_window_start = get_jiffies_64();
Ian Campbellf942dc22011-03-15 00:06:18 +0000485
Wei Liue9ce7cb2014-06-04 10:30:42 +0100486 skb_queue_head_init(&queue->rx_queue);
487 skb_queue_head_init(&queue->tx_queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000488
Wei Liue9ce7cb2014-06-04 10:30:42 +0100489 queue->pending_cons = 0;
490 queue->pending_prod = MAX_PENDING_REQS;
491 for (i = 0; i < MAX_PENDING_REQS; ++i)
492 queue->pending_ring[i] = i;
Paul Durrantca2f09f2013-12-06 16:36:07 +0000493
Wei Liue9ce7cb2014-06-04 10:30:42 +0100494 spin_lock_init(&queue->callback_lock);
495 spin_lock_init(&queue->response_lock);
Wei Liue1f00a692013-05-22 06:34:45 +0000496
Wei Liue9ce7cb2014-06-04 10:30:42 +0100497 /* If ballooning is disabled, this will consume real memory, so you
498 * better enable it. The long term solution would be to use just a
499 * bunch of valid page descriptors, without dependency on ballooning
500 */
501 err = alloc_xenballooned_pages(MAX_PENDING_REQS,
502 queue->mmap_pages,
503 false);
504 if (err) {
505 netdev_err(queue->vif->dev, "Could not reserve mmap_pages\n");
506 return -ENOMEM;
Wei Liue1f00a692013-05-22 06:34:45 +0000507 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000508
Wei Liue9ce7cb2014-06-04 10:30:42 +0100509 for (i = 0; i < MAX_PENDING_REQS; i++) {
510 queue->pending_tx_info[i].callback_struct = (struct ubuf_info)
511 { .callback = xenvif_zerocopy_callback,
512 .ctx = NULL,
513 .desc = i };
514 queue->grant_tx_handle[i] = NETBACK_INVALID_HANDLE;
Wei Liub3f980b2013-08-26 12:59:38 +0100515 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000516
Wei Liue9ce7cb2014-06-04 10:30:42 +0100517 init_timer(&queue->wake_queue);
Paul Durrant67fa3662013-12-03 14:06:25 +0000518
Wei Liue9ce7cb2014-06-04 10:30:42 +0100519 netif_napi_add(queue->vif->dev, &queue->napi, xenvif_poll,
520 XENVIF_NAPI_WEIGHT);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000521
Wei Liue9ce7cb2014-06-04 10:30:42 +0100522 return 0;
523}
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000524
Wei Liue9ce7cb2014-06-04 10:30:42 +0100525void xenvif_carrier_on(struct xenvif *vif)
526{
Ian Campbellf942dc22011-03-15 00:06:18 +0000527 rtnl_lock();
Michał Mirosław47103042011-04-19 03:35:06 +0000528 if (!vif->can_sg && vif->dev->mtu > ETH_DATA_LEN)
529 dev_set_mtu(vif->dev, ETH_DATA_LEN);
530 netdev_update_features(vif->dev);
531 netif_carrier_on(vif->dev);
David Vrabeld0e5d832011-09-30 06:37:51 +0000532 if (netif_running(vif->dev))
533 xenvif_up(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000534 rtnl_unlock();
Wei Liue9ce7cb2014-06-04 10:30:42 +0100535}
Ian Campbellf942dc22011-03-15 00:06:18 +0000536
Wei Liue9ce7cb2014-06-04 10:30:42 +0100537int xenvif_connect(struct xenvif_queue *queue, unsigned long tx_ring_ref,
538 unsigned long rx_ring_ref, unsigned int tx_evtchn,
539 unsigned int rx_evtchn)
540{
541 struct task_struct *task;
542 int err = -ENOMEM;
543
544 BUG_ON(queue->tx_irq);
545 BUG_ON(queue->task);
546 BUG_ON(queue->dealloc_task);
547
548 err = xenvif_map_frontend_rings(queue, tx_ring_ref, rx_ring_ref);
549 if (err < 0)
550 goto err;
551
552 init_waitqueue_head(&queue->wq);
553 init_waitqueue_head(&queue->dealloc_wq);
554
555 if (tx_evtchn == rx_evtchn) {
556 /* feature-split-event-channels == 0 */
557 err = bind_interdomain_evtchn_to_irqhandler(
558 queue->vif->domid, tx_evtchn, xenvif_interrupt, 0,
559 queue->name, queue);
560 if (err < 0)
561 goto err_unmap;
562 queue->tx_irq = queue->rx_irq = err;
563 disable_irq(queue->tx_irq);
564 } else {
565 /* feature-split-event-channels == 1 */
566 snprintf(queue->tx_irq_name, sizeof(queue->tx_irq_name),
567 "%s-tx", queue->name);
568 err = bind_interdomain_evtchn_to_irqhandler(
569 queue->vif->domid, tx_evtchn, xenvif_tx_interrupt, 0,
570 queue->tx_irq_name, queue);
571 if (err < 0)
572 goto err_unmap;
573 queue->tx_irq = err;
574 disable_irq(queue->tx_irq);
575
576 snprintf(queue->rx_irq_name, sizeof(queue->rx_irq_name),
577 "%s-rx", queue->name);
578 err = bind_interdomain_evtchn_to_irqhandler(
579 queue->vif->domid, rx_evtchn, xenvif_rx_interrupt, 0,
580 queue->rx_irq_name, queue);
581 if (err < 0)
582 goto err_tx_unbind;
583 queue->rx_irq = err;
584 disable_irq(queue->rx_irq);
585 }
586
587 task = kthread_create(xenvif_kthread_guest_rx,
588 (void *)queue, "%s-guest-rx", queue->name);
589 if (IS_ERR(task)) {
590 pr_warn("Could not allocate kthread for %s\n", queue->name);
591 err = PTR_ERR(task);
592 goto err_rx_unbind;
593 }
594 queue->task = task;
595
596 task = kthread_create(xenvif_dealloc_kthread,
597 (void *)queue, "%s-dealloc", queue->name);
598 if (IS_ERR(task)) {
599 pr_warn("Could not allocate kthread for %s\n", queue->name);
600 err = PTR_ERR(task);
601 goto err_rx_unbind;
602 }
603 queue->dealloc_task = task;
604
605 wake_up_process(queue->task);
606 wake_up_process(queue->dealloc_task);
Wei Liub3f980b2013-08-26 12:59:38 +0100607
Ian Campbellf942dc22011-03-15 00:06:18 +0000608 return 0;
Wei Liub3f980b2013-08-26 12:59:38 +0100609
610err_rx_unbind:
Wei Liue9ce7cb2014-06-04 10:30:42 +0100611 unbind_from_irqhandler(queue->rx_irq, queue);
612 queue->rx_irq = 0;
Wei Liue1f00a692013-05-22 06:34:45 +0000613err_tx_unbind:
Wei Liue9ce7cb2014-06-04 10:30:42 +0100614 unbind_from_irqhandler(queue->tx_irq, queue);
615 queue->tx_irq = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000616err_unmap:
Wei Liue9ce7cb2014-06-04 10:30:42 +0100617 xenvif_unmap_frontend_rings(queue);
Ian Campbellf942dc22011-03-15 00:06:18 +0000618err:
Wei Liub103f352013-05-16 23:26:11 +0000619 module_put(THIS_MODULE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000620 return err;
621}
622
Ian Campbell488562862013-02-06 23:41:35 +0000623void xenvif_carrier_off(struct xenvif *vif)
Ian Campbellf942dc22011-03-15 00:06:18 +0000624{
625 struct net_device *dev = vif->dev;
Ian Campbell488562862013-02-06 23:41:35 +0000626
627 rtnl_lock();
628 netif_carrier_off(dev); /* discard queued packets */
629 if (netif_running(dev))
630 xenvif_down(vif);
631 rtnl_unlock();
Ian Campbell488562862013-02-06 23:41:35 +0000632}
633
Wei Liue9ce7cb2014-06-04 10:30:42 +0100634static void xenvif_wait_unmap_timeout(struct xenvif_queue *queue,
635 unsigned int worst_case_skb_lifetime)
636{
637 int i, unmap_timeout = 0;
638
639 for (i = 0; i < MAX_PENDING_REQS; ++i) {
640 if (queue->grant_tx_handle[i] != NETBACK_INVALID_HANDLE) {
641 unmap_timeout++;
642 schedule_timeout(msecs_to_jiffies(1000));
643 if (unmap_timeout > worst_case_skb_lifetime &&
644 net_ratelimit())
645 netdev_err(queue->vif->dev,
646 "Page still granted! Index: %x\n",
647 i);
648 i = -1;
649 }
650 }
651}
652
Ian Campbell488562862013-02-06 23:41:35 +0000653void xenvif_disconnect(struct xenvif *vif)
654{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100655 struct xenvif_queue *queue = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100656 unsigned int num_queues = vif->num_queues;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100657 unsigned int queue_index;
658
Ian Campbell488562862013-02-06 23:41:35 +0000659 if (netif_carrier_ok(vif->dev))
660 xenvif_carrier_off(vif);
Ian Campbellf942dc22011-03-15 00:06:18 +0000661
Wei Liue9ce7cb2014-06-04 10:30:42 +0100662 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
663 queue = &vif->queues[queue_index];
David Vrabeldb739ef2013-11-21 15:26:09 +0000664
Wei Liue9ce7cb2014-06-04 10:30:42 +0100665 if (queue->task) {
666 del_timer_sync(&queue->wake_queue);
667 kthread_stop(queue->task);
668 queue->task = NULL;
Wei Liue1f00a692013-05-22 06:34:45 +0000669 }
Ian Campbellf942dc22011-03-15 00:06:18 +0000670
Wei Liue9ce7cb2014-06-04 10:30:42 +0100671 if (queue->dealloc_task) {
672 kthread_stop(queue->dealloc_task);
673 queue->dealloc_task = NULL;
674 }
675
676 if (queue->tx_irq) {
677 if (queue->tx_irq == queue->rx_irq)
678 unbind_from_irqhandler(queue->tx_irq, queue);
679 else {
680 unbind_from_irqhandler(queue->tx_irq, queue);
681 unbind_from_irqhandler(queue->rx_irq, queue);
682 }
683 queue->tx_irq = 0;
684 }
685
686 xenvif_unmap_frontend_rings(queue);
687 }
Paul Durrant279f4382013-09-17 17:46:08 +0100688}
689
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +0100690/* Reverse the relevant parts of xenvif_init_queue().
691 * Used for queue teardown from xenvif_free(), and on the
692 * error handling paths in xenbus.c:connect().
693 */
694void xenvif_deinit_queue(struct xenvif_queue *queue)
695{
696 free_xenballooned_pages(MAX_PENDING_REQS, queue->mmap_pages);
697 netif_napi_del(&queue->napi);
698}
699
Paul Durrant279f4382013-09-17 17:46:08 +0100700void xenvif_free(struct xenvif *vif)
701{
Wei Liue9ce7cb2014-06-04 10:30:42 +0100702 struct xenvif_queue *queue = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100703 unsigned int num_queues = vif->num_queues;
Wei Liue9ce7cb2014-06-04 10:30:42 +0100704 unsigned int queue_index;
Zoltan Kiss0e59a4a2014-03-24 23:59:50 +0000705 /* Here we want to avoid timeout messages if an skb can be legitimately
706 * stuck somewhere else. Realistically this could be an another vif's
Zoltan Kiss09350782014-03-06 21:48:30 +0000707 * internal or QDisc queue. That another vif also has this
708 * rx_drain_timeout_msecs timeout, but the timer only ditches the
709 * internal queue. After that, the QDisc queue can put in worst case
710 * XEN_NETIF_RX_RING_SIZE / MAX_SKB_FRAGS skbs into that another vif's
711 * internal queue, so we need several rounds of such timeouts until we
712 * can be sure that no another vif should have skb's from us. We are
Zoltan Kiss0e59a4a2014-03-24 23:59:50 +0000713 * not sending more skb's, so newly stuck packets are not interesting
Zoltan Kiss09350782014-03-06 21:48:30 +0000714 * for us here.
715 */
716 unsigned int worst_case_skb_lifetime = (rx_drain_timeout_msecs/1000) *
717 DIV_ROUND_UP(XENVIF_QUEUE_LENGTH, (XEN_NETIF_RX_RING_SIZE / MAX_SKB_FRAGS));
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000718
Wei Liue9ce7cb2014-06-04 10:30:42 +0100719 unregister_netdev(vif->dev);
720
721 for (queue_index = 0; queue_index < num_queues; ++queue_index) {
722 queue = &vif->queues[queue_index];
Wei Liue9ce7cb2014-06-04 10:30:42 +0100723 xenvif_wait_unmap_timeout(queue, worst_case_skb_lifetime);
Andrew J. Bennieston8d3d53b2014-06-04 10:30:43 +0100724 xenvif_deinit_queue(queue);
Zoltan Kissf53c3fe2014-03-06 21:48:26 +0000725 }
726
Wei Liue9ce7cb2014-06-04 10:30:42 +0100727 vfree(vif->queues);
728 vif->queues = NULL;
Wei Liuf7b50c42014-06-23 10:50:17 +0100729 vif->num_queues = 0;
Ian Campbellf942dc22011-03-15 00:06:18 +0000730
Ian Campbellf942dc22011-03-15 00:06:18 +0000731 free_netdev(vif->dev);
Wei Liub103f352013-05-16 23:26:11 +0000732
Paul Durrant279f4382013-09-17 17:46:08 +0100733 module_put(THIS_MODULE);
Ian Campbellf942dc22011-03-15 00:06:18 +0000734}