interface.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855
  1. /*
  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. #include "common.h"
  31. #include <linux/kthread.h>
  32. #include <linux/sched/task.h>
  33. #include <linux/ethtool.h>
  34. #include <linux/rtnetlink.h>
  35. #include <linux/if_vlan.h>
  36. #include <linux/vmalloc.h>
  37. #include <xen/events.h>
  38. #include <asm/xen/hypercall.h>
  39. #include <xen/balloon.h>
  40. /* Number of bytes allowed on the internal guest Rx queue. */
  41. #define XENVIF_RX_QUEUE_BYTES (XEN_NETIF_RX_RING_SIZE/2 * PAGE_SIZE)
  42. /* This function is used to set SKBFL_ZEROCOPY_ENABLE as well as
  43. * increasing the inflight counter. We need to increase the inflight
  44. * counter because core driver calls into xenvif_zerocopy_callback
  45. * which calls xenvif_skb_zerocopy_complete.
  46. */
  47. void xenvif_skb_zerocopy_prepare(struct xenvif_queue *queue,
  48. struct sk_buff *skb)
  49. {
  50. skb_shinfo(skb)->flags |= SKBFL_ZEROCOPY_ENABLE;
  51. atomic_inc(&queue->inflight_packets);
  52. }
  53. void xenvif_skb_zerocopy_complete(struct xenvif_queue *queue)
  54. {
  55. atomic_dec(&queue->inflight_packets);
  56. /* Wake the dealloc thread _after_ decrementing inflight_packets so
  57. * that if kthread_stop() has already been called, the dealloc thread
  58. * does not wait forever with nothing to wake it.
  59. */
  60. wake_up(&queue->dealloc_wq);
  61. }
  62. static int xenvif_schedulable(struct xenvif *vif)
  63. {
  64. return netif_running(vif->dev) &&
  65. test_bit(VIF_STATUS_CONNECTED, &vif->status) &&
  66. !vif->disabled;
  67. }
  68. static bool xenvif_handle_tx_interrupt(struct xenvif_queue *queue)
  69. {
  70. bool rc;
  71. rc = RING_HAS_UNCONSUMED_REQUESTS(&queue->tx);
  72. if (rc)
  73. napi_schedule(&queue->napi);
  74. return rc;
  75. }
  76. static irqreturn_t xenvif_tx_interrupt(int irq, void *dev_id)
  77. {
  78. struct xenvif_queue *queue = dev_id;
  79. int old;
  80. old = atomic_fetch_or(NETBK_TX_EOI, &queue->eoi_pending);
  81. WARN(old & NETBK_TX_EOI, "Interrupt while EOI pending\n");
  82. if (!xenvif_handle_tx_interrupt(queue)) {
  83. atomic_andnot(NETBK_TX_EOI, &queue->eoi_pending);
  84. xen_irq_lateeoi(irq, XEN_EOI_FLAG_SPURIOUS);
  85. }
  86. return IRQ_HANDLED;
  87. }
  88. static int xenvif_poll(struct napi_struct *napi, int budget)
  89. {
  90. struct xenvif_queue *queue =
  91. container_of(napi, struct xenvif_queue, napi);
  92. int work_done;
  93. /* This vif is rogue, we pretend we've there is nothing to do
  94. * for this vif to deschedule it from NAPI. But this interface
  95. * will be turned off in thread context later.
  96. */
  97. if (unlikely(queue->vif->disabled)) {
  98. napi_complete(napi);
  99. return 0;
  100. }
  101. work_done = xenvif_tx_action(queue, budget);
  102. if (work_done < budget) {
  103. napi_complete_done(napi, work_done);
  104. /* If the queue is rate-limited, it shall be
  105. * rescheduled in the timer callback.
  106. */
  107. if (likely(!queue->rate_limited))
  108. xenvif_napi_schedule_or_enable_events(queue);
  109. }
  110. return work_done;
  111. }
  112. static bool xenvif_handle_rx_interrupt(struct xenvif_queue *queue)
  113. {
  114. bool rc;
  115. rc = xenvif_have_rx_work(queue, false);
  116. if (rc)
  117. xenvif_kick_thread(queue);
  118. return rc;
  119. }
  120. static irqreturn_t xenvif_rx_interrupt(int irq, void *dev_id)
  121. {
  122. struct xenvif_queue *queue = dev_id;
  123. int old;
  124. old = atomic_fetch_or(NETBK_RX_EOI, &queue->eoi_pending);
  125. WARN(old & NETBK_RX_EOI, "Interrupt while EOI pending\n");
  126. if (!xenvif_handle_rx_interrupt(queue)) {
  127. atomic_andnot(NETBK_RX_EOI, &queue->eoi_pending);
  128. xen_irq_lateeoi(irq, XEN_EOI_FLAG_SPURIOUS);
  129. }
  130. return IRQ_HANDLED;
  131. }
  132. irqreturn_t xenvif_interrupt(int irq, void *dev_id)
  133. {
  134. struct xenvif_queue *queue = dev_id;
  135. int old;
  136. bool has_rx, has_tx;
  137. old = atomic_fetch_or(NETBK_COMMON_EOI, &queue->eoi_pending);
  138. WARN(old, "Interrupt while EOI pending\n");
  139. has_tx = xenvif_handle_tx_interrupt(queue);
  140. has_rx = xenvif_handle_rx_interrupt(queue);
  141. if (!has_rx && !has_tx) {
  142. atomic_andnot(NETBK_COMMON_EOI, &queue->eoi_pending);
  143. xen_irq_lateeoi(irq, XEN_EOI_FLAG_SPURIOUS);
  144. }
  145. return IRQ_HANDLED;
  146. }
  147. static u16 xenvif_select_queue(struct net_device *dev, struct sk_buff *skb,
  148. struct net_device *sb_dev)
  149. {
  150. struct xenvif *vif = netdev_priv(dev);
  151. unsigned int size = vif->hash.size;
  152. unsigned int num_queues;
  153. /* If queues are not set up internally - always return 0
  154. * as the packet going to be dropped anyway */
  155. num_queues = READ_ONCE(vif->num_queues);
  156. if (num_queues < 1)
  157. return 0;
  158. if (vif->hash.alg == XEN_NETIF_CTRL_HASH_ALGORITHM_NONE)
  159. return netdev_pick_tx(dev, skb, NULL) %
  160. dev->real_num_tx_queues;
  161. xenvif_set_skb_hash(vif, skb);
  162. if (size == 0)
  163. return skb_get_hash_raw(skb) % dev->real_num_tx_queues;
  164. return vif->hash.mapping[vif->hash.mapping_sel]
  165. [skb_get_hash_raw(skb) % size];
  166. }
  167. static netdev_tx_t
  168. xenvif_start_xmit(struct sk_buff *skb, struct net_device *dev)
  169. {
  170. struct xenvif *vif = netdev_priv(dev);
  171. struct xenvif_queue *queue = NULL;
  172. unsigned int num_queues;
  173. u16 index;
  174. struct xenvif_rx_cb *cb;
  175. BUG_ON(skb->dev != dev);
  176. /* Drop the packet if queues are not set up.
  177. * This handler should be called inside an RCU read section
  178. * so we don't need to enter it here explicitly.
  179. */
  180. num_queues = READ_ONCE(vif->num_queues);
  181. if (num_queues < 1)
  182. goto drop;
  183. /* Obtain the queue to be used to transmit this packet */
  184. index = skb_get_queue_mapping(skb);
  185. if (index >= num_queues) {
  186. pr_warn_ratelimited("Invalid queue %hu for packet on interface %s\n",
  187. index, vif->dev->name);
  188. index %= num_queues;
  189. }
  190. queue = &vif->queues[index];
  191. /* Drop the packet if queue is not ready */
  192. if (queue->task == NULL ||
  193. queue->dealloc_task == NULL ||
  194. !xenvif_schedulable(vif))
  195. goto drop;
  196. if (vif->multicast_control && skb->pkt_type == PACKET_MULTICAST) {
  197. struct ethhdr *eth = (struct ethhdr *)skb->data;
  198. if (!xenvif_mcast_match(vif, eth->h_dest))
  199. goto drop;
  200. }
  201. cb = XENVIF_RX_CB(skb);
  202. cb->expires = jiffies + vif->drain_timeout;
  203. /* If there is no hash algorithm configured then make sure there
  204. * is no hash information in the socket buffer otherwise it
  205. * would be incorrectly forwarded to the frontend.
  206. */
  207. if (vif->hash.alg == XEN_NETIF_CTRL_HASH_ALGORITHM_NONE)
  208. skb_clear_hash(skb);
  209. if (!xenvif_rx_queue_tail(queue, skb))
  210. goto drop;
  211. xenvif_kick_thread(queue);
  212. return NETDEV_TX_OK;
  213. drop:
  214. vif->dev->stats.tx_dropped++;
  215. dev_kfree_skb_any(skb);
  216. return NETDEV_TX_OK;
  217. }
  218. static struct net_device_stats *xenvif_get_stats(struct net_device *dev)
  219. {
  220. struct xenvif *vif = netdev_priv(dev);
  221. struct xenvif_queue *queue = NULL;
  222. unsigned int num_queues;
  223. u64 rx_bytes = 0;
  224. u64 rx_packets = 0;
  225. u64 tx_bytes = 0;
  226. u64 tx_packets = 0;
  227. unsigned int index;
  228. rcu_read_lock();
  229. num_queues = READ_ONCE(vif->num_queues);
  230. /* Aggregate tx and rx stats from each queue */
  231. for (index = 0; index < num_queues; ++index) {
  232. queue = &vif->queues[index];
  233. rx_bytes += queue->stats.rx_bytes;
  234. rx_packets += queue->stats.rx_packets;
  235. tx_bytes += queue->stats.tx_bytes;
  236. tx_packets += queue->stats.tx_packets;
  237. }
  238. rcu_read_unlock();
  239. vif->dev->stats.rx_bytes = rx_bytes;
  240. vif->dev->stats.rx_packets = rx_packets;
  241. vif->dev->stats.tx_bytes = tx_bytes;
  242. vif->dev->stats.tx_packets = tx_packets;
  243. return &vif->dev->stats;
  244. }
  245. static void xenvif_up(struct xenvif *vif)
  246. {
  247. struct xenvif_queue *queue = NULL;
  248. unsigned int num_queues = vif->num_queues;
  249. unsigned int queue_index;
  250. for (queue_index = 0; queue_index < num_queues; ++queue_index) {
  251. queue = &vif->queues[queue_index];
  252. napi_enable(&queue->napi);
  253. enable_irq(queue->tx_irq);
  254. if (queue->tx_irq != queue->rx_irq)
  255. enable_irq(queue->rx_irq);
  256. xenvif_napi_schedule_or_enable_events(queue);
  257. }
  258. }
  259. static void xenvif_down(struct xenvif *vif)
  260. {
  261. struct xenvif_queue *queue = NULL;
  262. unsigned int num_queues = vif->num_queues;
  263. unsigned int queue_index;
  264. for (queue_index = 0; queue_index < num_queues; ++queue_index) {
  265. queue = &vif->queues[queue_index];
  266. disable_irq(queue->tx_irq);
  267. if (queue->tx_irq != queue->rx_irq)
  268. disable_irq(queue->rx_irq);
  269. napi_disable(&queue->napi);
  270. del_timer_sync(&queue->credit_timeout);
  271. }
  272. }
  273. static int xenvif_open(struct net_device *dev)
  274. {
  275. struct xenvif *vif = netdev_priv(dev);
  276. if (test_bit(VIF_STATUS_CONNECTED, &vif->status))
  277. xenvif_up(vif);
  278. netif_tx_start_all_queues(dev);
  279. return 0;
  280. }
  281. static int xenvif_close(struct net_device *dev)
  282. {
  283. struct xenvif *vif = netdev_priv(dev);
  284. if (test_bit(VIF_STATUS_CONNECTED, &vif->status))
  285. xenvif_down(vif);
  286. netif_tx_stop_all_queues(dev);
  287. return 0;
  288. }
  289. static int xenvif_change_mtu(struct net_device *dev, int mtu)
  290. {
  291. struct xenvif *vif = netdev_priv(dev);
  292. int max = vif->can_sg ? ETH_MAX_MTU - VLAN_ETH_HLEN : ETH_DATA_LEN;
  293. if (mtu > max)
  294. return -EINVAL;
  295. dev->mtu = mtu;
  296. return 0;
  297. }
  298. static netdev_features_t xenvif_fix_features(struct net_device *dev,
  299. netdev_features_t features)
  300. {
  301. struct xenvif *vif = netdev_priv(dev);
  302. if (!vif->can_sg)
  303. features &= ~NETIF_F_SG;
  304. if (~(vif->gso_mask) & GSO_BIT(TCPV4))
  305. features &= ~NETIF_F_TSO;
  306. if (~(vif->gso_mask) & GSO_BIT(TCPV6))
  307. features &= ~NETIF_F_TSO6;
  308. if (!vif->ip_csum)
  309. features &= ~NETIF_F_IP_CSUM;
  310. if (!vif->ipv6_csum)
  311. features &= ~NETIF_F_IPV6_CSUM;
  312. return features;
  313. }
  314. static const struct xenvif_stat {
  315. char name[ETH_GSTRING_LEN];
  316. u16 offset;
  317. } xenvif_stats[] = {
  318. {
  319. "rx_gso_checksum_fixup",
  320. offsetof(struct xenvif_stats, rx_gso_checksum_fixup)
  321. },
  322. /* If (sent != success + fail), there are probably packets never
  323. * freed up properly!
  324. */
  325. {
  326. "tx_zerocopy_sent",
  327. offsetof(struct xenvif_stats, tx_zerocopy_sent),
  328. },
  329. {
  330. "tx_zerocopy_success",
  331. offsetof(struct xenvif_stats, tx_zerocopy_success),
  332. },
  333. {
  334. "tx_zerocopy_fail",
  335. offsetof(struct xenvif_stats, tx_zerocopy_fail)
  336. },
  337. /* Number of packets exceeding MAX_SKB_FRAG slots. You should use
  338. * a guest with the same MAX_SKB_FRAG
  339. */
  340. {
  341. "tx_frag_overflow",
  342. offsetof(struct xenvif_stats, tx_frag_overflow)
  343. },
  344. };
  345. static int xenvif_get_sset_count(struct net_device *dev, int string_set)
  346. {
  347. switch (string_set) {
  348. case ETH_SS_STATS:
  349. return ARRAY_SIZE(xenvif_stats);
  350. default:
  351. return -EINVAL;
  352. }
  353. }
  354. static void xenvif_get_ethtool_stats(struct net_device *dev,
  355. struct ethtool_stats *stats, u64 * data)
  356. {
  357. struct xenvif *vif = netdev_priv(dev);
  358. unsigned int num_queues;
  359. int i;
  360. unsigned int queue_index;
  361. rcu_read_lock();
  362. num_queues = READ_ONCE(vif->num_queues);
  363. for (i = 0; i < ARRAY_SIZE(xenvif_stats); i++) {
  364. unsigned long accum = 0;
  365. for (queue_index = 0; queue_index < num_queues; ++queue_index) {
  366. void *vif_stats = &vif->queues[queue_index].stats;
  367. accum += *(unsigned long *)(vif_stats + xenvif_stats[i].offset);
  368. }
  369. data[i] = accum;
  370. }
  371. rcu_read_unlock();
  372. }
  373. static void xenvif_get_strings(struct net_device *dev, u32 stringset, u8 * data)
  374. {
  375. int i;
  376. switch (stringset) {
  377. case ETH_SS_STATS:
  378. for (i = 0; i < ARRAY_SIZE(xenvif_stats); i++)
  379. memcpy(data + i * ETH_GSTRING_LEN,
  380. xenvif_stats[i].name, ETH_GSTRING_LEN);
  381. break;
  382. }
  383. }
  384. static const struct ethtool_ops xenvif_ethtool_ops = {
  385. .get_link = ethtool_op_get_link,
  386. .get_sset_count = xenvif_get_sset_count,
  387. .get_ethtool_stats = xenvif_get_ethtool_stats,
  388. .get_strings = xenvif_get_strings,
  389. };
  390. static const struct net_device_ops xenvif_netdev_ops = {
  391. .ndo_select_queue = xenvif_select_queue,
  392. .ndo_start_xmit = xenvif_start_xmit,
  393. .ndo_get_stats = xenvif_get_stats,
  394. .ndo_open = xenvif_open,
  395. .ndo_stop = xenvif_close,
  396. .ndo_change_mtu = xenvif_change_mtu,
  397. .ndo_fix_features = xenvif_fix_features,
  398. .ndo_set_mac_address = eth_mac_addr,
  399. .ndo_validate_addr = eth_validate_addr,
  400. };
  401. struct xenvif *xenvif_alloc(struct device *parent, domid_t domid,
  402. unsigned int handle)
  403. {
  404. static const u8 dummy_addr[ETH_ALEN] = {
  405. 0xfe, 0xff, 0xff, 0xff, 0xff, 0xff,
  406. };
  407. int err;
  408. struct net_device *dev;
  409. struct xenvif *vif;
  410. char name[IFNAMSIZ] = {};
  411. snprintf(name, IFNAMSIZ - 1, "vif%u.%u", domid, handle);
  412. /* Allocate a netdev with the max. supported number of queues.
  413. * When the guest selects the desired number, it will be updated
  414. * via netif_set_real_num_*_queues().
  415. */
  416. dev = alloc_netdev_mq(sizeof(struct xenvif), name, NET_NAME_UNKNOWN,
  417. ether_setup, xenvif_max_queues);
  418. if (dev == NULL) {
  419. pr_warn("Could not allocate netdev for %s\n", name);
  420. return ERR_PTR(-ENOMEM);
  421. }
  422. SET_NETDEV_DEV(dev, parent);
  423. vif = netdev_priv(dev);
  424. vif->domid = domid;
  425. vif->handle = handle;
  426. vif->can_sg = 1;
  427. vif->ip_csum = 1;
  428. vif->dev = dev;
  429. vif->disabled = false;
  430. vif->drain_timeout = msecs_to_jiffies(rx_drain_timeout_msecs);
  431. vif->stall_timeout = msecs_to_jiffies(rx_stall_timeout_msecs);
  432. /* Start out with no queues. */
  433. vif->queues = NULL;
  434. vif->num_queues = 0;
  435. vif->xdp_headroom = 0;
  436. spin_lock_init(&vif->lock);
  437. INIT_LIST_HEAD(&vif->fe_mcast_addr);
  438. dev->netdev_ops = &xenvif_netdev_ops;
  439. dev->hw_features = NETIF_F_SG |
  440. NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM |
  441. NETIF_F_TSO | NETIF_F_TSO6 | NETIF_F_FRAGLIST;
  442. dev->features = dev->hw_features | NETIF_F_RXCSUM;
  443. dev->ethtool_ops = &xenvif_ethtool_ops;
  444. dev->min_mtu = ETH_MIN_MTU;
  445. dev->max_mtu = ETH_MAX_MTU - VLAN_ETH_HLEN;
  446. /*
  447. * Initialise a dummy MAC address. We choose the numerically
  448. * largest non-broadcast address to prevent the address getting
  449. * stolen by an Ethernet bridge for STP purposes.
  450. * (FE:FF:FF:FF:FF:FF)
  451. */
  452. eth_hw_addr_set(dev, dummy_addr);
  453. netif_carrier_off(dev);
  454. err = register_netdev(dev);
  455. if (err) {
  456. netdev_warn(dev, "Could not register device: err=%d\n", err);
  457. free_netdev(dev);
  458. return ERR_PTR(err);
  459. }
  460. netdev_dbg(dev, "Successfully created xenvif\n");
  461. __module_get(THIS_MODULE);
  462. return vif;
  463. }
  464. int xenvif_init_queue(struct xenvif_queue *queue)
  465. {
  466. int err, i;
  467. queue->credit_bytes = queue->remaining_credit = ~0UL;
  468. queue->credit_usec = 0UL;
  469. timer_setup(&queue->credit_timeout, xenvif_tx_credit_callback, 0);
  470. queue->credit_window_start = get_jiffies_64();
  471. queue->rx_queue_max = XENVIF_RX_QUEUE_BYTES;
  472. skb_queue_head_init(&queue->rx_queue);
  473. skb_queue_head_init(&queue->tx_queue);
  474. queue->pending_cons = 0;
  475. queue->pending_prod = MAX_PENDING_REQS;
  476. for (i = 0; i < MAX_PENDING_REQS; ++i)
  477. queue->pending_ring[i] = i;
  478. spin_lock_init(&queue->callback_lock);
  479. spin_lock_init(&queue->response_lock);
  480. /* If ballooning is disabled, this will consume real memory, so you
  481. * better enable it. The long term solution would be to use just a
  482. * bunch of valid page descriptors, without dependency on ballooning
  483. */
  484. err = gnttab_alloc_pages(MAX_PENDING_REQS,
  485. queue->mmap_pages);
  486. if (err) {
  487. netdev_err(queue->vif->dev, "Could not reserve mmap_pages\n");
  488. return -ENOMEM;
  489. }
  490. for (i = 0; i < MAX_PENDING_REQS; i++) {
  491. queue->pending_tx_info[i].callback_struct = (struct ubuf_info_msgzc)
  492. { { .callback = xenvif_zerocopy_callback },
  493. { { .ctx = NULL,
  494. .desc = i } } };
  495. queue->grant_tx_handle[i] = NETBACK_INVALID_HANDLE;
  496. }
  497. return 0;
  498. }
  499. void xenvif_carrier_on(struct xenvif *vif)
  500. {
  501. rtnl_lock();
  502. if (!vif->can_sg && vif->dev->mtu > ETH_DATA_LEN)
  503. dev_set_mtu(vif->dev, ETH_DATA_LEN);
  504. netdev_update_features(vif->dev);
  505. set_bit(VIF_STATUS_CONNECTED, &vif->status);
  506. if (netif_running(vif->dev))
  507. xenvif_up(vif);
  508. rtnl_unlock();
  509. }
  510. int xenvif_connect_ctrl(struct xenvif *vif, grant_ref_t ring_ref,
  511. unsigned int evtchn)
  512. {
  513. struct net_device *dev = vif->dev;
  514. struct xenbus_device *xendev = xenvif_to_xenbus_device(vif);
  515. void *addr;
  516. struct xen_netif_ctrl_sring *shared;
  517. RING_IDX rsp_prod, req_prod;
  518. int err;
  519. err = xenbus_map_ring_valloc(xendev, &ring_ref, 1, &addr);
  520. if (err)
  521. goto err;
  522. shared = (struct xen_netif_ctrl_sring *)addr;
  523. rsp_prod = READ_ONCE(shared->rsp_prod);
  524. req_prod = READ_ONCE(shared->req_prod);
  525. BACK_RING_ATTACH(&vif->ctrl, shared, rsp_prod, XEN_PAGE_SIZE);
  526. err = -EIO;
  527. if (req_prod - rsp_prod > RING_SIZE(&vif->ctrl))
  528. goto err_unmap;
  529. err = bind_interdomain_evtchn_to_irq_lateeoi(xendev, evtchn);
  530. if (err < 0)
  531. goto err_unmap;
  532. vif->ctrl_irq = err;
  533. xenvif_init_hash(vif);
  534. err = request_threaded_irq(vif->ctrl_irq, NULL, xenvif_ctrl_irq_fn,
  535. IRQF_ONESHOT, "xen-netback-ctrl", vif);
  536. if (err) {
  537. pr_warn("Could not setup irq handler for %s\n", dev->name);
  538. goto err_deinit;
  539. }
  540. return 0;
  541. err_deinit:
  542. xenvif_deinit_hash(vif);
  543. unbind_from_irqhandler(vif->ctrl_irq, vif);
  544. vif->ctrl_irq = 0;
  545. err_unmap:
  546. xenbus_unmap_ring_vfree(xendev, vif->ctrl.sring);
  547. vif->ctrl.sring = NULL;
  548. err:
  549. return err;
  550. }
  551. static void xenvif_disconnect_queue(struct xenvif_queue *queue)
  552. {
  553. if (queue->task) {
  554. kthread_stop(queue->task);
  555. put_task_struct(queue->task);
  556. queue->task = NULL;
  557. }
  558. if (queue->dealloc_task) {
  559. kthread_stop(queue->dealloc_task);
  560. queue->dealloc_task = NULL;
  561. }
  562. if (queue->napi.poll) {
  563. netif_napi_del(&queue->napi);
  564. queue->napi.poll = NULL;
  565. }
  566. if (queue->tx_irq) {
  567. unbind_from_irqhandler(queue->tx_irq, queue);
  568. if (queue->tx_irq == queue->rx_irq)
  569. queue->rx_irq = 0;
  570. queue->tx_irq = 0;
  571. }
  572. if (queue->rx_irq) {
  573. unbind_from_irqhandler(queue->rx_irq, queue);
  574. queue->rx_irq = 0;
  575. }
  576. xenvif_unmap_frontend_data_rings(queue);
  577. }
  578. int xenvif_connect_data(struct xenvif_queue *queue,
  579. unsigned long tx_ring_ref,
  580. unsigned long rx_ring_ref,
  581. unsigned int tx_evtchn,
  582. unsigned int rx_evtchn)
  583. {
  584. struct xenbus_device *dev = xenvif_to_xenbus_device(queue->vif);
  585. struct task_struct *task;
  586. int err;
  587. BUG_ON(queue->tx_irq);
  588. BUG_ON(queue->task);
  589. BUG_ON(queue->dealloc_task);
  590. err = xenvif_map_frontend_data_rings(queue, tx_ring_ref,
  591. rx_ring_ref);
  592. if (err < 0)
  593. goto err;
  594. init_waitqueue_head(&queue->wq);
  595. init_waitqueue_head(&queue->dealloc_wq);
  596. atomic_set(&queue->inflight_packets, 0);
  597. netif_napi_add(queue->vif->dev, &queue->napi, xenvif_poll);
  598. queue->stalled = true;
  599. task = kthread_run(xenvif_kthread_guest_rx, queue,
  600. "%s-guest-rx", queue->name);
  601. if (IS_ERR(task))
  602. goto kthread_err;
  603. queue->task = task;
  604. /*
  605. * Take a reference to the task in order to prevent it from being freed
  606. * if the thread function returns before kthread_stop is called.
  607. */
  608. get_task_struct(task);
  609. task = kthread_run(xenvif_dealloc_kthread, queue,
  610. "%s-dealloc", queue->name);
  611. if (IS_ERR(task))
  612. goto kthread_err;
  613. queue->dealloc_task = task;
  614. if (tx_evtchn == rx_evtchn) {
  615. /* feature-split-event-channels == 0 */
  616. err = bind_interdomain_evtchn_to_irqhandler_lateeoi(
  617. dev, tx_evtchn, xenvif_interrupt, 0,
  618. queue->name, queue);
  619. if (err < 0)
  620. goto err;
  621. queue->tx_irq = queue->rx_irq = err;
  622. disable_irq(queue->tx_irq);
  623. } else {
  624. /* feature-split-event-channels == 1 */
  625. snprintf(queue->tx_irq_name, sizeof(queue->tx_irq_name),
  626. "%s-tx", queue->name);
  627. err = bind_interdomain_evtchn_to_irqhandler_lateeoi(
  628. dev, tx_evtchn, xenvif_tx_interrupt, 0,
  629. queue->tx_irq_name, queue);
  630. if (err < 0)
  631. goto err;
  632. queue->tx_irq = err;
  633. disable_irq(queue->tx_irq);
  634. snprintf(queue->rx_irq_name, sizeof(queue->rx_irq_name),
  635. "%s-rx", queue->name);
  636. err = bind_interdomain_evtchn_to_irqhandler_lateeoi(
  637. dev, rx_evtchn, xenvif_rx_interrupt, 0,
  638. queue->rx_irq_name, queue);
  639. if (err < 0)
  640. goto err;
  641. queue->rx_irq = err;
  642. disable_irq(queue->rx_irq);
  643. }
  644. return 0;
  645. kthread_err:
  646. pr_warn("Could not allocate kthread for %s\n", queue->name);
  647. err = PTR_ERR(task);
  648. err:
  649. xenvif_disconnect_queue(queue);
  650. return err;
  651. }
  652. void xenvif_carrier_off(struct xenvif *vif)
  653. {
  654. struct net_device *dev = vif->dev;
  655. rtnl_lock();
  656. if (test_and_clear_bit(VIF_STATUS_CONNECTED, &vif->status)) {
  657. netif_carrier_off(dev); /* discard queued packets */
  658. if (netif_running(dev))
  659. xenvif_down(vif);
  660. }
  661. rtnl_unlock();
  662. }
  663. void xenvif_disconnect_data(struct xenvif *vif)
  664. {
  665. struct xenvif_queue *queue = NULL;
  666. unsigned int num_queues = vif->num_queues;
  667. unsigned int queue_index;
  668. xenvif_carrier_off(vif);
  669. for (queue_index = 0; queue_index < num_queues; ++queue_index) {
  670. queue = &vif->queues[queue_index];
  671. xenvif_disconnect_queue(queue);
  672. }
  673. xenvif_mcast_addr_list_free(vif);
  674. }
  675. void xenvif_disconnect_ctrl(struct xenvif *vif)
  676. {
  677. if (vif->ctrl_irq) {
  678. xenvif_deinit_hash(vif);
  679. unbind_from_irqhandler(vif->ctrl_irq, vif);
  680. vif->ctrl_irq = 0;
  681. }
  682. if (vif->ctrl.sring) {
  683. xenbus_unmap_ring_vfree(xenvif_to_xenbus_device(vif),
  684. vif->ctrl.sring);
  685. vif->ctrl.sring = NULL;
  686. }
  687. }
  688. /* Reverse the relevant parts of xenvif_init_queue().
  689. * Used for queue teardown from xenvif_free(), and on the
  690. * error handling paths in xenbus.c:connect().
  691. */
  692. void xenvif_deinit_queue(struct xenvif_queue *queue)
  693. {
  694. gnttab_free_pages(MAX_PENDING_REQS, queue->mmap_pages);
  695. }
  696. void xenvif_free(struct xenvif *vif)
  697. {
  698. struct xenvif_queue *queues = vif->queues;
  699. unsigned int num_queues = vif->num_queues;
  700. unsigned int queue_index;
  701. unregister_netdev(vif->dev);
  702. free_netdev(vif->dev);
  703. for (queue_index = 0; queue_index < num_queues; ++queue_index)
  704. xenvif_deinit_queue(&queues[queue_index]);
  705. vfree(queues);
  706. module_put(THIS_MODULE);
  707. }