blob: 610e5f8c6d9edc4d4a0ff370956fa759d6f432ca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET3 Protocol independent device support routines.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Derived from the non IP parts of dev.c 1.0.19
Jesper Juhl02c30a82005-05-05 16:16:16 -070010 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Mark Evans, <evansmp@uhura.aston.ac.uk>
13 *
14 * Additional Authors:
15 * Florian la Roche <rzsfl@rz.uni-sb.de>
16 * Alan Cox <gw4pts@gw4pts.ampr.org>
17 * David Hinds <dahinds@users.sourceforge.net>
18 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
19 * Adam Sulmicki <adam@cfar.umd.edu>
20 * Pekka Riikonen <priikone@poesidon.pspt.fi>
21 *
22 * Changes:
23 * D.J. Barrow : Fixed bug where dev->refcnt gets set
24 * to 2 if register_netdev gets called
25 * before net_dev_init & also removed a
26 * few lines of code in the process.
27 * Alan Cox : device private ioctl copies fields back.
28 * Alan Cox : Transmit queue code does relevant
29 * stunts to keep the queue safe.
30 * Alan Cox : Fixed double lock.
31 * Alan Cox : Fixed promisc NULL pointer trap
32 * ???????? : Support the full private ioctl range
33 * Alan Cox : Moved ioctl permission check into
34 * drivers
35 * Tim Kordas : SIOCADDMULTI/SIOCDELMULTI
36 * Alan Cox : 100 backlog just doesn't cut it when
37 * you start doing multicast video 8)
38 * Alan Cox : Rewrote net_bh and list manager.
39 * Alan Cox : Fix ETH_P_ALL echoback lengths.
40 * Alan Cox : Took out transmit every packet pass
41 * Saved a few bytes in the ioctl handler
42 * Alan Cox : Network driver sets packet type before
43 * calling netif_rx. Saves a function
44 * call a packet.
45 * Alan Cox : Hashed net_bh()
46 * Richard Kooijman: Timestamp fixes.
47 * Alan Cox : Wrong field in SIOCGIFDSTADDR
48 * Alan Cox : Device lock protection.
49 * Alan Cox : Fixed nasty side effect of device close
50 * changes.
51 * Rudi Cilibrasi : Pass the right thing to
52 * set_mac_address()
53 * Dave Miller : 32bit quantity for the device lock to
54 * make it work out on a Sparc.
55 * Bjorn Ekwall : Added KERNELD hack.
56 * Alan Cox : Cleaned up the backlog initialise.
57 * Craig Metz : SIOCGIFCONF fix if space for under
58 * 1 device.
59 * Thomas Bogendoerfer : Return ENODEV for dev_open, if there
60 * is no device open function.
61 * Andi Kleen : Fix error reporting for SIOCGIFCONF
62 * Michael Chastain : Fix signed/unsigned for SIOCGIFCONF
63 * Cyrus Durgin : Cleaned for KMOD
64 * Adam Sulmicki : Bug Fix : Network Device Unload
65 * A network device unload needs to purge
66 * the backlog queue.
67 * Paul Rusty Russell : SIOCSIFNAME
68 * Pekka Riikonen : Netdev boot-time settings code
69 * Andrew Morton : Make unregister_netdevice wait
70 * indefinitely on dev->refcnt
71 * J Hadi Salim : - Backlog queue sampling
72 * - netif_rx() feedback
73 */
74
75#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080077#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/cpu.h>
79#include <linux/types.h>
80#include <linux/kernel.h>
stephen hemminger08e98972009-11-10 07:20:34 +000081#include <linux/hash.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090082#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/sched.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080084#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include <linux/string.h>
86#include <linux/mm.h>
87#include <linux/socket.h>
88#include <linux/sockios.h>
89#include <linux/errno.h>
90#include <linux/interrupt.h>
91#include <linux/if_ether.h>
92#include <linux/netdevice.h>
93#include <linux/etherdevice.h>
Ben Hutchings0187bdf2008-06-19 16:15:47 -070094#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include <linux/notifier.h>
96#include <linux/skbuff.h>
Brenden Blancoa7862b42016-07-19 12:16:48 -070097#include <linux/bpf.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020098#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#include <net/sock.h>
Eric Dumazet02d62e82015-11-18 06:30:52 -0800100#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#include <net/dst.h>
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700104#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#include <net/pkt_sched.h>
106#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000107#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#include <linux/highmem.h>
109#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#include <linux/netpoll.h>
112#include <linux/rcupdate.h>
113#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500116#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700117#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700118#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700119#include <linux/ctype.h>
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700120#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700121#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700122#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700123#include <net/ip.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -0700124#include <net/mpls.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700125#include <linux/ipv6.h>
126#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700127#include <linux/jhash.h>
128#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700129#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900130#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900131#include <trace/events/skb.h>
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +0000132#include <linux/pci.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700133#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000134#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100135#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300136#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700137#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100138#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400139#include <linux/errqueue.h>
Eric Dumazet3b47d302014-11-06 21:09:44 -0800140#include <linux/hrtimer.h>
Pablo Neirae687ad62015-05-13 18:19:38 +0200141#include <linux/netfilter_ingress.h>
Tom Herbert6ae23ad2015-12-14 11:19:46 -0800142#include <linux/sctp.h>
Hariprasad Shenai40e4e712016-06-08 18:09:08 +0530143#include <linux/crash_dump.h>
Subash Abhinov Kasiviswanathan717d3392017-06-26 18:46:50 -0600144#include <linux/tcp.h>
145#include <net/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700147#include "net-sysfs.h"
148
Herbert Xud565b0a2008-12-15 23:38:52 -0800149/* Instead of increasing this, you should create a hash table. */
150#define MAX_GRO_SKBS 8
151
Herbert Xu5d38a072009-01-04 16:13:40 -0800152/* This should be increased if a protocol with a bigger head is added. */
153#define GRO_MAX_HEAD (MAX_HEADER + 128)
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000156static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000157struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
158struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000159static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000161static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli5495119462014-07-01 21:39:43 -0700162static int call_netdevice_notifiers_info(unsigned long val,
163 struct net_device *dev,
164 struct netdev_notifier_info *info);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700167 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 * semaphore.
169 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800170 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *
172 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700173 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 * actual updates. This allows pure readers to access the list even
175 * while a writer is preparing to update it.
176 *
177 * To put it another way, dev_base_lock is held for writing only to
178 * protect against pure readers; the rtnl semaphore provides the
179 * protection against other writers.
180 *
181 * See, for example usages, register_netdevice() and
182 * unregister_netdevice(), which must be called with the rtnl
183 * semaphore held.
184 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186EXPORT_SYMBOL(dev_base_lock);
187
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300188/* protects napi_hash addition/deletion and napi_gen_id */
189static DEFINE_SPINLOCK(napi_hash_lock);
190
Eric Dumazet52bd2d62015-11-18 06:30:50 -0800191static unsigned int napi_gen_id = NR_CPUS;
Eric Dumazet6180d9d2015-11-18 06:31:01 -0800192static DEFINE_READ_MOSTLY_HASHTABLE(napi_hash, 8);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300193
Thomas Gleixner18afa4b2013-07-23 16:13:17 +0200194static seqcount_t devnet_rename_seq;
Brian Haleyc91f6df2012-11-26 05:21:08 +0000195
Thomas Graf4e985ad2011-06-21 03:11:20 +0000196static inline void dev_base_seq_inc(struct net *net)
197{
198 while (++net->dev_base_seq == 0);
199}
200
Eric W. Biederman881d9662007-09-17 11:56:21 -0700201static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Linus Torvalds8387ff22016-06-10 07:51:30 -0700203 unsigned int hash = full_name_hash(net, name, strnlen(name, IFNAMSIZ));
Eric Dumazet95c96172012-04-15 05:58:06 +0000204
stephen hemminger08e98972009-11-10 07:20:34 +0000205 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Eric W. Biederman881d9662007-09-17 11:56:21 -0700208static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700210 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000213static inline void rps_lock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000214{
215#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000216 spin_lock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000217#endif
218}
219
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000220static inline void rps_unlock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000221{
222#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000223 spin_unlock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000224#endif
225}
226
Eric W. Biedermance286d32007-09-12 13:53:49 +0200227/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000228static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200229{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900230 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200231
232 ASSERT_RTNL();
233
234 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800235 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Eric Dumazet72c95282009-10-30 07:11:27 +0000236 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000237 hlist_add_head_rcu(&dev->index_hlist,
238 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200239 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000240
241 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200242}
243
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000244/* Device list removal
245 * caller must respect a RCU grace period before freeing/reusing dev
246 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200247static void unlist_netdevice(struct net_device *dev)
248{
249 ASSERT_RTNL();
250
251 /* Unlink dev from the device chain */
252 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800253 list_del_rcu(&dev->dev_list);
Eric Dumazet72c95282009-10-30 07:11:27 +0000254 hlist_del_rcu(&dev->name_hlist);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000255 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200256 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000257
258 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200259}
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/*
262 * Our notifier list
263 */
264
Alan Sternf07d5b92006-05-09 15:23:03 -0700265static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267/*
268 * Device drivers call our routines to queue packets here. We empty the
269 * queue in the local softnet handler.
270 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700271
Eric Dumazet9958da02010-04-17 04:17:02 +0000272DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700273EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
David S. Millercf508b12008-07-22 14:16:42 -0700275#ifdef CONFIG_LOCKDEP
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700276/*
David S. Millerc773e842008-07-08 23:13:53 -0700277 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700278 * according to dev->type
279 */
280static const unsigned short netdev_lock_type[] =
281 {ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
282 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
283 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
284 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
285 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
286 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
287 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
288 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
289 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
290 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
291 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
292 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
Paul Gortmaker211ed862012-05-10 17:14:35 -0400293 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
294 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
295 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700296
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700297static const char *const netdev_lock_name[] =
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700298 {"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
299 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
300 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
301 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
302 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
303 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
304 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
305 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
306 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
307 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
308 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
309 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
Paul Gortmaker211ed862012-05-10 17:14:35 -0400310 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
311 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
312 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700313
314static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
David S. Millercf508b12008-07-22 14:16:42 -0700315static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700316
317static inline unsigned short netdev_lock_pos(unsigned short dev_type)
318{
319 int i;
320
321 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
322 if (netdev_lock_type[i] == dev_type)
323 return i;
324 /* the last key is used by default */
325 return ARRAY_SIZE(netdev_lock_type) - 1;
326}
327
David S. Millercf508b12008-07-22 14:16:42 -0700328static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
329 unsigned short dev_type)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700330{
331 int i;
332
333 i = netdev_lock_pos(dev_type);
334 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
335 netdev_lock_name[i]);
336}
David S. Millercf508b12008-07-22 14:16:42 -0700337
338static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
339{
340 int i;
341
342 i = netdev_lock_pos(dev->type);
343 lockdep_set_class_and_name(&dev->addr_list_lock,
344 &netdev_addr_lock_key[i],
345 netdev_lock_name[i]);
346}
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700347#else
David S. Millercf508b12008-07-22 14:16:42 -0700348static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
349 unsigned short dev_type)
350{
351}
352static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700353{
354}
355#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357/*******************************************************************************
358
359 Protocol management and registration routines
360
361*******************************************************************************/
362
363/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 * Add a protocol ID to the list. Now that the input handler is
365 * smarter we can dispense with all the messy stuff that used to be
366 * here.
367 *
368 * BEWARE!!! Protocol handlers, mangling input packets,
369 * MUST BE last in hash buckets and checking protocol handlers
370 * MUST start from promiscuous ptype_all chain in net_bh.
371 * It is true now, do not change it.
372 * Explanation follows: if protocol handler, mangling packet, will
373 * be the first on list, it is not able to sense, that packet
374 * is cloned and should be copied-on-write, so that it will
375 * change it and subsequent readers will get broken packet.
376 * --ANK (980803)
377 */
378
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000379static inline struct list_head *ptype_head(const struct packet_type *pt)
380{
381 if (pt->type == htons(ETH_P_ALL))
Salam Noureddine7866a622015-01-27 11:35:48 -0800382 return pt->dev ? &pt->dev->ptype_all : &ptype_all;
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000383 else
Salam Noureddine7866a622015-01-27 11:35:48 -0800384 return pt->dev ? &pt->dev->ptype_specific :
385 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000386}
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388/**
389 * dev_add_pack - add packet handler
390 * @pt: packet type declaration
391 *
392 * Add a protocol handler to the networking stack. The passed &packet_type
393 * is linked into kernel lists and may not be freed until it has been
394 * removed from the kernel lists.
395 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900396 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 * guarantee all CPU's that are in middle of receiving packets
398 * will see the new packet type (until the next received packet).
399 */
400
401void dev_add_pack(struct packet_type *pt)
402{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000403 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000405 spin_lock(&ptype_lock);
406 list_add_rcu(&pt->list, head);
407 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700409EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411/**
412 * __dev_remove_pack - remove packet handler
413 * @pt: packet type declaration
414 *
415 * Remove a protocol handler that was previously added to the kernel
416 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
417 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900418 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 *
420 * The packet type might still be in use by receivers
421 * and must not be freed until after all the CPU's have gone
422 * through a quiescent state.
423 */
424void __dev_remove_pack(struct packet_type *pt)
425{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000426 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 struct packet_type *pt1;
428
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000429 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 list_for_each_entry(pt1, head, list) {
432 if (pt == pt1) {
433 list_del_rcu(&pt->list);
434 goto out;
435 }
436 }
437
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000438 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000440 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700442EXPORT_SYMBOL(__dev_remove_pack);
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444/**
445 * dev_remove_pack - remove packet handler
446 * @pt: packet type declaration
447 *
448 * Remove a protocol handler that was previously added to the kernel
449 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
450 * from the kernel lists and can be freed or reused once this function
451 * returns.
452 *
453 * This call sleeps to guarantee that no CPU is looking at the packet
454 * type after return.
455 */
456void dev_remove_pack(struct packet_type *pt)
457{
458 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 synchronize_net();
461}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700462EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Vlad Yasevich62532da2012-11-15 08:49:10 +0000464
465/**
466 * dev_add_offload - register offload handlers
467 * @po: protocol offload declaration
468 *
469 * Add protocol offload handlers to the networking stack. The passed
470 * &proto_offload is linked into kernel lists and may not be freed until
471 * it has been removed from the kernel lists.
472 *
473 * This call does not sleep therefore it can not
474 * guarantee all CPU's that are in middle of receiving packets
475 * will see the new offload handlers (until the next received packet).
476 */
477void dev_add_offload(struct packet_offload *po)
478{
David S. Millerbdef7de2015-06-01 14:56:09 -0700479 struct packet_offload *elem;
Vlad Yasevich62532da2012-11-15 08:49:10 +0000480
481 spin_lock(&offload_lock);
David S. Millerbdef7de2015-06-01 14:56:09 -0700482 list_for_each_entry(elem, &offload_base, list) {
483 if (po->priority < elem->priority)
484 break;
485 }
486 list_add_rcu(&po->list, elem->list.prev);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000487 spin_unlock(&offload_lock);
488}
489EXPORT_SYMBOL(dev_add_offload);
490
491/**
492 * __dev_remove_offload - remove offload handler
493 * @po: packet offload declaration
494 *
495 * Remove a protocol offload handler that was previously added to the
496 * kernel offload handlers by dev_add_offload(). The passed &offload_type
497 * is removed from the kernel lists and can be freed or reused once this
498 * function returns.
499 *
500 * The packet type might still be in use by receivers
501 * and must not be freed until after all the CPU's have gone
502 * through a quiescent state.
503 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800504static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000505{
506 struct list_head *head = &offload_base;
507 struct packet_offload *po1;
508
Eric Dumazetc53aa502012-11-16 08:08:23 +0000509 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000510
511 list_for_each_entry(po1, head, list) {
512 if (po == po1) {
513 list_del_rcu(&po->list);
514 goto out;
515 }
516 }
517
518 pr_warn("dev_remove_offload: %p not found\n", po);
519out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000520 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000521}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000522
523/**
524 * dev_remove_offload - remove packet offload handler
525 * @po: packet offload declaration
526 *
527 * Remove a packet offload handler that was previously added to the kernel
528 * offload handlers by dev_add_offload(). The passed &offload_type is
529 * removed from the kernel lists and can be freed or reused once this
530 * function returns.
531 *
532 * This call sleeps to guarantee that no CPU is looking at the packet
533 * type after return.
534 */
535void dev_remove_offload(struct packet_offload *po)
536{
537 __dev_remove_offload(po);
538
539 synchronize_net();
540}
541EXPORT_SYMBOL(dev_remove_offload);
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/******************************************************************************
544
545 Device Boot-time Settings Routines
546
547*******************************************************************************/
548
549/* Boot time configuration table */
550static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
551
552/**
553 * netdev_boot_setup_add - add new setup entry
554 * @name: name of the device
555 * @map: configured settings for the device
556 *
557 * Adds new setup entry to the dev_boot_setup list. The function
558 * returns 0 on error and 1 on success. This is a generic routine to
559 * all netdevices.
560 */
561static int netdev_boot_setup_add(char *name, struct ifmap *map)
562{
563 struct netdev_boot_setup *s;
564 int i;
565
566 s = dev_boot_setup;
567 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
568 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
569 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff2008-07-01 19:57:19 -0700570 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 memcpy(&s[i].map, map, sizeof(s[i].map));
572 break;
573 }
574 }
575
576 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
577}
578
579/**
580 * netdev_boot_setup_check - check boot time settings
581 * @dev: the netdevice
582 *
583 * Check boot time settings for the device.
584 * The found settings are set for the device to be used
585 * later in the device probing.
586 * Returns 0 if no settings found, 1 if they are.
587 */
588int netdev_boot_setup_check(struct net_device *dev)
589{
590 struct netdev_boot_setup *s = dev_boot_setup;
591 int i;
592
593 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
594 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff2008-07-01 19:57:19 -0700595 !strcmp(dev->name, s[i].name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 dev->irq = s[i].map.irq;
597 dev->base_addr = s[i].map.base_addr;
598 dev->mem_start = s[i].map.mem_start;
599 dev->mem_end = s[i].map.mem_end;
600 return 1;
601 }
602 }
603 return 0;
604}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700605EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607
608/**
609 * netdev_boot_base - get address from boot time settings
610 * @prefix: prefix for network device
611 * @unit: id for network device
612 *
613 * Check boot time settings for the base address of device.
614 * The found settings are set for the device to be used
615 * later in the device probing.
616 * Returns 0 if no settings found.
617 */
618unsigned long netdev_boot_base(const char *prefix, int unit)
619{
620 const struct netdev_boot_setup *s = dev_boot_setup;
621 char name[IFNAMSIZ];
622 int i;
623
624 sprintf(name, "%s%d", prefix, unit);
625
626 /*
627 * If device already registered then return base of 1
628 * to indicate not to probe for this interface
629 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700630 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return 1;
632
633 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
634 if (!strcmp(name, s[i].name))
635 return s[i].map.base_addr;
636 return 0;
637}
638
639/*
640 * Saves at boot time configured settings for any netdevice.
641 */
642int __init netdev_boot_setup(char *str)
643{
644 int ints[5];
645 struct ifmap map;
646
647 str = get_options(str, ARRAY_SIZE(ints), ints);
648 if (!str || !*str)
649 return 0;
650
651 /* Save settings */
652 memset(&map, 0, sizeof(map));
653 if (ints[0] > 0)
654 map.irq = ints[1];
655 if (ints[0] > 1)
656 map.base_addr = ints[2];
657 if (ints[0] > 2)
658 map.mem_start = ints[3];
659 if (ints[0] > 3)
660 map.mem_end = ints[4];
661
662 /* Add new entry to the list */
663 return netdev_boot_setup_add(str, &map);
664}
665
666__setup("netdev=", netdev_boot_setup);
667
668/*******************************************************************************
669
670 Device Interface Subroutines
671
672*******************************************************************************/
673
674/**
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200675 * dev_get_iflink - get 'iflink' value of a interface
676 * @dev: targeted interface
677 *
678 * Indicates the ifindex the interface is linked to.
679 * Physical interfaces have the same 'ifindex' and 'iflink' values.
680 */
681
682int dev_get_iflink(const struct net_device *dev)
683{
684 if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
685 return dev->netdev_ops->ndo_get_iflink(dev);
686
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +0200687 return dev->ifindex;
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200688}
689EXPORT_SYMBOL(dev_get_iflink);
690
691/**
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700692 * dev_fill_metadata_dst - Retrieve tunnel egress information.
693 * @dev: targeted interface
694 * @skb: The packet.
695 *
696 * For better visibility of tunnel traffic OVS needs to retrieve
697 * egress tunnel information for a packet. Following API allows
698 * user to get this info.
699 */
700int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
701{
702 struct ip_tunnel_info *info;
703
704 if (!dev->netdev_ops || !dev->netdev_ops->ndo_fill_metadata_dst)
705 return -EINVAL;
706
707 info = skb_tunnel_info_unclone(skb);
708 if (!info)
709 return -ENOMEM;
710 if (unlikely(!(info->mode & IP_TUNNEL_INFO_TX)))
711 return -EINVAL;
712
713 return dev->netdev_ops->ndo_fill_metadata_dst(dev, skb);
714}
715EXPORT_SYMBOL_GPL(dev_fill_metadata_dst);
716
717/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700719 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 * @name: name to find
721 *
722 * Find an interface by name. Must be called under RTNL semaphore
723 * or @dev_base_lock. If the name is found a pointer to the device
724 * is returned. If the name is not found then %NULL is returned. The
725 * reference counters are not incremented so the caller must be
726 * careful with locks.
727 */
728
Eric W. Biederman881d9662007-09-17 11:56:21 -0700729struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700731 struct net_device *dev;
732 struct hlist_head *head = dev_name_hash(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Sasha Levinb67bfe02013-02-27 17:06:00 -0800734 hlist_for_each_entry(dev, head, name_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (!strncmp(dev->name, name, IFNAMSIZ))
736 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return NULL;
739}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700740EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742/**
Eric Dumazet72c95282009-10-30 07:11:27 +0000743 * dev_get_by_name_rcu - find a device by its name
744 * @net: the applicable net namespace
745 * @name: name to find
746 *
747 * Find an interface by name.
748 * If the name is found a pointer to the device is returned.
749 * If the name is not found then %NULL is returned.
750 * The reference counters are not incremented so the caller must be
751 * careful with locks. The caller must hold RCU lock.
752 */
753
754struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
755{
Eric Dumazet72c95282009-10-30 07:11:27 +0000756 struct net_device *dev;
757 struct hlist_head *head = dev_name_hash(net, name);
758
Sasha Levinb67bfe02013-02-27 17:06:00 -0800759 hlist_for_each_entry_rcu(dev, head, name_hlist)
Eric Dumazet72c95282009-10-30 07:11:27 +0000760 if (!strncmp(dev->name, name, IFNAMSIZ))
761 return dev;
762
763 return NULL;
764}
765EXPORT_SYMBOL(dev_get_by_name_rcu);
766
767/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700769 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 * @name: name to find
771 *
772 * Find an interface by name. This can be called from any
773 * context and does its own locking. The returned handle has
774 * the usage count incremented and the caller must use dev_put() to
775 * release it when it is no longer needed. %NULL is returned if no
776 * matching device is found.
777 */
778
Eric W. Biederman881d9662007-09-17 11:56:21 -0700779struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 struct net_device *dev;
782
Eric Dumazet72c95282009-10-30 07:11:27 +0000783 rcu_read_lock();
784 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (dev)
786 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000787 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return dev;
789}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700790EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792/**
793 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700794 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 * @ifindex: index of device
796 *
797 * Search for an interface by index. Returns %NULL if the device
798 * is not found or a pointer to the device. The device has not
799 * had its reference counter increased so the caller must be careful
800 * about locking. The caller must hold either the RTNL semaphore
801 * or @dev_base_lock.
802 */
803
Eric W. Biederman881d9662007-09-17 11:56:21 -0700804struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700806 struct net_device *dev;
807 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Sasha Levinb67bfe02013-02-27 17:06:00 -0800809 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (dev->ifindex == ifindex)
811 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return NULL;
814}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700815EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000817/**
818 * dev_get_by_index_rcu - find a device by its ifindex
819 * @net: the applicable net namespace
820 * @ifindex: index of device
821 *
822 * Search for an interface by index. Returns %NULL if the device
823 * is not found or a pointer to the device. The device has not
824 * had its reference counter increased so the caller must be careful
825 * about locking. The caller must hold RCU lock.
826 */
827
828struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
829{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000830 struct net_device *dev;
831 struct hlist_head *head = dev_index_hash(net, ifindex);
832
Sasha Levinb67bfe02013-02-27 17:06:00 -0800833 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000834 if (dev->ifindex == ifindex)
835 return dev;
836
837 return NULL;
838}
839EXPORT_SYMBOL(dev_get_by_index_rcu);
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842/**
843 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700844 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 * @ifindex: index of device
846 *
847 * Search for an interface by index. Returns NULL if the device
848 * is not found or a pointer to the device. The device returned has
849 * had a reference added and the pointer is safe until the user calls
850 * dev_put to indicate they have finished with it.
851 */
852
Eric W. Biederman881d9662007-09-17 11:56:21 -0700853struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
855 struct net_device *dev;
856
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000857 rcu_read_lock();
858 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (dev)
860 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000861 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return dev;
863}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700864EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200867 * netdev_get_name - get a netdevice name, knowing its ifindex.
868 * @net: network namespace
869 * @name: a pointer to the buffer where the name will be stored.
870 * @ifindex: the ifindex of the interface to get the name from.
871 *
872 * The use of raw_seqcount_begin() and cond_resched() before
873 * retrying is required as we want to give the writers a chance
874 * to complete when CONFIG_PREEMPT is not set.
875 */
876int netdev_get_name(struct net *net, char *name, int ifindex)
877{
878 struct net_device *dev;
879 unsigned int seq;
880
881retry:
882 seq = raw_seqcount_begin(&devnet_rename_seq);
883 rcu_read_lock();
884 dev = dev_get_by_index_rcu(net, ifindex);
885 if (!dev) {
886 rcu_read_unlock();
887 return -ENODEV;
888 }
889
890 strcpy(name, dev->name);
891 rcu_read_unlock();
892 if (read_seqcount_retry(&devnet_rename_seq, seq)) {
893 cond_resched();
894 goto retry;
895 }
896
897 return 0;
898}
899
900/**
Eric Dumazet941666c2010-12-05 01:23:53 +0000901 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700902 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 * @type: media type of device
904 * @ha: hardware address
905 *
906 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -0800907 * is not found or a pointer to the device.
908 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +0000909 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 * and the caller must therefore be careful about locking
911 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 */
913
Eric Dumazet941666c2010-12-05 01:23:53 +0000914struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
915 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
917 struct net_device *dev;
918
Eric Dumazet941666c2010-12-05 01:23:53 +0000919 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (dev->type == type &&
921 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700922 return dev;
923
924 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
Eric Dumazet941666c2010-12-05 01:23:53 +0000926EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -0300927
Eric W. Biederman881d9662007-09-17 11:56:21 -0700928struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700929{
930 struct net_device *dev;
931
932 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700933 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700934 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700935 return dev;
936
937 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700938}
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700939EXPORT_SYMBOL(__dev_getfirstbyhwtype);
940
Eric W. Biederman881d9662007-09-17 11:56:21 -0700941struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000943 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000945 rcu_read_lock();
946 for_each_netdev_rcu(net, dev)
947 if (dev->type == type) {
948 dev_hold(dev);
949 ret = dev;
950 break;
951 }
952 rcu_read_unlock();
953 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955EXPORT_SYMBOL(dev_getfirstbyhwtype);
956
957/**
WANG Cong6c555492014-09-11 15:35:09 -0700958 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700959 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 * @if_flags: IFF_* values
961 * @mask: bitmask of bits in if_flags to check
962 *
963 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +0000964 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -0700965 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 */
967
WANG Cong6c555492014-09-11 15:35:09 -0700968struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
969 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Pavel Emelianov7562f872007-05-03 15:13:45 -0700971 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
WANG Cong6c555492014-09-11 15:35:09 -0700973 ASSERT_RTNL();
974
Pavel Emelianov7562f872007-05-03 15:13:45 -0700975 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -0700976 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -0700978 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 break;
980 }
981 }
Pavel Emelianov7562f872007-05-03 15:13:45 -0700982 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
WANG Cong6c555492014-09-11 15:35:09 -0700984EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986/**
987 * dev_valid_name - check if name is okay for network device
988 * @name: name string
989 *
990 * Network device names need to be valid file names to
David S. Millerc7fa9d12006-08-15 16:34:13 -0700991 * to allow sysfs to work. We also disallow any kind of
992 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 */
David S. Miller95f050b2012-03-06 16:12:15 -0500994bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
David S. Millerc7fa9d12006-08-15 16:34:13 -0700996 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -0500997 return false;
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -0700998 if (strlen(name) >= IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -0500999 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001000 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -05001001 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001002
1003 while (*name) {
Matthew Thodea4176a92015-02-17 18:31:57 -06001004 if (*name == '/' || *name == ':' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -05001005 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001006 name++;
1007 }
David S. Miller95f050b2012-03-06 16:12:15 -05001008 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001010EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001013 * __dev_alloc_name - allocate a name for a device
1014 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001016 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 *
1018 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -07001019 * id. It scans list of devices to build up a free map, then chooses
1020 * the first empty slot. The caller must hold the dev_base or rtnl lock
1021 * while allocating the name and adding the device in order to avoid
1022 * duplicates.
1023 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1024 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 */
1026
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001027static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
1029 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 const char *p;
1031 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001032 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 struct net_device *d;
1034
1035 p = strnchr(name, IFNAMSIZ-1, '%');
1036 if (p) {
1037 /*
1038 * Verify the string as this thing may have come from
1039 * the user. There must be either one "%d" and no other "%"
1040 * characters.
1041 */
1042 if (p[1] != 'd' || strchr(p + 2, '%'))
1043 return -EINVAL;
1044
1045 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001046 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (!inuse)
1048 return -ENOMEM;
1049
Eric W. Biederman881d9662007-09-17 11:56:21 -07001050 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (!sscanf(d->name, name, &i))
1052 continue;
1053 if (i < 0 || i >= max_netdevices)
1054 continue;
1055
1056 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001057 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 if (!strncmp(buf, d->name, IFNAMSIZ))
1059 set_bit(i, inuse);
1060 }
1061
1062 i = find_first_zero_bit(inuse, max_netdevices);
1063 free_page((unsigned long) inuse);
1064 }
1065
Octavian Purdilad9031022009-11-18 02:36:59 +00001066 if (buf != name)
1067 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001068 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 /* It is possible to run out of possible slots
1072 * when the name is long and there isn't enough space left
1073 * for the digits, or if all bits are used.
1074 */
1075 return -ENFILE;
1076}
1077
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001078/**
1079 * dev_alloc_name - allocate a name for a device
1080 * @dev: device
1081 * @name: name format string
1082 *
1083 * Passed a format string - eg "lt%d" it will try and find a suitable
1084 * id. It scans list of devices to build up a free map, then chooses
1085 * the first empty slot. The caller must hold the dev_base or rtnl lock
1086 * while allocating the name and adding the device in order to avoid
1087 * duplicates.
1088 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1089 * Returns the number of the unit assigned or a negative errno code.
1090 */
1091
1092int dev_alloc_name(struct net_device *dev, const char *name)
1093{
1094 char buf[IFNAMSIZ];
1095 struct net *net;
1096 int ret;
1097
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001098 BUG_ON(!dev_net(dev));
1099 net = dev_net(dev);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001100 ret = __dev_alloc_name(net, name, buf);
1101 if (ret >= 0)
1102 strlcpy(dev->name, buf, IFNAMSIZ);
1103 return ret;
1104}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001105EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001106
Gao feng828de4f2012-09-13 20:58:27 +00001107static int dev_alloc_name_ns(struct net *net,
1108 struct net_device *dev,
1109 const char *name)
Octavian Purdilad9031022009-11-18 02:36:59 +00001110{
Gao feng828de4f2012-09-13 20:58:27 +00001111 char buf[IFNAMSIZ];
1112 int ret;
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001113
Gao feng828de4f2012-09-13 20:58:27 +00001114 ret = __dev_alloc_name(net, name, buf);
1115 if (ret >= 0)
1116 strlcpy(dev->name, buf, IFNAMSIZ);
1117 return ret;
1118}
1119
1120static int dev_get_valid_name(struct net *net,
1121 struct net_device *dev,
1122 const char *name)
1123{
1124 BUG_ON(!net);
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001125
Octavian Purdilad9031022009-11-18 02:36:59 +00001126 if (!dev_valid_name(name))
1127 return -EINVAL;
1128
Jiri Pirko1c5cae82011-04-30 01:21:32 +00001129 if (strchr(name, '%'))
Gao feng828de4f2012-09-13 20:58:27 +00001130 return dev_alloc_name_ns(net, dev, name);
Octavian Purdilad9031022009-11-18 02:36:59 +00001131 else if (__dev_get_by_name(net, name))
1132 return -EEXIST;
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001133 else if (dev->name != name)
1134 strlcpy(dev->name, name, IFNAMSIZ);
Octavian Purdilad9031022009-11-18 02:36:59 +00001135
1136 return 0;
1137}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139/**
1140 * dev_change_name - change name of a device
1141 * @dev: device
1142 * @newname: name (or format string) must be at least IFNAMSIZ
1143 *
1144 * Change name of a device, can pass format strings "eth%d".
1145 * for wildcarding.
1146 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001147int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
Tom Gundersen238fa362014-07-14 16:37:23 +02001149 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001150 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001152 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001153 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001156 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001158 net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 if (dev->flags & IFF_UP)
1160 return -EBUSY;
1161
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001162 write_seqcount_begin(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001163
1164 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001165 write_seqcount_end(&devnet_rename_seq);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001166 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001167 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001168
Herbert Xufcc5a032007-07-30 17:03:38 -07001169 memcpy(oldname, dev->name, IFNAMSIZ);
1170
Gao feng828de4f2012-09-13 20:58:27 +00001171 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001172 if (err < 0) {
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001173 write_seqcount_end(&devnet_rename_seq);
Octavian Purdilad9031022009-11-18 02:36:59 +00001174 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001177 if (oldname[0] && !strchr(oldname, '%'))
1178 netdev_info(dev, "renamed from %s\n", oldname);
1179
Tom Gundersen238fa362014-07-14 16:37:23 +02001180 old_assign_type = dev->name_assign_type;
1181 dev->name_assign_type = NET_NAME_RENAMED;
1182
Herbert Xufcc5a032007-07-30 17:03:38 -07001183rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001184 ret = device_rename(&dev->dev, dev->name);
1185 if (ret) {
1186 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001187 dev->name_assign_type = old_assign_type;
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001188 write_seqcount_end(&devnet_rename_seq);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001189 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001190 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001191
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001192 write_seqcount_end(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001193
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001194 netdev_adjacent_rename_links(dev, oldname);
1195
Herbert Xu7f988ea2007-07-30 16:35:46 -07001196 write_lock_bh(&dev_base_lock);
Eric Dumazet372b2312011-05-17 13:56:59 -04001197 hlist_del_rcu(&dev->name_hlist);
Eric Dumazet72c95282009-10-30 07:11:27 +00001198 write_unlock_bh(&dev_base_lock);
1199
1200 synchronize_rcu();
1201
1202 write_lock_bh(&dev_base_lock);
1203 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -07001204 write_unlock_bh(&dev_base_lock);
1205
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001206 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001207 ret = notifier_to_errno(ret);
1208
1209 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001210 /* err >= 0 after dev_alloc_name() or stores the first errno */
1211 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001212 err = ret;
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001213 write_seqcount_begin(&devnet_rename_seq);
Herbert Xufcc5a032007-07-30 17:03:38 -07001214 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001215 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001216 dev->name_assign_type = old_assign_type;
1217 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001218 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001219 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001220 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001221 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001222 }
1223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 return err;
1226}
1227
1228/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001229 * dev_set_alias - change ifalias of a device
1230 * @dev: device
1231 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001232 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001233 *
1234 * Set ifalias for a device,
1235 */
1236int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1237{
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001238 char *new_ifalias;
1239
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001240 ASSERT_RTNL();
1241
1242 if (len >= IFALIASZ)
1243 return -EINVAL;
1244
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001245 if (!len) {
Sachin Kamat388dfc22012-11-20 00:57:04 +00001246 kfree(dev->ifalias);
1247 dev->ifalias = NULL;
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001248 return 0;
1249 }
1250
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001251 new_ifalias = krealloc(dev->ifalias, len + 1, GFP_KERNEL);
1252 if (!new_ifalias)
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001253 return -ENOMEM;
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001254 dev->ifalias = new_ifalias;
Alexander Potapenkod2f459e2017-06-06 15:56:54 +02001255 memcpy(dev->ifalias, alias, len);
1256 dev->ifalias[len] = 0;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001257
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001258 return len;
1259}
1260
1261
1262/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001263 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001264 * @dev: device to cause notification
1265 *
1266 * Called to indicate a device has changed features.
1267 */
1268void netdev_features_change(struct net_device *dev)
1269{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001270 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001271}
1272EXPORT_SYMBOL(netdev_features_change);
1273
1274/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 * netdev_state_change - device changes state
1276 * @dev: device to cause notification
1277 *
1278 * Called to indicate a device has changed state. This function calls
1279 * the notifier chains for netdev_chain and sends a NEWLINK message
1280 * to the routing socket.
1281 */
1282void netdev_state_change(struct net_device *dev)
1283{
1284 if (dev->flags & IFF_UP) {
Loic Prylli5495119462014-07-01 21:39:43 -07001285 struct netdev_notifier_change_info change_info;
1286
1287 change_info.flags_changed = 0;
1288 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
1289 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001290 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001293EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Amerigo Wangee89bab2012-08-09 22:14:56 +00001295/**
1296 * netdev_notify_peers - notify network peers about existence of @dev
1297 * @dev: network device
1298 *
1299 * Generate traffic such that interested network peers are aware of
1300 * @dev, such as by generating a gratuitous ARP. This may be used when
1301 * a device wants to inform the rest of the network about some sort of
1302 * reconfiguration such as a failover event or virtual machine
1303 * migration.
1304 */
1305void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001306{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001307 rtnl_lock();
1308 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
1309 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001310}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001311EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001312
Patrick McHardybd380812010-02-26 06:34:53 +00001313static int __dev_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001315 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001316 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001318 ASSERT_RTNL();
1319
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 if (!netif_device_present(dev))
1321 return -ENODEV;
1322
Neil Hormanca99ca12013-02-05 08:05:43 +00001323 /* Block netpoll from trying to do any rx path servicing.
1324 * If we don't do this there is a chance ndo_poll_controller
1325 * or ndo_poll may be running while we open the device
1326 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001327 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001328
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001329 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1330 ret = notifier_to_errno(ret);
1331 if (ret)
1332 return ret;
1333
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001335
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001336 if (ops->ndo_validate_addr)
1337 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001338
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001339 if (!ret && ops->ndo_open)
1340 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
Eric W. Biederman66b55522014-03-27 15:39:03 -07001342 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001343
Jeff Garzikbada3392007-10-23 20:19:37 -07001344 if (ret)
1345 clear_bit(__LINK_STATE_START, &dev->state);
1346 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001348 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001350 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001352
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return ret;
1354}
Patrick McHardybd380812010-02-26 06:34:53 +00001355
1356/**
1357 * dev_open - prepare an interface for use.
1358 * @dev: device to open
1359 *
1360 * Takes a device from down to up state. The device's private open
1361 * function is invoked and then the multicast lists are loaded. Finally
1362 * the device is moved into the up state and a %NETDEV_UP message is
1363 * sent to the netdev notifier chain.
1364 *
1365 * Calling this function on an active interface is a nop. On a failure
1366 * a negative errno code is returned.
1367 */
1368int dev_open(struct net_device *dev)
1369{
1370 int ret;
1371
Patrick McHardybd380812010-02-26 06:34:53 +00001372 if (dev->flags & IFF_UP)
1373 return 0;
1374
Patrick McHardybd380812010-02-26 06:34:53 +00001375 ret = __dev_open(dev);
1376 if (ret < 0)
1377 return ret;
1378
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001379 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001380 call_netdevice_notifiers(NETDEV_UP, dev);
1381
1382 return ret;
1383}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001384EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385
Octavian Purdila44345722010-12-13 12:44:07 +00001386static int __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387{
Octavian Purdila44345722010-12-13 12:44:07 +00001388 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001389
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001390 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001391 might_sleep();
1392
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001393 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001394 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001395 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001396
Octavian Purdila44345722010-12-13 12:44:07 +00001397 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398
Octavian Purdila44345722010-12-13 12:44:07 +00001399 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Octavian Purdila44345722010-12-13 12:44:07 +00001401 /* Synchronize to scheduled poll. We cannot touch poll list, it
1402 * can be even on different cpu. So just clear netif_running().
1403 *
1404 * dev->stop() will invoke napi_disable() on all of it's
1405 * napi_struct instances on this device.
1406 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001407 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001408 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
Octavian Purdila44345722010-12-13 12:44:07 +00001410 dev_deactivate_many(head);
1411
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001412 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001413 const struct net_device_ops *ops = dev->netdev_ops;
1414
1415 /*
1416 * Call the device specific close. This cannot fail.
1417 * Only if device is UP
1418 *
1419 * We allow it to be called even after a DETACH hot-plug
1420 * event.
1421 */
1422 if (ops->ndo_stop)
1423 ops->ndo_stop(dev);
1424
Octavian Purdila44345722010-12-13 12:44:07 +00001425 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001426 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001427 }
1428
1429 return 0;
1430}
1431
1432static int __dev_close(struct net_device *dev)
1433{
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001434 int retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001435 LIST_HEAD(single);
1436
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001437 list_add(&dev->close_list, &single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001438 retval = __dev_close_many(&single);
1439 list_del(&single);
Neil Hormanca99ca12013-02-05 08:05:43 +00001440
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001441 return retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001442}
1443
David S. Miller99c4a262015-03-18 22:52:33 -04001444int dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001445{
1446 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001447
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001448 /* Remove the devices that don't need to be closed */
1449 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001450 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001451 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001452
1453 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001454
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001455 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001456 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001457 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001458 if (unlink)
1459 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001460 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 return 0;
1463}
David S. Miller99c4a262015-03-18 22:52:33 -04001464EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001465
1466/**
1467 * dev_close - shutdown an interface.
1468 * @dev: device to shutdown
1469 *
1470 * This function moves an active device into down state. A
1471 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1472 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1473 * chain.
1474 */
1475int dev_close(struct net_device *dev)
1476{
Eric Dumazete14a5992011-05-10 12:26:06 -07001477 if (dev->flags & IFF_UP) {
1478 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001479
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001480 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001481 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001482 list_del(&single);
1483 }
dingtianhongda6e3782013-05-27 19:53:31 +00001484 return 0;
Patrick McHardybd380812010-02-26 06:34:53 +00001485}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001486EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
1488
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001489/**
1490 * dev_disable_lro - disable Large Receive Offload on a device
1491 * @dev: device
1492 *
1493 * Disable Large Receive Offload (LRO) on a net device. Must be
1494 * called under RTNL. This is needed if received packets may be
1495 * forwarded to another interface.
1496 */
1497void dev_disable_lro(struct net_device *dev)
1498{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001499 struct net_device *lower_dev;
1500 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001501
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001502 dev->wanted_features &= ~NETIF_F_LRO;
1503 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001504
Michał Mirosław22d59692011-04-21 12:42:15 +00001505 if (unlikely(dev->features & NETIF_F_LRO))
1506 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001507
1508 netdev_for_each_lower_dev(dev, lower_dev, iter)
1509 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001510}
1511EXPORT_SYMBOL(dev_disable_lro);
1512
Jiri Pirko351638e2013-05-28 01:30:21 +00001513static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1514 struct net_device *dev)
1515{
1516 struct netdev_notifier_info info;
1517
1518 netdev_notifier_info_init(&info, dev);
1519 return nb->notifier_call(nb, val, &info);
1520}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001521
Eric W. Biederman881d9662007-09-17 11:56:21 -07001522static int dev_boot_phase = 1;
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524/**
1525 * register_netdevice_notifier - register a network notifier block
1526 * @nb: notifier
1527 *
1528 * Register a notifier to be called when network device events occur.
1529 * The notifier passed is linked into the kernel structures and must
1530 * not be reused until it has been unregistered. A negative errno code
1531 * is returned on a failure.
1532 *
1533 * When registered all registration and up events are replayed
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001534 * to the new notifier to allow device to have a race free
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 * view of the network device list.
1536 */
1537
1538int register_netdevice_notifier(struct notifier_block *nb)
1539{
1540 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001541 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001542 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 int err;
1544
1545 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001546 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001547 if (err)
1548 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001549 if (dev_boot_phase)
1550 goto unlock;
1551 for_each_net(net) {
1552 for_each_netdev(net, dev) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001553 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001554 err = notifier_to_errno(err);
1555 if (err)
1556 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557
Eric W. Biederman881d9662007-09-17 11:56:21 -07001558 if (!(dev->flags & IFF_UP))
1559 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001560
Jiri Pirko351638e2013-05-28 01:30:21 +00001561 call_netdevice_notifier(nb, NETDEV_UP, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001564
1565unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 rtnl_unlock();
1567 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001568
1569rollback:
1570 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001571 for_each_net(net) {
1572 for_each_netdev(net, dev) {
1573 if (dev == last)
RongQing.Li8f891482011-11-30 23:43:07 -05001574 goto outroll;
Herbert Xufcc5a032007-07-30 17:03:38 -07001575
Eric W. Biederman881d9662007-09-17 11:56:21 -07001576 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001577 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1578 dev);
1579 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001580 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001581 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001582 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001583 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001584
RongQing.Li8f891482011-11-30 23:43:07 -05001585outroll:
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001586 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001587 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001589EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591/**
1592 * unregister_netdevice_notifier - unregister a network notifier block
1593 * @nb: notifier
1594 *
1595 * Unregister a notifier previously registered by
1596 * register_netdevice_notifier(). The notifier is unlinked into the
1597 * kernel structures and may then be reused. A negative errno code
1598 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001599 *
1600 * After unregistering unregister and down device events are synthesized
1601 * for all devices on the device list to the removed notifier to remove
1602 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 */
1604
1605int unregister_netdevice_notifier(struct notifier_block *nb)
1606{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001607 struct net_device *dev;
1608 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001609 int err;
1610
1611 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001612 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001613 if (err)
1614 goto unlock;
1615
1616 for_each_net(net) {
1617 for_each_netdev(net, dev) {
1618 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001619 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1620 dev);
1621 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001622 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001623 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001624 }
1625 }
1626unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001627 rtnl_unlock();
1628 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001630EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001633 * call_netdevice_notifiers_info - call all network notifier blocks
1634 * @val: value passed unmodified to notifier function
1635 * @dev: net_device pointer passed unmodified to notifier function
1636 * @info: notifier information data
1637 *
1638 * Call all network notifier blocks. Parameters and return value
1639 * are as for raw_notifier_call_chain().
1640 */
1641
stephen hemminger1d143d92013-12-29 14:01:29 -08001642static int call_netdevice_notifiers_info(unsigned long val,
1643 struct net_device *dev,
1644 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00001645{
1646 ASSERT_RTNL();
1647 netdev_notifier_info_init(info, dev);
1648 return raw_notifier_call_chain(&netdev_chain, val, info);
1649}
Jiri Pirko351638e2013-05-28 01:30:21 +00001650
1651/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 * call_netdevice_notifiers - call all network notifier blocks
1653 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001654 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 *
1656 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001657 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 */
1659
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001660int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661{
Jiri Pirko351638e2013-05-28 01:30:21 +00001662 struct netdev_notifier_info info;
1663
1664 return call_netdevice_notifiers_info(val, dev, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001665}
stephen hemmingeredf947f2011-03-24 13:24:01 +00001666EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667
Pablo Neira1cf519002015-05-13 18:19:37 +02001668#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +02001669static struct static_key ingress_needed __read_mostly;
1670
1671void net_inc_ingress_queue(void)
1672{
1673 static_key_slow_inc(&ingress_needed);
1674}
1675EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
1676
1677void net_dec_ingress_queue(void)
1678{
1679 static_key_slow_dec(&ingress_needed);
1680}
1681EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
1682#endif
1683
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001684#ifdef CONFIG_NET_EGRESS
1685static struct static_key egress_needed __read_mostly;
1686
1687void net_inc_egress_queue(void)
1688{
1689 static_key_slow_inc(&egress_needed);
1690}
1691EXPORT_SYMBOL_GPL(net_inc_egress_queue);
1692
1693void net_dec_egress_queue(void)
1694{
1695 static_key_slow_dec(&egress_needed);
1696}
1697EXPORT_SYMBOL_GPL(net_dec_egress_queue);
1698#endif
1699
Ingo Molnarc5905af2012-02-24 08:31:31 +01001700static struct static_key netstamp_needed __read_mostly;
Eric Dumazetb90e5792011-11-28 11:16:50 +00001701#ifdef HAVE_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00001702static atomic_t netstamp_needed_deferred;
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001703static atomic_t netstamp_wanted;
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001704static void netstamp_clear(struct work_struct *work)
1705{
1706 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001707 int wanted;
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001708
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001709 wanted = atomic_add_return(deferred, &netstamp_wanted);
1710 if (wanted > 0)
1711 static_key_enable(&netstamp_needed);
1712 else
1713 static_key_disable(&netstamp_needed);
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001714}
1715static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001716#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
1718void net_enable_timestamp(void)
1719{
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001720#ifdef HAVE_JUMP_LABEL
1721 int wanted;
1722
1723 while (1) {
1724 wanted = atomic_read(&netstamp_wanted);
1725 if (wanted <= 0)
1726 break;
1727 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
1728 return;
1729 }
1730 atomic_inc(&netstamp_needed_deferred);
1731 schedule_work(&netstamp_work);
1732#else
Ingo Molnarc5905af2012-02-24 08:31:31 +01001733 static_key_slow_inc(&netstamp_needed);
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001734#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001736EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
1738void net_disable_timestamp(void)
1739{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001740#ifdef HAVE_JUMP_LABEL
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001741 int wanted;
1742
1743 while (1) {
1744 wanted = atomic_read(&netstamp_wanted);
1745 if (wanted <= 1)
1746 break;
1747 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
1748 return;
1749 }
1750 atomic_dec(&netstamp_needed_deferred);
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001751 schedule_work(&netstamp_work);
1752#else
Ingo Molnarc5905af2012-02-24 08:31:31 +01001753 static_key_slow_dec(&netstamp_needed);
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001754#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001756EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Eric Dumazet3b098e22010-05-15 23:57:10 -07001758static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759{
Eric Dumazet588f0332011-11-15 04:12:55 +00001760 skb->tstamp.tv64 = 0;
Ingo Molnarc5905af2012-02-24 08:31:31 +01001761 if (static_key_false(&netstamp_needed))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001762 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763}
1764
Eric Dumazet588f0332011-11-15 04:12:55 +00001765#define net_timestamp_check(COND, SKB) \
Ingo Molnarc5905af2012-02-24 08:31:31 +01001766 if (static_key_false(&netstamp_needed)) { \
Eric Dumazet588f0332011-11-15 04:12:55 +00001767 if ((COND) && !(SKB)->tstamp.tv64) \
1768 __net_timestamp(SKB); \
1769 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07001770
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02001771bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001772{
1773 unsigned int len;
1774
1775 if (!(dev->flags & IFF_UP))
1776 return false;
1777
1778 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1779 if (skb->len <= len)
1780 return true;
1781
1782 /* if TSO is enabled, we don't care about the length as the packet
1783 * could be forwarded without being segmented before
1784 */
1785 if (skb_is_gso(skb))
1786 return true;
1787
1788 return false;
1789}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001790EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001791
Herbert Xua0265d22014-04-17 13:45:03 +08001792int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1793{
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001794 int ret = ____dev_forward_skb(dev, skb);
1795
1796 if (likely(!ret)) {
1797 skb->protocol = eth_type_trans(skb, dev);
1798 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08001799 }
1800
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001801 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08001802}
1803EXPORT_SYMBOL_GPL(__dev_forward_skb);
1804
Arnd Bergmann44540962009-11-26 06:07:08 +00001805/**
1806 * dev_forward_skb - loopback an skb to another netif
1807 *
1808 * @dev: destination network device
1809 * @skb: buffer to forward
1810 *
1811 * return values:
1812 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07001813 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00001814 *
1815 * dev_forward_skb can be used for injecting an skb from the
1816 * start_xmit function of one device into the receive queue
1817 * of another device.
1818 *
1819 * The receiving device may be in another namespace, so
1820 * we have to clear all information in the skb that could
1821 * impact namespace isolation.
1822 */
1823int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1824{
Herbert Xua0265d22014-04-17 13:45:03 +08001825 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00001826}
1827EXPORT_SYMBOL_GPL(dev_forward_skb);
1828
Changli Gao71d9dec2010-12-15 19:57:25 +00001829static inline int deliver_skb(struct sk_buff *skb,
1830 struct packet_type *pt_prev,
1831 struct net_device *orig_dev)
1832{
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00001833 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
1834 return -ENOMEM;
Changli Gao71d9dec2010-12-15 19:57:25 +00001835 atomic_inc(&skb->users);
1836 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1837}
1838
Salam Noureddine7866a622015-01-27 11:35:48 -08001839static inline void deliver_ptype_list_skb(struct sk_buff *skb,
1840 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001841 struct net_device *orig_dev,
1842 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08001843 struct list_head *ptype_list)
1844{
1845 struct packet_type *ptype, *pt_prev = *pt;
1846
1847 list_for_each_entry_rcu(ptype, ptype_list, list) {
1848 if (ptype->type != type)
1849 continue;
1850 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001851 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08001852 pt_prev = ptype;
1853 }
1854 *pt = pt_prev;
1855}
1856
Eric Leblondc0de08d2012-08-16 22:02:58 +00001857static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1858{
Eric Leblonda3d744e2012-11-06 02:10:10 +00001859 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001860 return false;
1861
1862 if (ptype->id_match)
1863 return ptype->id_match(ptype, skb->sk);
1864 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
1865 return true;
1866
1867 return false;
1868}
1869
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870/*
1871 * Support routine. Sends outgoing frames to any network
1872 * taps currently in use.
1873 */
1874
David Ahern74b20582016-05-10 11:19:50 -07001875void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876{
1877 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00001878 struct sk_buff *skb2 = NULL;
1879 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08001880 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08001883again:
1884 list_for_each_entry_rcu(ptype, ptype_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 /* Never send packets back to the socket
1886 * they originated from - MvS (miquels@drinkel.ow.org)
1887 */
Salam Noureddine7866a622015-01-27 11:35:48 -08001888 if (skb_loop_sk(ptype, skb))
1889 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00001890
Salam Noureddine7866a622015-01-27 11:35:48 -08001891 if (pt_prev) {
1892 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00001893 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08001894 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 }
Salam Noureddine7866a622015-01-27 11:35:48 -08001896
1897 /* need to clone skb, done only once */
1898 skb2 = skb_clone(skb, GFP_ATOMIC);
1899 if (!skb2)
1900 goto out_unlock;
1901
1902 net_timestamp_set(skb2);
1903
1904 /* skb->nh should be correctly
1905 * set by sender, so that the second statement is
1906 * just protection against buggy protocols.
1907 */
1908 skb_reset_mac_header(skb2);
1909
1910 if (skb_network_header(skb2) < skb2->data ||
1911 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
1912 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
1913 ntohs(skb2->protocol),
1914 dev->name);
1915 skb_reset_network_header(skb2);
1916 }
1917
1918 skb2->transport_header = skb2->network_header;
1919 skb2->pkt_type = PACKET_OUTGOING;
1920 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 }
Salam Noureddine7866a622015-01-27 11:35:48 -08001922
1923 if (ptype_list == &ptype_all) {
1924 ptype_list = &dev->ptype_all;
1925 goto again;
1926 }
1927out_unlock:
Changli Gao71d9dec2010-12-15 19:57:25 +00001928 if (pt_prev)
1929 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 rcu_read_unlock();
1931}
David Ahern74b20582016-05-10 11:19:50 -07001932EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Ben Hutchings2c530402012-07-10 10:55:09 +00001934/**
1935 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00001936 * @dev: Network device
1937 * @txq: number of queues available
1938 *
1939 * If real_num_tx_queues is changed the tc mappings may no longer be
1940 * valid. To resolve this verify the tc mapping remains valid and if
1941 * not NULL the mapping. With no priorities mapping to this
1942 * offset/count pair it will no longer be used. In the worst case TC0
1943 * is invalid nothing can be done so disable priority mappings. If is
1944 * expected that drivers will fix this mapping if they can before
1945 * calling netif_set_real_num_tx_queues.
1946 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00001947static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00001948{
1949 int i;
1950 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
1951
1952 /* If TC0 is invalidated disable TC mapping */
1953 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001954 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00001955 dev->num_tc = 0;
1956 return;
1957 }
1958
1959 /* Invalidated prio to tc mappings set to TC0 */
1960 for (i = 1; i < TC_BITMASK + 1; i++) {
1961 int q = netdev_get_prio_tc_map(dev, i);
1962
1963 tc = &dev->tc_to_txq[q];
1964 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001965 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
1966 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00001967 netdev_set_prio_tc_map(dev, i, 0);
1968 }
1969 }
1970}
1971
Alexander Duyck537c00d2013-01-10 08:57:02 +00001972#ifdef CONFIG_XPS
1973static DEFINE_MUTEX(xps_map_mutex);
1974#define xmap_dereference(P) \
1975 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
1976
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001977static struct xps_map *remove_xps_queue(struct xps_dev_maps *dev_maps,
1978 int cpu, u16 index)
1979{
1980 struct xps_map *map = NULL;
1981 int pos;
1982
1983 if (dev_maps)
1984 map = xmap_dereference(dev_maps->cpu_map[cpu]);
1985
1986 for (pos = 0; map && pos < map->len; pos++) {
1987 if (map->queues[pos] == index) {
1988 if (map->len > 1) {
1989 map->queues[pos] = map->queues[--map->len];
1990 } else {
1991 RCU_INIT_POINTER(dev_maps->cpu_map[cpu], NULL);
1992 kfree_rcu(map, rcu);
1993 map = NULL;
1994 }
1995 break;
1996 }
1997 }
1998
1999 return map;
2000}
2001
Alexander Duyck024e9672013-01-10 08:57:46 +00002002static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002003{
2004 struct xps_dev_maps *dev_maps;
Alexander Duyck024e9672013-01-10 08:57:46 +00002005 int cpu, i;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002006 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002007
2008 mutex_lock(&xps_map_mutex);
2009 dev_maps = xmap_dereference(dev->xps_maps);
2010
2011 if (!dev_maps)
2012 goto out_no_maps;
2013
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002014 for_each_possible_cpu(cpu) {
Alexander Duyck024e9672013-01-10 08:57:46 +00002015 for (i = index; i < dev->num_tx_queues; i++) {
2016 if (!remove_xps_queue(dev_maps, cpu, i))
2017 break;
2018 }
2019 if (i == dev->num_tx_queues)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002020 active = true;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002021 }
2022
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002023 if (!active) {
Alexander Duyck537c00d2013-01-10 08:57:02 +00002024 RCU_INIT_POINTER(dev->xps_maps, NULL);
2025 kfree_rcu(dev_maps, rcu);
2026 }
2027
Alexander Duyck024e9672013-01-10 08:57:46 +00002028 for (i = index; i < dev->num_tx_queues; i++)
2029 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, i),
2030 NUMA_NO_NODE);
2031
Alexander Duyck537c00d2013-01-10 08:57:02 +00002032out_no_maps:
2033 mutex_unlock(&xps_map_mutex);
2034}
2035
Alexander Duyck01c5f862013-01-10 08:57:35 +00002036static struct xps_map *expand_xps_map(struct xps_map *map,
2037 int cpu, u16 index)
2038{
2039 struct xps_map *new_map;
2040 int alloc_len = XPS_MIN_MAP_ALLOC;
2041 int i, pos;
2042
2043 for (pos = 0; map && pos < map->len; pos++) {
2044 if (map->queues[pos] != index)
2045 continue;
2046 return map;
2047 }
2048
2049 /* Need to add queue to this CPU's existing map */
2050 if (map) {
2051 if (pos < map->alloc_len)
2052 return map;
2053
2054 alloc_len = map->alloc_len * 2;
2055 }
2056
2057 /* Need to allocate new map to store queue on this CPU's map */
2058 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2059 cpu_to_node(cpu));
2060 if (!new_map)
2061 return NULL;
2062
2063 for (i = 0; i < pos; i++)
2064 new_map->queues[i] = map->queues[i];
2065 new_map->alloc_len = alloc_len;
2066 new_map->len = pos;
2067
2068 return new_map;
2069}
2070
Michael S. Tsirkin35735402013-10-02 09:14:06 +03002071int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2072 u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002073{
Alexander Duyck01c5f862013-01-10 08:57:35 +00002074 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002075 struct xps_map *map, *new_map;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002076 int maps_sz = max_t(unsigned int, XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002077 int cpu, numa_node_id = -2;
2078 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002079
2080 mutex_lock(&xps_map_mutex);
2081
2082 dev_maps = xmap_dereference(dev->xps_maps);
2083
Alexander Duyck01c5f862013-01-10 08:57:35 +00002084 /* allocate memory for queue storage */
2085 for_each_online_cpu(cpu) {
2086 if (!cpumask_test_cpu(cpu, mask))
2087 continue;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002088
Alexander Duyck01c5f862013-01-10 08:57:35 +00002089 if (!new_dev_maps)
2090 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002091 if (!new_dev_maps) {
2092 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002093 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002094 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002095
2096 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2097 NULL;
2098
2099 map = expand_xps_map(map, cpu, index);
2100 if (!map)
2101 goto error;
2102
2103 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
2104 }
2105
2106 if (!new_dev_maps)
2107 goto out_no_new_maps;
2108
2109 for_each_possible_cpu(cpu) {
2110 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu)) {
2111 /* add queue to CPU maps */
2112 int pos = 0;
2113
2114 map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2115 while ((pos < map->len) && (map->queues[pos] != index))
2116 pos++;
2117
2118 if (pos == map->len)
2119 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002120#ifdef CONFIG_NUMA
Alexander Duyck537c00d2013-01-10 08:57:02 +00002121 if (numa_node_id == -2)
2122 numa_node_id = cpu_to_node(cpu);
2123 else if (numa_node_id != cpu_to_node(cpu))
2124 numa_node_id = -1;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002125#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002126 } else if (dev_maps) {
2127 /* fill in the new device map from the old device map */
2128 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2129 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002130 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002131
Alexander Duyck537c00d2013-01-10 08:57:02 +00002132 }
2133
Alexander Duyck01c5f862013-01-10 08:57:35 +00002134 rcu_assign_pointer(dev->xps_maps, new_dev_maps);
2135
Alexander Duyck537c00d2013-01-10 08:57:02 +00002136 /* Cleanup old maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002137 if (dev_maps) {
2138 for_each_possible_cpu(cpu) {
2139 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2140 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2141 if (map && map != new_map)
2142 kfree_rcu(map, rcu);
2143 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002144
Alexander Duyck537c00d2013-01-10 08:57:02 +00002145 kfree_rcu(dev_maps, rcu);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002146 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002147
Alexander Duyck01c5f862013-01-10 08:57:35 +00002148 dev_maps = new_dev_maps;
2149 active = true;
2150
2151out_no_new_maps:
2152 /* update Tx queue numa node */
Alexander Duyck537c00d2013-01-10 08:57:02 +00002153 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2154 (numa_node_id >= 0) ? numa_node_id :
2155 NUMA_NO_NODE);
2156
Alexander Duyck01c5f862013-01-10 08:57:35 +00002157 if (!dev_maps)
2158 goto out_no_maps;
2159
2160 /* removes queue from unused CPUs */
2161 for_each_possible_cpu(cpu) {
2162 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu))
2163 continue;
2164
2165 if (remove_xps_queue(dev_maps, cpu, index))
2166 active = true;
2167 }
2168
2169 /* free map if not active */
2170 if (!active) {
2171 RCU_INIT_POINTER(dev->xps_maps, NULL);
2172 kfree_rcu(dev_maps, rcu);
2173 }
2174
2175out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002176 mutex_unlock(&xps_map_mutex);
2177
2178 return 0;
2179error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002180 /* remove any maps that we added */
2181 for_each_possible_cpu(cpu) {
2182 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2183 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2184 NULL;
2185 if (new_map && new_map != map)
2186 kfree(new_map);
2187 }
2188
Alexander Duyck537c00d2013-01-10 08:57:02 +00002189 mutex_unlock(&xps_map_mutex);
2190
Alexander Duyck537c00d2013-01-10 08:57:02 +00002191 kfree(new_dev_maps);
2192 return -ENOMEM;
2193}
2194EXPORT_SYMBOL(netif_set_xps_queue);
2195
2196#endif
John Fastabendf0796d52010-07-01 13:21:57 +00002197/*
2198 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
2199 * greater then real_num_tx_queues stale skbs on the qdisc must be flushed.
2200 */
Tom Herberte6484932010-10-18 18:04:39 +00002201int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002202{
Tom Herbert1d24eb42010-11-21 13:17:27 +00002203 int rc;
2204
Tom Herberte6484932010-10-18 18:04:39 +00002205 if (txq < 1 || txq > dev->num_tx_queues)
2206 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002207
Ben Hutchings5c565802011-02-15 19:39:21 +00002208 if (dev->reg_state == NETREG_REGISTERED ||
2209 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002210 ASSERT_RTNL();
2211
Tom Herbert1d24eb42010-11-21 13:17:27 +00002212 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2213 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002214 if (rc)
2215 return rc;
2216
John Fastabend4f57c082011-01-17 08:06:04 +00002217 if (dev->num_tc)
2218 netif_setup_tc(dev, txq);
2219
Alexander Duyck024e9672013-01-10 08:57:46 +00002220 if (txq < dev->real_num_tx_queues) {
Tom Herberte6484932010-10-18 18:04:39 +00002221 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002222#ifdef CONFIG_XPS
2223 netif_reset_xps_queues_gt(dev, txq);
2224#endif
2225 }
John Fastabendf0796d52010-07-01 13:21:57 +00002226 }
Tom Herberte6484932010-10-18 18:04:39 +00002227
2228 dev->real_num_tx_queues = txq;
2229 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002230}
2231EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002232
Michael Daltona953be52014-01-16 22:23:28 -08002233#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002234/**
2235 * netif_set_real_num_rx_queues - set actual number of RX queues used
2236 * @dev: Network device
2237 * @rxq: Actual number of RX queues
2238 *
2239 * This must be called either with the rtnl_lock held or before
2240 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002241 * negative error code. If called before registration, it always
2242 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002243 */
2244int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2245{
2246 int rc;
2247
Tom Herbertbd25fa72010-10-18 18:00:16 +00002248 if (rxq < 1 || rxq > dev->num_rx_queues)
2249 return -EINVAL;
2250
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002251 if (dev->reg_state == NETREG_REGISTERED) {
2252 ASSERT_RTNL();
2253
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002254 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2255 rxq);
2256 if (rc)
2257 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002258 }
2259
2260 dev->real_num_rx_queues = rxq;
2261 return 0;
2262}
2263EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2264#endif
2265
Ben Hutchings2c530402012-07-10 10:55:09 +00002266/**
2267 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002268 *
2269 * This routine should set an upper limit on the number of RSS queues
2270 * used by default by multiqueue devices.
2271 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002272int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002273{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05302274 return is_kdump_kernel() ?
2275 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00002276}
2277EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2278
Eric Dumazet3bcb8462016-06-04 20:02:28 -07002279static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002280{
2281 struct softnet_data *sd;
2282 unsigned long flags;
2283
2284 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05002285 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002286 q->next_sched = NULL;
2287 *sd->output_queue_tailp = q;
2288 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002289 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2290 local_irq_restore(flags);
2291}
2292
David S. Miller37437bb2008-07-16 02:15:04 -07002293void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002294{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002295 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2296 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002297}
2298EXPORT_SYMBOL(__netif_schedule);
2299
Eric Dumazete6247022013-12-05 04:45:08 -08002300struct dev_kfree_skb_cb {
2301 enum skb_free_reason reason;
2302};
2303
2304static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002305{
Eric Dumazete6247022013-12-05 04:45:08 -08002306 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002307}
Denis Vlasenko56079432006-03-29 15:57:29 -08002308
John Fastabend46e5da42014-09-12 20:04:52 -07002309void netif_schedule_queue(struct netdev_queue *txq)
2310{
2311 rcu_read_lock();
2312 if (!(txq->state & QUEUE_STATE_ANY_XOFF)) {
2313 struct Qdisc *q = rcu_dereference(txq->qdisc);
2314
2315 __netif_schedule(q);
2316 }
2317 rcu_read_unlock();
2318}
2319EXPORT_SYMBOL(netif_schedule_queue);
2320
2321/**
2322 * netif_wake_subqueue - allow sending packets on subqueue
2323 * @dev: network device
2324 * @queue_index: sub queue index
2325 *
2326 * Resume individual transmit queue of a device with multiple transmit queues.
2327 */
2328void netif_wake_subqueue(struct net_device *dev, u16 queue_index)
2329{
2330 struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
2331
2332 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &txq->state)) {
2333 struct Qdisc *q;
2334
2335 rcu_read_lock();
2336 q = rcu_dereference(txq->qdisc);
2337 __netif_schedule(q);
2338 rcu_read_unlock();
2339 }
2340}
2341EXPORT_SYMBOL(netif_wake_subqueue);
2342
2343void netif_tx_wake_queue(struct netdev_queue *dev_queue)
2344{
2345 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
2346 struct Qdisc *q;
2347
2348 rcu_read_lock();
2349 q = rcu_dereference(dev_queue->qdisc);
2350 __netif_schedule(q);
2351 rcu_read_unlock();
2352 }
2353}
2354EXPORT_SYMBOL(netif_tx_wake_queue);
2355
Eric Dumazete6247022013-12-05 04:45:08 -08002356void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2357{
2358 unsigned long flags;
2359
2360 if (likely(atomic_read(&skb->users) == 1)) {
2361 smp_rmb();
2362 atomic_set(&skb->users, 0);
2363 } else if (likely(!atomic_dec_and_test(&skb->users))) {
2364 return;
2365 }
2366 get_kfree_skb_cb(skb)->reason = reason;
2367 local_irq_save(flags);
2368 skb->next = __this_cpu_read(softnet_data.completion_queue);
2369 __this_cpu_write(softnet_data.completion_queue, skb);
2370 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2371 local_irq_restore(flags);
2372}
2373EXPORT_SYMBOL(__dev_kfree_skb_irq);
2374
2375void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002376{
2377 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002378 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002379 else
2380 dev_kfree_skb(skb);
2381}
Eric Dumazete6247022013-12-05 04:45:08 -08002382EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002383
2384
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002385/**
2386 * netif_device_detach - mark device as removed
2387 * @dev: network device
2388 *
2389 * Mark device as removed from system and therefore no longer available.
2390 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002391void netif_device_detach(struct net_device *dev)
2392{
2393 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2394 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002395 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002396 }
2397}
2398EXPORT_SYMBOL(netif_device_detach);
2399
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002400/**
2401 * netif_device_attach - mark device as attached
2402 * @dev: network device
2403 *
2404 * Mark device as attached from system and restart if needed.
2405 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002406void netif_device_attach(struct net_device *dev)
2407{
2408 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2409 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002410 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002411 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002412 }
2413}
2414EXPORT_SYMBOL(netif_device_attach);
2415
Jiri Pirko5605c762015-05-12 14:56:12 +02002416/*
2417 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
2418 * to be used as a distribution range.
2419 */
2420u16 __skb_tx_hash(const struct net_device *dev, struct sk_buff *skb,
2421 unsigned int num_tx_queues)
2422{
2423 u32 hash;
2424 u16 qoffset = 0;
2425 u16 qcount = num_tx_queues;
2426
2427 if (skb_rx_queue_recorded(skb)) {
2428 hash = skb_get_rx_queue(skb);
2429 while (unlikely(hash >= num_tx_queues))
2430 hash -= num_tx_queues;
2431 return hash;
2432 }
2433
2434 if (dev->num_tc) {
2435 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
2436 qoffset = dev->tc_to_txq[tc].offset;
2437 qcount = dev->tc_to_txq[tc].count;
2438 }
2439
2440 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
2441}
2442EXPORT_SYMBOL(__skb_tx_hash);
2443
Ben Hutchings36c92472012-01-17 07:57:56 +00002444static void skb_warn_bad_offload(const struct sk_buff *skb)
2445{
Wei Tang84d15ae2016-06-16 21:17:49 +08002446 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00002447 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01002448 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00002449
Ben Greearc846ad92013-04-19 10:45:52 +00002450 if (!net_ratelimit())
2451 return;
2452
Bjørn Mork88ad4172015-11-16 19:16:40 +01002453 if (dev) {
2454 if (dev->dev.parent)
2455 name = dev_driver_string(dev->dev.parent);
2456 else
2457 name = netdev_name(dev);
2458 }
Ben Hutchings36c92472012-01-17 07:57:56 +00002459 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2460 "gso_type=%d ip_summed=%d\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01002461 name, dev ? &dev->features : &null_features,
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002462 skb->sk ? &skb->sk->sk_route_caps : &null_features,
Ben Hutchings36c92472012-01-17 07:57:56 +00002463 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2464 skb_shinfo(skb)->gso_type, skb->ip_summed);
2465}
2466
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467/*
2468 * Invalidate hardware checksum when packet is to be mangled, and
2469 * complete checksum manually on outgoing path.
2470 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002471int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472{
Al Virod3bc23e2006-11-14 21:24:49 -08002473 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002474 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
Patrick McHardy84fa7932006-08-29 16:44:56 -07002476 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002477 goto out_set_summed;
2478
2479 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002480 skb_warn_bad_offload(skb);
2481 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 }
2483
Eric Dumazetcef401d2013-01-25 20:34:37 +00002484 /* Before computing a checksum, we should make sure no frag could
2485 * be modified by an external entity : checksum could be wrong.
2486 */
2487 if (skb_has_shared_frag(skb)) {
2488 ret = __skb_linearize(skb);
2489 if (ret)
2490 goto out;
2491 }
2492
Michał Mirosław55508d62010-12-14 15:24:08 +00002493 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002494 BUG_ON(offset >= skb_headlen(skb));
2495 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2496
2497 offset += skb->csum_offset;
2498 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2499
2500 if (skb_cloned(skb) &&
2501 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2503 if (ret)
2504 goto out;
2505 }
2506
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07002507 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07002508out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002510out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 return ret;
2512}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002513EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Tom Herbert6ae23ad2015-12-14 11:19:46 -08002515/* skb_csum_offload_check - Driver helper function to determine if a device
2516 * with limited checksum offload capabilities is able to offload the checksum
2517 * for a given packet.
2518 *
2519 * Arguments:
2520 * skb - sk_buff for the packet in question
2521 * spec - contains the description of what device can offload
2522 * csum_encapped - returns true if the checksum being offloaded is
2523 * encpasulated. That is it is checksum for the transport header
2524 * in the inner headers.
2525 * checksum_help - when set indicates that helper function should
2526 * call skb_checksum_help if offload checks fail
2527 *
2528 * Returns:
2529 * true: Packet has passed the checksum checks and should be offloadable to
2530 * the device (a driver may still need to check for additional
2531 * restrictions of its device)
2532 * false: Checksum is not offloadable. If checksum_help was set then
2533 * skb_checksum_help was called to resolve checksum for non-GSO
2534 * packets and when IP protocol is not SCTP
2535 */
2536bool __skb_csum_offload_chk(struct sk_buff *skb,
2537 const struct skb_csum_offl_spec *spec,
2538 bool *csum_encapped,
2539 bool csum_help)
2540{
2541 struct iphdr *iph;
2542 struct ipv6hdr *ipv6;
2543 void *nhdr;
2544 int protocol;
2545 u8 ip_proto;
2546
2547 if (skb->protocol == htons(ETH_P_8021Q) ||
2548 skb->protocol == htons(ETH_P_8021AD)) {
2549 if (!spec->vlan_okay)
2550 goto need_help;
2551 }
2552
2553 /* We check whether the checksum refers to a transport layer checksum in
2554 * the outermost header or an encapsulated transport layer checksum that
2555 * corresponds to the inner headers of the skb. If the checksum is for
2556 * something else in the packet we need help.
2557 */
2558 if (skb_checksum_start_offset(skb) == skb_transport_offset(skb)) {
2559 /* Non-encapsulated checksum */
2560 protocol = eproto_to_ipproto(vlan_get_protocol(skb));
2561 nhdr = skb_network_header(skb);
2562 *csum_encapped = false;
2563 if (spec->no_not_encapped)
2564 goto need_help;
2565 } else if (skb->encapsulation && spec->encap_okay &&
2566 skb_checksum_start_offset(skb) ==
2567 skb_inner_transport_offset(skb)) {
2568 /* Encapsulated checksum */
2569 *csum_encapped = true;
2570 switch (skb->inner_protocol_type) {
2571 case ENCAP_TYPE_ETHER:
2572 protocol = eproto_to_ipproto(skb->inner_protocol);
2573 break;
2574 case ENCAP_TYPE_IPPROTO:
2575 protocol = skb->inner_protocol;
2576 break;
2577 }
2578 nhdr = skb_inner_network_header(skb);
2579 } else {
2580 goto need_help;
2581 }
2582
2583 switch (protocol) {
2584 case IPPROTO_IP:
2585 if (!spec->ipv4_okay)
2586 goto need_help;
2587 iph = nhdr;
2588 ip_proto = iph->protocol;
2589 if (iph->ihl != 5 && !spec->ip_options_okay)
2590 goto need_help;
2591 break;
2592 case IPPROTO_IPV6:
2593 if (!spec->ipv6_okay)
2594 goto need_help;
2595 if (spec->no_encapped_ipv6 && *csum_encapped)
2596 goto need_help;
2597 ipv6 = nhdr;
2598 nhdr += sizeof(*ipv6);
2599 ip_proto = ipv6->nexthdr;
2600 break;
2601 default:
2602 goto need_help;
2603 }
2604
2605ip_proto_again:
2606 switch (ip_proto) {
2607 case IPPROTO_TCP:
2608 if (!spec->tcp_okay ||
2609 skb->csum_offset != offsetof(struct tcphdr, check))
2610 goto need_help;
2611 break;
2612 case IPPROTO_UDP:
2613 if (!spec->udp_okay ||
2614 skb->csum_offset != offsetof(struct udphdr, check))
2615 goto need_help;
2616 break;
2617 case IPPROTO_SCTP:
2618 if (!spec->sctp_okay ||
2619 skb->csum_offset != offsetof(struct sctphdr, checksum))
2620 goto cant_help;
2621 break;
2622 case NEXTHDR_HOP:
2623 case NEXTHDR_ROUTING:
2624 case NEXTHDR_DEST: {
2625 u8 *opthdr = nhdr;
2626
2627 if (protocol != IPPROTO_IPV6 || !spec->ext_hdrs_okay)
2628 goto need_help;
2629
2630 ip_proto = opthdr[0];
2631 nhdr += (opthdr[1] + 1) << 3;
2632
2633 goto ip_proto_again;
2634 }
2635 default:
2636 goto need_help;
2637 }
2638
2639 /* Passed the tests for offloading checksum */
2640 return true;
2641
2642need_help:
2643 if (csum_help && !skb_shinfo(skb)->gso_size)
2644 skb_checksum_help(skb);
2645cant_help:
2646 return false;
2647}
2648EXPORT_SYMBOL(__skb_csum_offload_chk);
2649
Vlad Yasevich53d64712014-03-27 17:26:18 -04002650__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002651{
2652 __be16 type = skb->protocol;
2653
Pravin B Shelar19acc322013-05-07 20:41:07 +00002654 /* Tunnel gso handlers can set protocol to ethernet. */
2655 if (type == htons(ETH_P_TEB)) {
2656 struct ethhdr *eth;
2657
2658 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
2659 return 0;
2660
2661 eth = (struct ethhdr *)skb_mac_header(skb);
2662 type = eth->h_proto;
2663 }
2664
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09002665 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002666}
2667
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002668/**
2669 * skb_mac_gso_segment - mac layer segmentation handler.
2670 * @skb: buffer to segment
2671 * @features: features for the output path (see dev->features)
2672 */
2673struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
2674 netdev_features_t features)
2675{
2676 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
2677 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04002678 int vlan_depth = skb->mac_len;
2679 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002680
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002681 if (unlikely(!type))
2682 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002683
Vlad Yasevich53d64712014-03-27 17:26:18 -04002684 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002685
2686 rcu_read_lock();
2687 list_for_each_entry_rcu(ptype, &offload_base, list) {
2688 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002689 segs = ptype->callbacks.gso_segment(skb, features);
2690 break;
2691 }
2692 }
2693 rcu_read_unlock();
2694
2695 __skb_push(skb, skb->data - skb_mac_header(skb));
2696
2697 return segs;
2698}
2699EXPORT_SYMBOL(skb_mac_gso_segment);
2700
2701
Cong Wang12b00042013-02-05 16:36:38 +00002702/* openvswitch calls this on rx path, so we need a different check.
2703 */
2704static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
2705{
2706 if (tx_path)
Eric Dumazet48a70be2017-02-03 14:29:42 -08002707 return skb->ip_summed != CHECKSUM_PARTIAL &&
2708 skb->ip_summed != CHECKSUM_NONE;
2709
2710 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00002711}
2712
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002713/**
Cong Wang12b00042013-02-05 16:36:38 +00002714 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002715 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002716 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00002717 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002718 *
2719 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07002720 *
2721 * It may return NULL if the skb requires no segmentation. This is
2722 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03002723 *
2724 * Segmentation preserves SKB_SGO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002725 */
Cong Wang12b00042013-02-05 16:36:38 +00002726struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
2727 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002728{
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002729 struct sk_buff *segs;
2730
Cong Wang12b00042013-02-05 16:36:38 +00002731 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002732 int err;
2733
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002734 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02002735 err = skb_cow_head(skb, 0);
2736 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07002737 return ERR_PTR(err);
2738 }
2739
Alexander Duyck802ab552016-04-10 21:45:03 -04002740 /* Only report GSO partial support if it will enable us to
2741 * support segmentation on this frame without needing additional
2742 * work.
2743 */
2744 if (features & NETIF_F_GSO_PARTIAL) {
2745 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
2746 struct net_device *dev = skb->dev;
2747
2748 partial_features |= dev->features & dev->gso_partial_features;
2749 if (!skb_gso_ok(skb, features | partial_features))
2750 features &= ~NETIF_F_GSO_PARTIAL;
2751 }
2752
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03002753 BUILD_BUG_ON(SKB_SGO_CB_OFFSET +
2754 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
2755
Pravin B Shelar68c33162013-02-14 14:02:41 +00002756 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07002757 SKB_GSO_CB(skb)->encap_level = 0;
2758
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002759 skb_reset_mac_header(skb);
2760 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002761
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002762 segs = skb_mac_gso_segment(skb, features);
2763
2764 if (unlikely(skb_needs_check(skb, tx_path)))
2765 skb_warn_bad_offload(skb);
2766
2767 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002768}
Cong Wang12b00042013-02-05 16:36:38 +00002769EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002770
Herbert Xufb286bb2005-11-10 13:01:24 -08002771/* Take action when hardware reception checksum errors are detected. */
2772#ifdef CONFIG_BUG
2773void netdev_rx_csum_fault(struct net_device *dev)
2774{
2775 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002776 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08002777 dump_stack();
2778 }
2779}
2780EXPORT_SYMBOL(netdev_rx_csum_fault);
2781#endif
2782
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783/* Actually, we should eliminate this check as soon as we know, that:
2784 * 1. IOMMU is present and allows to map all the memory.
2785 * 2. No high memory really exists on this machine.
2786 */
2787
Florian Westphalc1e756b2014-05-05 15:00:44 +02002788static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789{
Herbert Xu3d3a8532006-06-27 13:33:10 -07002790#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 int i;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002792 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002793 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2794 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2795 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002796 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00002797 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002800 if (PCI_DMA_BUS_IS_PHYS) {
2801 struct device *pdev = dev->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Eric Dumazet9092c652010-04-02 13:34:49 -07002803 if (!pdev)
2804 return 0;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002805 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002806 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2807 dma_addr_t addr = page_to_phys(skb_frag_page(frag));
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002808 if (!pdev->dma_mask || addr + PAGE_SIZE - 1 > *pdev->dma_mask)
2809 return 1;
2810 }
2811 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07002812#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 return 0;
2814}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815
Simon Horman3b392dd2014-06-04 08:53:17 +09002816/* If MPLS offload request, verify we are testing hardware MPLS features
2817 * instead of standard features for the netdev.
2818 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08002819#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09002820static netdev_features_t net_mpls_features(struct sk_buff *skb,
2821 netdev_features_t features,
2822 __be16 type)
2823{
Simon Horman25cd9ba2014-10-06 05:05:13 -07002824 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09002825 features &= skb->dev->mpls_features;
2826
2827 return features;
2828}
2829#else
2830static netdev_features_t net_mpls_features(struct sk_buff *skb,
2831 netdev_features_t features,
2832 __be16 type)
2833{
2834 return features;
2835}
2836#endif
2837
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002838static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02002839 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00002840{
Vlad Yasevich53d64712014-03-27 17:26:18 -04002841 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09002842 __be16 type;
2843
2844 type = skb_network_protocol(skb, &tmp);
2845 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04002846
Ed Cashinc0d680e2012-09-19 15:49:00 +00002847 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09002848 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07002849 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00002850 }
Eric Dumazet948e1372017-01-18 12:12:17 -08002851 if (illegal_highdma(skb->dev, skb))
2852 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00002853
2854 return features;
2855}
2856
Toshiaki Makitae38f3022015-03-27 14:31:13 +09002857netdev_features_t passthru_features_check(struct sk_buff *skb,
2858 struct net_device *dev,
2859 netdev_features_t features)
2860{
2861 return features;
2862}
2863EXPORT_SYMBOL(passthru_features_check);
2864
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09002865static netdev_features_t dflt_features_check(const struct sk_buff *skb,
2866 struct net_device *dev,
2867 netdev_features_t features)
2868{
2869 return vlan_features_check(skb, features);
2870}
2871
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002872static netdev_features_t gso_features_check(const struct sk_buff *skb,
2873 struct net_device *dev,
2874 netdev_features_t features)
2875{
2876 u16 gso_segs = skb_shinfo(skb)->gso_segs;
2877
2878 if (gso_segs > dev->gso_max_segs)
2879 return features & ~NETIF_F_GSO_MASK;
2880
Alexander Duyck802ab552016-04-10 21:45:03 -04002881 /* Support for GSO partial features requires software
2882 * intervention before we can actually process the packets
2883 * so we need to strip support for any partial features now
2884 * and we can pull them back in after we have partially
2885 * segmented the frame.
2886 */
2887 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
2888 features &= ~dev->gso_partial_features;
2889
2890 /* Make sure to clear the IPv4 ID mangling feature if the
2891 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002892 */
2893 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
2894 struct iphdr *iph = skb->encapsulation ?
2895 inner_ip_hdr(skb) : ip_hdr(skb);
2896
2897 if (!(iph->frag_off & htons(IP_DF)))
2898 features &= ~NETIF_F_TSO_MANGLEID;
2899 }
2900
2901 return features;
2902}
2903
Florian Westphalc1e756b2014-05-05 15:00:44 +02002904netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00002905{
Jesse Gross5f352272014-12-23 22:37:26 -08002906 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07002907 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00002908
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002909 if (skb_is_gso(skb))
2910 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00002911
Jesse Gross5f352272014-12-23 22:37:26 -08002912 /* If encapsulation offload request, verify we are testing
2913 * hardware encapsulation features instead of standard
2914 * features for the netdev
2915 */
2916 if (skb->encapsulation)
2917 features &= dev->hw_enc_features;
2918
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09002919 if (skb_vlan_tagged(skb))
2920 features = netdev_intersect_features(features,
2921 dev->vlan_features |
2922 NETIF_F_HW_VLAN_CTAG_TX |
2923 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00002924
Jesse Gross5f352272014-12-23 22:37:26 -08002925 if (dev->netdev_ops->ndo_features_check)
2926 features &= dev->netdev_ops->ndo_features_check(skb, dev,
2927 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09002928 else
2929 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08002930
Florian Westphalc1e756b2014-05-05 15:00:44 +02002931 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002932}
Florian Westphalc1e756b2014-05-05 15:00:44 +02002933EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002934
David S. Miller2ea25512014-08-29 21:10:01 -07002935static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07002936 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002937{
David S. Miller2ea25512014-08-29 21:10:01 -07002938 unsigned int len;
2939 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08002940
Salam Noureddine7866a622015-01-27 11:35:48 -08002941 if (!list_empty(&ptype_all) || !list_empty(&dev->ptype_all))
David S. Miller2ea25512014-08-29 21:10:01 -07002942 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00002943
David S. Miller2ea25512014-08-29 21:10:01 -07002944 len = skb->len;
2945 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07002946 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07002947 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00002948
Patrick McHardy572a9d72009-11-10 06:14:14 +00002949 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002950}
David S. Miller2ea25512014-08-29 21:10:01 -07002951
David S. Miller8dcda222014-09-01 15:06:40 -07002952struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
2953 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07002954{
2955 struct sk_buff *skb = first;
2956 int rc = NETDEV_TX_OK;
2957
2958 while (skb) {
2959 struct sk_buff *next = skb->next;
2960
2961 skb->next = NULL;
David S. Miller95f6b3d2014-08-29 21:57:30 -07002962 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07002963 if (unlikely(!dev_xmit_complete(rc))) {
2964 skb->next = next;
2965 goto out;
2966 }
2967
2968 skb = next;
2969 if (netif_xmit_stopped(txq) && skb) {
2970 rc = NETDEV_TX_BUSY;
2971 break;
2972 }
2973 }
2974
2975out:
2976 *ret = rc;
2977 return skb;
2978}
2979
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07002980static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
2981 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07002982{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002983 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01002984 !vlan_hw_offload_capable(features, skb->vlan_proto))
2985 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07002986 return skb;
2987}
2988
Eric Dumazet55a93b32014-10-03 15:31:07 -07002989static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev)
David S. Millereae3f882014-08-30 15:17:13 -07002990{
2991 netdev_features_t features;
2992
David S. Millereae3f882014-08-30 15:17:13 -07002993 features = netif_skb_features(skb);
2994 skb = validate_xmit_vlan(skb, features);
2995 if (unlikely(!skb))
2996 goto out_null;
2997
Johannes Berg8b86a612015-04-17 15:45:04 +02002998 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07002999 struct sk_buff *segs;
3000
Subash Abhinov Kasiviswanathan717d3392017-06-26 18:46:50 -06003001 __be16 src_port = tcp_hdr(skb)->source;
3002 __be16 dest_port = tcp_hdr(skb)->dest;
3003
3004 trace_print_skb_gso(skb, src_port, dest_port);
David S. Millerce937182014-08-30 19:22:20 -07003005 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003006 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003007 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003008 } else if (segs) {
3009 consume_skb(skb);
3010 skb = segs;
3011 }
David S. Millereae3f882014-08-30 15:17:13 -07003012 } else {
3013 if (skb_needs_linearize(skb, features) &&
3014 __skb_linearize(skb))
3015 goto out_kfree_skb;
3016
3017 /* If packet is not checksummed and device does not
3018 * support checksumming for this protocol, complete
3019 * checksumming here.
3020 */
3021 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3022 if (skb->encapsulation)
3023 skb_set_inner_transport_header(skb,
3024 skb_checksum_start_offset(skb));
3025 else
3026 skb_set_transport_header(skb,
3027 skb_checksum_start_offset(skb));
Tom Herberta1882222015-12-14 11:19:43 -08003028 if (!(features & NETIF_F_CSUM_MASK) &&
David S. Millereae3f882014-08-30 15:17:13 -07003029 skb_checksum_help(skb))
3030 goto out_kfree_skb;
3031 }
3032 }
3033
3034 return skb;
3035
3036out_kfree_skb:
3037 kfree_skb(skb);
3038out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003039 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003040 return NULL;
3041}
3042
Eric Dumazet55a93b32014-10-03 15:31:07 -07003043struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev)
3044{
3045 struct sk_buff *next, *head = NULL, *tail;
3046
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003047 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003048 next = skb->next;
3049 skb->next = NULL;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003050
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003051 /* in case skb wont be segmented, point to itself */
3052 skb->prev = skb;
3053
3054 skb = validate_xmit_skb(skb, dev);
3055 if (!skb)
3056 continue;
3057
3058 if (!head)
3059 head = skb;
3060 else
3061 tail->next = skb;
3062 /* If skb was segmented, skb->prev points to
3063 * the last segment. If not, it still contains skb.
3064 */
3065 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003066 }
3067 return head;
3068}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003069EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003070
Eric Dumazet1def9232013-01-10 12:36:42 +00003071static void qdisc_pkt_len_init(struct sk_buff *skb)
3072{
3073 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3074
3075 qdisc_skb_cb(skb)->pkt_len = skb->len;
3076
3077 /* To get more precise estimation of bytes sent on wire,
3078 * we add to pkt_len the headers size of all segments
3079 */
3080 if (shinfo->gso_size) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003081 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003082 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003083
Eric Dumazet757b8b12013-01-15 21:14:21 -08003084 /* mac layer + network layer */
3085 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3086
3087 /* + transport layer */
Eric Dumazet1def9232013-01-10 12:36:42 +00003088 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
3089 hdr_len += tcp_hdrlen(skb);
3090 else
3091 hdr_len += sizeof(struct udphdr);
Jason Wang15e5a032013-03-25 20:19:59 +00003092
3093 if (shinfo->gso_type & SKB_GSO_DODGY)
3094 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3095 shinfo->gso_size);
3096
3097 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003098 }
3099}
3100
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003101static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3102 struct net_device *dev,
3103 struct netdev_queue *txq)
3104{
3105 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003106 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003107 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003108 int rc;
3109
Eric Dumazeta2da5702011-01-20 03:48:19 +00003110 qdisc_calculate_pkt_len(skb, q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003111 /*
3112 * Heuristic to force contended enqueues to serialize on a
3113 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003114 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003115 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003116 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003117 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003118 if (unlikely(contended))
3119 spin_lock(&q->busylock);
3120
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003121 spin_lock(root_lock);
3122 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003123 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003124 rc = NET_XMIT_DROP;
3125 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003126 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003127 /*
3128 * This is a work-conserving queue; there are no old skbs
3129 * waiting to be sent out; and the qdisc is not running -
3130 * xmit the skb directly.
3131 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003132
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003133 qdisc_bstats_update(q, skb);
3134
Eric Dumazet55a93b32014-10-03 15:31:07 -07003135 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003136 if (unlikely(contended)) {
3137 spin_unlock(&q->busylock);
3138 contended = false;
3139 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003140 __qdisc_run(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003141 } else
Eric Dumazetbc135b22010-06-02 03:23:51 -07003142 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003143
3144 rc = NET_XMIT_SUCCESS;
3145 } else {
Eric Dumazet520ac302016-06-21 23:16:49 -07003146 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003147 if (qdisc_run_begin(q)) {
3148 if (unlikely(contended)) {
3149 spin_unlock(&q->busylock);
3150 contended = false;
3151 }
3152 __qdisc_run(q);
3153 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003154 }
3155 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003156 if (unlikely(to_free))
3157 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003158 if (unlikely(contended))
3159 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003160 return rc;
3161}
3162
Daniel Borkmann86f85152013-12-29 17:27:11 +01003163#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003164static void skb_update_prio(struct sk_buff *skb)
3165{
Igor Maravic6977a792011-11-25 07:44:54 +00003166 struct netprio_map *map = rcu_dereference_bh(skb->dev->priomap);
Neil Horman5bc14212011-11-22 05:10:51 +00003167
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003168 if (!skb->priority && skb->sk && map) {
Tejun Heo2a56a1f2015-12-07 17:38:52 -05003169 unsigned int prioidx =
3170 sock_cgroup_prioidx(&skb->sk->sk_cgrp_data);
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003171
3172 if (prioidx < map->priomap_len)
3173 skb->priority = map->priomap[prioidx];
3174 }
Neil Horman5bc14212011-11-22 05:10:51 +00003175}
3176#else
3177#define skb_update_prio(skb)
3178#endif
3179
hannes@stressinduktion.orgf60e5992015-04-01 17:07:44 +02003180DEFINE_PER_CPU(int, xmit_recursion);
3181EXPORT_SYMBOL(xmit_recursion);
3182
Dave Jonesd29f7492008-07-22 14:09:06 -07003183/**
Michel Machado95603e22012-06-12 10:16:35 +00003184 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003185 * @net: network namespace this loopback is happening in
3186 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003187 * @skb: buffer to transmit
3188 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003189int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003190{
3191 skb_reset_mac_header(skb);
3192 __skb_pull(skb, skb_network_offset(skb));
3193 skb->pkt_type = PACKET_LOOPBACK;
3194 skb->ip_summed = CHECKSUM_UNNECESSARY;
3195 WARN_ON(!skb_dst(skb));
3196 skb_dst_force(skb);
3197 netif_rx_ni(skb);
3198 return 0;
3199}
3200EXPORT_SYMBOL(dev_loopback_xmit);
3201
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003202#ifdef CONFIG_NET_EGRESS
3203static struct sk_buff *
3204sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3205{
3206 struct tcf_proto *cl = rcu_dereference_bh(dev->egress_cl_list);
3207 struct tcf_result cl_res;
3208
3209 if (!cl)
3210 return skb;
3211
3212 /* skb->tc_verd and qdisc_skb_cb(skb)->pkt_len were already set
3213 * earlier by the caller.
3214 */
3215 qdisc_bstats_cpu_update(cl->q, skb);
3216
3217 switch (tc_classify(skb, cl, &cl_res, false)) {
3218 case TC_ACT_OK:
3219 case TC_ACT_RECLASSIFY:
3220 skb->tc_index = TC_H_MIN(cl_res.classid);
3221 break;
3222 case TC_ACT_SHOT:
3223 qdisc_qstats_cpu_drop(cl->q);
3224 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003225 kfree_skb(skb);
3226 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003227 case TC_ACT_STOLEN:
3228 case TC_ACT_QUEUED:
3229 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003230 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003231 return NULL;
3232 case TC_ACT_REDIRECT:
3233 /* No need to push/pop skb's mac_header here on egress! */
3234 skb_do_redirect(skb);
3235 *ret = NET_XMIT_SUCCESS;
3236 return NULL;
3237 default:
3238 break;
3239 }
3240
3241 return skb;
3242}
3243#endif /* CONFIG_NET_EGRESS */
3244
Jiri Pirko638b2a62015-05-12 14:56:13 +02003245static inline int get_xps_queue(struct net_device *dev, struct sk_buff *skb)
3246{
3247#ifdef CONFIG_XPS
3248 struct xps_dev_maps *dev_maps;
3249 struct xps_map *map;
3250 int queue_index = -1;
3251
3252 rcu_read_lock();
3253 dev_maps = rcu_dereference(dev->xps_maps);
3254 if (dev_maps) {
3255 map = rcu_dereference(
3256 dev_maps->cpu_map[skb->sender_cpu - 1]);
3257 if (map) {
3258 if (map->len == 1)
3259 queue_index = map->queues[0];
3260 else
3261 queue_index = map->queues[reciprocal_scale(skb_get_hash(skb),
3262 map->len)];
3263 if (unlikely(queue_index >= dev->real_num_tx_queues))
3264 queue_index = -1;
3265 }
3266 }
3267 rcu_read_unlock();
3268
3269 return queue_index;
3270#else
3271 return -1;
3272#endif
3273}
3274
3275static u16 __netdev_pick_tx(struct net_device *dev, struct sk_buff *skb)
3276{
3277 struct sock *sk = skb->sk;
3278 int queue_index = sk_tx_queue_get(sk);
3279
3280 if (queue_index < 0 || skb->ooo_okay ||
3281 queue_index >= dev->real_num_tx_queues) {
3282 int new_index = get_xps_queue(dev, skb);
3283 if (new_index < 0)
3284 new_index = skb_tx_hash(dev, skb);
3285
3286 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003287 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02003288 rcu_access_pointer(sk->sk_dst_cache))
3289 sk_tx_queue_set(sk, new_index);
3290
3291 queue_index = new_index;
3292 }
3293
3294 return queue_index;
3295}
3296
3297struct netdev_queue *netdev_pick_tx(struct net_device *dev,
3298 struct sk_buff *skb,
3299 void *accel_priv)
3300{
3301 int queue_index = 0;
3302
3303#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08003304 u32 sender_cpu = skb->sender_cpu - 1;
3305
3306 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003307 skb->sender_cpu = raw_smp_processor_id() + 1;
3308#endif
3309
3310 if (dev->real_num_tx_queues != 1) {
3311 const struct net_device_ops *ops = dev->netdev_ops;
3312 if (ops->ndo_select_queue)
3313 queue_index = ops->ndo_select_queue(dev, skb, accel_priv,
3314 __netdev_pick_tx);
3315 else
3316 queue_index = __netdev_pick_tx(dev, skb);
3317
3318 if (!accel_priv)
3319 queue_index = netdev_cap_txqueue(dev, queue_index);
3320 }
3321
3322 skb_set_queue_mapping(skb, queue_index);
3323 return netdev_get_tx_queue(dev, queue_index);
3324}
3325
Michel Machado95603e22012-06-12 10:16:35 +00003326/**
Jason Wang9d08dd32014-01-20 11:25:13 +08003327 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07003328 * @skb: buffer to transmit
Jason Wang9d08dd32014-01-20 11:25:13 +08003329 * @accel_priv: private data used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07003330 *
3331 * Queue a buffer for transmission to a network device. The caller must
3332 * have set the device and priority and built the buffer before calling
3333 * this function. The function can be called from an interrupt.
3334 *
3335 * A negative errno code is returned on a failure. A success does not
3336 * guarantee the frame will be transmitted as it may be dropped due
3337 * to congestion or traffic shaping.
3338 *
3339 * -----------------------------------------------------------------------------------
3340 * I notice this method can also return errors from the queue disciplines,
3341 * including NET_XMIT_DROP, which is a positive value. So, errors can also
3342 * be positive.
3343 *
3344 * Regardless of the return value, the skb is consumed, so it is currently
3345 * difficult to retry a send to this method. (You can bump the ref count
3346 * before sending to hold a reference for retry if you are careful.)
3347 *
3348 * When calling this method, interrupts MUST be enabled. This is because
3349 * the BH enable code must have IRQs enabled so that it will not deadlock.
3350 * --BLG
3351 */
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05303352static int __dev_queue_xmit(struct sk_buff *skb, void *accel_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003353{
3354 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07003355 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 struct Qdisc *q;
3357 int rc = -ENOMEM;
3358
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00003359 skb_reset_mac_header(skb);
3360
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003361 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
3362 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
3363
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003364 /* Disable soft irqs for various locks below. Also
3365 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003367 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
Neil Horman5bc14212011-11-22 05:10:51 +00003369 skb_update_prio(skb);
3370
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003371 qdisc_pkt_len_init(skb);
3372#ifdef CONFIG_NET_CLS_ACT
3373 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
3374# ifdef CONFIG_NET_EGRESS
3375 if (static_key_false(&egress_needed)) {
3376 skb = sch_handle_egress(skb, &rc, dev);
3377 if (!skb)
3378 goto out;
3379 }
3380# endif
3381#endif
Eric Dumazet02875872014-10-05 18:38:35 -07003382 /* If device/qdisc don't need skb->dst, release it right now while
3383 * its hot in this cpu cache.
3384 */
3385 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
3386 skb_dst_drop(skb);
3387 else
3388 skb_dst_force(skb);
3389
Jason Wangf663dd92014-01-10 16:18:26 +08003390 txq = netdev_pick_tx(dev, skb, accel_priv);
Paul E. McKenneya898def2010-02-22 17:04:49 -08003391 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07003392
Koki Sanagicf66ba52010-08-23 18:45:02 +09003393 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003395 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07003396 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 }
3398
3399 /* The device has no queue. Common case for software devices:
3400 loopback, all the sorts of tunnels...
3401
Herbert Xu932ff272006-06-09 12:20:56 -07003402 Really, it is unlikely that netif_tx_lock protection is necessary
3403 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 counters.)
3405 However, it is possible, that they rely on protection
3406 made by us here.
3407
3408 Check this and shot the lock. It is not prone from deadlocks.
3409 Either shot noqueue qdisc, it is even simpler 8)
3410 */
3411 if (dev->flags & IFF_UP) {
3412 int cpu = smp_processor_id(); /* ok because BHs are off */
3413
David S. Millerc773e842008-07-08 23:13:53 -07003414 if (txq->xmit_lock_owner != cpu) {
Daniel Borkmanna70b5062016-06-10 21:19:06 +02003415 if (unlikely(__this_cpu_read(xmit_recursion) >
3416 XMIT_RECURSION_LIMIT))
Eric Dumazet745e20f2010-09-29 13:23:09 -07003417 goto recursion_alert;
3418
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003419 skb = validate_xmit_skb(skb, dev);
3420 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07003421 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003422
David S. Millerc773e842008-07-08 23:13:53 -07003423 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
Tom Herbert734664982011-11-28 16:32:44 +00003425 if (!netif_xmit_stopped(txq)) {
Eric Dumazet745e20f2010-09-29 13:23:09 -07003426 __this_cpu_inc(xmit_recursion);
David S. Millerce937182014-08-30 19:22:20 -07003427 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Eric Dumazet745e20f2010-09-29 13:23:09 -07003428 __this_cpu_dec(xmit_recursion);
Patrick McHardy572a9d72009-11-10 06:14:14 +00003429 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07003430 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 goto out;
3432 }
3433 }
David S. Millerc773e842008-07-08 23:13:53 -07003434 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00003435 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
3436 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 } else {
3438 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07003439 * unfortunately
3440 */
3441recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00003442 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
3443 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 }
3445 }
3446
3447 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07003448 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449
Eric Dumazet015f0682014-03-27 08:45:56 -07003450 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003451 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452 return rc;
3453out:
Herbert Xud4828d82006-06-22 02:28:18 -07003454 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 return rc;
3456}
Jason Wangf663dd92014-01-10 16:18:26 +08003457
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003458int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08003459{
3460 return __dev_queue_xmit(skb, NULL);
3461}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003462EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
Jason Wangf663dd92014-01-10 16:18:26 +08003464int dev_queue_xmit_accel(struct sk_buff *skb, void *accel_priv)
3465{
3466 return __dev_queue_xmit(skb, accel_priv);
3467}
3468EXPORT_SYMBOL(dev_queue_xmit_accel);
3469
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470
3471/*=======================================================================
3472 Receiver routines
3473 =======================================================================*/
3474
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003475int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00003476EXPORT_SYMBOL(netdev_max_backlog);
3477
Eric Dumazet3b098e22010-05-15 23:57:10 -07003478int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003479int netdev_budget __read_mostly = 300;
3480int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003482/* Called with irq disabled */
3483static inline void ____napi_schedule(struct softnet_data *sd,
3484 struct napi_struct *napi)
3485{
3486 list_add_tail(&napi->poll_list, &sd->poll_list);
3487 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3488}
3489
Eric Dumazetdf334542010-03-24 19:13:54 +00003490#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07003491
3492/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003493struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07003494EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003495u32 rps_cpu_mask __read_mostly;
3496EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07003497
Ingo Molnarc5905af2012-02-24 08:31:31 +01003498struct static_key rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04003499EXPORT_SYMBOL(rps_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00003500
Ben Hutchingsc4454772011-01-19 11:03:53 +00003501static struct rps_dev_flow *
3502set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3503 struct rps_dev_flow *rflow, u16 next_cpu)
3504{
Eric Dumazeta31196b2015-04-25 09:35:24 -07003505 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00003506#ifdef CONFIG_RFS_ACCEL
3507 struct netdev_rx_queue *rxqueue;
3508 struct rps_dev_flow_table *flow_table;
3509 struct rps_dev_flow *old_rflow;
3510 u32 flow_id;
3511 u16 rxq_index;
3512 int rc;
3513
3514 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00003515 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
3516 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00003517 goto out;
3518 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
3519 if (rxq_index == skb_get_rx_queue(skb))
3520 goto out;
3521
3522 rxqueue = dev->_rx + rxq_index;
3523 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3524 if (!flow_table)
3525 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07003526 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003527 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
3528 rxq_index, flow_id);
3529 if (rc < 0)
3530 goto out;
3531 old_rflow = rflow;
3532 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00003533 rflow->filter = rc;
3534 if (old_rflow->filter == rflow->filter)
3535 old_rflow->filter = RPS_NO_FILTER;
3536 out:
3537#endif
3538 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00003539 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003540 }
3541
Ben Hutchings09994d12011-10-03 04:42:46 +00003542 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003543 return rflow;
3544}
3545
Tom Herbert0a9627f2010-03-16 08:03:29 +00003546/*
3547 * get_rps_cpu is called from netif_receive_skb and returns the target
3548 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003549 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00003550 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003551static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3552 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003553{
Eric Dumazet567e4b72015-02-06 12:59:01 -08003554 const struct rps_sock_flow_table *sock_flow_table;
3555 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07003556 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003557 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003558 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003559 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07003560 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003561
Tom Herbert0a9627f2010-03-16 08:03:29 +00003562 if (skb_rx_queue_recorded(skb)) {
3563 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003564
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003565 if (unlikely(index >= dev->real_num_rx_queues)) {
3566 WARN_ONCE(dev->real_num_rx_queues > 1,
3567 "%s received packet on queue %u, but number "
3568 "of RX queues is %u\n",
3569 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003570 goto done;
3571 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08003572 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003573 }
3574
Eric Dumazet567e4b72015-02-06 12:59:01 -08003575 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
3576
3577 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3578 map = rcu_dereference(rxqueue->rps_map);
3579 if (!flow_table && !map)
3580 goto done;
3581
Changli Gao2d47b452010-08-17 19:00:56 +00003582 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07003583 hash = skb_get_hash(skb);
3584 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003585 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003586
Tom Herbertfec5e652010-04-16 16:01:27 -07003587 sock_flow_table = rcu_dereference(rps_sock_flow_table);
3588 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003589 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003590 u32 next_cpu;
3591 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07003592
Eric Dumazet567e4b72015-02-06 12:59:01 -08003593 /* First check into global flow table if there is a match */
3594 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
3595 if ((ident ^ hash) & ~rps_cpu_mask)
3596 goto try_rps;
3597
3598 next_cpu = ident & rps_cpu_mask;
3599
3600 /* OK, now we know there is a match,
3601 * we can look at the local (per receive queue) flow table
3602 */
Tom Herbert61b905d2014-03-24 15:34:47 -07003603 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07003604 tcpu = rflow->cpu;
3605
Tom Herbertfec5e652010-04-16 16:01:27 -07003606 /*
3607 * If the desired CPU (where last recvmsg was done) is
3608 * different from current CPU (one in the rx-queue flow
3609 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07003610 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07003611 * - Current CPU is offline.
3612 * - The current CPU's queue tail has advanced beyond the
3613 * last packet that was enqueued using this table entry.
3614 * This guarantees that all previous packets for the flow
3615 * have been dequeued, thus preserving in order delivery.
3616 */
3617 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07003618 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07003619 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00003620 rflow->last_qtail)) >= 0)) {
3621 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003622 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00003623 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00003624
Eric Dumazeta31196b2015-04-25 09:35:24 -07003625 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003626 *rflowp = rflow;
3627 cpu = tcpu;
3628 goto done;
3629 }
3630 }
3631
Eric Dumazet567e4b72015-02-06 12:59:01 -08003632try_rps:
3633
Tom Herbert0a9627f2010-03-16 08:03:29 +00003634 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02003635 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00003636 if (cpu_online(tcpu)) {
3637 cpu = tcpu;
3638 goto done;
3639 }
3640 }
3641
3642done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00003643 return cpu;
3644}
3645
Ben Hutchingsc4454772011-01-19 11:03:53 +00003646#ifdef CONFIG_RFS_ACCEL
3647
3648/**
3649 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
3650 * @dev: Device on which the filter was set
3651 * @rxq_index: RX queue index
3652 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
3653 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
3654 *
3655 * Drivers that implement ndo_rx_flow_steer() should periodically call
3656 * this function for each installed filter and remove the filters for
3657 * which it returns %true.
3658 */
3659bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
3660 u32 flow_id, u16 filter_id)
3661{
3662 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
3663 struct rps_dev_flow_table *flow_table;
3664 struct rps_dev_flow *rflow;
3665 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07003666 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003667
3668 rcu_read_lock();
3669 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3670 if (flow_table && flow_id <= flow_table->mask) {
3671 rflow = &flow_table->flows[flow_id];
3672 cpu = ACCESS_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07003673 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00003674 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
3675 rflow->last_qtail) <
3676 (int)(10 * flow_table->mask)))
3677 expire = false;
3678 }
3679 rcu_read_unlock();
3680 return expire;
3681}
3682EXPORT_SYMBOL(rps_may_expire_flow);
3683
3684#endif /* CONFIG_RFS_ACCEL */
3685
Tom Herbert0a9627f2010-03-16 08:03:29 +00003686/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003687static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003688{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003689 struct softnet_data *sd = data;
3690
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003691 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00003692 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003693}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003694
Tom Herbertfec5e652010-04-16 16:01:27 -07003695#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00003696
3697/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003698 * Check if this softnet_data structure is another cpu one
3699 * If yes, queue it to our IPI list and return 1
3700 * If no, return 0
3701 */
3702static int rps_ipi_queued(struct softnet_data *sd)
3703{
3704#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05003705 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003706
3707 if (sd != mysd) {
3708 sd->rps_ipi_next = mysd->rps_ipi_list;
3709 mysd->rps_ipi_list = sd;
3710
3711 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3712 return 1;
3713 }
3714#endif /* CONFIG_RPS */
3715 return 0;
3716}
3717
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003718#ifdef CONFIG_NET_FLOW_LIMIT
3719int netdev_flow_limit_table_len __read_mostly = (1 << 12);
3720#endif
3721
3722static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
3723{
3724#ifdef CONFIG_NET_FLOW_LIMIT
3725 struct sd_flow_limit *fl;
3726 struct softnet_data *sd;
3727 unsigned int old_flow, new_flow;
3728
3729 if (qlen < (netdev_max_backlog >> 1))
3730 return false;
3731
Christoph Lameter903ceff2014-08-17 12:30:35 -05003732 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003733
3734 rcu_read_lock();
3735 fl = rcu_dereference(sd->flow_limit);
3736 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08003737 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003738 old_flow = fl->history[fl->history_head];
3739 fl->history[fl->history_head] = new_flow;
3740
3741 fl->history_head++;
3742 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
3743
3744 if (likely(fl->buckets[old_flow]))
3745 fl->buckets[old_flow]--;
3746
3747 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
3748 fl->count++;
3749 rcu_read_unlock();
3750 return true;
3751 }
3752 }
3753 rcu_read_unlock();
3754#endif
3755 return false;
3756}
3757
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003758/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00003759 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
3760 * queue (may be a remote CPU queue).
3761 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003762static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
3763 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003764{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003765 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003766 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003767 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003768
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003769 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003770
3771 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003772
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003773 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03003774 if (!netif_running(skb->dev))
3775 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003776 qlen = skb_queue_len(&sd->input_pkt_queue);
3777 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08003778 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00003779enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003780 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003781 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003782 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00003783 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003784 return NET_RX_SUCCESS;
3785 }
3786
Eric Dumazetebda37c22010-05-06 23:51:21 +00003787 /* Schedule NAPI for backlog device
3788 * We can use non atomic operation since we own the queue lock
3789 */
3790 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003791 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003792 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003793 }
3794 goto enqueue;
3795 }
3796
Julian Anastasove9e4dd32015-07-09 09:59:09 +03003797drop:
Changli Gaodee42872010-05-02 05:42:16 +00003798 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003799 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003800
Tom Herbert0a9627f2010-03-16 08:03:29 +00003801 local_irq_restore(flags);
3802
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003803 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003804 kfree_skb(skb);
3805 return NET_RX_DROP;
3806}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003808static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003810 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811
Eric Dumazet588f0332011-11-15 04:12:55 +00003812 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813
Koki Sanagicf66ba52010-08-23 18:45:02 +09003814 trace_netif_rx(skb);
Eric Dumazetdf334542010-03-24 19:13:54 +00003815#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003816 if (static_key_false(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003817 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003818 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819
Changli Gaocece1942010-08-07 20:35:43 -07003820 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003821 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003822
3823 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003824 if (cpu < 0)
3825 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07003826
3827 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3828
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003829 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07003830 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00003831 } else
3832#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07003833 {
3834 unsigned int qtail;
3835 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
3836 put_cpu();
3837 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003838 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003840
3841/**
3842 * netif_rx - post buffer to the network code
3843 * @skb: buffer to post
3844 *
3845 * This function receives a packet from a device driver and queues it for
3846 * the upper (protocol) levels to process. It always succeeds. The buffer
3847 * may be dropped during processing for congestion control or by the
3848 * protocol layers.
3849 *
3850 * return values:
3851 * NET_RX_SUCCESS (no congestion)
3852 * NET_RX_DROP (packet was dropped)
3853 *
3854 */
3855
3856int netif_rx(struct sk_buff *skb)
3857{
3858 trace_netif_rx_entry(skb);
3859
3860 return netif_rx_internal(skb);
3861}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003862EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
3864int netif_rx_ni(struct sk_buff *skb)
3865{
3866 int err;
3867
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003868 trace_netif_rx_ni_entry(skb);
3869
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003871 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 if (local_softirq_pending())
3873 do_softirq();
3874 preempt_enable();
3875
3876 return err;
3877}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878EXPORT_SYMBOL(netif_rx_ni);
3879
Emese Revfy0766f782016-06-20 20:42:34 +02003880static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881{
Christoph Lameter903ceff2014-08-17 12:30:35 -05003882 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883
3884 if (sd->completion_queue) {
3885 struct sk_buff *clist;
3886
3887 local_irq_disable();
3888 clist = sd->completion_queue;
3889 sd->completion_queue = NULL;
3890 local_irq_enable();
3891
3892 while (clist) {
3893 struct sk_buff *skb = clist;
3894 clist = clist->next;
3895
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003896 WARN_ON(atomic_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08003897 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
3898 trace_consume_skb(skb);
3899 else
3900 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01003901
3902 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
3903 __kfree_skb(skb);
3904 else
3905 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01003907
3908 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 }
3910
3911 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07003912 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913
3914 local_irq_disable();
3915 head = sd->output_queue;
3916 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00003917 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 local_irq_enable();
3919
3920 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07003921 struct Qdisc *q = head;
3922 spinlock_t *root_lock;
3923
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 head = head->next_sched;
3925
David S. Miller5fb66222008-08-02 20:02:43 -07003926 root_lock = qdisc_lock(q);
Eric Dumazet3bcb8462016-06-04 20:02:28 -07003927 spin_lock(root_lock);
3928 /* We need to make sure head->next_sched is read
3929 * before clearing __QDISC_STATE_SCHED
3930 */
3931 smp_mb__before_atomic();
3932 clear_bit(__QDISC_STATE_SCHED, &q->state);
3933 qdisc_run(q);
3934 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 }
3936 }
3937}
3938
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04003939#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00003940/* This hook is defined here for ATM LANE */
3941int (*br_fdb_test_addr_hook)(struct net_device *dev,
3942 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07003943EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00003944#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003946static inline struct sk_buff *
3947sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
3948 struct net_device *orig_dev)
Herbert Xuf697c3e2007-10-14 00:38:47 -07003949{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02003950#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003951 struct tcf_proto *cl = rcu_dereference_bh(skb->dev->ingress_cl_list);
3952 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00003953
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02003954 /* If there's at least one ingress present somewhere (so
3955 * we get here via enabled static key), remaining devices
3956 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003957 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02003958 */
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003959 if (!cl)
Daniel Borkmann45771392015-04-10 23:07:54 +02003960 return skb;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003961 if (*pt_prev) {
3962 *ret = deliver_skb(skb, *pt_prev, orig_dev);
3963 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003964 }
3965
Florian Westphal33654952015-05-14 00:36:28 +02003966 qdisc_skb_cb(skb)->pkt_len = skb->len;
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02003967 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
Eric Dumazet24ea5912015-07-06 05:18:03 -07003968 qdisc_bstats_cpu_update(cl->q, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02003969
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02003970 switch (tc_classify(skb, cl, &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003971 case TC_ACT_OK:
3972 case TC_ACT_RECLASSIFY:
3973 skb->tc_index = TC_H_MIN(cl_res.classid);
3974 break;
3975 case TC_ACT_SHOT:
Eric Dumazet24ea5912015-07-06 05:18:03 -07003976 qdisc_qstats_cpu_drop(cl->q);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07003977 kfree_skb(skb);
3978 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003979 case TC_ACT_STOLEN:
3980 case TC_ACT_QUEUED:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07003981 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003982 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07003983 case TC_ACT_REDIRECT:
3984 /* skb_mac_header check was done by cls/act_bpf, so
3985 * we can safely push the L2 header back before
3986 * redirecting to another netdev
3987 */
3988 __skb_push(skb, skb->mac_len);
3989 skb_do_redirect(skb);
3990 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003991 default:
3992 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003993 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02003994#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07003995 return skb;
3996}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003998/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07003999 * netdev_is_rx_handler_busy - check if receive handler is registered
4000 * @dev: device to check
4001 *
4002 * Check if a receive handler is already registered for a given device.
4003 * Return true if there one.
4004 *
4005 * The caller must hold the rtnl_mutex.
4006 */
4007bool netdev_is_rx_handler_busy(struct net_device *dev)
4008{
4009 ASSERT_RTNL();
4010 return dev && rtnl_dereference(dev->rx_handler);
4011}
4012EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
4013
4014/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004015 * netdev_rx_handler_register - register receive handler
4016 * @dev: device to register a handler for
4017 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00004018 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004019 *
Masanari Iidae2278672014-02-18 22:54:36 +09004020 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004021 * called from __netif_receive_skb. A negative errno code is returned
4022 * on a failure.
4023 *
4024 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004025 *
4026 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004027 */
4028int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00004029 rx_handler_func_t *rx_handler,
4030 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004031{
4032 ASSERT_RTNL();
4033
4034 if (dev->rx_handler)
4035 return -EBUSY;
4036
Eric Dumazet00cfec32013-03-29 03:01:22 +00004037 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00004038 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004039 rcu_assign_pointer(dev->rx_handler, rx_handler);
4040
4041 return 0;
4042}
4043EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
4044
4045/**
4046 * netdev_rx_handler_unregister - unregister receive handler
4047 * @dev: device to unregister a handler from
4048 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00004049 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004050 *
4051 * The caller must hold the rtnl_mutex.
4052 */
4053void netdev_rx_handler_unregister(struct net_device *dev)
4054{
4055
4056 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004057 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00004058 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
4059 * section has a guarantee to see a non NULL rx_handler_data
4060 * as well.
4061 */
4062 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004063 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004064}
4065EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
4066
Mel Gormanb4b9e352012-07-31 16:44:26 -07004067/*
4068 * Limit the use of PFMEMALLOC reserves to those protocols that implement
4069 * the special handling of PFMEMALLOC skbs.
4070 */
4071static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
4072{
4073 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07004074 case htons(ETH_P_ARP):
4075 case htons(ETH_P_IP):
4076 case htons(ETH_P_IPV6):
4077 case htons(ETH_P_8021Q):
4078 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07004079 return true;
4080 default:
4081 return false;
4082 }
4083}
4084
Pablo Neirae687ad62015-05-13 18:19:38 +02004085static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
4086 int *ret, struct net_device *orig_dev)
4087{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004088#ifdef CONFIG_NETFILTER_INGRESS
Pablo Neirae687ad62015-05-13 18:19:38 +02004089 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04004090 int ingress_retval;
4091
Pablo Neirae687ad62015-05-13 18:19:38 +02004092 if (*pt_prev) {
4093 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4094 *pt_prev = NULL;
4095 }
4096
Aaron Conole2c1e2702016-09-21 11:35:03 -04004097 rcu_read_lock();
4098 ingress_retval = nf_hook_ingress(skb);
4099 rcu_read_unlock();
4100 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02004101 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004102#endif /* CONFIG_NETFILTER_INGRESS */
Pablo Neirae687ad62015-05-13 18:19:38 +02004103 return 0;
4104}
Pablo Neirae687ad62015-05-13 18:19:38 +02004105
David S. Miller9754e292013-02-14 15:57:38 -05004106static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107{
4108 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004109 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07004110 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004111 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 int ret = NET_RX_DROP;
Al Viro252e3342006-11-14 20:48:11 -08004113 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
Eric Dumazet588f0332011-11-15 04:12:55 +00004115 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07004116
Koki Sanagicf66ba52010-08-23 18:45:02 +09004117 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08004118
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07004119 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00004120
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07004121 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00004122 if (!skb_transport_header_was_set(skb))
4123 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00004124 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125
4126 pt_prev = NULL;
4127
David S. Miller63d8ea72011-02-28 10:48:59 -08004128another_round:
David S. Millerb6858172012-07-23 16:27:54 -07004129 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08004130
4131 __this_cpu_inc(softnet_data.processed);
4132
Patrick McHardy8ad227f2013-04-19 02:04:31 +00004133 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
4134 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004135 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004136 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004137 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004138 }
4139
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140#ifdef CONFIG_NET_CLS_ACT
4141 if (skb->tc_verd & TC_NCLS) {
4142 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
4143 goto ncls;
4144 }
4145#endif
4146
David S. Miller9754e292013-02-14 15:57:38 -05004147 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07004148 goto skip_taps;
4149
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08004151 if (pt_prev)
4152 ret = deliver_skb(skb, pt_prev, orig_dev);
4153 pt_prev = ptype;
4154 }
4155
4156 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
4157 if (pt_prev)
4158 ret = deliver_skb(skb, pt_prev, orig_dev);
4159 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160 }
4161
Mel Gormanb4b9e352012-07-31 16:44:26 -07004162skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02004163#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +02004164 if (static_key_false(&ingress_needed)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004165 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev);
Daniel Borkmann45771392015-04-10 23:07:54 +02004166 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004167 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02004168
4169 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004170 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02004171 }
Pablo Neira1cf519002015-05-13 18:19:37 +02004172#endif
4173#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmann45771392015-04-10 23:07:54 +02004174 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175ncls:
4176#endif
David S. Miller9754e292013-02-14 15:57:38 -05004177 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07004178 goto drop;
4179
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004180 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00004181 if (pt_prev) {
4182 ret = deliver_skb(skb, pt_prev, orig_dev);
4183 pt_prev = NULL;
4184 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004185 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00004186 goto another_round;
4187 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004188 goto out;
John Fastabend24257172011-10-10 09:16:41 +00004189 }
4190
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004191 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004192 if (rx_handler) {
4193 if (pt_prev) {
4194 ret = deliver_skb(skb, pt_prev, orig_dev);
4195 pt_prev = NULL;
4196 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004197 switch (rx_handler(&skb)) {
4198 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00004199 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004200 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004201 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08004202 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004203 case RX_HANDLER_EXACT:
4204 deliver_exact = true;
4205 case RX_HANDLER_PASS:
4206 break;
4207 default:
4208 BUG();
4209 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004210 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004212 if (unlikely(skb_vlan_tag_present(skb))) {
4213 if (skb_vlan_tag_get_id(skb))
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004214 skb->pkt_type = PACKET_OTHERHOST;
4215 /* Note: we might in the future use prio bits
4216 * and set skb->priority like in vlan_do_receive()
4217 * For the time being, just ignore Priority Code Point
4218 */
4219 skb->vlan_tci = 0;
4220 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004221
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08004223
4224 /* deliver only exact match when indicated */
4225 if (likely(!deliver_exact)) {
4226 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4227 &ptype_base[ntohs(type) &
4228 PTYPE_HASH_MASK]);
4229 }
4230
4231 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4232 &orig_dev->ptype_specific);
4233
4234 if (unlikely(skb->dev != orig_dev)) {
4235 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4236 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 }
4238
4239 if (pt_prev) {
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00004240 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00004241 goto drop;
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00004242 else
4243 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07004245drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05004246 if (!deliver_exact)
4247 atomic_long_inc(&skb->dev->rx_dropped);
4248 else
4249 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 kfree_skb(skb);
4251 /* Jamal, now you will not able to escape explaining
4252 * me how you were going to use this. :-)
4253 */
4254 ret = NET_RX_DROP;
4255 }
4256
Julian Anastasov2c17d272015-07-09 09:59:10 +03004257out:
David S. Miller9754e292013-02-14 15:57:38 -05004258 return ret;
4259}
4260
4261static int __netif_receive_skb(struct sk_buff *skb)
4262{
4263 int ret;
4264
4265 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
4266 unsigned long pflags = current->flags;
4267
4268 /*
4269 * PFMEMALLOC skbs are special, they should
4270 * - be delivered to SOCK_MEMALLOC sockets only
4271 * - stay away from userspace
4272 * - have bounded memory usage
4273 *
4274 * Use PF_MEMALLOC as this saves us from propagating the allocation
4275 * context down to all allocation sites.
4276 */
4277 current->flags |= PF_MEMALLOC;
4278 ret = __netif_receive_skb_core(skb, true);
4279 tsk_restore_flags(current, pflags, PF_MEMALLOC);
4280 } else
4281 ret = __netif_receive_skb_core(skb, false);
4282
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 return ret;
4284}
Tom Herbert0a9627f2010-03-16 08:03:29 +00004285
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004286static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004287{
Julian Anastasov2c17d272015-07-09 09:59:10 +03004288 int ret;
4289
Eric Dumazet588f0332011-11-15 04:12:55 +00004290 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07004291
Richard Cochranc1f19b52010-07-17 08:49:36 +00004292 if (skb_defer_rx_timestamp(skb))
4293 return NET_RX_SUCCESS;
4294
Julian Anastasov2c17d272015-07-09 09:59:10 +03004295 rcu_read_lock();
4296
Eric Dumazetdf334542010-03-24 19:13:54 +00004297#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01004298 if (static_key_false(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07004299 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004300 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07004301
Eric Dumazet3b098e22010-05-15 23:57:10 -07004302 if (cpu >= 0) {
4303 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4304 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00004305 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07004306 }
Tom Herbertfec5e652010-04-16 16:01:27 -07004307 }
Tom Herbert1e94d722010-03-18 17:45:44 -07004308#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03004309 ret = __netif_receive_skb(skb);
4310 rcu_read_unlock();
4311 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004312}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004313
4314/**
4315 * netif_receive_skb - process receive buffer from network
4316 * @skb: buffer to process
4317 *
4318 * netif_receive_skb() is the main receive data processing function.
4319 * It always succeeds. The buffer may be dropped during processing
4320 * for congestion control or by the protocol layers.
4321 *
4322 * This function may only be called from softirq context and interrupts
4323 * should be enabled.
4324 *
4325 * Return values (usually ignored):
4326 * NET_RX_SUCCESS: no congestion
4327 * NET_RX_DROP: packet was dropped
4328 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05004329int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004330{
4331 trace_netif_receive_skb_entry(skb);
4332
4333 return netif_receive_skb_internal(skb);
4334}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05004335EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336
Eric Dumazet41852492016-08-26 12:50:39 -07004337DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004338
4339/* Network device is going away, flush any packets still pending */
4340static void flush_backlog(struct work_struct *work)
4341{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004342 struct sk_buff *skb, *tmp;
4343 struct softnet_data *sd;
4344
4345 local_bh_disable();
4346 sd = this_cpu_ptr(&softnet_data);
4347
4348 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004349 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07004350 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07004351 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004352 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004353 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004354 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004355 }
Changli Gao6e7676c2010-04-27 15:07:33 -07004356 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004357 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004358 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004359
4360 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07004361 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07004362 __skb_unlink(skb, &sd->process_queue);
4363 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004364 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07004365 }
4366 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004367 local_bh_enable();
4368}
4369
Eric Dumazet41852492016-08-26 12:50:39 -07004370static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004371{
4372 unsigned int cpu;
4373
4374 get_online_cpus();
4375
Eric Dumazet41852492016-08-26 12:50:39 -07004376 for_each_online_cpu(cpu)
4377 queue_work_on(cpu, system_highpri_wq,
4378 per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004379
4380 for_each_online_cpu(cpu)
Eric Dumazet41852492016-08-26 12:50:39 -07004381 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004382
4383 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004384}
4385
Herbert Xud565b0a2008-12-15 23:38:52 -08004386static int napi_gro_complete(struct sk_buff *skb)
4387{
Vlad Yasevich22061d82012-11-15 08:49:11 +00004388 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08004389 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004390 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08004391 int err = -ENOENT;
4392
Eric Dumazetc3c7c252012-12-06 13:54:59 +00004393 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
4394
Herbert Xufc59f9a2009-04-14 15:11:06 -07004395 if (NAPI_GRO_CB(skb)->count == 1) {
4396 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004397 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07004398 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004399
4400 rcu_read_lock();
4401 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004402 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08004403 continue;
4404
Jerry Chu299603e82013-12-11 20:53:45 -08004405 err = ptype->callbacks.gro_complete(skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08004406 break;
4407 }
4408 rcu_read_unlock();
4409
4410 if (err) {
4411 WARN_ON(&ptype->list == head);
4412 kfree_skb(skb);
4413 return NET_RX_SUCCESS;
4414 }
4415
4416out:
Subash Abhinov Kasiviswanathan27cfd4e2017-06-01 13:43:25 -06004417 __this_cpu_add(softnet_data.gro_coalesced, NAPI_GRO_CB(skb)->count > 1);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004418 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004419}
4420
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004421/* napi->gro_list contains packets ordered by age.
4422 * youngest packets at the head of it.
4423 * Complete skbs in reverse order to reduce latencies.
4424 */
4425void napi_gro_flush(struct napi_struct *napi, bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08004426{
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004427 struct sk_buff *skb, *prev = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004428
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004429 /* scan list and build reverse chain */
4430 for (skb = napi->gro_list; skb != NULL; skb = skb->next) {
4431 skb->prev = prev;
4432 prev = skb;
Herbert Xud565b0a2008-12-15 23:38:52 -08004433 }
4434
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004435 for (skb = prev; skb; skb = prev) {
4436 skb->next = NULL;
4437
4438 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
4439 return;
4440
4441 prev = skb->prev;
4442 napi_gro_complete(skb);
4443 napi->gro_count--;
4444 }
4445
Herbert Xud565b0a2008-12-15 23:38:52 -08004446 napi->gro_list = NULL;
4447}
Eric Dumazet86cac582010-08-31 18:25:32 +00004448EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08004449
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004450static void gro_list_prepare(struct napi_struct *napi, struct sk_buff *skb)
4451{
4452 struct sk_buff *p;
4453 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08004454 u32 hash = skb_get_hash_raw(skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004455
4456 for (p = napi->gro_list; p; p = p->next) {
4457 unsigned long diffs;
4458
Tom Herbert0b4cec82014-01-15 08:58:06 -08004459 NAPI_GRO_CB(p)->flush = 0;
4460
4461 if (hash != skb_get_hash_raw(p)) {
4462 NAPI_GRO_CB(p)->same_flow = 0;
4463 continue;
4464 }
4465
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004466 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
4467 diffs |= p->vlan_tci ^ skb->vlan_tci;
Jesse Grossce87fc62016-01-20 17:59:49 -08004468 diffs |= skb_metadata_dst_cmp(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004469 if (maclen == ETH_HLEN)
4470 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07004471 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004472 else if (!diffs)
4473 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07004474 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004475 maclen);
4476 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004477 }
4478}
4479
Jerry Chu299603e82013-12-11 20:53:45 -08004480static void skb_gro_reset_offset(struct sk_buff *skb)
4481{
4482 const struct skb_shared_info *pinfo = skb_shinfo(skb);
4483 const skb_frag_t *frag0 = &pinfo->frags[0];
4484
4485 NAPI_GRO_CB(skb)->data_offset = 0;
4486 NAPI_GRO_CB(skb)->frag0 = NULL;
4487 NAPI_GRO_CB(skb)->frag0_len = 0;
4488
4489 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
4490 pinfo->nr_frags &&
4491 !PageHighMem(skb_frag_page(frag0))) {
4492 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet934ca012017-01-10 19:52:43 -08004493 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
4494 skb_frag_size(frag0),
4495 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08004496 }
4497}
4498
Eric Dumazeta50e2332014-03-29 21:28:21 -07004499static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
4500{
4501 struct skb_shared_info *pinfo = skb_shinfo(skb);
4502
4503 BUG_ON(skb->end - skb->tail < grow);
4504
4505 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
4506
4507 skb->data_len -= grow;
4508 skb->tail += grow;
4509
4510 pinfo->frags[0].page_offset += grow;
4511 skb_frag_size_sub(&pinfo->frags[0], grow);
4512
4513 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
4514 skb_frag_unref(skb, 0);
4515 memmove(pinfo->frags, pinfo->frags + 1,
4516 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
4517 }
4518}
4519
Rami Rosenbb728822012-11-28 21:55:25 +00004520static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08004521{
4522 struct sk_buff **pp = NULL;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004523 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08004524 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004525 struct list_head *head = &offload_base;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004526 int same_flow;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004527 enum gro_result ret;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004528 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08004529
Eric W. Biederman9c62a682014-03-14 20:51:52 -07004530 if (!(skb->dev->features & NETIF_F_GRO))
Herbert Xud565b0a2008-12-15 23:38:52 -08004531 goto normal;
4532
Tom Herbert5a212322014-08-31 15:12:41 -07004533 if (skb_is_gso(skb) || skb_has_frag_list(skb) || skb->csum_bad)
Herbert Xuf17f5c92009-01-14 14:36:12 -08004534 goto normal;
4535
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004536 gro_list_prepare(napi, skb);
4537
Herbert Xud565b0a2008-12-15 23:38:52 -08004538 rcu_read_lock();
4539 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004540 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08004541 continue;
4542
Herbert Xu86911732009-01-29 14:19:50 +00004543 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00004544 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004545 NAPI_GRO_CB(skb)->same_flow = 0;
4546 NAPI_GRO_CB(skb)->flush = 0;
Herbert Xu5d38a072009-01-04 16:13:40 -08004547 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07004548 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02004549 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07004550 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04004551 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08004552 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004553
Tom Herbert662880f2014-08-27 21:26:56 -07004554 /* Setup for GRO checksum validation */
4555 switch (skb->ip_summed) {
4556 case CHECKSUM_COMPLETE:
4557 NAPI_GRO_CB(skb)->csum = skb->csum;
4558 NAPI_GRO_CB(skb)->csum_valid = 1;
4559 NAPI_GRO_CB(skb)->csum_cnt = 0;
4560 break;
4561 case CHECKSUM_UNNECESSARY:
4562 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
4563 NAPI_GRO_CB(skb)->csum_valid = 0;
4564 break;
4565 default:
4566 NAPI_GRO_CB(skb)->csum_cnt = 0;
4567 NAPI_GRO_CB(skb)->csum_valid = 0;
4568 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004569
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004570 pp = ptype->callbacks.gro_receive(&napi->gro_list, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004571 break;
4572 }
4573 rcu_read_unlock();
4574
4575 if (&ptype->list == head)
4576 goto normal;
4577
Herbert Xu0da2afd52008-12-26 14:57:42 -08004578 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004579 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004580
Herbert Xud565b0a2008-12-15 23:38:52 -08004581 if (pp) {
4582 struct sk_buff *nskb = *pp;
4583
4584 *pp = nskb->next;
4585 nskb->next = NULL;
4586 napi_gro_complete(nskb);
Herbert Xu4ae55442009-02-08 18:00:36 +00004587 napi->gro_count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08004588 }
4589
Herbert Xu0da2afd52008-12-26 14:57:42 -08004590 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08004591 goto ok;
4592
Eric Dumazet600adc12014-01-09 14:12:19 -08004593 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08004594 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08004595
Eric Dumazet600adc12014-01-09 14:12:19 -08004596 if (unlikely(napi->gro_count >= MAX_GRO_SKBS)) {
4597 struct sk_buff *nskb = napi->gro_list;
4598
4599 /* locate the end of the list to select the 'oldest' flow */
4600 while (nskb->next) {
4601 pp = &nskb->next;
4602 nskb = *pp;
4603 }
4604 *pp = NULL;
4605 nskb->next = NULL;
4606 napi_gro_complete(nskb);
4607 } else {
4608 napi->gro_count++;
4609 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004610 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004611 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07004612 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00004613 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004614 skb->next = napi->gro_list;
4615 napi->gro_list = skb;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004616 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08004617
Herbert Xuad0f9902009-02-01 01:24:55 -08004618pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004619 grow = skb_gro_offset(skb) - skb_headlen(skb);
4620 if (grow > 0)
4621 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08004622ok:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004623 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08004624
4625normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08004626 ret = GRO_NORMAL;
4627 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08004628}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004629
Jerry Chubf5a7552014-01-07 10:23:19 -08004630struct packet_offload *gro_find_receive_by_type(__be16 type)
4631{
4632 struct list_head *offload_head = &offload_base;
4633 struct packet_offload *ptype;
4634
4635 list_for_each_entry_rcu(ptype, offload_head, list) {
4636 if (ptype->type != type || !ptype->callbacks.gro_receive)
4637 continue;
4638 return ptype;
4639 }
4640 return NULL;
4641}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004642EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08004643
4644struct packet_offload *gro_find_complete_by_type(__be16 type)
4645{
4646 struct list_head *offload_head = &offload_base;
4647 struct packet_offload *ptype;
4648
4649 list_for_each_entry_rcu(ptype, offload_head, list) {
4650 if (ptype->type != type || !ptype->callbacks.gro_complete)
4651 continue;
4652 return ptype;
4653 }
4654 return NULL;
4655}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004656EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004657
Michal Kubeček06732802017-06-29 11:13:36 +02004658static void napi_skb_free_stolen_head(struct sk_buff *skb)
4659{
4660 skb_dst_drop(skb);
4661 kmem_cache_free(skbuff_head_cache, skb);
4662}
4663
Rami Rosenbb728822012-11-28 21:55:25 +00004664static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08004665{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004666 switch (ret) {
4667 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004668 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004669 ret = GRO_DROP;
4670 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004671
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004672 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08004673 kfree_skb(skb);
4674 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004675
Eric Dumazetdaa86542012-04-19 07:07:40 +00004676 case GRO_MERGED_FREE:
Michal Kubeček06732802017-06-29 11:13:36 +02004677 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4678 napi_skb_free_stolen_head(skb);
4679 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00004680 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00004681 break;
4682
Ben Hutchings5b252f02009-10-29 07:17:09 +00004683 case GRO_HELD:
4684 case GRO_MERGED:
4685 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004686 }
4687
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004688 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004689}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004690
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004691gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004692{
Eric Dumazet93f93a42015-11-18 06:30:59 -08004693 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004694 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00004695
Eric Dumazeta50e2332014-03-29 21:28:21 -07004696 skb_gro_reset_offset(skb);
4697
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004698 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004699}
4700EXPORT_SYMBOL(napi_gro_receive);
4701
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00004702static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004703{
Eric Dumazet93a35f52014-10-23 06:30:30 -07004704 if (unlikely(skb->pfmemalloc)) {
4705 consume_skb(skb);
4706 return;
4707 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004708 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00004709 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
4710 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Jesse Gross3701e512010-10-20 13:56:06 +00004711 skb->vlan_tci = 0;
Herbert Xu66c46d72011-01-29 20:44:54 -08004712 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08004713 skb->skb_iif = 0;
Jerry Chuc3caf112014-07-14 15:54:46 -07004714 skb->encapsulation = 0;
4715 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07004716 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Herbert Xu96e93ea2009-01-06 10:49:34 -08004717
4718 napi->skb = skb;
4719}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004720
Herbert Xu76620aa2009-04-16 02:02:07 -07004721struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08004722{
Herbert Xu5d38a072009-01-04 16:13:40 -08004723 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004724
4725 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08004726 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08004727 if (skb) {
4728 napi->skb = skb;
4729 skb_mark_napi_id(skb, napi);
4730 }
Herbert Xu5d38a072009-01-04 16:13:40 -08004731 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004732 return skb;
4733}
Herbert Xu76620aa2009-04-16 02:02:07 -07004734EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004735
Eric Dumazeta50e2332014-03-29 21:28:21 -07004736static gro_result_t napi_frags_finish(struct napi_struct *napi,
4737 struct sk_buff *skb,
4738 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004739{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004740 switch (ret) {
4741 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004742 case GRO_HELD:
4743 __skb_push(skb, ETH_HLEN);
4744 skb->protocol = eth_type_trans(skb, skb->dev);
4745 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004746 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00004747 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004748
4749 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004750 napi_reuse_skb(napi, skb);
4751 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004752
Michal Kubeček06732802017-06-29 11:13:36 +02004753 case GRO_MERGED_FREE:
4754 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4755 napi_skb_free_stolen_head(skb);
4756 else
4757 napi_reuse_skb(napi, skb);
4758 break;
4759
Ben Hutchings5b252f02009-10-29 07:17:09 +00004760 case GRO_MERGED:
4761 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004762 }
4763
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004764 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004765}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004766
Eric Dumazeta50e2332014-03-29 21:28:21 -07004767/* Upper GRO stack assumes network header starts at gro_offset=0
4768 * Drivers could call both napi_gro_frags() and napi_gro_receive()
4769 * We copy ethernet header into skb->data to have a common layout.
4770 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00004771static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004772{
Herbert Xu76620aa2009-04-16 02:02:07 -07004773 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004774 const struct ethhdr *eth;
4775 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07004776
4777 napi->skb = NULL;
4778
Eric Dumazeta50e2332014-03-29 21:28:21 -07004779 skb_reset_mac_header(skb);
4780 skb_gro_reset_offset(skb);
4781
4782 eth = skb_gro_header_fast(skb, 0);
4783 if (unlikely(skb_gro_header_hard(skb, hlen))) {
4784 eth = skb_gro_header_slow(skb, hlen, 0);
4785 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04004786 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
4787 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07004788 napi_reuse_skb(napi, skb);
4789 return NULL;
4790 }
4791 } else {
4792 gro_pull_from_frag0(skb, hlen);
4793 NAPI_GRO_CB(skb)->frag0 += hlen;
4794 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07004795 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07004796 __skb_pull(skb, hlen);
4797
4798 /*
4799 * This works because the only protocols we care about don't require
4800 * special handling.
4801 * We'll fix it up properly in napi_frags_finish()
4802 */
4803 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07004804
Herbert Xu76620aa2009-04-16 02:02:07 -07004805 return skb;
4806}
Herbert Xu76620aa2009-04-16 02:02:07 -07004807
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004808gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07004809{
4810 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004811
4812 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004813 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08004814
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004815 trace_napi_gro_frags_entry(skb);
4816
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004817 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08004818}
4819EXPORT_SYMBOL(napi_gro_frags);
4820
Tom Herbert573e8fc2014-08-22 13:33:47 -07004821/* Compute the checksum from gro_offset and return the folded value
4822 * after adding in any pseudo checksum.
4823 */
4824__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
4825{
4826 __wsum wsum;
4827 __sum16 sum;
4828
4829 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
4830
4831 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
4832 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
4833 if (likely(!sum)) {
4834 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
4835 !skb->csum_complete_sw)
4836 netdev_rx_csum_fault(skb->dev);
4837 }
4838
4839 NAPI_GRO_CB(skb)->csum = wsum;
4840 NAPI_GRO_CB(skb)->csum_valid = 1;
4841
4842 return sum;
4843}
4844EXPORT_SYMBOL(__skb_gro_checksum_complete);
4845
Eric Dumazete326bed2010-04-22 00:22:45 -07004846/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08004847 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07004848 * Note: called with local irq disabled, but exits with local irq enabled.
4849 */
4850static void net_rps_action_and_irq_enable(struct softnet_data *sd)
4851{
4852#ifdef CONFIG_RPS
4853 struct softnet_data *remsd = sd->rps_ipi_list;
4854
4855 if (remsd) {
4856 sd->rps_ipi_list = NULL;
4857
4858 local_irq_enable();
4859
4860 /* Send pending IPI's to kick RPS processing on remote cpus. */
4861 while (remsd) {
4862 struct softnet_data *next = remsd->rps_ipi_next;
4863
Subash Abhinov Kasiviswanathanc6595492017-06-26 19:04:30 -06004864 if (cpu_online(remsd->cpu)) {
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +01004865 smp_call_function_single_async(remsd->cpu,
Frederic Weisbeckerfce8ad12014-02-24 16:40:01 +01004866 &remsd->csd);
Subash Abhinov Kasiviswanathanc6595492017-06-26 19:04:30 -06004867 } else {
4868 pr_err("%s() cpu offline\n", __func__);
4869 rps_lock(remsd);
4870 remsd->backlog.state = 0;
4871 rps_unlock(remsd);
4872 }
Eric Dumazete326bed2010-04-22 00:22:45 -07004873 remsd = next;
4874 }
4875 } else
4876#endif
4877 local_irq_enable();
4878}
4879
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004880static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
4881{
4882#ifdef CONFIG_RPS
4883 return sd->rps_ipi_list != NULL;
4884#else
4885 return false;
4886#endif
4887}
4888
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004889static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004890{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004891 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004892 bool again = true;
4893 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004894
Eric Dumazete326bed2010-04-22 00:22:45 -07004895 /* Check if we have pending ipi, its better to send them now,
4896 * not waiting net_rx_action() end.
4897 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004898 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07004899 local_irq_disable();
4900 net_rps_action_and_irq_enable(sd);
4901 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004902
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004903 napi->weight = weight_p;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004904 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004905 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004906
Changli Gao6e7676c2010-04-27 15:07:33 -07004907 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03004908 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07004909 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03004910 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00004911 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004912 if (++work >= quota)
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07004913 goto state_changed;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004914 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004915
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004916 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004917 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07004918 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004919 /*
4920 * Inline a custom version of __napi_complete().
4921 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07004922 * and NAPI_STATE_SCHED is the only possible flag set
4923 * on backlog.
4924 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004925 * and we dont need an smp_mb() memory barrier.
4926 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004927 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004928 again = false;
4929 } else {
4930 skb_queue_splice_tail_init(&sd->input_pkt_queue,
4931 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07004932 }
4933 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004934 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004936
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07004937state_changed:
4938 napi_gro_flush(napi, false);
4939 sd->current_napi = NULL;
4940
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004941 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004942}
4943
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004944/**
4945 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07004946 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004947 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07004948 * The entry's receive function will be scheduled to run.
4949 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004950 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08004951void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004952{
4953 unsigned long flags;
4954
4955 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05004956 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004957 local_irq_restore(flags);
4958}
4959EXPORT_SYMBOL(__napi_schedule);
4960
Eric Dumazetbc9ad162014-10-28 18:05:13 -07004961/**
4962 * __napi_schedule_irqoff - schedule for receive
4963 * @n: entry to schedule
4964 *
4965 * Variant of __napi_schedule() assuming hard irqs are masked
4966 */
4967void __napi_schedule_irqoff(struct napi_struct *n)
4968{
4969 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
4970}
4971EXPORT_SYMBOL(__napi_schedule_irqoff);
4972
Herbert Xud565b0a2008-12-15 23:38:52 -08004973void __napi_complete(struct napi_struct *n)
4974{
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07004975 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
4976
Herbert Xud565b0a2008-12-15 23:38:52 -08004977 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
Herbert Xud565b0a2008-12-15 23:38:52 -08004978
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004979 list_del_init(&n->poll_list);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004980 smp_mb__before_atomic();
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07004981 sd->current_napi = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004982 clear_bit(NAPI_STATE_SCHED, &n->state);
4983}
4984EXPORT_SYMBOL(__napi_complete);
4985
Eric Dumazet3b47d302014-11-06 21:09:44 -08004986void napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08004987{
4988 unsigned long flags;
4989
4990 /*
4991 * don't let napi dequeue from the cpu poll list
4992 * just in case its running on a different cpu
4993 */
4994 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
4995 return;
4996
Eric Dumazet3b47d302014-11-06 21:09:44 -08004997 if (n->gro_list) {
4998 unsigned long timeout = 0;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004999
Eric Dumazet3b47d302014-11-06 21:09:44 -08005000 if (work_done)
5001 timeout = n->dev->gro_flush_timeout;
5002
5003 if (timeout)
5004 hrtimer_start(&n->timer, ns_to_ktime(timeout),
5005 HRTIMER_MODE_REL_PINNED);
5006 else
5007 napi_gro_flush(n, false);
5008 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005009 if (likely(list_empty(&n->poll_list))) {
5010 WARN_ON_ONCE(!test_and_clear_bit(NAPI_STATE_SCHED, &n->state));
5011 } else {
5012 /* If n->poll_list is not empty, we need to mask irqs */
5013 local_irq_save(flags);
5014 __napi_complete(n);
5015 local_irq_restore(flags);
5016 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005017}
Eric Dumazet3b47d302014-11-06 21:09:44 -08005018EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08005019
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005020/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08005021static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005022{
5023 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
5024 struct napi_struct *napi;
5025
5026 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
5027 if (napi->napi_id == napi_id)
5028 return napi;
5029
5030 return NULL;
5031}
Eric Dumazet02d62e82015-11-18 06:30:52 -08005032
5033#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazetce6aea92015-11-18 06:30:54 -08005034#define BUSY_POLL_BUDGET 8
Eric Dumazet02d62e82015-11-18 06:30:52 -08005035bool sk_busy_loop(struct sock *sk, int nonblock)
5036{
5037 unsigned long end_time = !nonblock ? sk_busy_loop_end_time(sk) : 0;
Eric Dumazetce6aea92015-11-18 06:30:54 -08005038 int (*busy_poll)(struct napi_struct *dev);
Eric Dumazet02d62e82015-11-18 06:30:52 -08005039 struct napi_struct *napi;
5040 int rc = false;
5041
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005042 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005043
5044 napi = napi_by_id(sk->sk_napi_id);
5045 if (!napi)
5046 goto out;
5047
Eric Dumazetce6aea92015-11-18 06:30:54 -08005048 /* Note: ndo_busy_poll method is optional in linux-4.5 */
5049 busy_poll = napi->dev->netdev_ops->ndo_busy_poll;
Eric Dumazet02d62e82015-11-18 06:30:52 -08005050
5051 do {
Eric Dumazetce6aea92015-11-18 06:30:54 -08005052 rc = 0;
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005053 local_bh_disable();
Eric Dumazetce6aea92015-11-18 06:30:54 -08005054 if (busy_poll) {
5055 rc = busy_poll(napi);
5056 } else if (napi_schedule_prep(napi)) {
5057 void *have = netpoll_poll_lock(napi);
5058
5059 if (test_bit(NAPI_STATE_SCHED, &napi->state)) {
5060 rc = napi->poll(napi, BUSY_POLL_BUDGET);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02005061 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
Eric Dumazetce6aea92015-11-18 06:30:54 -08005062 if (rc == BUSY_POLL_BUDGET) {
5063 napi_complete_done(napi, rc);
5064 napi_schedule(napi);
5065 }
5066 }
5067 netpoll_poll_unlock(have);
5068 }
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005069 if (rc > 0)
Eric Dumazet02a1d6e2016-04-27 16:44:39 -07005070 __NET_ADD_STATS(sock_net(sk),
5071 LINUX_MIB_BUSYPOLLRXPACKETS, rc);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005072 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005073
5074 if (rc == LL_FLUSH_FAILED)
5075 break; /* permanent failure */
5076
Eric Dumazet02d62e82015-11-18 06:30:52 -08005077 cpu_relax();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005078 } while (!nonblock && skb_queue_empty(&sk->sk_receive_queue) &&
5079 !need_resched() && !busy_loop_timeout(end_time));
5080
5081 rc = !skb_queue_empty(&sk->sk_receive_queue);
5082out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005083 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005084 return rc;
5085}
5086EXPORT_SYMBOL(sk_busy_loop);
5087
5088#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005089
5090void napi_hash_add(struct napi_struct *napi)
5091{
Eric Dumazetd64b5e82015-11-18 06:31:00 -08005092 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state) ||
5093 test_and_set_bit(NAPI_STATE_HASHED, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005094 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005095
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005096 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005097
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005098 /* 0..NR_CPUS+1 range is reserved for sender_cpu use */
5099 do {
5100 if (unlikely(++napi_gen_id < NR_CPUS + 1))
5101 napi_gen_id = NR_CPUS + 1;
5102 } while (napi_by_id(napi_gen_id));
5103 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005104
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005105 hlist_add_head_rcu(&napi->napi_hash_node,
5106 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005107
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005108 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005109}
5110EXPORT_SYMBOL_GPL(napi_hash_add);
5111
5112/* Warning : caller is responsible to make sure rcu grace period
5113 * is respected before freeing memory containing @napi
5114 */
Eric Dumazet34cbe272015-11-18 06:31:02 -08005115bool napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005116{
Eric Dumazet34cbe272015-11-18 06:31:02 -08005117 bool rcu_sync_needed = false;
5118
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005119 spin_lock(&napi_hash_lock);
5120
Eric Dumazet34cbe272015-11-18 06:31:02 -08005121 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state)) {
5122 rcu_sync_needed = true;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005123 hlist_del_rcu(&napi->napi_hash_node);
Eric Dumazet34cbe272015-11-18 06:31:02 -08005124 }
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005125 spin_unlock(&napi_hash_lock);
Eric Dumazet34cbe272015-11-18 06:31:02 -08005126 return rcu_sync_needed;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005127}
5128EXPORT_SYMBOL_GPL(napi_hash_del);
5129
Eric Dumazet3b47d302014-11-06 21:09:44 -08005130static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
5131{
5132 struct napi_struct *napi;
5133
5134 napi = container_of(timer, struct napi_struct, timer);
5135 if (napi->gro_list)
5136 napi_schedule(napi);
5137
5138 return HRTIMER_NORESTART;
5139}
5140
Herbert Xud565b0a2008-12-15 23:38:52 -08005141void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
5142 int (*poll)(struct napi_struct *, int), int weight)
5143{
5144 INIT_LIST_HEAD(&napi->poll_list);
Eric Dumazet3b47d302014-11-06 21:09:44 -08005145 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
5146 napi->timer.function = napi_watchdog;
Herbert Xu4ae55442009-02-08 18:00:36 +00005147 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005148 napi->gro_list = NULL;
Herbert Xu5d38a072009-01-04 16:13:40 -08005149 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08005150 napi->poll = poll;
Eric Dumazet82dc3c62013-03-05 15:57:22 +00005151 if (weight > NAPI_POLL_WEIGHT)
5152 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
5153 weight, dev->name);
Herbert Xud565b0a2008-12-15 23:38:52 -08005154 napi->weight = weight;
5155 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08005156 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08005157#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08005158 spin_lock_init(&napi->poll_lock);
5159 napi->poll_owner = -1;
5160#endif
5161 set_bit(NAPI_STATE_SCHED, &napi->state);
Eric Dumazet93d05d42015-11-18 06:31:03 -08005162 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08005163}
5164EXPORT_SYMBOL(netif_napi_add);
5165
Eric Dumazet3b47d302014-11-06 21:09:44 -08005166void napi_disable(struct napi_struct *n)
5167{
5168 might_sleep();
5169 set_bit(NAPI_STATE_DISABLE, &n->state);
5170
5171 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
5172 msleep(1);
Neil Horman2d8bff12015-09-23 14:57:58 -04005173 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
5174 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08005175
5176 hrtimer_cancel(&n->timer);
5177
5178 clear_bit(NAPI_STATE_DISABLE, &n->state);
5179}
5180EXPORT_SYMBOL(napi_disable);
5181
Eric Dumazet93d05d42015-11-18 06:31:03 -08005182/* Must be called in process context */
Herbert Xud565b0a2008-12-15 23:38:52 -08005183void netif_napi_del(struct napi_struct *napi)
5184{
Eric Dumazet93d05d42015-11-18 06:31:03 -08005185 might_sleep();
5186 if (napi_hash_del(napi))
5187 synchronize_net();
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08005188 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07005189 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08005190
Eric Dumazet289dccb2013-12-20 14:29:08 -08005191 kfree_skb_list(napi->gro_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08005192 napi->gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00005193 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005194}
5195EXPORT_SYMBOL(netif_napi_del);
5196
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005197struct napi_struct *get_current_napi_context(void)
5198{
5199 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5200
5201 return sd->current_napi;
5202}
5203EXPORT_SYMBOL(get_current_napi_context);
5204
Herbert Xu726ce702014-12-21 07:16:21 +11005205static int napi_poll(struct napi_struct *n, struct list_head *repoll)
5206{
5207 void *have;
5208 int work, weight;
5209
5210 list_del_init(&n->poll_list);
5211
5212 have = netpoll_poll_lock(n);
5213
5214 weight = n->weight;
5215
5216 /* This NAPI_STATE_SCHED test is for avoiding a race
5217 * with netpoll's poll_napi(). Only the entity which
5218 * obtains the lock and sees NAPI_STATE_SCHED set will
5219 * actually make the ->poll() call. Therefore we avoid
5220 * accidentally calling ->poll() when NAPI is not scheduled.
5221 */
5222 work = 0;
5223 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005224 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5225
5226 sd->current_napi = n;
Herbert Xu726ce702014-12-21 07:16:21 +11005227 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02005228 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11005229 }
5230
5231 WARN_ON_ONCE(work > weight);
5232
5233 if (likely(work < weight))
5234 goto out_unlock;
5235
5236 /* Drivers must not modify the NAPI state if they
5237 * consume the entire weight. In such cases this code
5238 * still "owns" the NAPI instance and therefore can
5239 * move the instance around on the list at-will.
5240 */
5241 if (unlikely(napi_disable_pending(n))) {
5242 napi_complete(n);
5243 goto out_unlock;
5244 }
5245
5246 if (n->gro_list) {
5247 /* flush too old packets
5248 * If HZ < 1000, flush all packets.
5249 */
5250 napi_gro_flush(n, HZ >= 1000);
5251 }
5252
Herbert Xu001ce542014-12-21 07:16:22 +11005253 /* Some drivers may have called napi_schedule
5254 * prior to exhausting their budget.
5255 */
5256 if (unlikely(!list_empty(&n->poll_list))) {
5257 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
5258 n->dev ? n->dev->name : "backlog");
5259 goto out_unlock;
5260 }
5261
Herbert Xu726ce702014-12-21 07:16:21 +11005262 list_add_tail(&n->poll_list, repoll);
5263
5264out_unlock:
5265 netpoll_poll_unlock(have);
5266
5267 return work;
5268}
5269
Emese Revfy0766f782016-06-20 20:42:34 +02005270static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271{
Christoph Lameter903ceff2014-08-17 12:30:35 -05005272 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Stephen Hemminger24f8b232008-11-03 17:14:38 -08005273 unsigned long time_limit = jiffies + 2;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07005274 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005275 LIST_HEAD(list);
5276 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07005277
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005279 list_splice_init(&sd->poll_list, &list);
5280 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005281
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005282 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005283 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005285 if (list_empty(&list)) {
5286 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
5287 return;
5288 break;
5289 }
5290
Herbert Xu6bd373e2014-12-21 07:16:24 +11005291 n = list_first_entry(&list, struct napi_struct, poll_list);
5292 budget -= napi_poll(n, &repoll);
5293
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005294 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08005295 * Allow this to run for 2 jiffies since which will allow
5296 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005297 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005298 if (unlikely(budget <= 0 ||
5299 time_after_eq(jiffies, time_limit))) {
5300 sd->time_squeeze++;
5301 break;
5302 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005304
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +01005305 __kfree_skb_flush();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005306 local_irq_disable();
5307
5308 list_splice_tail_init(&sd->poll_list, &list);
5309 list_splice_tail(&repoll, &list);
5310 list_splice(&list, &sd->poll_list);
5311 if (!list_empty(&sd->poll_list))
5312 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
5313
Eric Dumazete326bed2010-04-22 00:22:45 -07005314 net_rps_action_and_irq_enable(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005315}
5316
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005317struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005318 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005319
5320 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005321 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005322
Veaceslav Falico5d261912013-08-28 23:25:05 +02005323 /* counter for the number of times this device was added to us */
5324 u16 ref_nr;
5325
Veaceslav Falico402dae92013-09-25 09:20:09 +02005326 /* private field for the users */
5327 void *private;
5328
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005329 struct list_head list;
5330 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005331};
5332
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005333static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005334 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005335{
Veaceslav Falico5d261912013-08-28 23:25:05 +02005336 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005337
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005338 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005339 if (adj->dev == adj_dev)
5340 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005341 }
5342 return NULL;
5343}
5344
5345/**
5346 * netdev_has_upper_dev - Check if device is linked to an upper device
5347 * @dev: device
5348 * @upper_dev: upper device to check
5349 *
5350 * Find out if a device is linked to specified upper device and return true
5351 * in case it is. Note that this checks only immediate upper device,
5352 * not through a complete stack of devices. The caller must hold the RTNL lock.
5353 */
5354bool netdev_has_upper_dev(struct net_device *dev,
5355 struct net_device *upper_dev)
5356{
5357 ASSERT_RTNL();
5358
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005359 return __netdev_find_adj(upper_dev, &dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005360}
5361EXPORT_SYMBOL(netdev_has_upper_dev);
5362
5363/**
5364 * netdev_has_any_upper_dev - Check if device is linked to some device
5365 * @dev: device
5366 *
5367 * Find out if a device is linked to an upper device and return true in case
5368 * it is. The caller must hold the RTNL lock.
5369 */
stephen hemminger1d143d92013-12-29 14:01:29 -08005370static bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005371{
5372 ASSERT_RTNL();
5373
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005374 return !list_empty(&dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005375}
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005376
5377/**
5378 * netdev_master_upper_dev_get - Get master upper device
5379 * @dev: device
5380 *
5381 * Find a master upper device and return pointer to it or NULL in case
5382 * it's not there. The caller must hold the RTNL lock.
5383 */
5384struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
5385{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005386 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005387
5388 ASSERT_RTNL();
5389
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005390 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005391 return NULL;
5392
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005393 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005394 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005395 if (likely(upper->master))
5396 return upper->dev;
5397 return NULL;
5398}
5399EXPORT_SYMBOL(netdev_master_upper_dev_get);
5400
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02005401void *netdev_adjacent_get_private(struct list_head *adj_list)
5402{
5403 struct netdev_adjacent *adj;
5404
5405 adj = list_entry(adj_list, struct netdev_adjacent, list);
5406
5407 return adj->private;
5408}
5409EXPORT_SYMBOL(netdev_adjacent_get_private);
5410
Veaceslav Falico31088a12013-09-25 09:20:12 +02005411/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04005412 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
5413 * @dev: device
5414 * @iter: list_head ** of the current position
5415 *
5416 * Gets the next device from the dev's upper list, starting from iter
5417 * position. The caller must hold RCU read lock.
5418 */
5419struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
5420 struct list_head **iter)
5421{
5422 struct netdev_adjacent *upper;
5423
5424 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
5425
5426 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5427
5428 if (&upper->list == &dev->adj_list.upper)
5429 return NULL;
5430
5431 *iter = &upper->list;
5432
5433 return upper->dev;
5434}
5435EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
5436
5437/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02005438 * netdev_all_upper_get_next_dev_rcu - Get the next dev from upper list
Veaceslav Falico48311f42013-08-28 23:25:07 +02005439 * @dev: device
5440 * @iter: list_head ** of the current position
5441 *
5442 * Gets the next device from the dev's upper list, starting from iter
5443 * position. The caller must hold RCU read lock.
5444 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005445struct net_device *netdev_all_upper_get_next_dev_rcu(struct net_device *dev,
5446 struct list_head **iter)
Veaceslav Falico48311f42013-08-28 23:25:07 +02005447{
5448 struct netdev_adjacent *upper;
5449
John Fastabend85328242013-11-26 06:33:52 +00005450 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
Veaceslav Falico48311f42013-08-28 23:25:07 +02005451
5452 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5453
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005454 if (&upper->list == &dev->all_adj_list.upper)
Veaceslav Falico48311f42013-08-28 23:25:07 +02005455 return NULL;
5456
5457 *iter = &upper->list;
5458
5459 return upper->dev;
5460}
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005461EXPORT_SYMBOL(netdev_all_upper_get_next_dev_rcu);
Veaceslav Falico48311f42013-08-28 23:25:07 +02005462
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005463/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02005464 * netdev_lower_get_next_private - Get the next ->private from the
5465 * lower neighbour list
5466 * @dev: device
5467 * @iter: list_head ** of the current position
5468 *
5469 * Gets the next netdev_adjacent->private from the dev's lower neighbour
5470 * list, starting from iter position. The caller must hold either hold the
5471 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00005472 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02005473 */
5474void *netdev_lower_get_next_private(struct net_device *dev,
5475 struct list_head **iter)
5476{
5477 struct netdev_adjacent *lower;
5478
5479 lower = list_entry(*iter, struct netdev_adjacent, list);
5480
5481 if (&lower->list == &dev->adj_list.lower)
5482 return NULL;
5483
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02005484 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02005485
5486 return lower->private;
5487}
5488EXPORT_SYMBOL(netdev_lower_get_next_private);
5489
5490/**
5491 * netdev_lower_get_next_private_rcu - Get the next ->private from the
5492 * lower neighbour list, RCU
5493 * variant
5494 * @dev: device
5495 * @iter: list_head ** of the current position
5496 *
5497 * Gets the next netdev_adjacent->private from the dev's lower neighbour
5498 * list, starting from iter position. The caller must hold RCU read lock.
5499 */
5500void *netdev_lower_get_next_private_rcu(struct net_device *dev,
5501 struct list_head **iter)
5502{
5503 struct netdev_adjacent *lower;
5504
5505 WARN_ON_ONCE(!rcu_read_lock_held());
5506
5507 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5508
5509 if (&lower->list == &dev->adj_list.lower)
5510 return NULL;
5511
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02005512 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02005513
5514 return lower->private;
5515}
5516EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
5517
5518/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005519 * netdev_lower_get_next - Get the next device from the lower neighbour
5520 * list
5521 * @dev: device
5522 * @iter: list_head ** of the current position
5523 *
5524 * Gets the next netdev_adjacent from the dev's lower neighbour
5525 * list, starting from iter position. The caller must hold RTNL lock or
5526 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00005527 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005528 */
5529void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
5530{
5531 struct netdev_adjacent *lower;
5532
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01005533 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005534
5535 if (&lower->list == &dev->adj_list.lower)
5536 return NULL;
5537
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01005538 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005539
5540 return lower->dev;
5541}
5542EXPORT_SYMBOL(netdev_lower_get_next);
5543
5544/**
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005545 * netdev_all_lower_get_next - Get the next device from all lower neighbour list
5546 * @dev: device
5547 * @iter: list_head ** of the current position
5548 *
5549 * Gets the next netdev_adjacent from the dev's all lower neighbour
5550 * list, starting from iter position. The caller must hold RTNL lock or
5551 * its own locking that guarantees that the neighbour all lower
5552 * list will remain unchanged.
5553 */
5554struct net_device *netdev_all_lower_get_next(struct net_device *dev, struct list_head **iter)
5555{
5556 struct netdev_adjacent *lower;
5557
5558 lower = list_entry(*iter, struct netdev_adjacent, list);
5559
5560 if (&lower->list == &dev->all_adj_list.lower)
5561 return NULL;
5562
5563 *iter = lower->list.next;
5564
5565 return lower->dev;
5566}
5567EXPORT_SYMBOL(netdev_all_lower_get_next);
5568
5569/**
5570 * netdev_all_lower_get_next_rcu - Get the next device from all
5571 * lower neighbour list, RCU variant
5572 * @dev: device
5573 * @iter: list_head ** of the current position
5574 *
5575 * Gets the next netdev_adjacent from the dev's all lower neighbour
5576 * list, starting from iter position. The caller must hold RCU read lock.
5577 */
5578struct net_device *netdev_all_lower_get_next_rcu(struct net_device *dev,
5579 struct list_head **iter)
5580{
5581 struct netdev_adjacent *lower;
5582
Ido Schimmele4961b02016-10-19 16:57:08 +03005583 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005584
Ido Schimmele4961b02016-10-19 16:57:08 +03005585 if (&lower->list == &dev->all_adj_list.lower)
5586 return NULL;
5587
5588 *iter = &lower->list;
5589
5590 return lower->dev;
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005591}
5592EXPORT_SYMBOL(netdev_all_lower_get_next_rcu);
5593
5594/**
dingtianhonge001bfa2013-12-13 10:19:55 +08005595 * netdev_lower_get_first_private_rcu - Get the first ->private from the
5596 * lower neighbour list, RCU
5597 * variant
5598 * @dev: device
5599 *
5600 * Gets the first netdev_adjacent->private from the dev's lower neighbour
5601 * list. The caller must hold RCU read lock.
5602 */
5603void *netdev_lower_get_first_private_rcu(struct net_device *dev)
5604{
5605 struct netdev_adjacent *lower;
5606
5607 lower = list_first_or_null_rcu(&dev->adj_list.lower,
5608 struct netdev_adjacent, list);
5609 if (lower)
5610 return lower->private;
5611 return NULL;
5612}
5613EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
5614
5615/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005616 * netdev_master_upper_dev_get_rcu - Get master upper device
5617 * @dev: device
5618 *
5619 * Find a master upper device and return pointer to it or NULL in case
5620 * it's not there. The caller must hold the RCU read lock.
5621 */
5622struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
5623{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005624 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005625
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005626 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005627 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005628 if (upper && likely(upper->master))
5629 return upper->dev;
5630 return NULL;
5631}
5632EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
5633
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05305634static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005635 struct net_device *adj_dev,
5636 struct list_head *dev_list)
5637{
5638 char linkname[IFNAMSIZ+7];
5639 sprintf(linkname, dev_list == &dev->adj_list.upper ?
5640 "upper_%s" : "lower_%s", adj_dev->name);
5641 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
5642 linkname);
5643}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05305644static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005645 char *name,
5646 struct list_head *dev_list)
5647{
5648 char linkname[IFNAMSIZ+7];
5649 sprintf(linkname, dev_list == &dev->adj_list.upper ?
5650 "upper_%s" : "lower_%s", name);
5651 sysfs_remove_link(&(dev->dev.kobj), linkname);
5652}
5653
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005654static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
5655 struct net_device *adj_dev,
5656 struct list_head *dev_list)
5657{
5658 return (dev_list == &dev->adj_list.upper ||
5659 dev_list == &dev->adj_list.lower) &&
5660 net_eq(dev_net(dev), dev_net(adj_dev));
5661}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005662
Veaceslav Falico5d261912013-08-28 23:25:05 +02005663static int __netdev_adjacent_dev_insert(struct net_device *dev,
5664 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005665 u16 ref_nr,
Veaceslav Falico7863c052013-09-25 09:20:06 +02005666 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005667 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005668{
5669 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005670 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005671
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005672 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005673
5674 if (adj) {
Andrew Collins93409032016-10-03 13:43:02 -06005675 adj->ref_nr += ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005676 return 0;
5677 }
5678
5679 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
5680 if (!adj)
5681 return -ENOMEM;
5682
5683 adj->dev = adj_dev;
5684 adj->master = master;
Andrew Collins93409032016-10-03 13:43:02 -06005685 adj->ref_nr = ref_nr;
Veaceslav Falico402dae92013-09-25 09:20:09 +02005686 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005687 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005688
5689 pr_debug("dev_hold for %s, because of link added from %s to %s\n",
5690 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005691
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005692 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005693 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005694 if (ret)
5695 goto free_adj;
5696 }
5697
Veaceslav Falico7863c052013-09-25 09:20:06 +02005698 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005699 if (master) {
5700 ret = sysfs_create_link(&(dev->dev.kobj),
5701 &(adj_dev->dev.kobj), "master");
5702 if (ret)
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005703 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005704
Veaceslav Falico7863c052013-09-25 09:20:06 +02005705 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005706 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02005707 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005708 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02005709
5710 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005711
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005712remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005713 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005714 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005715free_adj:
5716 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02005717 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005718
5719 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005720}
5721
stephen hemminger1d143d92013-12-29 14:01:29 -08005722static void __netdev_adjacent_dev_remove(struct net_device *dev,
5723 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005724 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005725 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005726{
5727 struct netdev_adjacent *adj;
5728
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005729 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005730
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005731 if (!adj) {
5732 pr_err("tried to remove device %s from %s\n",
5733 dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005734 BUG();
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005735 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02005736
Andrew Collins93409032016-10-03 13:43:02 -06005737 if (adj->ref_nr > ref_nr) {
5738 pr_debug("%s to %s ref_nr-%d = %d\n", dev->name, adj_dev->name,
5739 ref_nr, adj->ref_nr-ref_nr);
5740 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005741 return;
5742 }
5743
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005744 if (adj->master)
5745 sysfs_remove_link(&(dev->dev.kobj), "master");
5746
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005747 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005748 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005749
Veaceslav Falico5d261912013-08-28 23:25:05 +02005750 list_del_rcu(&adj->list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005751 pr_debug("dev_put for %s, because link removed from %s to %s\n",
5752 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005753 dev_put(adj_dev);
5754 kfree_rcu(adj, rcu);
5755}
5756
stephen hemminger1d143d92013-12-29 14:01:29 -08005757static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
5758 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005759 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005760 struct list_head *up_list,
5761 struct list_head *down_list,
5762 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005763{
5764 int ret;
5765
Andrew Collins93409032016-10-03 13:43:02 -06005766 ret = __netdev_adjacent_dev_insert(dev, upper_dev, ref_nr, up_list,
5767 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005768 if (ret)
5769 return ret;
5770
Andrew Collins93409032016-10-03 13:43:02 -06005771 ret = __netdev_adjacent_dev_insert(upper_dev, dev, ref_nr, down_list,
5772 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005773 if (ret) {
Andrew Collins93409032016-10-03 13:43:02 -06005774 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005775 return ret;
5776 }
5777
5778 return 0;
5779}
5780
stephen hemminger1d143d92013-12-29 14:01:29 -08005781static int __netdev_adjacent_dev_link(struct net_device *dev,
Andrew Collins93409032016-10-03 13:43:02 -06005782 struct net_device *upper_dev,
5783 u16 ref_nr)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005784{
Andrew Collins93409032016-10-03 13:43:02 -06005785 return __netdev_adjacent_dev_link_lists(dev, upper_dev, ref_nr,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005786 &dev->all_adj_list.upper,
5787 &upper_dev->all_adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005788 NULL, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005789}
5790
stephen hemminger1d143d92013-12-29 14:01:29 -08005791static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
5792 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005793 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005794 struct list_head *up_list,
5795 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005796{
Andrew Collins93409032016-10-03 13:43:02 -06005797 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
5798 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005799}
5800
stephen hemminger1d143d92013-12-29 14:01:29 -08005801static void __netdev_adjacent_dev_unlink(struct net_device *dev,
Andrew Collins93409032016-10-03 13:43:02 -06005802 struct net_device *upper_dev,
5803 u16 ref_nr)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005804{
Andrew Collins93409032016-10-03 13:43:02 -06005805 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, ref_nr,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005806 &dev->all_adj_list.upper,
5807 &upper_dev->all_adj_list.lower);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005808}
5809
stephen hemminger1d143d92013-12-29 14:01:29 -08005810static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
5811 struct net_device *upper_dev,
5812 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005813{
Andrew Collins93409032016-10-03 13:43:02 -06005814 int ret = __netdev_adjacent_dev_link(dev, upper_dev, 1);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005815
5816 if (ret)
5817 return ret;
5818
Andrew Collins93409032016-10-03 13:43:02 -06005819 ret = __netdev_adjacent_dev_link_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005820 &dev->adj_list.upper,
5821 &upper_dev->adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005822 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005823 if (ret) {
Andrew Collins93409032016-10-03 13:43:02 -06005824 __netdev_adjacent_dev_unlink(dev, upper_dev, 1);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005825 return ret;
5826 }
5827
5828 return 0;
5829}
5830
stephen hemminger1d143d92013-12-29 14:01:29 -08005831static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
5832 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005833{
Andrew Collins93409032016-10-03 13:43:02 -06005834 __netdev_adjacent_dev_unlink(dev, upper_dev, 1);
5835 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005836 &dev->adj_list.upper,
5837 &upper_dev->adj_list.lower);
5838}
Veaceslav Falico5d261912013-08-28 23:25:05 +02005839
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005840static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005841 struct net_device *upper_dev, bool master,
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005842 void *upper_priv, void *upper_info)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005843{
Jiri Pirko0e4ead92015-08-27 09:31:18 +02005844 struct netdev_notifier_changeupper_info changeupper_info;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005845 struct netdev_adjacent *i, *j, *to_i, *to_j;
5846 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005847
5848 ASSERT_RTNL();
5849
5850 if (dev == upper_dev)
5851 return -EBUSY;
5852
5853 /* To prevent loops, check if dev is not upper device to upper_dev. */
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005854 if (__netdev_find_adj(dev, &upper_dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005855 return -EBUSY;
5856
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005857 if (__netdev_find_adj(upper_dev, &dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005858 return -EEXIST;
5859
5860 if (master && netdev_master_upper_dev_get(dev))
5861 return -EBUSY;
5862
Jiri Pirko0e4ead92015-08-27 09:31:18 +02005863 changeupper_info.upper_dev = upper_dev;
5864 changeupper_info.master = master;
5865 changeupper_info.linking = true;
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005866 changeupper_info.upper_info = upper_info;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02005867
Jiri Pirko573c7ba2015-10-16 14:01:22 +02005868 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER, dev,
5869 &changeupper_info.info);
5870 ret = notifier_to_errno(ret);
5871 if (ret)
5872 return ret;
5873
Jiri Pirko6dffb042015-12-03 12:12:10 +01005874 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005875 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005876 if (ret)
5877 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005878
Veaceslav Falico5d261912013-08-28 23:25:05 +02005879 /* Now that we linked these devs, make all the upper_dev's
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005880 * all_adj_list.upper visible to every dev's all_adj_list.lower an
Veaceslav Falico5d261912013-08-28 23:25:05 +02005881 * versa, and don't forget the devices itself. All of these
5882 * links are non-neighbours.
5883 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005884 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5885 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
5886 pr_debug("Interlinking %s with %s, non-neighbour\n",
5887 i->dev->name, j->dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06005888 ret = __netdev_adjacent_dev_link(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005889 if (ret)
5890 goto rollback_mesh;
5891 }
5892 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005893
Veaceslav Falico5d261912013-08-28 23:25:05 +02005894 /* add dev to every upper_dev's upper device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005895 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
5896 pr_debug("linking %s's upper device %s with %s\n",
5897 upper_dev->name, i->dev->name, dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06005898 ret = __netdev_adjacent_dev_link(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005899 if (ret)
5900 goto rollback_upper_mesh;
5901 }
5902
5903 /* add upper_dev to every dev's lower device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005904 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5905 pr_debug("linking %s's lower device %s with %s\n", dev->name,
5906 i->dev->name, upper_dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06005907 ret = __netdev_adjacent_dev_link(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005908 if (ret)
5909 goto rollback_lower_mesh;
5910 }
5911
Ido Schimmelb03804e2015-12-03 12:12:03 +01005912 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER, dev,
5913 &changeupper_info.info);
5914 ret = notifier_to_errno(ret);
5915 if (ret)
5916 goto rollback_lower_mesh;
5917
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005918 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005919
5920rollback_lower_mesh:
5921 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005922 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005923 if (i == to_i)
5924 break;
Andrew Collins93409032016-10-03 13:43:02 -06005925 __netdev_adjacent_dev_unlink(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005926 }
5927
5928 i = NULL;
5929
5930rollback_upper_mesh:
5931 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005932 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005933 if (i == to_i)
5934 break;
Andrew Collins93409032016-10-03 13:43:02 -06005935 __netdev_adjacent_dev_unlink(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005936 }
5937
5938 i = j = NULL;
5939
5940rollback_mesh:
5941 to_i = i;
5942 to_j = j;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005943 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5944 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005945 if (i == to_i && j == to_j)
5946 break;
Andrew Collins93409032016-10-03 13:43:02 -06005947 __netdev_adjacent_dev_unlink(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005948 }
5949 if (i == to_i)
5950 break;
5951 }
5952
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005953 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005954
5955 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005956}
5957
5958/**
5959 * netdev_upper_dev_link - Add a link to the upper device
5960 * @dev: device
5961 * @upper_dev: new upper device
5962 *
5963 * Adds a link to device which is upper to this one. The caller must hold
5964 * the RTNL lock. On a failure a negative errno code is returned.
5965 * On success the reference counts are adjusted and the function
5966 * returns zero.
5967 */
5968int netdev_upper_dev_link(struct net_device *dev,
5969 struct net_device *upper_dev)
5970{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005971 return __netdev_upper_dev_link(dev, upper_dev, false, NULL, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005972}
5973EXPORT_SYMBOL(netdev_upper_dev_link);
5974
5975/**
5976 * netdev_master_upper_dev_link - Add a master link to the upper device
5977 * @dev: device
5978 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01005979 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005980 * @upper_info: upper info to be passed down via notifier
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005981 *
5982 * Adds a link to device which is upper to this one. In this case, only
5983 * one master upper device can be linked, although other non-master devices
5984 * might be linked as well. The caller must hold the RTNL lock.
5985 * On a failure a negative errno code is returned. On success the reference
5986 * counts are adjusted and the function returns zero.
5987 */
5988int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01005989 struct net_device *upper_dev,
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005990 void *upper_priv, void *upper_info)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005991{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005992 return __netdev_upper_dev_link(dev, upper_dev, true,
5993 upper_priv, upper_info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005994}
5995EXPORT_SYMBOL(netdev_master_upper_dev_link);
5996
5997/**
5998 * netdev_upper_dev_unlink - Removes a link to upper device
5999 * @dev: device
6000 * @upper_dev: new upper device
6001 *
6002 * Removes a link to device which is upper to this one. The caller must hold
6003 * the RTNL lock.
6004 */
6005void netdev_upper_dev_unlink(struct net_device *dev,
6006 struct net_device *upper_dev)
6007{
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006008 struct netdev_notifier_changeupper_info changeupper_info;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006009 struct netdev_adjacent *i, *j;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006010 ASSERT_RTNL();
6011
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006012 changeupper_info.upper_dev = upper_dev;
6013 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
6014 changeupper_info.linking = false;
6015
Jiri Pirko573c7ba2015-10-16 14:01:22 +02006016 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER, dev,
6017 &changeupper_info.info);
6018
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006019 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006020
6021 /* Here is the tricky part. We must remove all dev's lower
6022 * devices from all upper_dev's upper devices and vice
6023 * versa, to maintain the graph relationship.
6024 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006025 list_for_each_entry(i, &dev->all_adj_list.lower, list)
6026 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list)
Andrew Collins93409032016-10-03 13:43:02 -06006027 __netdev_adjacent_dev_unlink(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006028
6029 /* remove also the devices itself from lower/upper device
6030 * list
6031 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006032 list_for_each_entry(i, &dev->all_adj_list.lower, list)
Andrew Collins93409032016-10-03 13:43:02 -06006033 __netdev_adjacent_dev_unlink(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006034
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006035 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list)
Andrew Collins93409032016-10-03 13:43:02 -06006036 __netdev_adjacent_dev_unlink(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006037
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006038 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER, dev,
6039 &changeupper_info.info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006040}
6041EXPORT_SYMBOL(netdev_upper_dev_unlink);
6042
Moni Shoua61bd3852015-02-03 16:48:29 +02006043/**
6044 * netdev_bonding_info_change - Dispatch event about slave change
6045 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09006046 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02006047 *
6048 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
6049 * The caller must hold the RTNL lock.
6050 */
6051void netdev_bonding_info_change(struct net_device *dev,
6052 struct netdev_bonding_info *bonding_info)
6053{
6054 struct netdev_notifier_bonding_info info;
6055
6056 memcpy(&info.bonding_info, bonding_info,
6057 sizeof(struct netdev_bonding_info));
6058 call_netdevice_notifiers_info(NETDEV_BONDING_INFO, dev,
6059 &info.info);
6060}
6061EXPORT_SYMBOL(netdev_bonding_info_change);
6062
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08006063static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006064{
6065 struct netdev_adjacent *iter;
6066
6067 struct net *net = dev_net(dev);
6068
6069 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006070 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006071 continue;
6072 netdev_adjacent_sysfs_add(iter->dev, dev,
6073 &iter->dev->adj_list.lower);
6074 netdev_adjacent_sysfs_add(dev, iter->dev,
6075 &dev->adj_list.upper);
6076 }
6077
6078 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006079 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006080 continue;
6081 netdev_adjacent_sysfs_add(iter->dev, dev,
6082 &iter->dev->adj_list.upper);
6083 netdev_adjacent_sysfs_add(dev, iter->dev,
6084 &dev->adj_list.lower);
6085 }
6086}
6087
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08006088static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006089{
6090 struct netdev_adjacent *iter;
6091
6092 struct net *net = dev_net(dev);
6093
6094 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006095 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006096 continue;
6097 netdev_adjacent_sysfs_del(iter->dev, dev->name,
6098 &iter->dev->adj_list.lower);
6099 netdev_adjacent_sysfs_del(dev, iter->dev->name,
6100 &dev->adj_list.upper);
6101 }
6102
6103 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006104 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006105 continue;
6106 netdev_adjacent_sysfs_del(iter->dev, dev->name,
6107 &iter->dev->adj_list.upper);
6108 netdev_adjacent_sysfs_del(dev, iter->dev->name,
6109 &dev->adj_list.lower);
6110 }
6111}
6112
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006113void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02006114{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006115 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02006116
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006117 struct net *net = dev_net(dev);
6118
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006119 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006120 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006121 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006122 netdev_adjacent_sysfs_del(iter->dev, oldname,
6123 &iter->dev->adj_list.lower);
6124 netdev_adjacent_sysfs_add(iter->dev, dev,
6125 &iter->dev->adj_list.lower);
6126 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02006127
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006128 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006129 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006130 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006131 netdev_adjacent_sysfs_del(iter->dev, oldname,
6132 &iter->dev->adj_list.upper);
6133 netdev_adjacent_sysfs_add(iter->dev, dev,
6134 &iter->dev->adj_list.upper);
6135 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02006136}
Veaceslav Falico402dae92013-09-25 09:20:09 +02006137
6138void *netdev_lower_dev_get_private(struct net_device *dev,
6139 struct net_device *lower_dev)
6140{
6141 struct netdev_adjacent *lower;
6142
6143 if (!lower_dev)
6144 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006145 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02006146 if (!lower)
6147 return NULL;
6148
6149 return lower->private;
6150}
6151EXPORT_SYMBOL(netdev_lower_dev_get_private);
6152
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006153
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006154int dev_get_nest_level(struct net_device *dev)
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006155{
6156 struct net_device *lower = NULL;
6157 struct list_head *iter;
6158 int max_nest = -1;
6159 int nest;
6160
6161 ASSERT_RTNL();
6162
6163 netdev_for_each_lower_dev(dev, lower, iter) {
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006164 nest = dev_get_nest_level(lower);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006165 if (max_nest < nest)
6166 max_nest = nest;
6167 }
6168
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006169 return max_nest + 1;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006170}
6171EXPORT_SYMBOL(dev_get_nest_level);
6172
Jiri Pirko04d48262015-12-03 12:12:15 +01006173/**
6174 * netdev_lower_change - Dispatch event about lower device state change
6175 * @lower_dev: device
6176 * @lower_state_info: state to dispatch
6177 *
6178 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
6179 * The caller must hold the RTNL lock.
6180 */
6181void netdev_lower_state_changed(struct net_device *lower_dev,
6182 void *lower_state_info)
6183{
6184 struct netdev_notifier_changelowerstate_info changelowerstate_info;
6185
6186 ASSERT_RTNL();
6187 changelowerstate_info.lower_state_info = lower_state_info;
6188 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE, lower_dev,
6189 &changelowerstate_info.info);
6190}
6191EXPORT_SYMBOL(netdev_lower_state_changed);
6192
Jiri Pirko18bfb922016-07-05 11:27:38 +02006193int netdev_default_l2upper_neigh_construct(struct net_device *dev,
6194 struct neighbour *n)
6195{
6196 struct net_device *lower_dev, *stop_dev;
6197 struct list_head *iter;
6198 int err;
6199
6200 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6201 if (!lower_dev->netdev_ops->ndo_neigh_construct)
6202 continue;
6203 err = lower_dev->netdev_ops->ndo_neigh_construct(lower_dev, n);
6204 if (err) {
6205 stop_dev = lower_dev;
6206 goto rollback;
6207 }
6208 }
6209 return 0;
6210
6211rollback:
6212 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6213 if (lower_dev == stop_dev)
6214 break;
6215 if (!lower_dev->netdev_ops->ndo_neigh_destroy)
6216 continue;
6217 lower_dev->netdev_ops->ndo_neigh_destroy(lower_dev, n);
6218 }
6219 return err;
6220}
6221EXPORT_SYMBOL_GPL(netdev_default_l2upper_neigh_construct);
6222
6223void netdev_default_l2upper_neigh_destroy(struct net_device *dev,
6224 struct neighbour *n)
6225{
6226 struct net_device *lower_dev;
6227 struct list_head *iter;
6228
6229 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6230 if (!lower_dev->netdev_ops->ndo_neigh_destroy)
6231 continue;
6232 lower_dev->netdev_ops->ndo_neigh_destroy(lower_dev, n);
6233 }
6234}
6235EXPORT_SYMBOL_GPL(netdev_default_l2upper_neigh_destroy);
6236
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006237static void dev_change_rx_flags(struct net_device *dev, int flags)
6238{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006239 const struct net_device_ops *ops = dev->netdev_ops;
6240
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05006241 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006242 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006243}
6244
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006245static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07006246{
Eric Dumazetb536db92011-11-30 21:42:26 +00006247 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06006248 kuid_t uid;
6249 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07006250
Patrick McHardy24023452007-07-14 18:51:31 -07006251 ASSERT_RTNL();
6252
Wang Chendad9b332008-06-18 01:48:28 -07006253 dev->flags |= IFF_PROMISC;
6254 dev->promiscuity += inc;
6255 if (dev->promiscuity == 0) {
6256 /*
6257 * Avoid overflow.
6258 * If inc causes overflow, untouch promisc and return error.
6259 */
6260 if (inc < 0)
6261 dev->flags &= ~IFF_PROMISC;
6262 else {
6263 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006264 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
6265 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07006266 return -EOVERFLOW;
6267 }
6268 }
Patrick McHardy4417da62007-06-27 01:28:10 -07006269 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006270 pr_info("device %s %s promiscuous mode\n",
6271 dev->name,
6272 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11006273 if (audit_enabled) {
6274 current_uid_gid(&uid, &gid);
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05006275 audit_log(current->audit_context, GFP_ATOMIC,
6276 AUDIT_ANOM_PROMISCUOUS,
6277 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
6278 dev->name, (dev->flags & IFF_PROMISC),
6279 (old_flags & IFF_PROMISC),
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07006280 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06006281 from_kuid(&init_user_ns, uid),
6282 from_kgid(&init_user_ns, gid),
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05006283 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11006284 }
Patrick McHardy24023452007-07-14 18:51:31 -07006285
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006286 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07006287 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006288 if (notify)
6289 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07006290 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07006291}
6292
Linus Torvalds1da177e2005-04-16 15:20:36 -07006293/**
6294 * dev_set_promiscuity - update promiscuity count on a device
6295 * @dev: device
6296 * @inc: modifier
6297 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07006298 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07006299 * remains above zero the interface remains promiscuous. Once it hits zero
6300 * the device reverts back to normal filtering operation. A negative inc
6301 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07006302 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303 */
Wang Chendad9b332008-06-18 01:48:28 -07006304int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006305{
Eric Dumazetb536db92011-11-30 21:42:26 +00006306 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07006307 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006309 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07006310 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07006311 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07006312 if (dev->flags != old_flags)
6313 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07006314 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006316EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006318static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006319{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006320 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006321
Patrick McHardy24023452007-07-14 18:51:31 -07006322 ASSERT_RTNL();
6323
Linus Torvalds1da177e2005-04-16 15:20:36 -07006324 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07006325 dev->allmulti += inc;
6326 if (dev->allmulti == 0) {
6327 /*
6328 * Avoid overflow.
6329 * If inc causes overflow, untouch allmulti and return error.
6330 */
6331 if (inc < 0)
6332 dev->flags &= ~IFF_ALLMULTI;
6333 else {
6334 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006335 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
6336 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07006337 return -EOVERFLOW;
6338 }
6339 }
Patrick McHardy24023452007-07-14 18:51:31 -07006340 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006341 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07006342 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006343 if (notify)
6344 __dev_notify_flags(dev, old_flags,
6345 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07006346 }
Wang Chendad9b332008-06-18 01:48:28 -07006347 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07006348}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006349
6350/**
6351 * dev_set_allmulti - update allmulti count on a device
6352 * @dev: device
6353 * @inc: modifier
6354 *
6355 * Add or remove reception of all multicast frames to a device. While the
6356 * count in the device remains above zero the interface remains listening
6357 * to all interfaces. Once it hits zero the device reverts back to normal
6358 * filtering operation. A negative @inc value is used to drop the counter
6359 * when releasing a resource needing all multicasts.
6360 * Return 0 if successful or a negative errno code on error.
6361 */
6362
6363int dev_set_allmulti(struct net_device *dev, int inc)
6364{
6365 return __dev_set_allmulti(dev, inc, true);
6366}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006367EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07006368
6369/*
6370 * Upload unicast and multicast address lists to device and
6371 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08006372 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07006373 * are present.
6374 */
6375void __dev_set_rx_mode(struct net_device *dev)
6376{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006377 const struct net_device_ops *ops = dev->netdev_ops;
6378
Patrick McHardy4417da62007-06-27 01:28:10 -07006379 /* dev_open will call this function so the list will stay sane. */
6380 if (!(dev->flags&IFF_UP))
6381 return;
6382
6383 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09006384 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07006385
Jiri Pirko01789342011-08-16 06:29:00 +00006386 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07006387 /* Unicast addresses changes may only happen under the rtnl,
6388 * therefore calling __dev_set_promiscuity here is safe.
6389 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08006390 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006391 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07006392 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08006393 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006394 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07006395 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07006396 }
Patrick McHardy4417da62007-06-27 01:28:10 -07006397 }
Jiri Pirko01789342011-08-16 06:29:00 +00006398
6399 if (ops->ndo_set_rx_mode)
6400 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07006401}
6402
6403void dev_set_rx_mode(struct net_device *dev)
6404{
David S. Millerb9e40852008-07-15 00:15:08 -07006405 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07006406 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07006407 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006408}
6409
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006410/**
6411 * dev_get_flags - get flags reported to userspace
6412 * @dev: device
6413 *
6414 * Get the combination of flag bits exported through APIs to userspace.
6415 */
Eric Dumazet95c96172012-04-15 05:58:06 +00006416unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006417{
Eric Dumazet95c96172012-04-15 05:58:06 +00006418 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006419
6420 flags = (dev->flags & ~(IFF_PROMISC |
6421 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08006422 IFF_RUNNING |
6423 IFF_LOWER_UP |
6424 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425 (dev->gflags & (IFF_PROMISC |
6426 IFF_ALLMULTI));
6427
Stefan Rompfb00055a2006-03-20 17:09:11 -08006428 if (netif_running(dev)) {
6429 if (netif_oper_up(dev))
6430 flags |= IFF_RUNNING;
6431 if (netif_carrier_ok(dev))
6432 flags |= IFF_LOWER_UP;
6433 if (netif_dormant(dev))
6434 flags |= IFF_DORMANT;
6435 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436
6437 return flags;
6438}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006439EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440
Patrick McHardybd380812010-02-26 06:34:53 +00006441int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006442{
Eric Dumazetb536db92011-11-30 21:42:26 +00006443 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00006444 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445
Patrick McHardy24023452007-07-14 18:51:31 -07006446 ASSERT_RTNL();
6447
Linus Torvalds1da177e2005-04-16 15:20:36 -07006448 /*
6449 * Set the flags on our device.
6450 */
6451
6452 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
6453 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
6454 IFF_AUTOMEDIA)) |
6455 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
6456 IFF_ALLMULTI));
6457
6458 /*
6459 * Load in the correct multicast list now the flags have changed.
6460 */
6461
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006462 if ((old_flags ^ flags) & IFF_MULTICAST)
6463 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07006464
Patrick McHardy4417da62007-06-27 01:28:10 -07006465 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466
6467 /*
6468 * Have we downed the interface. We handle IFF_UP ourselves
6469 * according to user attempts to set it, rather than blindly
6470 * setting it.
6471 */
6472
6473 ret = 0;
Peter Pan(潘卫平)d215d102014-06-16 21:57:22 +08006474 if ((old_flags ^ flags) & IFF_UP)
Patrick McHardybd380812010-02-26 06:34:53 +00006475 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006476
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006478 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006479 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006480
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006482
6483 if (__dev_set_promiscuity(dev, inc, false) >= 0)
6484 if (dev->flags != old_flags)
6485 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486 }
6487
6488 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
6489 is important. Some (broken) drivers set IFF_PROMISC, when
6490 IFF_ALLMULTI is requested not asking us and not reporting.
6491 */
6492 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006493 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
6494
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006496 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497 }
6498
Patrick McHardybd380812010-02-26 06:34:53 +00006499 return ret;
6500}
6501
Nicolas Dichtela528c212013-09-25 12:02:44 +02006502void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
6503 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00006504{
6505 unsigned int changes = dev->flags ^ old_flags;
6506
Nicolas Dichtela528c212013-09-25 12:02:44 +02006507 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006508 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02006509
Patrick McHardybd380812010-02-26 06:34:53 +00006510 if (changes & IFF_UP) {
6511 if (dev->flags & IFF_UP)
6512 call_netdevice_notifiers(NETDEV_UP, dev);
6513 else
6514 call_netdevice_notifiers(NETDEV_DOWN, dev);
6515 }
6516
6517 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00006518 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
6519 struct netdev_notifier_change_info change_info;
6520
6521 change_info.flags_changed = changes;
6522 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
6523 &change_info.info);
6524 }
Patrick McHardybd380812010-02-26 06:34:53 +00006525}
6526
6527/**
6528 * dev_change_flags - change device settings
6529 * @dev: device
6530 * @flags: device state flags
6531 *
6532 * Change settings on device based state flags. The flags are
6533 * in the userspace exported format.
6534 */
Eric Dumazetb536db92011-11-30 21:42:26 +00006535int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00006536{
Eric Dumazetb536db92011-11-30 21:42:26 +00006537 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006538 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00006539
6540 ret = __dev_change_flags(dev, flags);
6541 if (ret < 0)
6542 return ret;
6543
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006544 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02006545 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546 return ret;
6547}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006548EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006549
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006550static int __dev_set_mtu(struct net_device *dev, int new_mtu)
6551{
6552 const struct net_device_ops *ops = dev->netdev_ops;
6553
6554 if (ops->ndo_change_mtu)
6555 return ops->ndo_change_mtu(dev, new_mtu);
6556
6557 dev->mtu = new_mtu;
6558 return 0;
6559}
6560
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006561/**
6562 * dev_set_mtu - Change maximum transfer unit
6563 * @dev: device
6564 * @new_mtu: new transfer unit
6565 *
6566 * Change the maximum transfer size of the network device.
6567 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568int dev_set_mtu(struct net_device *dev, int new_mtu)
6569{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006570 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006571
6572 if (new_mtu == dev->mtu)
6573 return 0;
6574
6575 /* MTU must be positive. */
6576 if (new_mtu < 0)
6577 return -EINVAL;
6578
6579 if (!netif_device_present(dev))
6580 return -ENODEV;
6581
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01006582 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
6583 err = notifier_to_errno(err);
6584 if (err)
6585 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006586
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006587 orig_mtu = dev->mtu;
6588 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006589
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006590 if (!err) {
6591 err = call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
6592 err = notifier_to_errno(err);
6593 if (err) {
6594 /* setting mtu back and notifying everyone again,
6595 * so that they have a chance to revert changes.
6596 */
6597 __dev_set_mtu(dev, orig_mtu);
6598 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
6599 }
6600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601 return err;
6602}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006603EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006605/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00006606 * dev_set_group - Change group this device belongs to
6607 * @dev: device
6608 * @new_group: group this device should belong to
6609 */
6610void dev_set_group(struct net_device *dev, int new_group)
6611{
6612 dev->group = new_group;
6613}
6614EXPORT_SYMBOL(dev_set_group);
6615
6616/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006617 * dev_set_mac_address - Change Media Access Control Address
6618 * @dev: device
6619 * @sa: new address
6620 *
6621 * Change the hardware (MAC) address of the device
6622 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
6624{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006625 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626 int err;
6627
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006628 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629 return -EOPNOTSUPP;
6630 if (sa->sa_family != dev->type)
6631 return -EINVAL;
6632 if (!netif_device_present(dev))
6633 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006634 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00006635 if (err)
6636 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00006637 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00006638 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04006639 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00006640 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006641}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006642EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643
Jiri Pirko4bf84c32012-12-27 23:49:37 +00006644/**
6645 * dev_change_carrier - Change device carrier
6646 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00006647 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00006648 *
6649 * Change device carrier
6650 */
6651int dev_change_carrier(struct net_device *dev, bool new_carrier)
6652{
6653 const struct net_device_ops *ops = dev->netdev_ops;
6654
6655 if (!ops->ndo_change_carrier)
6656 return -EOPNOTSUPP;
6657 if (!netif_device_present(dev))
6658 return -ENODEV;
6659 return ops->ndo_change_carrier(dev, new_carrier);
6660}
6661EXPORT_SYMBOL(dev_change_carrier);
6662
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02006664 * dev_get_phys_port_id - Get device physical port ID
6665 * @dev: device
6666 * @ppid: port ID
6667 *
6668 * Get device physical port ID
6669 */
6670int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01006671 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02006672{
6673 const struct net_device_ops *ops = dev->netdev_ops;
6674
6675 if (!ops->ndo_get_phys_port_id)
6676 return -EOPNOTSUPP;
6677 return ops->ndo_get_phys_port_id(dev, ppid);
6678}
6679EXPORT_SYMBOL(dev_get_phys_port_id);
6680
6681/**
David Aherndb24a902015-03-17 20:23:15 -06006682 * dev_get_phys_port_name - Get device physical port name
6683 * @dev: device
6684 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00006685 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06006686 *
6687 * Get device physical port name
6688 */
6689int dev_get_phys_port_name(struct net_device *dev,
6690 char *name, size_t len)
6691{
6692 const struct net_device_ops *ops = dev->netdev_ops;
6693
6694 if (!ops->ndo_get_phys_port_name)
6695 return -EOPNOTSUPP;
6696 return ops->ndo_get_phys_port_name(dev, name, len);
6697}
6698EXPORT_SYMBOL(dev_get_phys_port_name);
6699
6700/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07006701 * dev_change_proto_down - update protocol port state information
6702 * @dev: device
6703 * @proto_down: new value
6704 *
6705 * This info can be used by switch drivers to set the phys state of the
6706 * port.
6707 */
6708int dev_change_proto_down(struct net_device *dev, bool proto_down)
6709{
6710 const struct net_device_ops *ops = dev->netdev_ops;
6711
6712 if (!ops->ndo_change_proto_down)
6713 return -EOPNOTSUPP;
6714 if (!netif_device_present(dev))
6715 return -ENODEV;
6716 return ops->ndo_change_proto_down(dev, proto_down);
6717}
6718EXPORT_SYMBOL(dev_change_proto_down);
6719
6720/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07006721 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
6722 * @dev: device
6723 * @fd: new program fd or negative value to clear
6724 *
6725 * Set or clear a bpf program for a device
6726 */
6727int dev_change_xdp_fd(struct net_device *dev, int fd)
6728{
6729 const struct net_device_ops *ops = dev->netdev_ops;
6730 struct bpf_prog *prog = NULL;
6731 struct netdev_xdp xdp = {};
6732 int err;
6733
6734 if (!ops->ndo_xdp)
6735 return -EOPNOTSUPP;
6736 if (fd >= 0) {
6737 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_XDP);
6738 if (IS_ERR(prog))
6739 return PTR_ERR(prog);
6740 }
6741
6742 xdp.command = XDP_SETUP_PROG;
6743 xdp.prog = prog;
6744 err = ops->ndo_xdp(dev, &xdp);
6745 if (err < 0 && prog)
6746 bpf_prog_put(prog);
6747
6748 return err;
6749}
6750EXPORT_SYMBOL(dev_change_xdp_fd);
6751
6752/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006753 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07006754 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07006755 *
6756 * Returns a suitable unique value for a new device interface
6757 * number. The caller must hold the rtnl semaphore or the
6758 * dev_base_lock to be sure it remains unique.
6759 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07006760static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006761{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00006762 int ifindex = net->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006763 for (;;) {
6764 if (++ifindex <= 0)
6765 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006766 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00006767 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768 }
6769}
6770
Linus Torvalds1da177e2005-04-16 15:20:36 -07006771/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08006772static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07006773DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006774
Stephen Hemminger6f05f622007-03-08 20:46:03 -08006775static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006776{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006777 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07006778 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006779}
6780
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006781static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006782{
Krishna Kumare93737b2009-12-08 22:26:02 +00006783 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006784 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006785
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006786 BUG_ON(dev_boot_phase);
6787 ASSERT_RTNL();
6788
Krishna Kumare93737b2009-12-08 22:26:02 +00006789 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006790 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00006791 * for initialization unwind. Remove those
6792 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006793 */
6794 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006795 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
6796 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006797
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006798 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00006799 list_del(&dev->unreg_list);
6800 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006801 }
Eric Dumazet449f4542011-05-19 12:24:16 +00006802 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006803 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00006804 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006805
Octavian Purdila44345722010-12-13 12:44:07 +00006806 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006807 list_for_each_entry(dev, head, unreg_list)
6808 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04006809 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006810
Octavian Purdila44345722010-12-13 12:44:07 +00006811 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006812 /* And unlink it from device chain. */
6813 unlist_netdevice(dev);
6814
6815 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006816 }
Eric Dumazet41852492016-08-26 12:50:39 -07006817 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006818
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006819 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006820
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006821 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006822 struct sk_buff *skb = NULL;
6823
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006824 /* Shutdown queueing discipline. */
6825 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006826
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006827
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006828 /* Notify protocols, that we are about to destroy
6829 this device. They should clean all the things.
6830 */
6831 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
6832
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006833 if (!dev->rtnl_link_ops ||
6834 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
6835 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U,
6836 GFP_KERNEL);
6837
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006838 /*
6839 * Flush the unicast and multicast chains
6840 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006841 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00006842 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006843
6844 if (dev->netdev_ops->ndo_uninit)
6845 dev->netdev_ops->ndo_uninit(dev);
6846
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006847 if (skb)
6848 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07006849
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006850 /* Notifier chain MUST detach us all upper devices. */
6851 WARN_ON(netdev_has_any_upper_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006852
6853 /* Remove entries from kobject tree */
6854 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00006855#ifdef CONFIG_XPS
6856 /* Remove XPS queueing entries */
6857 netif_reset_xps_queues_gt(dev, 0);
6858#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006859 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006860
Eric W. Biederman850a5452011-10-13 22:25:23 +00006861 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006862
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00006863 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006864 dev_put(dev);
6865}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006866
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006867static void rollback_registered(struct net_device *dev)
6868{
6869 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006870
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006871 list_add(&dev->unreg_list, &single);
6872 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00006873 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006874}
6875
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006876static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
6877 struct net_device *upper, netdev_features_t features)
6878{
6879 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
6880 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05006881 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006882
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05006883 for_each_netdev_feature(&upper_disables, feature_bit) {
6884 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006885 if (!(upper->wanted_features & feature)
6886 && (features & feature)) {
6887 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
6888 &feature, upper->name);
6889 features &= ~feature;
6890 }
6891 }
6892
6893 return features;
6894}
6895
6896static void netdev_sync_lower_features(struct net_device *upper,
6897 struct net_device *lower, netdev_features_t features)
6898{
6899 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
6900 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05006901 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006902
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05006903 for_each_netdev_feature(&upper_disables, feature_bit) {
6904 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006905 if (!(features & feature) && (lower->features & feature)) {
6906 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
6907 &feature, lower->name);
6908 lower->wanted_features &= ~feature;
6909 netdev_update_features(lower);
6910
6911 if (unlikely(lower->features & feature))
6912 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
6913 &feature, lower->name);
6914 }
6915 }
6916}
6917
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006918static netdev_features_t netdev_fix_features(struct net_device *dev,
6919 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07006920{
Michał Mirosław57422dc2011-01-22 12:14:12 +00006921 /* Fix illegal checksum combinations */
6922 if ((features & NETIF_F_HW_CSUM) &&
6923 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006924 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00006925 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
6926 }
6927
Herbert Xub63365a2008-10-23 01:11:29 -07006928 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00006929 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006930 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00006931 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07006932 }
6933
Pravin B Shelarec5f0612013-03-07 09:28:01 +00006934 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
6935 !(features & NETIF_F_IP_CSUM)) {
6936 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
6937 features &= ~NETIF_F_TSO;
6938 features &= ~NETIF_F_TSO_ECN;
6939 }
6940
6941 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
6942 !(features & NETIF_F_IPV6_CSUM)) {
6943 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
6944 features &= ~NETIF_F_TSO6;
6945 }
6946
Alexander Duyckb1dc4972016-05-02 09:38:24 -07006947 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
6948 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
6949 features &= ~NETIF_F_TSO_MANGLEID;
6950
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00006951 /* TSO ECN requires that TSO is present as well. */
6952 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
6953 features &= ~NETIF_F_TSO_ECN;
6954
Michał Mirosław212b5732011-02-15 16:59:16 +00006955 /* Software GSO depends on SG. */
6956 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006957 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00006958 features &= ~NETIF_F_GSO;
6959 }
6960
Michał Mirosławacd11302011-01-24 15:45:15 -08006961 /* UFO needs SG and checksumming */
Herbert Xub63365a2008-10-23 01:11:29 -07006962 if (features & NETIF_F_UFO) {
Michał Mirosław79032642010-11-30 06:38:00 +00006963 /* maybe split UFO into V4 and V6? */
Tom Herbertc8cd0982015-12-14 11:19:44 -08006964 if (!(features & NETIF_F_HW_CSUM) &&
6965 ((features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) !=
6966 (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006967 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08006968 "Dropping NETIF_F_UFO since no checksum offload features.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07006969 features &= ~NETIF_F_UFO;
6970 }
6971
6972 if (!(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006973 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08006974 "Dropping NETIF_F_UFO since no NETIF_F_SG feature.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07006975 features &= ~NETIF_F_UFO;
6976 }
6977 }
6978
Alexander Duyck802ab552016-04-10 21:45:03 -04006979 /* GSO partial features require GSO partial be set */
6980 if ((features & dev->gso_partial_features) &&
6981 !(features & NETIF_F_GSO_PARTIAL)) {
6982 netdev_dbg(dev,
6983 "Dropping partially supported GSO features since no GSO partial.\n");
6984 features &= ~dev->gso_partial_features;
6985 }
6986
Jiri Pirkod0290212014-04-02 23:09:31 +02006987#ifdef CONFIG_NET_RX_BUSY_POLL
6988 if (dev->netdev_ops->ndo_busy_poll)
6989 features |= NETIF_F_BUSY_POLL;
6990 else
6991#endif
6992 features &= ~NETIF_F_BUSY_POLL;
6993
Herbert Xub63365a2008-10-23 01:11:29 -07006994 return features;
6995}
Herbert Xub63365a2008-10-23 01:11:29 -07006996
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006997int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00006998{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006999 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007000 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007001 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05007002 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00007003
Michał Mirosław87267482011-04-12 09:56:38 +00007004 ASSERT_RTNL();
7005
Michał Mirosław5455c692011-02-15 16:59:17 +00007006 features = netdev_get_wanted_features(dev);
7007
7008 if (dev->netdev_ops->ndo_fix_features)
7009 features = dev->netdev_ops->ndo_fix_features(dev, features);
7010
7011 /* driver might be less strict about feature dependencies */
7012 features = netdev_fix_features(dev, features);
7013
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007014 /* some features can't be enabled if they're off an an upper device */
7015 netdev_for_each_upper_dev_rcu(dev, upper, iter)
7016 features = netdev_sync_upper_features(dev, upper, features);
7017
Michał Mirosław5455c692011-02-15 16:59:17 +00007018 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05007019 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00007020
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007021 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
7022 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00007023
7024 if (dev->netdev_ops->ndo_set_features)
7025 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01007026 else
7027 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00007028
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007029 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00007030 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007031 "set_features() failed (%d); wanted %pNF, left %pNF\n",
7032 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01007033 /* return non-0 since some features might have changed and
7034 * it's better to fire a spurious notification than miss it
7035 */
7036 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007037 }
7038
Jarod Wilsone7868a82015-11-03 23:09:32 -05007039sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007040 /* some features must be disabled on lower devices when disabled
7041 * on an upper device (think: bonding master or bridge)
7042 */
7043 netdev_for_each_lower_dev(dev, lower, iter)
7044 netdev_sync_lower_features(dev, lower, features);
7045
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007046 if (!err)
7047 dev->features = features;
7048
Jarod Wilsone7868a82015-11-03 23:09:32 -05007049 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007050}
7051
Michał Mirosławafe12cc2011-05-07 03:22:17 +00007052/**
7053 * netdev_update_features - recalculate device features
7054 * @dev: the device to check
7055 *
7056 * Recalculate dev->features set and send notifications if it
7057 * has changed. Should be called after driver or hardware dependent
7058 * conditions might have changed that influence the features.
7059 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007060void netdev_update_features(struct net_device *dev)
7061{
7062 if (__netdev_update_features(dev))
7063 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00007064}
7065EXPORT_SYMBOL(netdev_update_features);
7066
Linus Torvalds1da177e2005-04-16 15:20:36 -07007067/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00007068 * netdev_change_features - recalculate device features
7069 * @dev: the device to check
7070 *
7071 * Recalculate dev->features set and send notifications even
7072 * if they have not changed. Should be called instead of
7073 * netdev_update_features() if also dev->vlan_features might
7074 * have changed to allow the changes to be propagated to stacked
7075 * VLAN devices.
7076 */
7077void netdev_change_features(struct net_device *dev)
7078{
7079 __netdev_update_features(dev);
7080 netdev_features_change(dev);
7081}
7082EXPORT_SYMBOL(netdev_change_features);
7083
7084/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08007085 * netif_stacked_transfer_operstate - transfer operstate
7086 * @rootdev: the root or lower level device to transfer state from
7087 * @dev: the device to transfer operstate to
7088 *
7089 * Transfer operational state from root to device. This is normally
7090 * called when a stacking relationship exists between the root
7091 * device and the device(a leaf device).
7092 */
7093void netif_stacked_transfer_operstate(const struct net_device *rootdev,
7094 struct net_device *dev)
7095{
7096 if (rootdev->operstate == IF_OPER_DORMANT)
7097 netif_dormant_on(dev);
7098 else
7099 netif_dormant_off(dev);
7100
7101 if (netif_carrier_ok(rootdev)) {
7102 if (!netif_carrier_ok(dev))
7103 netif_carrier_on(dev);
7104 } else {
7105 if (netif_carrier_ok(dev))
7106 netif_carrier_off(dev);
7107 }
7108}
7109EXPORT_SYMBOL(netif_stacked_transfer_operstate);
7110
Michael Daltona953be52014-01-16 22:23:28 -08007111#ifdef CONFIG_SYSFS
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007112static int netif_alloc_rx_queues(struct net_device *dev)
7113{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007114 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00007115 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05307116 size_t sz = count * sizeof(*rx);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007117
Tom Herbertbd25fa72010-10-18 18:00:16 +00007118 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007119
Pankaj Gupta10595902015-01-12 11:41:28 +05307120 rx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7121 if (!rx) {
7122 rx = vzalloc(sz);
7123 if (!rx)
7124 return -ENOMEM;
7125 }
Tom Herbertbd25fa72010-10-18 18:00:16 +00007126 dev->_rx = rx;
7127
Tom Herbertbd25fa72010-10-18 18:00:16 +00007128 for (i = 0; i < count; i++)
Tom Herbertfe822242010-11-09 10:47:38 +00007129 rx[i].dev = dev;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007130 return 0;
7131}
Tom Herbertbf264142010-11-26 08:36:09 +00007132#endif
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007133
Changli Gaoaa942102010-12-04 02:31:41 +00007134static void netdev_init_one_queue(struct net_device *dev,
7135 struct netdev_queue *queue, void *_unused)
7136{
7137 /* Initialize queue lock */
7138 spin_lock_init(&queue->_xmit_lock);
7139 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
7140 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00007141 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00007142 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00007143#ifdef CONFIG_BQL
7144 dql_init(&queue->dql, HZ);
7145#endif
Changli Gaoaa942102010-12-04 02:31:41 +00007146}
7147
Eric Dumazet60877a32013-06-20 01:15:51 -07007148static void netif_free_tx_queues(struct net_device *dev)
7149{
WANG Cong4cb28972014-06-02 15:55:22 -07007150 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07007151}
7152
Tom Herberte6484932010-10-18 18:04:39 +00007153static int netif_alloc_netdev_queues(struct net_device *dev)
7154{
7155 unsigned int count = dev->num_tx_queues;
7156 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07007157 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00007158
Eric Dumazetd3397272015-07-06 17:13:26 +02007159 if (count < 1 || count > 0xffff)
7160 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00007161
Eric Dumazet60877a32013-06-20 01:15:51 -07007162 tx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7163 if (!tx) {
7164 tx = vzalloc(sz);
7165 if (!tx)
7166 return -ENOMEM;
7167 }
Tom Herberte6484932010-10-18 18:04:39 +00007168 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00007169
Tom Herberte6484932010-10-18 18:04:39 +00007170 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
7171 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00007172
7173 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00007174}
7175
Denys Vlasenkoa2029242015-05-11 21:17:53 +02007176void netif_tx_stop_all_queues(struct net_device *dev)
7177{
7178 unsigned int i;
7179
7180 for (i = 0; i < dev->num_tx_queues; i++) {
7181 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
7182 netif_tx_stop_queue(txq);
7183 }
7184}
7185EXPORT_SYMBOL(netif_tx_stop_all_queues);
7186
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08007187/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007188 * register_netdevice - register a network device
7189 * @dev: device to register
7190 *
7191 * Take a completed network device structure and add it to the kernel
7192 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
7193 * chain. 0 is returned on success. A negative errno code is returned
7194 * on a failure to set up the device, or if the name is a duplicate.
7195 *
7196 * Callers must hold the rtnl semaphore. You may want
7197 * register_netdev() instead of this.
7198 *
7199 * BUGS:
7200 * The locking appears insufficient to guarantee two parallel registers
7201 * will not get the same name.
7202 */
7203
7204int register_netdevice(struct net_device *dev)
7205{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007206 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007207 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007208
7209 BUG_ON(dev_boot_phase);
7210 ASSERT_RTNL();
7211
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007212 might_sleep();
7213
Linus Torvalds1da177e2005-04-16 15:20:36 -07007214 /* When net_device's are persistent, this will be fatal. */
7215 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007216 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007217
David S. Millerf1f28aa2008-07-15 00:08:33 -07007218 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07007219 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007220
Gao feng828de4f2012-09-13 20:58:27 +00007221 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00007222 if (ret < 0)
7223 goto out;
7224
Linus Torvalds1da177e2005-04-16 15:20:36 -07007225 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007226 if (dev->netdev_ops->ndo_init) {
7227 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007228 if (ret) {
7229 if (ret > 0)
7230 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08007231 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007232 }
7233 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007234
Patrick McHardyf6469682013-04-19 02:04:27 +00007235 if (((dev->hw_features | dev->features) &
7236 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00007237 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
7238 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
7239 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
7240 ret = -EINVAL;
7241 goto err_uninit;
7242 }
7243
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00007244 ret = -EBUSY;
7245 if (!dev->ifindex)
7246 dev->ifindex = dev_new_index(net);
7247 else if (__dev_get_by_index(net, dev->ifindex))
7248 goto err_uninit;
7249
Michał Mirosław5455c692011-02-15 16:59:17 +00007250 /* Transfer changeable features to wanted_features and enable
7251 * software offloads (GSO and GRO).
7252 */
7253 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00007254 dev->features |= NETIF_F_SOFT_FEATURES;
7255 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007256
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007257 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00007258 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007259
Alexander Duyck7f348a62016-04-20 16:51:00 -04007260 /* If IPv4 TCP segmentation offload is supported we should also
7261 * allow the device to enable segmenting the frame with the option
7262 * of ignoring a static IP ID value. This doesn't enable the
7263 * feature itself but allows the user to enable it later.
7264 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007265 if (dev->hw_features & NETIF_F_TSO)
7266 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04007267 if (dev->vlan_features & NETIF_F_TSO)
7268 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
7269 if (dev->mpls_features & NETIF_F_TSO)
7270 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
7271 if (dev->hw_enc_features & NETIF_F_TSO)
7272 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07007273
Michał Mirosław1180e7d2011-07-14 14:41:11 -07007274 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00007275 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07007276 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00007277
Pravin B Shelaree579672013-03-07 09:28:08 +00007278 /* Make NETIF_F_SG inheritable to tunnel devices.
7279 */
Alexander Duyck802ab552016-04-10 21:45:03 -04007280 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +00007281
Simon Horman0d89d202013-05-23 21:02:52 +00007282 /* Make NETIF_F_SG inheritable to MPLS.
7283 */
7284 dev->mpls_features |= NETIF_F_SG;
7285
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00007286 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
7287 ret = notifier_to_errno(ret);
7288 if (ret)
7289 goto err_uninit;
7290
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007291 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007292 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007293 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007294 dev->reg_state = NETREG_REGISTERED;
7295
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007296 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00007297
Linus Torvalds1da177e2005-04-16 15:20:36 -07007298 /*
7299 * Default initial state at registry is that the
7300 * device is present.
7301 */
7302
7303 set_bit(__LINK_STATE_PRESENT, &dev->state);
7304
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01007305 linkwatch_init_dev(dev);
7306
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007308 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007309 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04007310 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007311
Jiri Pirko948b3372013-01-08 01:38:25 +00007312 /* If the device has permanent device address, driver should
7313 * set dev_addr and also addr_assign_type should be set to
7314 * NET_ADDR_PERM (default value).
7315 */
7316 if (dev->addr_assign_type == NET_ADDR_PERM)
7317 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
7318
Linus Torvalds1da177e2005-04-16 15:20:36 -07007319 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07007320 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07007321 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007322 if (ret) {
7323 rollback_registered(dev);
7324 dev->reg_state = NETREG_UNREGISTERED;
7325 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00007326 /*
7327 * Prevent userspace races by waiting until the network
7328 * device is fully setup before sending notifications.
7329 */
Patrick McHardya2835762010-02-26 06:34:51 +00007330 if (!dev->rtnl_link_ops ||
7331 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007332 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007333
7334out:
7335 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007336
7337err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007338 if (dev->netdev_ops->ndo_uninit)
7339 dev->netdev_ops->ndo_uninit(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007340 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007341}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007342EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007343
7344/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007345 * init_dummy_netdev - init a dummy network device for NAPI
7346 * @dev: device to init
7347 *
7348 * This takes a network device structure and initialize the minimum
7349 * amount of fields so it can be used to schedule NAPI polls without
7350 * registering a full blown interface. This is to be used by drivers
7351 * that need to tie several hardware interfaces to a single NAPI
7352 * poll scheduler due to HW limitations.
7353 */
7354int init_dummy_netdev(struct net_device *dev)
7355{
7356 /* Clear everything. Note we don't initialize spinlocks
7357 * are they aren't supposed to be taken by any of the
7358 * NAPI code and this dummy netdev is supposed to be
7359 * only ever used for NAPI polls
7360 */
7361 memset(dev, 0, sizeof(struct net_device));
7362
7363 /* make sure we BUG if trying to hit standard
7364 * register/unregister code path
7365 */
7366 dev->reg_state = NETREG_DUMMY;
7367
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007368 /* NAPI wants this */
7369 INIT_LIST_HEAD(&dev->napi_list);
7370
7371 /* a dummy interface is started by default */
7372 set_bit(__LINK_STATE_PRESENT, &dev->state);
7373 set_bit(__LINK_STATE_START, &dev->state);
7374
Eric Dumazet29b44332010-10-11 10:22:12 +00007375 /* Note : We dont allocate pcpu_refcnt for dummy devices,
7376 * because users of this 'device' dont need to change
7377 * its refcount.
7378 */
7379
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007380 return 0;
7381}
7382EXPORT_SYMBOL_GPL(init_dummy_netdev);
7383
7384
7385/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007386 * register_netdev - register a network device
7387 * @dev: device to register
7388 *
7389 * Take a completed network device structure and add it to the kernel
7390 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
7391 * chain. 0 is returned on success. A negative errno code is returned
7392 * on a failure to set up the device, or if the name is a duplicate.
7393 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07007394 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07007395 * and expands the device name if you passed a format string to
7396 * alloc_netdev.
7397 */
7398int register_netdev(struct net_device *dev)
7399{
7400 int err;
7401
7402 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007403 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007404 rtnl_unlock();
7405 return err;
7406}
7407EXPORT_SYMBOL(register_netdev);
7408
Eric Dumazet29b44332010-10-11 10:22:12 +00007409int netdev_refcnt_read(const struct net_device *dev)
7410{
7411 int i, refcnt = 0;
7412
7413 for_each_possible_cpu(i)
7414 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
7415 return refcnt;
7416}
7417EXPORT_SYMBOL(netdev_refcnt_read);
7418
Ben Hutchings2c530402012-07-10 10:55:09 +00007419/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007420 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00007421 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07007422 *
7423 * This is called when unregistering network devices.
7424 *
7425 * Any protocol or device that holds a reference should register
7426 * for netdevice notification, and cleanup and put back the
7427 * reference if they receive an UNREGISTER event.
7428 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007429 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007430 */
7431static void netdev_wait_allrefs(struct net_device *dev)
7432{
7433 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00007434 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007435
Eric Dumazete014deb2009-11-17 05:59:21 +00007436 linkwatch_forget_dev(dev);
7437
Linus Torvalds1da177e2005-04-16 15:20:36 -07007438 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00007439 refcnt = netdev_refcnt_read(dev);
7440
7441 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007442 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08007443 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007444
7445 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07007446 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447
Eric Dumazet748e2d92012-08-22 21:50:59 +00007448 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007449 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00007450 rtnl_lock();
7451
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007452 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007453 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
7454 &dev->state)) {
7455 /* We must not have linkwatch events
7456 * pending on unregister. If this
7457 * happens, we simply run the queue
7458 * unscheduled, resulting in a noop
7459 * for this device.
7460 */
7461 linkwatch_run_queue();
7462 }
7463
Stephen Hemminger6756ae42006-03-20 22:23:58 -08007464 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007465
7466 rebroadcast_time = jiffies;
7467 }
7468
7469 msleep(250);
7470
Eric Dumazet29b44332010-10-11 10:22:12 +00007471 refcnt = netdev_refcnt_read(dev);
7472
Linus Torvalds1da177e2005-04-16 15:20:36 -07007473 if (time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007474 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
7475 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007476 warning_time = jiffies;
7477 }
7478 }
7479}
7480
7481/* The sequence is:
7482 *
7483 * rtnl_lock();
7484 * ...
7485 * register_netdevice(x1);
7486 * register_netdevice(x2);
7487 * ...
7488 * unregister_netdevice(y1);
7489 * unregister_netdevice(y2);
7490 * ...
7491 * rtnl_unlock();
7492 * free_netdev(y1);
7493 * free_netdev(y2);
7494 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07007495 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07007496 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007497 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498 * without deadlocking with linkwatch via keventd.
7499 * 2) Since we run with the RTNL semaphore not held, we can sleep
7500 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07007501 *
7502 * We must not return until all unregister events added during
7503 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007504 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007505void netdev_run_todo(void)
7506{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007507 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007508
Linus Torvalds1da177e2005-04-16 15:20:36 -07007509 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007510 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07007511
7512 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007513
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007514
7515 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00007516 if (!list_empty(&list))
7517 rcu_barrier();
7518
Linus Torvalds1da177e2005-04-16 15:20:36 -07007519 while (!list_empty(&list)) {
7520 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00007521 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007522 list_del(&dev->todo_list);
7523
Eric Dumazet748e2d92012-08-22 21:50:59 +00007524 rtnl_lock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007525 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Eric Dumazet748e2d92012-08-22 21:50:59 +00007526 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007527
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007528 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007529 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07007530 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007531 dump_stack();
7532 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007533 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007534
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007535 dev->reg_state = NETREG_UNREGISTERED;
7536
7537 netdev_wait_allrefs(dev);
7538
7539 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00007540 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -08007541 BUG_ON(!list_empty(&dev->ptype_all));
7542 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +00007543 WARN_ON(rcu_access_pointer(dev->ip_ptr));
7544 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
Ilpo Järvinen547b7922008-07-25 21:43:18 -07007545 WARN_ON(dev->dn_ptr);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007546
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007547 if (dev->destructor)
7548 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07007549
Eric W. Biederman50624c92013-09-23 21:19:49 -07007550 /* Report a network device has been unregistered */
7551 rtnl_lock();
7552 dev_net(dev)->dev_unreg_count--;
7553 __rtnl_unlock();
7554 wake_up(&netdev_unregistering_wq);
7555
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07007556 /* Free network device */
7557 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559}
7560
Jarod Wilson92566452016-02-01 18:51:04 -05007561/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
7562 * all the same fields in the same order as net_device_stats, with only
7563 * the type differing, but rtnl_link_stats64 may have additional fields
7564 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +00007565 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00007566void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
7567 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00007568{
7569#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -05007570 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys05e165e2017-07-03 03:20:13 +02007571 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -05007572 /* zero out counters that only exist in rtnl_link_stats64 */
7573 memset((char *)stats64 + sizeof(*netdev_stats), 0,
7574 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007575#else
Jarod Wilson92566452016-02-01 18:51:04 -05007576 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +00007577 const unsigned long *src = (const unsigned long *)netdev_stats;
7578 u64 *dst = (u64 *)stats64;
7579
Jarod Wilson92566452016-02-01 18:51:04 -05007580 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007581 for (i = 0; i < n; i++)
7582 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -05007583 /* zero out counters that only exist in rtnl_link_stats64 */
7584 memset((char *)stats64 + n * sizeof(u64), 0,
7585 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007586#endif
7587}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00007588EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00007589
Eric Dumazetd83345a2009-11-16 03:36:51 +00007590/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007591 * dev_get_stats - get network device statistics
7592 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07007593 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007594 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00007595 * Get network statistics from device. Return @storage.
7596 * The device driver may provide its own method by setting
7597 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
7598 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007599 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00007600struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
7601 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00007602{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007603 const struct net_device_ops *ops = dev->netdev_ops;
7604
Eric Dumazet28172732010-07-07 14:58:56 -07007605 if (ops->ndo_get_stats64) {
7606 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00007607 ops->ndo_get_stats64(dev, storage);
7608 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00007609 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00007610 } else {
7611 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07007612 }
Eric Dumazet3f04c322017-06-27 07:02:20 -07007613 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
7614 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
7615 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -07007616 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07007617}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007618EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07007619
Eric Dumazet24824a02010-10-02 06:11:55 +00007620struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07007621{
Eric Dumazet24824a02010-10-02 06:11:55 +00007622 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07007623
Eric Dumazet24824a02010-10-02 06:11:55 +00007624#ifdef CONFIG_NET_CLS_ACT
7625 if (queue)
7626 return queue;
7627 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
7628 if (!queue)
7629 return NULL;
7630 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007631 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +00007632 queue->qdisc_sleeping = &noop_qdisc;
7633 rcu_assign_pointer(dev->ingress_queue, queue);
7634#endif
7635 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07007636}
7637
Eric Dumazet2c60db02012-09-16 09:17:26 +00007638static const struct ethtool_ops default_ethtool_ops;
7639
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00007640void netdev_set_default_ethtool_ops(struct net_device *dev,
7641 const struct ethtool_ops *ops)
7642{
7643 if (dev->ethtool_ops == &default_ethtool_ops)
7644 dev->ethtool_ops = ops;
7645}
7646EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
7647
Eric Dumazet74d332c2013-10-30 13:10:44 -07007648void netdev_freemem(struct net_device *dev)
7649{
7650 char *addr = (char *)dev - dev->padded;
7651
WANG Cong4cb28972014-06-02 15:55:22 -07007652 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07007653}
7654
Linus Torvalds1da177e2005-04-16 15:20:36 -07007655/**
Tom Herbert36909ea2011-01-09 19:36:31 +00007656 * alloc_netdev_mqs - allocate network device
Tom Gundersenc835a672014-07-14 16:37:24 +02007657 * @sizeof_priv: size of private data to allocate space for
7658 * @name: device name format string
7659 * @name_assign_type: origin of device name
7660 * @setup: callback to initialize device
7661 * @txqs: the number of TX subqueues to allocate
7662 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07007663 *
7664 * Allocates a struct net_device with private data area for driver use
Li Zhong90e51ad2013-11-22 15:04:46 +08007665 * and performs basic initialization. Also allocates subqueue structs
Tom Herbert36909ea2011-01-09 19:36:31 +00007666 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007667 */
Tom Herbert36909ea2011-01-09 19:36:31 +00007668struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02007669 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00007670 void (*setup)(struct net_device *),
7671 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007672{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007673 struct net_device *dev;
Stephen Hemminger79439862008-07-21 13:28:44 -07007674 size_t alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007675 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007676
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07007677 BUG_ON(strlen(name) >= sizeof(dev->name));
7678
Tom Herbert36909ea2011-01-09 19:36:31 +00007679 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007680 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00007681 return NULL;
7682 }
7683
Michael Daltona953be52014-01-16 22:23:28 -08007684#ifdef CONFIG_SYSFS
Tom Herbert36909ea2011-01-09 19:36:31 +00007685 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007686 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00007687 return NULL;
7688 }
7689#endif
7690
David S. Millerfd2ea0a2008-07-17 01:56:23 -07007691 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07007692 if (sizeof_priv) {
7693 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007694 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07007695 alloc_size += sizeof_priv;
7696 }
7697 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007698 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699
Eric Dumazet74d332c2013-10-30 13:10:44 -07007700 p = kzalloc(alloc_size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7701 if (!p)
7702 p = vzalloc(alloc_size);
Joe Perches62b59422013-02-04 16:48:16 +00007703 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007704 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007705
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007706 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007707 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007708
Eric Dumazet29b44332010-10-11 10:22:12 +00007709 dev->pcpu_refcnt = alloc_percpu(int);
7710 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07007711 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007712
Linus Torvalds1da177e2005-04-16 15:20:36 -07007713 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00007714 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007715
Jiri Pirko22bedad32010-04-01 21:22:57 +00007716 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00007717 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00007718
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09007719 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007720
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07007721 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00007722 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007723
Herbert Xud565b0a2008-12-15 23:38:52 -08007724 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00007725 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07007726 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00007727 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007728 INIT_LIST_HEAD(&dev->adj_list.upper);
7729 INIT_LIST_HEAD(&dev->adj_list.lower);
7730 INIT_LIST_HEAD(&dev->all_adj_list.upper);
7731 INIT_LIST_HEAD(&dev->all_adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -08007732 INIT_LIST_HEAD(&dev->ptype_all);
7733 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Kosina59cc1f62016-08-10 11:05:15 +02007734#ifdef CONFIG_NET_SCHED
7735 hash_init(dev->qdisc_hash);
7736#endif
Eric Dumazet02875872014-10-05 18:38:35 -07007737 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007738 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007739
Phil Suttera8131042016-02-17 15:37:43 +01007740 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +02007741 dev->priv_flags |= IFF_NO_QUEUE;
Phil Suttera8131042016-02-17 15:37:43 +01007742 dev->tx_queue_len = 1;
7743 }
Phil Sutter906470c2015-08-18 10:30:48 +02007744
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007745 dev->num_tx_queues = txqs;
7746 dev->real_num_tx_queues = txqs;
7747 if (netif_alloc_netdev_queues(dev))
7748 goto free_all;
7749
Michael Daltona953be52014-01-16 22:23:28 -08007750#ifdef CONFIG_SYSFS
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007751 dev->num_rx_queues = rxqs;
7752 dev->real_num_rx_queues = rxqs;
7753 if (netif_alloc_rx_queues(dev))
7754 goto free_all;
7755#endif
7756
Linus Torvalds1da177e2005-04-16 15:20:36 -07007757 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02007758 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00007759 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00007760 if (!dev->ethtool_ops)
7761 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +02007762
7763 nf_hook_ingress_init(dev);
7764
Linus Torvalds1da177e2005-04-16 15:20:36 -07007765 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007766
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007767free_all:
7768 free_netdev(dev);
7769 return NULL;
7770
Eric Dumazet29b44332010-10-11 10:22:12 +00007771free_pcpu:
7772 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07007773free_dev:
7774 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007775 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007776}
Tom Herbert36909ea2011-01-09 19:36:31 +00007777EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778
7779/**
7780 * free_netdev - free network device
7781 * @dev: device
7782 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007783 * This function does the last stage of destroying an allocated device
7784 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007785 * If this is the last reference then it will be freed.
Eric Dumazet93d05d42015-11-18 06:31:03 -08007786 * Must be called in process context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007787 */
7788void free_netdev(struct net_device *dev)
7789{
Herbert Xud565b0a2008-12-15 23:38:52 -08007790 struct napi_struct *p, *n;
7791
Eric Dumazet93d05d42015-11-18 06:31:03 -08007792 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -07007793 netif_free_tx_queues(dev);
Michael Daltona953be52014-01-16 22:23:28 -08007794#ifdef CONFIG_SYSFS
Pankaj Gupta10595902015-01-12 11:41:28 +05307795 kvfree(dev->_rx);
Tom Herbertfe822242010-11-09 10:47:38 +00007796#endif
David S. Millere8a04642008-07-17 00:34:19 -07007797
Eric Dumazet33d480c2011-08-11 19:30:52 +00007798 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00007799
Jiri Pirkof001fde2009-05-05 02:48:28 +00007800 /* Flush device addresses */
7801 dev_addr_flush(dev);
7802
Herbert Xud565b0a2008-12-15 23:38:52 -08007803 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
7804 netif_napi_del(p);
7805
Eric Dumazet29b44332010-10-11 10:22:12 +00007806 free_percpu(dev->pcpu_refcnt);
7807 dev->pcpu_refcnt = NULL;
7808
Stephen Hemminger3041a062006-05-26 13:25:24 -07007809 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07007811 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007812 return;
7813 }
7814
7815 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
7816 dev->reg_state = NETREG_RELEASED;
7817
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07007818 /* will free via device release */
7819 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007820}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007821EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007822
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007823/**
7824 * synchronize_net - Synchronize with packet receive processing
7825 *
7826 * Wait for packets currently being received to be done.
7827 * Does not block later packets from starting.
7828 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007829void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007830{
7831 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00007832 if (rtnl_is_locked())
7833 synchronize_rcu_expedited();
7834 else
7835 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007836}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007837EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007838
7839/**
Eric Dumazet44a08732009-10-27 07:03:04 +00007840 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07007841 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00007842 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08007843 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007844 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08007845 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00007846 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007847 *
7848 * Callers must hold the rtnl semaphore. You may want
7849 * unregister_netdev() instead of this.
7850 */
7851
Eric Dumazet44a08732009-10-27 07:03:04 +00007852void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007853{
Herbert Xua6620712007-12-12 19:21:56 -08007854 ASSERT_RTNL();
7855
Eric Dumazet44a08732009-10-27 07:03:04 +00007856 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00007857 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00007858 } else {
7859 rollback_registered(dev);
7860 /* Finish processing unregister after unlock */
7861 net_set_todo(dev);
7862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863}
Eric Dumazet44a08732009-10-27 07:03:04 +00007864EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865
7866/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007867 * unregister_netdevice_many - unregister many devices
7868 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07007869 *
7870 * Note: As most callers use a stack allocated list_head,
7871 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007872 */
7873void unregister_netdevice_many(struct list_head *head)
7874{
7875 struct net_device *dev;
7876
7877 if (!list_empty(head)) {
7878 rollback_registered_many(head);
7879 list_for_each_entry(dev, head, unreg_list)
7880 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07007881 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007882 }
7883}
Eric Dumazet63c80992009-10-27 07:06:49 +00007884EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007885
7886/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007887 * unregister_netdev - remove device from the kernel
7888 * @dev: device
7889 *
7890 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08007891 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007892 *
7893 * This is just a wrapper for unregister_netdevice that takes
7894 * the rtnl semaphore. In general you want to use this and not
7895 * unregister_netdevice.
7896 */
7897void unregister_netdev(struct net_device *dev)
7898{
7899 rtnl_lock();
7900 unregister_netdevice(dev);
7901 rtnl_unlock();
7902}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007903EXPORT_SYMBOL(unregister_netdev);
7904
Eric W. Biedermance286d32007-09-12 13:53:49 +02007905/**
7906 * dev_change_net_namespace - move device to different nethost namespace
7907 * @dev: device
7908 * @net: network namespace
7909 * @pat: If not NULL name pattern to try if the current device name
7910 * is already taken in the destination network namespace.
7911 *
7912 * This function shuts down a device interface and moves it
7913 * to a new network namespace. On success 0 is returned, on
7914 * a failure a netagive errno code is returned.
7915 *
7916 * Callers must hold the rtnl semaphore.
7917 */
7918
7919int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
7920{
Eric W. Biedermance286d32007-09-12 13:53:49 +02007921 int err;
7922
7923 ASSERT_RTNL();
7924
7925 /* Don't allow namespace local devices to be moved. */
7926 err = -EINVAL;
7927 if (dev->features & NETIF_F_NETNS_LOCAL)
7928 goto out;
7929
7930 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02007931 if (dev->reg_state != NETREG_REGISTERED)
7932 goto out;
7933
7934 /* Get out if there is nothing todo */
7935 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09007936 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02007937 goto out;
7938
7939 /* Pick the destination device name, and ensure
7940 * we can use it in the destination network namespace.
7941 */
7942 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00007943 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007944 /* We get here if we can't use the current device name */
7945 if (!pat)
7946 goto out;
Gao feng828de4f2012-09-13 20:58:27 +00007947 if (dev_get_valid_name(net, dev, pat) < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02007948 goto out;
7949 }
7950
7951 /*
7952 * And now a mini version of register_netdevice unregister_netdevice.
7953 */
7954
7955 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07007956 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007957
7958 /* And unlink it from device chain */
7959 err = -ENODEV;
7960 unlist_netdevice(dev);
7961
7962 synchronize_net();
7963
7964 /* Shutdown queueing discipline. */
7965 dev_shutdown(dev);
7966
7967 /* Notify protocols, that we are about to destroy
7968 this device. They should clean all the things.
David Lamparter3b27e102010-09-17 03:22:19 +00007969
7970 Note that dev->reg_state stays at NETREG_REGISTERED.
7971 This is wanted because this way 8021q and macvlan know
7972 the device is just moving and can keep their slaves up.
Eric W. Biedermance286d32007-09-12 13:53:49 +02007973 */
7974 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00007975 rcu_barrier();
7976 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007977 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007978
7979 /*
7980 * Flush the unicast and multicast chains
7981 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00007982 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00007983 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007984
Serge Hallyn4e66ae22012-12-03 16:17:12 +00007985 /* Send a netdev-removed uevent to the old namespace */
7986 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007987 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00007988
Eric W. Biedermance286d32007-09-12 13:53:49 +02007989 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09007990 dev_net_set(dev, net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007991
Eric W. Biedermance286d32007-09-12 13:53:49 +02007992 /* If there is an ifindex conflict assign a new one */
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +02007993 if (__dev_get_by_index(net, dev->ifindex))
Eric W. Biedermance286d32007-09-12 13:53:49 +02007994 dev->ifindex = dev_new_index(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007995
Serge Hallyn4e66ae22012-12-03 16:17:12 +00007996 /* Send a netdev-add uevent to the new namespace */
7997 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007998 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00007999
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008000 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07008001 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008002 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008003
8004 /* Add the device back in the hashes */
8005 list_netdevice(dev);
8006
8007 /* Notify protocols, that a new device appeared. */
8008 call_netdevice_notifiers(NETDEV_REGISTER, dev);
8009
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008010 /*
8011 * Prevent userspace races by waiting until the network
8012 * device is fully setup before sending notifications.
8013 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008014 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008015
Eric W. Biedermance286d32007-09-12 13:53:49 +02008016 synchronize_net();
8017 err = 0;
8018out:
8019 return err;
8020}
Johannes Berg463d0182009-07-14 00:33:35 +02008021EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008022
Linus Torvalds1da177e2005-04-16 15:20:36 -07008023static int dev_cpu_callback(struct notifier_block *nfb,
8024 unsigned long action,
8025 void *ocpu)
8026{
8027 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008028 struct sk_buff *skb;
8029 unsigned int cpu, oldcpu = (unsigned long)ocpu;
8030 struct softnet_data *sd, *oldsd;
8031
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008032 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008033 return NOTIFY_OK;
8034
8035 local_irq_disable();
8036 cpu = smp_processor_id();
8037 sd = &per_cpu(softnet_data, cpu);
8038 oldsd = &per_cpu(softnet_data, oldcpu);
8039
8040 /* Find end of our completion_queue. */
8041 list_skb = &sd->completion_queue;
8042 while (*list_skb)
8043 list_skb = &(*list_skb)->next;
8044 /* Append completion queue from offline CPU. */
8045 *list_skb = oldsd->completion_queue;
8046 oldsd->completion_queue = NULL;
8047
Linus Torvalds1da177e2005-04-16 15:20:36 -07008048 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00008049 if (oldsd->output_queue) {
8050 *sd->output_queue_tailp = oldsd->output_queue;
8051 sd->output_queue_tailp = oldsd->output_queue_tailp;
8052 oldsd->output_queue = NULL;
8053 oldsd->output_queue_tailp = &oldsd->output_queue;
8054 }
Eric Dumazetac64da02015-01-15 17:04:22 -08008055 /* Append NAPI poll list from offline CPU, with one exception :
8056 * process_backlog() must be called by cpu owning percpu backlog.
8057 * We properly handle process_queue & input_pkt_queue later.
8058 */
8059 while (!list_empty(&oldsd->poll_list)) {
8060 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
8061 struct napi_struct,
8062 poll_list);
8063
8064 list_del_init(&napi->poll_list);
8065 if (napi->poll == process_backlog)
8066 napi->state = 0;
8067 else
8068 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +00008069 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008070
8071 raise_softirq_irqoff(NET_TX_SOFTIRQ);
8072 local_irq_enable();
8073
8074 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00008075 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08008076 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00008077 input_queue_head_incr(oldsd);
8078 }
Eric Dumazetac64da02015-01-15 17:04:22 -08008079 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08008080 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00008081 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07008082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008083
8084 return NOTIFY_OK;
8085}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008086
8087
Herbert Xu7f353bf2007-08-10 15:47:58 -07008088/**
Herbert Xub63365a2008-10-23 01:11:29 -07008089 * netdev_increment_features - increment feature set by one
8090 * @all: current feature set
8091 * @one: new feature set
8092 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07008093 *
8094 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07008095 * @one to the master device with current feature set @all. Will not
8096 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07008097 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008098netdev_features_t netdev_increment_features(netdev_features_t all,
8099 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07008100{
Tom Herbertc8cd0982015-12-14 11:19:44 -08008101 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -08008102 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +00008103 mask |= NETIF_F_VLAN_CHALLENGED;
8104
Tom Herberta1882222015-12-14 11:19:43 -08008105 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +00008106 all &= one | ~NETIF_F_ALL_FOR_ALL;
8107
Michał Mirosław1742f182011-04-22 06:31:16 +00008108 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -08008109 if (all & NETIF_F_HW_CSUM)
8110 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07008111
8112 return all;
8113}
Herbert Xub63365a2008-10-23 01:11:29 -07008114EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07008115
Baruch Siach430f03c2013-06-02 20:43:55 +00008116static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008117{
8118 int i;
8119 struct hlist_head *hash;
8120
8121 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
8122 if (hash != NULL)
8123 for (i = 0; i < NETDEV_HASHENTRIES; i++)
8124 INIT_HLIST_HEAD(&hash[i]);
8125
8126 return hash;
8127}
8128
Eric W. Biederman881d9662007-09-17 11:56:21 -07008129/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07008130static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07008131{
Rustad, Mark D734b6542012-07-18 09:06:07 +00008132 if (net != &init_net)
8133 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07008134
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008135 net->dev_name_head = netdev_create_hash();
8136 if (net->dev_name_head == NULL)
8137 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008138
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008139 net->dev_index_head = netdev_create_hash();
8140 if (net->dev_index_head == NULL)
8141 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008142
8143 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008144
8145err_idx:
8146 kfree(net->dev_name_head);
8147err_name:
8148 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008149}
8150
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008151/**
8152 * netdev_drivername - network driver for the device
8153 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008154 *
8155 * Determine network driver for device.
8156 */
David S. Miller3019de12011-06-06 16:41:33 -07008157const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07008158{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07008159 const struct device_driver *driver;
8160 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07008161 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07008162
8163 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008164 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07008165 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008166
8167 driver = parent->driver;
8168 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07008169 return driver->name;
8170 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008171}
8172
Joe Perches6ea754e2014-09-22 11:10:50 -07008173static void __netdev_printk(const char *level, const struct net_device *dev,
8174 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +00008175{
Joe Perchesb004ff42012-09-12 20:12:19 -07008176 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -07008177 dev_printk_emit(level[1] - '0',
8178 dev->dev.parent,
8179 "%s %s %s%s: %pV",
8180 dev_driver_string(dev->dev.parent),
8181 dev_name(dev->dev.parent),
8182 netdev_name(dev), netdev_reg_state(dev),
8183 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008184 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -07008185 printk("%s%s%s: %pV",
8186 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008187 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -07008188 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008189 }
Joe Perches256df2f2010-06-27 01:02:35 +00008190}
8191
Joe Perches6ea754e2014-09-22 11:10:50 -07008192void netdev_printk(const char *level, const struct net_device *dev,
8193 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +00008194{
8195 struct va_format vaf;
8196 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +00008197
8198 va_start(args, format);
8199
8200 vaf.fmt = format;
8201 vaf.va = &args;
8202
Joe Perches6ea754e2014-09-22 11:10:50 -07008203 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008204
Joe Perches256df2f2010-06-27 01:02:35 +00008205 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +00008206}
8207EXPORT_SYMBOL(netdev_printk);
8208
8209#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -07008210void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +00008211{ \
Joe Perches256df2f2010-06-27 01:02:35 +00008212 struct va_format vaf; \
8213 va_list args; \
8214 \
8215 va_start(args, fmt); \
8216 \
8217 vaf.fmt = fmt; \
8218 vaf.va = &args; \
8219 \
Joe Perches6ea754e2014-09-22 11:10:50 -07008220 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07008221 \
Joe Perches256df2f2010-06-27 01:02:35 +00008222 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +00008223} \
8224EXPORT_SYMBOL(func);
8225
8226define_netdev_printk_level(netdev_emerg, KERN_EMERG);
8227define_netdev_printk_level(netdev_alert, KERN_ALERT);
8228define_netdev_printk_level(netdev_crit, KERN_CRIT);
8229define_netdev_printk_level(netdev_err, KERN_ERR);
8230define_netdev_printk_level(netdev_warn, KERN_WARNING);
8231define_netdev_printk_level(netdev_notice, KERN_NOTICE);
8232define_netdev_printk_level(netdev_info, KERN_INFO);
8233
Pavel Emelyanov46650792007-10-08 20:38:39 -07008234static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07008235{
8236 kfree(net->dev_name_head);
8237 kfree(net->dev_index_head);
8238}
8239
Denis V. Lunev022cbae2007-11-13 03:23:50 -08008240static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07008241 .init = netdev_init,
8242 .exit = netdev_exit,
8243};
8244
Pavel Emelyanov46650792007-10-08 20:38:39 -07008245static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02008246{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008247 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02008248 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008249 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02008250 * initial network namespace
8251 */
8252 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008253 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008254 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008255 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02008256
8257 /* Ignore unmoveable devices (i.e. loopback) */
8258 if (dev->features & NETIF_F_NETNS_LOCAL)
8259 continue;
8260
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008261 /* Leave virtual devices for the generic cleanup */
8262 if (dev->rtnl_link_ops)
8263 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08008264
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008265 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008266 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
8267 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008268 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008269 pr_emerg("%s: failed to move %s to init_net: %d\n",
8270 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008271 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02008272 }
8273 }
8274 rtnl_unlock();
8275}
8276
Eric W. Biederman50624c92013-09-23 21:19:49 -07008277static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
8278{
8279 /* Return with the rtnl_lock held when there are no network
8280 * devices unregistering in any network namespace in net_list.
8281 */
8282 struct net *net;
8283 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +01008284 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008285
Peter Zijlstraff960a72014-10-29 17:04:56 +01008286 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008287 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -07008288 unregistering = false;
8289 rtnl_lock();
8290 list_for_each_entry(net, net_list, exit_list) {
8291 if (net->dev_unreg_count > 0) {
8292 unregistering = true;
8293 break;
8294 }
8295 }
8296 if (!unregistering)
8297 break;
8298 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +01008299
8300 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008301 }
Peter Zijlstraff960a72014-10-29 17:04:56 +01008302 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008303}
8304
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008305static void __net_exit default_device_exit_batch(struct list_head *net_list)
8306{
8307 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04008308 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008309 * Do this across as many network namespaces as possible to
8310 * improve batching efficiency.
8311 */
8312 struct net_device *dev;
8313 struct net *net;
8314 LIST_HEAD(dev_kill_list);
8315
Eric W. Biederman50624c92013-09-23 21:19:49 -07008316 /* To prevent network device cleanup code from dereferencing
8317 * loopback devices or network devices that have been freed
8318 * wait here for all pending unregistrations to complete,
8319 * before unregistring the loopback device and allowing the
8320 * network namespace be freed.
8321 *
8322 * The netdev todo list containing all network devices
8323 * unregistrations that happen in default_device_exit_batch
8324 * will run in the rtnl_unlock() at the end of
8325 * default_device_exit_batch.
8326 */
8327 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008328 list_for_each_entry(net, net_list, exit_list) {
8329 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02008330 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008331 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
8332 else
8333 unregister_netdevice_queue(dev, &dev_kill_list);
8334 }
8335 }
8336 unregister_netdevice_many(&dev_kill_list);
8337 rtnl_unlock();
8338}
8339
Denis V. Lunev022cbae2007-11-13 03:23:50 -08008340static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008341 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008342 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02008343};
8344
Linus Torvalds1da177e2005-04-16 15:20:36 -07008345/*
8346 * Initialize the DEV module. At boot time this walks the device list and
8347 * unhooks any devices that fail to initialise (normally hardware not
8348 * present) and leaves us with a valid list of present and active devices.
8349 *
8350 */
8351
8352/*
8353 * This is called single threaded during boot, so no need
8354 * to take the rtnl semaphore.
8355 */
8356static int __init net_dev_init(void)
8357{
8358 int i, rc = -ENOMEM;
8359
8360 BUG_ON(!dev_boot_phase);
8361
Linus Torvalds1da177e2005-04-16 15:20:36 -07008362 if (dev_proc_init())
8363 goto out;
8364
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008365 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07008366 goto out;
8367
8368 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08008369 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008370 INIT_LIST_HEAD(&ptype_base[i]);
8371
Vlad Yasevich62532da2012-11-15 08:49:10 +00008372 INIT_LIST_HEAD(&offload_base);
8373
Eric W. Biederman881d9662007-09-17 11:56:21 -07008374 if (register_pernet_subsys(&netdev_net_ops))
8375 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008376
8377 /*
8378 * Initialise the packet receive queues.
8379 */
8380
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07008381 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -07008382 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008383 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008384
Eric Dumazet41852492016-08-26 12:50:39 -07008385 INIT_WORK(flush, flush_backlog);
8386
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008387 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07008388 skb_queue_head_init(&sd->process_queue);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008389 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00008390 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00008391#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008392 sd->csd.func = rps_trigger_softirq;
8393 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008394 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07008395#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00008396
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008397 sd->backlog.poll = process_backlog;
8398 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008399 }
8400
Linus Torvalds1da177e2005-04-16 15:20:36 -07008401 dev_boot_phase = 0;
8402
Eric W. Biederman505d4f72008-11-07 22:54:20 -08008403 /* The loopback device is special if any other network devices
8404 * is present in a network namespace the loopback device must
8405 * be present. Since we now dynamically allocate and free the
8406 * loopback device ensure this invariant is maintained by
8407 * keeping the loopback device as the first device on the
8408 * list of network devices. Ensuring the loopback devices
8409 * is the first device that appears and the last network device
8410 * that disappears.
8411 */
8412 if (register_pernet_device(&loopback_net_ops))
8413 goto out;
8414
8415 if (register_pernet_device(&default_device_ops))
8416 goto out;
8417
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008418 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
8419 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008420
8421 hotcpu_notifier(dev_cpu_callback, 0);
Thomas Graff38a9eb2015-07-21 10:43:56 +02008422 dst_subsys_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008423 rc = 0;
8424out:
8425 return rc;
8426}
8427
8428subsys_initcall(net_dev_init);