blob: c310c7c1cef7f21538d248926aab6303cecf68b0 [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Common framework for low-level network console, dump, and debugger code
4 *
5 * Sep 8 2003 Matt Mackall <mpm@selenic.com>
6 *
7 * based on the netconsole code from:
8 *
9 * Copyright (C) 2001 Ingo Molnar <mingo@redhat.com>
10 * Copyright (C) 2002 Red Hat, Inc.
11 */
12
Joe Perchese6ec269352012-01-29 15:50:43 +000013#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14
Anton Vorontsovbff38772009-07-08 11:10:56 -070015#include <linux/moduleparam.h>
Andy Shevchenko4cd57732013-06-04 19:46:26 +030016#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/netdevice.h>
18#include <linux/etherdevice.h>
19#include <linux/string.h>
Arnaldo Carvalho de Melo14c85022005-12-27 02:43:12 -020020#include <linux/if_arp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#include <linux/inetdevice.h>
22#include <linux/inet.h>
23#include <linux/interrupt.h>
24#include <linux/netpoll.h>
25#include <linux/sched.h>
26#include <linux/delay.h>
27#include <linux/rcupdate.h>
28#include <linux/workqueue.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Paul Gortmakerbc3b2d72011-07-15 11:47:34 -040030#include <linux/export.h>
Amerigo Wang689971b2012-08-10 01:24:49 +000031#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <net/tcp.h>
33#include <net/udp.h>
Cong Wangb3d936f2013-01-07 20:52:41 +000034#include <net/addrconf.h>
35#include <net/ndisc.h>
36#include <net/ip6_checksum.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/unaligned.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -070038#include <trace/events/napi.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
40/*
41 * We maintain a small pool of fully-sized skbs, to make sure the
42 * message gets out even in extreme OOM situations.
43 */
44
45#define MAX_UDP_CHUNK 1460
46#define MAX_SKBS 32
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -080048static struct sk_buff_head skb_pool;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
Lai Jiangshan7f9421c2013-03-15 06:50:52 +000050DEFINE_STATIC_SRCU(netpoll_srcu);
Neil Hormanca99ca12013-02-05 08:05:43 +000051
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -070052#define USEC_PER_POLL 50
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Joe Perches6f706242012-01-29 15:50:44 +000054#define MAX_SKB_SIZE \
55 (sizeof(struct ethhdr) + \
56 sizeof(struct iphdr) + \
57 sizeof(struct udphdr) + \
58 MAX_UDP_CHUNK)
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
David S. Miller3578b0c2010-08-03 00:24:04 -070060static void zap_completion_queue(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Anton Vorontsovbff38772009-07-08 11:10:56 -070062static unsigned int carrier_timeout = 4;
63module_param(carrier_timeout, uint, 0644);
64
Joe Perchese6ec269352012-01-29 15:50:43 +000065#define np_info(np, fmt, ...) \
66 pr_info("%s: " fmt, np->name, ##__VA_ARGS__)
67#define np_err(np, fmt, ...) \
68 pr_err("%s: " fmt, np->name, ##__VA_ARGS__)
69#define np_notice(np, fmt, ...) \
70 pr_notice("%s: " fmt, np->name, ##__VA_ARGS__)
71
Yunjian Wanga54776f2020-04-29 18:20:58 +080072static netdev_tx_t netpoll_start_xmit(struct sk_buff *skb,
73 struct net_device *dev,
74 struct netdev_queue *txq)
Eric W. Biederman944e2942014-03-27 15:37:28 -070075{
Yunjian Wanga54776f2020-04-29 18:20:58 +080076 netdev_tx_t status = NETDEV_TX_OK;
Eric W. Biederman944e2942014-03-27 15:37:28 -070077 netdev_features_t features;
78
79 features = netif_skb_features(skb);
80
Jiri Pirkodf8a39d2015-01-13 17:13:44 +010081 if (skb_vlan_tag_present(skb) &&
Eric W. Biederman944e2942014-03-27 15:37:28 -070082 !vlan_hw_offload_capable(features, skb->vlan_proto)) {
Jiri Pirko59682502014-11-19 14:04:59 +010083 skb = __vlan_hwaccel_push_inside(skb);
Eric W. Biederman944e2942014-03-27 15:37:28 -070084 if (unlikely(!skb)) {
85 /* This is actually a packet drop, but we
86 * don't want the code that calls this
87 * function to try and operate on a NULL skb.
88 */
89 goto out;
90 }
Eric W. Biederman944e2942014-03-27 15:37:28 -070091 }
92
David S. Millerfa2dbdc2014-08-29 21:55:22 -070093 status = netdev_start_xmit(skb, dev, txq, false);
Eric W. Biederman944e2942014-03-27 15:37:28 -070094
95out:
96 return status;
97}
98
David Howellsc4028952006-11-22 14:57:56 +000099static void queue_process(struct work_struct *work)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100{
David Howells4c1ac1b2006-12-05 14:37:56 +0000101 struct netpoll_info *npinfo =
102 container_of(work, struct netpoll_info, tx_work.work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 struct sk_buff *skb;
Ingo Molnar36405432006-12-12 17:20:42 +0100104 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105
Stephen Hemminger6c43ff12006-10-26 15:46:53 -0700106 while ((skb = skb_dequeue(&npinfo->txq))) {
107 struct net_device *dev = skb->dev;
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700108 struct netdev_queue *txq;
Tushar Davec70b17b72017-04-20 15:57:31 -0700109 unsigned int q_index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
Stephen Hemminger6c43ff12006-10-26 15:46:53 -0700111 if (!netif_device_present(dev) || !netif_running(dev)) {
Eric W. Biederman080b3c12014-03-27 15:41:04 -0700112 kfree_skb(skb);
Stephen Hemminger6c43ff12006-10-26 15:46:53 -0700113 continue;
114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Ingo Molnar36405432006-12-12 17:20:42 +0100116 local_irq_save(flags);
Tushar Davec70b17b72017-04-20 15:57:31 -0700117 /* check if skb->queue_mapping is still valid */
118 q_index = skb_get_queue_mapping(skb);
119 if (unlikely(q_index >= dev->real_num_tx_queues)) {
120 q_index = q_index % dev->real_num_tx_queues;
121 skb_set_queue_mapping(skb, q_index);
122 }
123 txq = netdev_get_tx_queue(dev, q_index);
Eric W. Biederman5efeac42014-03-27 15:42:20 -0700124 HARD_TX_LOCK(dev, txq, smp_processor_id());
Tom Herbert734664982011-11-28 16:32:44 +0000125 if (netif_xmit_frozen_or_stopped(txq) ||
Feng Sun2c1644c2019-08-26 14:46:04 +0800126 !dev_xmit_complete(netpoll_start_xmit(skb, dev, txq))) {
Stephen Hemminger6c43ff12006-10-26 15:46:53 -0700127 skb_queue_head(&npinfo->txq, skb);
Eric W. Biederman5efeac42014-03-27 15:42:20 -0700128 HARD_TX_UNLOCK(dev, txq);
Ingo Molnar36405432006-12-12 17:20:42 +0100129 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130
Jarek Poplawski25442ca2007-07-05 17:42:44 -0700131 schedule_delayed_work(&npinfo->tx_work, HZ/10);
Stephen Hemminger6c43ff12006-10-26 15:46:53 -0700132 return;
133 }
Eric W. Biederman5efeac42014-03-27 15:42:20 -0700134 HARD_TX_UNLOCK(dev, txq);
Ingo Molnar36405432006-12-12 17:20:42 +0100135 local_irq_restore(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
137}
138
Alexander Duyck822d54b2015-09-28 09:16:17 -0700139static void poll_one_napi(struct napi_struct *napi)
David S. Miller0a7606c2007-10-29 21:28:47 -0700140{
Eric Dumazetc24498c2018-09-27 09:31:51 -0700141 int work;
David S. Miller0a7606c2007-10-29 21:28:47 -0700142
Neil Horman2d8bff1262015-09-23 14:57:58 -0400143 /* If we set this bit but see that it has already been set,
144 * that indicates that napi has been disabled and we need
145 * to abort this operation
146 */
147 if (test_and_set_bit(NAPI_STATE_NPSVC, &napi->state))
Alexander Duyck822d54b2015-09-28 09:16:17 -0700148 return;
David S. Miller0a7606c2007-10-29 21:28:47 -0700149
Alexander Duyck822d54b2015-09-28 09:16:17 -0700150 /* We explicilty pass the polling call a budget of 0 to
151 * indicate that we are clearing the Tx path only.
152 */
153 work = napi->poll(napi, 0);
Sakari Ailusd75f7732019-03-25 21:32:28 +0200154 WARN_ONCE(work, "%pS exceeded budget in poll\n", napi->poll);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +0200155 trace_napi_poll(napi, work, 0);
David S. Miller0a7606c2007-10-29 21:28:47 -0700156
Neil Horman7b363e42008-12-09 23:22:26 -0800157 clear_bit(NAPI_STATE_NPSVC, &napi->state);
David S. Miller0a7606c2007-10-29 21:28:47 -0700158}
159
Alexander Duyck822d54b2015-09-28 09:16:17 -0700160static void poll_napi(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700162 struct napi_struct *napi;
Eric Dumazet89c4b442016-11-16 14:54:50 -0800163 int cpu = smp_processor_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Jakub Kicinski96e97bc2020-08-26 12:40:06 -0700165 list_for_each_entry_rcu(napi, &dev->napi_list, dev_list) {
Eric Dumazet89c4b442016-11-16 14:54:50 -0800166 if (cmpxchg(&napi->poll_owner, -1, cpu) == -1) {
Alexander Duyck822d54b2015-09-28 09:16:17 -0700167 poll_one_napi(napi);
Eric Dumazet89c4b442016-11-16 14:54:50 -0800168 smp_store_release(&napi->poll_owner, -1);
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
171}
172
Eric Dumazetac3d9dd2018-09-21 15:27:38 -0700173void netpoll_poll_dev(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
Amerigo Wang28996562012-08-10 01:24:42 +0000175 struct netpoll_info *ni = rcu_dereference_bh(dev->npinfo);
Eric Dumazetac3d9dd2018-09-21 15:27:38 -0700176 const struct net_device_ops *ops;
Stephen Hemminger51069302007-11-19 19:18:11 -0800177
Neil Hormanca99ca12013-02-05 08:05:43 +0000178 /* Don't do any rx activity if the dev_lock mutex is held
179 * the dev_open/close paths use this to block netpoll activity
180 * while changing device state
181 */
Eric Dumazetac3d9dd2018-09-21 15:27:38 -0700182 if (!ni || down_trylock(&ni->dev_lock))
Neil Hormanca99ca12013-02-05 08:05:43 +0000183 return;
184
Neil Horman959d5fd2013-02-13 11:32:42 -0500185 if (!netif_running(dev)) {
Neil Hormanbd7c4b62013-04-30 05:35:05 +0000186 up(&ni->dev_lock);
Pavel Emelyanov5e392732009-05-11 00:36:35 +0000187 return;
Neil Horman959d5fd2013-02-13 11:32:42 -0500188 }
Pavel Emelyanov5e392732009-05-11 00:36:35 +0000189
190 ops = dev->netdev_ops;
Eric Dumazetac3d9dd2018-09-21 15:27:38 -0700191 if (ops->ndo_poll_controller)
192 ops->ndo_poll_controller(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Alexander Duyck822d54b2015-09-28 09:16:17 -0700194 poll_napi(dev);
Stephen Hemminger51069302007-11-19 19:18:11 -0800195
Neil Hormanbd7c4b62013-04-30 05:35:05 +0000196 up(&ni->dev_lock);
Neil Hormanca99ca12013-02-05 08:05:43 +0000197
David S. Miller3578b0c2010-08-03 00:24:04 -0700198 zap_completion_queue();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
Eric Dumazetac3d9dd2018-09-21 15:27:38 -0700200EXPORT_SYMBOL(netpoll_poll_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201
Eric W. Biederman66b55522014-03-27 15:39:03 -0700202void netpoll_poll_disable(struct net_device *dev)
Neil Hormanca99ca12013-02-05 08:05:43 +0000203{
204 struct netpoll_info *ni;
205 int idx;
206 might_sleep();
207 idx = srcu_read_lock(&netpoll_srcu);
208 ni = srcu_dereference(dev->npinfo, &netpoll_srcu);
209 if (ni)
Neil Hormanbd7c4b62013-04-30 05:35:05 +0000210 down(&ni->dev_lock);
Neil Hormanca99ca12013-02-05 08:05:43 +0000211 srcu_read_unlock(&netpoll_srcu, idx);
Neil Hormanca99ca12013-02-05 08:05:43 +0000212}
Eric W. Biederman66b55522014-03-27 15:39:03 -0700213EXPORT_SYMBOL(netpoll_poll_disable);
Neil Hormanca99ca12013-02-05 08:05:43 +0000214
Eric W. Biederman66b55522014-03-27 15:39:03 -0700215void netpoll_poll_enable(struct net_device *dev)
Neil Hormanca99ca12013-02-05 08:05:43 +0000216{
217 struct netpoll_info *ni;
218 rcu_read_lock();
219 ni = rcu_dereference(dev->npinfo);
220 if (ni)
Neil Hormanbd7c4b62013-04-30 05:35:05 +0000221 up(&ni->dev_lock);
Neil Hormanca99ca12013-02-05 08:05:43 +0000222 rcu_read_unlock();
223}
Eric W. Biederman66b55522014-03-27 15:39:03 -0700224EXPORT_SYMBOL(netpoll_poll_enable);
Neil Hormanca99ca12013-02-05 08:05:43 +0000225
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226static void refill_skbs(void)
227{
228 struct sk_buff *skb;
229 unsigned long flags;
230
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800231 spin_lock_irqsave(&skb_pool.lock, flags);
232 while (skb_pool.qlen < MAX_SKBS) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 skb = alloc_skb(MAX_SKB_SIZE, GFP_ATOMIC);
234 if (!skb)
235 break;
236
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800237 __skb_queue_tail(&skb_pool, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 }
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800239 spin_unlock_irqrestore(&skb_pool.lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
David S. Miller3578b0c2010-08-03 00:24:04 -0700242static void zap_completion_queue(void)
243{
244 unsigned long flags;
245 struct softnet_data *sd = &get_cpu_var(softnet_data);
246
247 if (sd->completion_queue) {
248 struct sk_buff *clist;
249
250 local_irq_save(flags);
251 clist = sd->completion_queue;
252 sd->completion_queue = NULL;
253 local_irq_restore(flags);
254
255 while (clist != NULL) {
256 struct sk_buff *skb = clist;
257 clist = clist->next;
Eric W. Biedermanb1586f02014-04-01 12:21:02 -0700258 if (!skb_irq_freeable(skb)) {
WANG Cong230cd122017-07-12 15:56:41 -0700259 refcount_set(&skb->users, 1);
David S. Miller3578b0c2010-08-03 00:24:04 -0700260 dev_kfree_skb_any(skb); /* put this one back */
261 } else {
262 __kfree_skb(skb);
263 }
264 }
265 }
266
267 put_cpu_var(softnet_data);
268}
269
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800270static struct sk_buff *find_skb(struct netpoll *np, int len, int reserve)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800272 int count = 0;
273 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
David S. Miller3578b0c2010-08-03 00:24:04 -0700275 zap_completion_queue();
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800276 refill_skbs();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277repeat:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278
279 skb = alloc_skb(len, GFP_ATOMIC);
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800280 if (!skb)
281 skb = skb_dequeue(&skb_pool);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282
283 if (!skb) {
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800284 if (++count < 10) {
Joe Perches2a49e002011-06-30 15:08:58 +0000285 netpoll_poll_dev(np->dev);
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800286 goto repeat;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800288 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 }
290
Reshetova, Elena63354792017-06-30 13:07:58 +0300291 refcount_set(&skb->users, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 skb_reserve(skb, reserve);
293 return skb;
294}
295
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700296static int netpoll_owner_active(struct net_device *dev)
297{
298 struct napi_struct *napi;
299
Jakub Kicinski5251ef82020-09-09 10:37:53 -0700300 list_for_each_entry_rcu(napi, &dev->napi_list, dev_list) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700301 if (napi->poll_owner == smp_processor_id())
302 return 1;
303 }
304 return 0;
305}
306
Amerigo Wang28996562012-08-10 01:24:42 +0000307/* call with IRQ disabled */
Eric Dumazet1ddabdf2020-05-07 09:32:20 -0700308static netdev_tx_t __netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Yunjian Wanga54776f2020-04-29 18:20:58 +0800310 netdev_tx_t status = NETDEV_TX_BUSY;
Eric Dumazet307f6602020-05-07 09:32:18 -0700311 struct net_device *dev;
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700312 unsigned long tries;
Herbert Xude85d992010-06-10 16:12:44 +0000313 /* It is up to the caller to keep npinfo alive. */
Amerigo Wang28996562012-08-10 01:24:42 +0000314 struct netpoll_info *npinfo;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Frederic Weisbeckeraf073392017-11-06 16:01:29 +0100316 lockdep_assert_irqs_disabled();
Amerigo Wang28996562012-08-10 01:24:42 +0000317
Eric Dumazet307f6602020-05-07 09:32:18 -0700318 dev = np->dev;
319 npinfo = rcu_dereference_bh(dev->npinfo);
320
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900321 if (!npinfo || !netif_running(dev) || !netif_device_present(dev)) {
Eric W. Biederman080b3c12014-03-27 15:41:04 -0700322 dev_kfree_skb_irq(skb);
Eric Dumazet1ddabdf2020-05-07 09:32:20 -0700323 return NET_XMIT_DROP;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Stephen Hemminger2bdfe0b2006-10-26 15:46:54 -0700326 /* don't get messages out of order, and no recursion */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700327 if (skb_queue_len(&npinfo->txq) == 0 && !netpoll_owner_active(dev)) {
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700328 struct netdev_queue *txq;
Andrew Mortona49f99f2006-12-11 17:24:46 -0800329
Paolo Abeni4bd97d52019-03-20 11:02:04 +0100330 txq = netdev_core_pick_tx(dev, skb, NULL);
David S. Millerfd2ea0a2008-07-17 01:56:23 -0700331
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700332 /* try until next clock tick */
333 for (tries = jiffies_to_usecs(1)/USEC_PER_POLL;
334 tries > 0; --tries) {
Eric W. Biederman5efeac42014-03-27 15:42:20 -0700335 if (HARD_TX_TRYLOCK(dev, txq)) {
Eric W. Biederman944e2942014-03-27 15:37:28 -0700336 if (!netif_xmit_stopped(txq))
337 status = netpoll_start_xmit(skb, dev, txq);
Amerigo Wang689971b2012-08-10 01:24:49 +0000338
Eric W. Biederman5efeac42014-03-27 15:42:20 -0700339 HARD_TX_UNLOCK(dev, txq);
Matt Mackallf0d34592005-08-11 19:25:11 -0700340
Feng Sun2c1644c2019-08-26 14:46:04 +0800341 if (dev_xmit_complete(status))
Andrew Mortone37b8d92006-12-09 14:01:49 -0800342 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Andrew Mortone37b8d92006-12-09 14:01:49 -0800344 }
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700345
346 /* tickle device maybe there is some cleanup */
Joe Perches2a49e002011-06-30 15:08:58 +0000347 netpoll_poll_dev(np->dev);
Stephen Hemminger0db3dc72007-06-27 00:39:42 -0700348
349 udelay(USEC_PER_POLL);
Matt Mackall0db1d6f2005-08-11 19:25:54 -0700350 }
Dongdong Deng79b1bee2009-08-21 03:33:36 +0000351
352 WARN_ONCE(!irqs_disabled(),
Sakari Ailusd75f7732019-03-25 21:32:28 +0200353 "netpoll_send_skb_on_dev(): %s enabled interrupts in poll (%pS)\n",
Eric W. Biederman944e2942014-03-27 15:37:28 -0700354 dev->name, dev->netdev_ops->ndo_start_xmit);
Dongdong Deng79b1bee2009-08-21 03:33:36 +0000355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Feng Sun2c1644c2019-08-26 14:46:04 +0800358 if (!dev_xmit_complete(status)) {
Stephen Hemminger5de4a472006-10-26 15:46:55 -0700359 skb_queue_tail(&npinfo->txq, skb);
David Howells4c1ac1b2006-12-05 14:37:56 +0000360 schedule_delayed_work(&npinfo->tx_work,0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 }
Eric Dumazet1ddabdf2020-05-07 09:32:20 -0700362 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363}
Eric Dumazetfb1eee42020-05-07 09:32:19 -0700364
Eric Dumazet1ddabdf2020-05-07 09:32:20 -0700365netdev_tx_t netpoll_send_skb(struct netpoll *np, struct sk_buff *skb)
Eric Dumazetfb1eee42020-05-07 09:32:19 -0700366{
367 unsigned long flags;
Eric Dumazet1ddabdf2020-05-07 09:32:20 -0700368 netdev_tx_t ret;
Eric Dumazetfb1eee42020-05-07 09:32:19 -0700369
Eric Dumazetf78ed222020-05-07 09:32:21 -0700370 if (unlikely(!np)) {
371 dev_kfree_skb_irq(skb);
372 ret = NET_XMIT_DROP;
373 } else {
374 local_irq_save(flags);
375 ret = __netpoll_send_skb(np, skb);
376 local_irq_restore(flags);
377 }
Eric Dumazet1ddabdf2020-05-07 09:32:20 -0700378 return ret;
Eric Dumazetfb1eee42020-05-07 09:32:19 -0700379}
380EXPORT_SYMBOL(netpoll_send_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382void netpoll_send_udp(struct netpoll *np, const char *msg, int len)
383{
Eric Dumazet954fba02012-06-12 19:30:21 +0000384 int total_len, ip_len, udp_len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 struct sk_buff *skb;
386 struct udphdr *udph;
387 struct iphdr *iph;
388 struct ethhdr *eth;
Eric Dumazetee130402012-08-24 01:47:26 +0000389 static atomic_t ip_ident;
Cong Wangb3d936f2013-01-07 20:52:41 +0000390 struct ipv6hdr *ip6h;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
Nikolay Aleksandrovc9fd56b2015-08-28 15:44:25 -0700392 WARN_ON_ONCE(!irqs_disabled());
393
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 udp_len = len + sizeof(*udph);
Cong Wangb3d936f2013-01-07 20:52:41 +0000395 if (np->ipv6)
396 ip_len = udp_len + sizeof(*ip6h);
397 else
Cong Wangb7394d22013-01-07 20:52:39 +0000398 ip_len = udp_len + sizeof(*iph);
399
Eric Dumazet954fba02012-06-12 19:30:21 +0000400 total_len = ip_len + LL_RESERVED_SPACE(np->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Eric Dumazet954fba02012-06-12 19:30:21 +0000402 skb = find_skb(np, total_len + np->dev->needed_tailroom,
403 total_len - len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 if (!skb)
405 return;
406
Arnaldo Carvalho de Melo27d7ff42007-03-31 11:55:19 -0300407 skb_copy_to_linear_data(skb, msg, len);
Eric Dumazet954fba02012-06-12 19:30:21 +0000408 skb_put(skb, len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Arnaldo Carvalho de Melo4bedb452007-03-13 14:28:48 -0300410 skb_push(skb, sizeof(*udph));
411 skb_reset_transport_header(skb);
412 udph = udp_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 udph->source = htons(np->local_port);
414 udph->dest = htons(np->remote_port);
415 udph->len = htons(udp_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Cong Wangb3d936f2013-01-07 20:52:41 +0000417 if (np->ipv6) {
418 udph->check = 0;
419 udph->check = csum_ipv6_magic(&np->local_ip.in6,
420 &np->remote_ip.in6,
421 udp_len, IPPROTO_UDP,
422 csum_partial(udph, udp_len, 0));
423 if (udph->check == 0)
424 udph->check = CSUM_MANGLED_0;
425
426 skb_push(skb, sizeof(*ip6h));
427 skb_reset_network_header(skb);
428 ip6h = ipv6_hdr(skb);
429
430 /* ip6h->version = 6; ip6h->priority = 0; */
431 put_unaligned(0x60, (unsigned char *)ip6h);
432 ip6h->flow_lbl[0] = 0;
433 ip6h->flow_lbl[1] = 0;
434 ip6h->flow_lbl[2] = 0;
435
436 ip6h->payload_len = htons(sizeof(struct udphdr) + len);
437 ip6h->nexthdr = IPPROTO_UDP;
438 ip6h->hop_limit = 32;
439 ip6h->saddr = np->local_ip.in6;
440 ip6h->daddr = np->remote_ip.in6;
441
Johannes Bergd58ff352017-06-16 14:29:23 +0200442 eth = skb_push(skb, ETH_HLEN);
Cong Wangb3d936f2013-01-07 20:52:41 +0000443 skb_reset_mac_header(skb);
444 skb->protocol = eth->h_proto = htons(ETH_P_IPV6);
445 } else {
Cong Wangb7394d22013-01-07 20:52:39 +0000446 udph->check = 0;
447 udph->check = csum_tcpudp_magic(np->local_ip.ip,
448 np->remote_ip.ip,
449 udp_len, IPPROTO_UDP,
450 csum_partial(udph, udp_len, 0));
451 if (udph->check == 0)
452 udph->check = CSUM_MANGLED_0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
Cong Wangb7394d22013-01-07 20:52:39 +0000454 skb_push(skb, sizeof(*iph));
455 skb_reset_network_header(skb);
456 iph = ip_hdr(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457
Cong Wangb7394d22013-01-07 20:52:39 +0000458 /* iph->version = 4; iph->ihl = 5; */
459 put_unaligned(0x45, (unsigned char *)iph);
460 iph->tos = 0;
461 put_unaligned(htons(ip_len), &(iph->tot_len));
462 iph->id = htons(atomic_inc_return(&ip_ident));
463 iph->frag_off = 0;
464 iph->ttl = 64;
465 iph->protocol = IPPROTO_UDP;
466 iph->check = 0;
467 put_unaligned(np->local_ip.ip, &(iph->saddr));
468 put_unaligned(np->remote_ip.ip, &(iph->daddr));
469 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl);
470
Johannes Bergd58ff352017-06-16 14:29:23 +0200471 eth = skb_push(skb, ETH_HLEN);
Cong Wangb7394d22013-01-07 20:52:39 +0000472 skb_reset_mac_header(skb);
473 skb->protocol = eth->h_proto = htons(ETH_P_IP);
474 }
475
Joe Perchesc62326a2014-01-20 09:52:18 -0800476 ether_addr_copy(eth->h_source, np->dev->dev_addr);
477 ether_addr_copy(eth->h_dest, np->remote_mac);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
479 skb->dev = np->dev;
480
481 netpoll_send_skb(np, skb);
482}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000483EXPORT_SYMBOL(netpoll_send_udp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700485void netpoll_print_options(struct netpoll *np)
486{
Joe Perchese6ec269352012-01-29 15:50:43 +0000487 np_info(np, "local port %d\n", np->local_port);
Cong Wangb3d936f2013-01-07 20:52:41 +0000488 if (np->ipv6)
489 np_info(np, "local IPv6 address %pI6c\n", &np->local_ip.in6);
490 else
Cong Wangb7394d22013-01-07 20:52:39 +0000491 np_info(np, "local IPv4 address %pI4\n", &np->local_ip.ip);
Joe Perchese6ec269352012-01-29 15:50:43 +0000492 np_info(np, "interface '%s'\n", np->dev_name);
493 np_info(np, "remote port %d\n", np->remote_port);
Cong Wangb3d936f2013-01-07 20:52:41 +0000494 if (np->ipv6)
495 np_info(np, "remote IPv6 address %pI6c\n", &np->remote_ip.in6);
496 else
Cong Wangb7394d22013-01-07 20:52:39 +0000497 np_info(np, "remote IPv4 address %pI4\n", &np->remote_ip.ip);
Joe Perchese6ec269352012-01-29 15:50:43 +0000498 np_info(np, "remote ethernet address %pM\n", np->remote_mac);
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700499}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000500EXPORT_SYMBOL(netpoll_print_options);
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700501
Cong Wangb7394d22013-01-07 20:52:39 +0000502static int netpoll_parse_ip_addr(const char *str, union inet_addr *addr)
503{
504 const char *end;
505
506 if (!strchr(str, ':') &&
507 in4_pton(str, -1, (void *)addr, -1, &end) > 0) {
508 if (!*end)
509 return 0;
510 }
511 if (in6_pton(str, -1, addr->in6.s6_addr, -1, &end) > 0) {
512#if IS_ENABLED(CONFIG_IPV6)
513 if (!*end)
514 return 1;
515#else
516 return -1;
517#endif
518 }
519 return -1;
520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522int netpoll_parse_options(struct netpoll *np, char *opt)
523{
524 char *cur=opt, *delim;
Cong Wangb7394d22013-01-07 20:52:39 +0000525 int ipv6;
Sabrina Dubroca00fe11b2014-02-06 18:34:12 +0100526 bool ipversion_set = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
David S. Millerc68b9072006-11-14 20:40:49 -0800528 if (*cur != '@') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 if ((delim = strchr(cur, '@')) == NULL)
530 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800531 *delim = 0;
Abhijit Pawar4b5511e2012-12-09 23:12:28 +0000532 if (kstrtou16(cur, 10, &np->local_port))
533 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800534 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535 }
536 cur++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537
David S. Millerc68b9072006-11-14 20:40:49 -0800538 if (*cur != '/') {
Sabrina Dubroca00fe11b2014-02-06 18:34:12 +0100539 ipversion_set = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 if ((delim = strchr(cur, '/')) == NULL)
541 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800542 *delim = 0;
Cong Wangb7394d22013-01-07 20:52:39 +0000543 ipv6 = netpoll_parse_ip_addr(cur, &np->local_ip);
544 if (ipv6 < 0)
545 goto parse_failed;
546 else
547 np->ipv6 = (bool)ipv6;
David S. Millerc68b9072006-11-14 20:40:49 -0800548 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 }
550 cur++;
551
David S. Millerc68b9072006-11-14 20:40:49 -0800552 if (*cur != ',') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553 /* parse out dev name */
554 if ((delim = strchr(cur, ',')) == NULL)
555 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800556 *delim = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 strlcpy(np->dev_name, cur, sizeof(np->dev_name));
David S. Millerc68b9072006-11-14 20:40:49 -0800558 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
560 cur++;
561
David S. Millerc68b9072006-11-14 20:40:49 -0800562 if (*cur != '@') {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 /* dst port */
564 if ((delim = strchr(cur, '@')) == NULL)
565 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800566 *delim = 0;
Amerigo Wang5fc05f82010-03-21 22:59:58 +0000567 if (*cur == ' ' || *cur == '\t')
Joe Perchese6ec269352012-01-29 15:50:43 +0000568 np_info(np, "warning: whitespace is not allowed\n");
Abhijit Pawar4b5511e2012-12-09 23:12:28 +0000569 if (kstrtou16(cur, 10, &np->remote_port))
570 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800571 cur = delim;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 }
573 cur++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575 /* dst ip */
576 if ((delim = strchr(cur, '/')) == NULL)
577 goto parse_failed;
David S. Millerc68b9072006-11-14 20:40:49 -0800578 *delim = 0;
Cong Wangb7394d22013-01-07 20:52:39 +0000579 ipv6 = netpoll_parse_ip_addr(cur, &np->remote_ip);
580 if (ipv6 < 0)
581 goto parse_failed;
Sabrina Dubroca00fe11b2014-02-06 18:34:12 +0100582 else if (ipversion_set && np->ipv6 != (bool)ipv6)
Cong Wangb7394d22013-01-07 20:52:39 +0000583 goto parse_failed;
584 else
585 np->ipv6 = (bool)ipv6;
David S. Millerc68b9072006-11-14 20:40:49 -0800586 cur = delim + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587
David S. Millerc68b9072006-11-14 20:40:49 -0800588 if (*cur != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 /* MAC address */
Alexey Dobriyan4940fc82011-05-07 23:00:07 +0000590 if (!mac_pton(cur, np->remote_mac))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 goto parse_failed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 }
593
Satyam Sharma0bcc1812007-08-10 15:35:05 -0700594 netpoll_print_options(np);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596 return 0;
597
598 parse_failed:
Joe Perchese6ec269352012-01-29 15:50:43 +0000599 np_info(np, "couldn't parse config at '%s'!\n", cur);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 return -1;
601}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000602EXPORT_SYMBOL(netpoll_parse_options);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603
Eric W. Biedermana8779ec2014-03-27 15:36:38 -0700604int __netpoll_setup(struct netpoll *np, struct net_device *ndev)
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000605{
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000606 struct netpoll_info *npinfo;
607 const struct net_device_ops *ops;
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000608 int err;
609
Bjorn Helgaas727ceaa2016-04-05 15:58:22 -0500610 np->dev = ndev;
Jiri Pirko30fdd8a02012-07-17 05:22:35 +0000611 strlcpy(np->dev_name, ndev->name, IFNAMSIZ);
612
Eric Dumazetac3d9dd2018-09-21 15:27:38 -0700613 if (ndev->priv_flags & IFF_DISABLE_NETPOLL) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000614 np_err(np, "%s doesn't support polling, aborting\n",
615 np->dev_name);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000616 err = -ENOTSUPP;
617 goto out;
618 }
619
620 if (!ndev->npinfo) {
Eric W. Biedermana8779ec2014-03-27 15:36:38 -0700621 npinfo = kmalloc(sizeof(*npinfo), GFP_KERNEL);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000622 if (!npinfo) {
623 err = -ENOMEM;
624 goto out;
625 }
626
Neil Hormanbd7c4b62013-04-30 05:35:05 +0000627 sema_init(&npinfo->dev_lock, 1);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000628 skb_queue_head_init(&npinfo->txq);
629 INIT_DELAYED_WORK(&npinfo->tx_work, queue_process);
630
Reshetova, Elena433cea42017-06-30 13:08:04 +0300631 refcount_set(&npinfo->refcnt, 1);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000632
633 ops = np->dev->netdev_ops;
634 if (ops->ndo_netpoll_setup) {
Eric W. Biedermana8779ec2014-03-27 15:36:38 -0700635 err = ops->ndo_netpoll_setup(ndev, npinfo);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000636 if (err)
637 goto free_npinfo;
638 }
639 } else {
Neil Horman0790bbb2013-02-11 10:25:31 +0000640 npinfo = rtnl_dereference(ndev->npinfo);
Reshetova, Elena433cea42017-06-30 13:08:04 +0300641 refcount_inc(&npinfo->refcnt);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000642 }
643
644 npinfo->netpoll = np;
645
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000646 /* last thing to do is link it to the net device structure */
Eric Dumazetcf778b02012-01-12 04:41:32 +0000647 rcu_assign_pointer(ndev->npinfo, npinfo);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000648
649 return 0;
650
651free_npinfo:
652 kfree(npinfo);
653out:
654 return err;
655}
656EXPORT_SYMBOL_GPL(__netpoll_setup);
657
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658int netpoll_setup(struct netpoll *np)
659{
Vladimir Olteanea920002021-02-05 15:37:12 +0200660 struct net_device *ndev = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 struct in_device *in_dev;
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700662 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Cong Wangf92d3182013-01-14 23:34:06 +0000664 rtnl_lock();
Vladimir Olteanea920002021-02-05 15:37:12 +0200665 if (np->dev_name[0]) {
666 struct net *net = current->nsproxy->net_ns;
Cong Wang556e6252013-01-27 15:55:21 +0000667 ndev = __dev_get_by_name(net, np->dev_name);
Vladimir Olteanea920002021-02-05 15:37:12 +0200668 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 if (!ndev) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000670 np_err(np, "%s doesn't exist, aborting\n", np->dev_name);
Cong Wangf92d3182013-01-14 23:34:06 +0000671 err = -ENODEV;
672 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 }
Cong Wang5bd30d32013-01-17 12:21:08 +0800674 dev_hold(ndev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675
Jiri Pirko49bd8fb2013-01-03 22:48:55 +0000676 if (netdev_master_upper_dev_get(ndev)) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000677 np_err(np, "%s is a slave device, aborting\n", np->dev_name);
Dan Carpenter83fe32d2011-06-11 18:55:22 -0700678 err = -EBUSY;
679 goto put;
WANG Cong0c1ad042011-06-09 00:28:13 -0700680 }
681
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 if (!netif_running(ndev)) {
683 unsigned long atmost, atleast;
684
Joe Perchese6ec269352012-01-29 15:50:43 +0000685 np_info(np, "device %s not up yet, forcing it\n", np->dev_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Petr Machata00f54e62018-12-06 17:05:36 +0000687 err = dev_open(ndev, NULL);
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700688
689 if (err) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000690 np_err(np, "failed to open %s\n", ndev->name);
Herbert Xudbaa1542010-06-10 16:12:46 +0000691 goto put;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693
Cong Wangf92d3182013-01-14 23:34:06 +0000694 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 atleast = jiffies + HZ/10;
Anton Vorontsovbff38772009-07-08 11:10:56 -0700696 atmost = jiffies + carrier_timeout * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 while (!netif_carrier_ok(ndev)) {
698 if (time_after(jiffies, atmost)) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000699 np_notice(np, "timeout waiting for carrier\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 break;
701 }
Anton Vorontsov1b614fb2009-07-08 20:09:44 -0700702 msleep(1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 }
704
705 /* If carrier appears to come up instantly, we don't
706 * trust it and pause so that we don't pump all our
707 * queued console messages into the bitbucket.
708 */
709
710 if (time_before(jiffies, atleast)) {
Joe Perchese6ec269352012-01-29 15:50:43 +0000711 np_notice(np, "carrier detect appears untrustworthy, waiting 4 seconds\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712 msleep(4000);
713 }
Cong Wangf92d3182013-01-14 23:34:06 +0000714 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 }
716
Cong Wangb7394d22013-01-07 20:52:39 +0000717 if (!np->local_ip.ip) {
718 if (!np->ipv6) {
Florian Westphal2638eb8b2019-05-31 18:27:09 +0200719 const struct in_ifaddr *ifa;
Cong Wangb7394d22013-01-07 20:52:39 +0000720
Florian Westphal2638eb8b2019-05-31 18:27:09 +0200721 in_dev = __in_dev_get_rtnl(ndev);
722 if (!in_dev)
723 goto put_noaddr;
724
725 ifa = rtnl_dereference(in_dev->ifa_list);
726 if (!ifa) {
727put_noaddr:
Cong Wangb7394d22013-01-07 20:52:39 +0000728 np_err(np, "no IP address for %s, aborting\n",
729 np->dev_name);
730 err = -EDESTADDRREQ;
731 goto put;
732 }
733
Florian Westphal2638eb8b2019-05-31 18:27:09 +0200734 np->local_ip.ip = ifa->ifa_local;
Cong Wangb7394d22013-01-07 20:52:39 +0000735 np_info(np, "local IP %pI4\n", &np->local_ip.ip);
Cong Wangb3d936f2013-01-07 20:52:41 +0000736 } else {
737#if IS_ENABLED(CONFIG_IPV6)
738 struct inet6_dev *idev;
739
740 err = -EDESTADDRREQ;
Cong Wangb3d936f2013-01-07 20:52:41 +0000741 idev = __in6_dev_get(ndev);
742 if (idev) {
743 struct inet6_ifaddr *ifp;
744
745 read_lock_bh(&idev->lock);
746 list_for_each_entry(ifp, &idev->addr_list, if_list) {
Matwey V. Kornilovd016b4a2018-11-02 21:19:36 +0300747 if (!!(ipv6_addr_type(&ifp->addr) & IPV6_ADDR_LINKLOCAL) !=
748 !!(ipv6_addr_type(&np->remote_ip.in6) & IPV6_ADDR_LINKLOCAL))
Cong Wangb3d936f2013-01-07 20:52:41 +0000749 continue;
750 np->local_ip.in6 = ifp->addr;
751 err = 0;
752 break;
753 }
754 read_unlock_bh(&idev->lock);
755 }
Cong Wangb3d936f2013-01-07 20:52:41 +0000756 if (err) {
757 np_err(np, "no IPv6 address for %s, aborting\n",
758 np->dev_name);
759 goto put;
760 } else
761 np_info(np, "local IPv6 %pI6c\n", &np->local_ip.in6);
762#else
763 np_err(np, "IPv6 is not supported %s, aborting\n",
764 np->dev_name);
Cong Wange39363a2013-01-22 17:39:11 +0000765 err = -EINVAL;
Cong Wangb3d936f2013-01-07 20:52:41 +0000766 goto put;
767#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 }
770
Herbert Xudbaa1542010-06-10 16:12:46 +0000771 /* fill up the skb queue */
772 refill_skbs();
773
Eric W. Biedermana8779ec2014-03-27 15:36:38 -0700774 err = __netpoll_setup(np, ndev);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000775 if (err)
776 goto put;
777
Cong Wangf92d3182013-01-14 23:34:06 +0000778 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 return 0;
780
Jiri Slaby21edbb22010-03-16 05:29:54 +0000781put:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 dev_put(ndev);
Cong Wangf92d3182013-01-14 23:34:06 +0000783unlock:
784 rtnl_unlock();
Stephen Hemmingerb41848b2006-10-26 15:46:52 -0700785 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000787EXPORT_SYMBOL(netpoll_setup);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
David S. Millerc68b9072006-11-14 20:40:49 -0800789static int __init netpoll_init(void)
790{
Stephen Hemmingera1bcfac2006-11-14 10:43:58 -0800791 skb_queue_head_init(&skb_pool);
792 return 0;
793}
794core_initcall(netpoll_init);
795
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000796static void rcu_cleanup_netpoll_info(struct rcu_head *rcu_head)
797{
798 struct netpoll_info *npinfo =
799 container_of(rcu_head, struct netpoll_info, rcu);
800
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000801 skb_queue_purge(&npinfo->txq);
802
803 /* we can't call cancel_delayed_work_sync here, as we are in softirq */
804 cancel_delayed_work(&npinfo->tx_work);
805
806 /* clean after last, unfinished work */
807 __skb_queue_purge(&npinfo->txq);
808 /* now cancel it again */
809 cancel_delayed_work(&npinfo->tx_work);
810 kfree(npinfo);
811}
812
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000813void __netpoll_cleanup(struct netpoll *np)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700815 struct netpoll_info *npinfo;
Jeff Moyerfbeec2e2005-06-22 22:05:59 -0700816
Neil Horman0790bbb2013-02-11 10:25:31 +0000817 npinfo = rtnl_dereference(np->dev->npinfo);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000818 if (!npinfo)
Herbert Xudbaa1542010-06-10 16:12:46 +0000819 return;
Stephen Hemminger93ec2c72006-10-26 15:46:50 -0700820
Neil Hormanca99ca12013-02-05 08:05:43 +0000821 synchronize_srcu(&netpoll_srcu);
822
Reshetova, Elena433cea42017-06-30 13:08:04 +0300823 if (refcount_dec_and_test(&npinfo->refcnt)) {
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000824 const struct net_device_ops *ops;
825
826 ops = np->dev->netdev_ops;
827 if (ops->ndo_netpoll_cleanup)
828 ops->ndo_netpoll_cleanup(np->dev);
829
Monam Agarwalfcb144b2014-03-24 00:42:46 +0530830 RCU_INIT_POINTER(np->dev->npinfo, NULL);
Paul E. McKenney5da54c12018-11-06 19:43:32 -0800831 call_rcu(&npinfo->rcu, rcu_cleanup_netpoll_info);
david decotignyefa95b02014-07-08 15:14:41 -0700832 } else
833 RCU_INIT_POINTER(np->dev->npinfo, NULL);
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000834}
835EXPORT_SYMBOL_GPL(__netpoll_cleanup);
836
Debabrata Banerjeec9fbd712018-10-18 11:18:26 -0400837void __netpoll_free(struct netpoll *np)
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000838{
Debabrata Banerjeec9fbd712018-10-18 11:18:26 -0400839 ASSERT_RTNL();
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000840
Debabrata Banerjeec9fbd712018-10-18 11:18:26 -0400841 /* Wait for transmitting packets to finish before freeing. */
Paul E. McKenney5da54c12018-11-06 19:43:32 -0800842 synchronize_rcu();
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000843 __netpoll_cleanup(np);
844 kfree(np);
845}
Debabrata Banerjeec9fbd712018-10-18 11:18:26 -0400846EXPORT_SYMBOL_GPL(__netpoll_free);
Amerigo Wang38e6bc12012-08-10 01:24:38 +0000847
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000848void netpoll_cleanup(struct netpoll *np)
849{
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000850 rtnl_lock();
Nikolay Aleksandrovd0fe8c882013-09-19 15:02:35 +0200851 if (!np->dev)
852 goto out;
Herbert Xu8fdd95e2010-06-10 16:12:48 +0000853 __netpoll_cleanup(np);
Herbert Xudbaa1542010-06-10 16:12:46 +0000854 dev_put(np->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 np->dev = NULL;
Nikolay Aleksandrovd0fe8c882013-09-19 15:02:35 +0200856out:
857 rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858}
Eric Dumazet9e34a5b2010-07-09 21:22:04 +0000859EXPORT_SYMBOL(netpoll_cleanup);