blob: 7e168d0653a5203c461209cd6f703f116bafd144 [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)
2707 return skb->ip_summed != CHECKSUM_PARTIAL;
2708 else
2709 return skb->ip_summed == CHECKSUM_NONE;
2710}
2711
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002712/**
Cong Wang12b00042013-02-05 16:36:38 +00002713 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002714 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002715 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00002716 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002717 *
2718 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07002719 *
2720 * It may return NULL if the skb requires no segmentation. This is
2721 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03002722 *
2723 * Segmentation preserves SKB_SGO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002724 */
Cong Wang12b00042013-02-05 16:36:38 +00002725struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
2726 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002727{
Cong Wang12b00042013-02-05 16:36:38 +00002728 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002729 int err;
2730
Ben Hutchings36c92472012-01-17 07:57:56 +00002731 skb_warn_bad_offload(skb);
Herbert Xu67fd1a72009-01-19 16:26:44 -08002732
françois romieua40e0a62014-07-15 23:55:35 +02002733 err = skb_cow_head(skb, 0);
2734 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07002735 return ERR_PTR(err);
2736 }
2737
Alexander Duyck802ab552016-04-10 21:45:03 -04002738 /* Only report GSO partial support if it will enable us to
2739 * support segmentation on this frame without needing additional
2740 * work.
2741 */
2742 if (features & NETIF_F_GSO_PARTIAL) {
2743 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
2744 struct net_device *dev = skb->dev;
2745
2746 partial_features |= dev->features & dev->gso_partial_features;
2747 if (!skb_gso_ok(skb, features | partial_features))
2748 features &= ~NETIF_F_GSO_PARTIAL;
2749 }
2750
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03002751 BUILD_BUG_ON(SKB_SGO_CB_OFFSET +
2752 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
2753
Pravin B Shelar68c33162013-02-14 14:02:41 +00002754 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07002755 SKB_GSO_CB(skb)->encap_level = 0;
2756
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002757 skb_reset_mac_header(skb);
2758 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002759
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002760 return skb_mac_gso_segment(skb, features);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002761}
Cong Wang12b00042013-02-05 16:36:38 +00002762EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002763
Herbert Xufb286bb2005-11-10 13:01:24 -08002764/* Take action when hardware reception checksum errors are detected. */
2765#ifdef CONFIG_BUG
2766void netdev_rx_csum_fault(struct net_device *dev)
2767{
2768 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002769 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08002770 dump_stack();
2771 }
2772}
2773EXPORT_SYMBOL(netdev_rx_csum_fault);
2774#endif
2775
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776/* Actually, we should eliminate this check as soon as we know, that:
2777 * 1. IOMMU is present and allows to map all the memory.
2778 * 2. No high memory really exists on this machine.
2779 */
2780
Florian Westphalc1e756b2014-05-05 15:00:44 +02002781static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782{
Herbert Xu3d3a8532006-06-27 13:33:10 -07002783#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 int i;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002785 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002786 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2787 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2788 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002789 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00002790 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002791 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002793 if (PCI_DMA_BUS_IS_PHYS) {
2794 struct device *pdev = dev->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Eric Dumazet9092c652010-04-02 13:34:49 -07002796 if (!pdev)
2797 return 0;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002798 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002799 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2800 dma_addr_t addr = page_to_phys(skb_frag_page(frag));
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002801 if (!pdev->dma_mask || addr + PAGE_SIZE - 1 > *pdev->dma_mask)
2802 return 1;
2803 }
2804 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07002805#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 return 0;
2807}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808
Simon Horman3b392dd2014-06-04 08:53:17 +09002809/* If MPLS offload request, verify we are testing hardware MPLS features
2810 * instead of standard features for the netdev.
2811 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08002812#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09002813static netdev_features_t net_mpls_features(struct sk_buff *skb,
2814 netdev_features_t features,
2815 __be16 type)
2816{
Simon Horman25cd9ba2014-10-06 05:05:13 -07002817 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09002818 features &= skb->dev->mpls_features;
2819
2820 return features;
2821}
2822#else
2823static netdev_features_t net_mpls_features(struct sk_buff *skb,
2824 netdev_features_t features,
2825 __be16 type)
2826{
2827 return features;
2828}
2829#endif
2830
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002831static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02002832 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00002833{
Vlad Yasevich53d64712014-03-27 17:26:18 -04002834 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09002835 __be16 type;
2836
2837 type = skb_network_protocol(skb, &tmp);
2838 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04002839
Ed Cashinc0d680e2012-09-19 15:49:00 +00002840 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09002841 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07002842 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00002843 }
Eric Dumazet948e1372017-01-18 12:12:17 -08002844 if (illegal_highdma(skb->dev, skb))
2845 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00002846
2847 return features;
2848}
2849
Toshiaki Makitae38f3022015-03-27 14:31:13 +09002850netdev_features_t passthru_features_check(struct sk_buff *skb,
2851 struct net_device *dev,
2852 netdev_features_t features)
2853{
2854 return features;
2855}
2856EXPORT_SYMBOL(passthru_features_check);
2857
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09002858static netdev_features_t dflt_features_check(const struct sk_buff *skb,
2859 struct net_device *dev,
2860 netdev_features_t features)
2861{
2862 return vlan_features_check(skb, features);
2863}
2864
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002865static netdev_features_t gso_features_check(const struct sk_buff *skb,
2866 struct net_device *dev,
2867 netdev_features_t features)
2868{
2869 u16 gso_segs = skb_shinfo(skb)->gso_segs;
2870
2871 if (gso_segs > dev->gso_max_segs)
2872 return features & ~NETIF_F_GSO_MASK;
2873
Alexander Duyck802ab552016-04-10 21:45:03 -04002874 /* Support for GSO partial features requires software
2875 * intervention before we can actually process the packets
2876 * so we need to strip support for any partial features now
2877 * and we can pull them back in after we have partially
2878 * segmented the frame.
2879 */
2880 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
2881 features &= ~dev->gso_partial_features;
2882
2883 /* Make sure to clear the IPv4 ID mangling feature if the
2884 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002885 */
2886 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
2887 struct iphdr *iph = skb->encapsulation ?
2888 inner_ip_hdr(skb) : ip_hdr(skb);
2889
2890 if (!(iph->frag_off & htons(IP_DF)))
2891 features &= ~NETIF_F_TSO_MANGLEID;
2892 }
2893
2894 return features;
2895}
2896
Florian Westphalc1e756b2014-05-05 15:00:44 +02002897netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00002898{
Jesse Gross5f352272014-12-23 22:37:26 -08002899 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07002900 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00002901
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002902 if (skb_is_gso(skb))
2903 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00002904
Jesse Gross5f352272014-12-23 22:37:26 -08002905 /* If encapsulation offload request, verify we are testing
2906 * hardware encapsulation features instead of standard
2907 * features for the netdev
2908 */
2909 if (skb->encapsulation)
2910 features &= dev->hw_enc_features;
2911
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09002912 if (skb_vlan_tagged(skb))
2913 features = netdev_intersect_features(features,
2914 dev->vlan_features |
2915 NETIF_F_HW_VLAN_CTAG_TX |
2916 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00002917
Jesse Gross5f352272014-12-23 22:37:26 -08002918 if (dev->netdev_ops->ndo_features_check)
2919 features &= dev->netdev_ops->ndo_features_check(skb, dev,
2920 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09002921 else
2922 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08002923
Florian Westphalc1e756b2014-05-05 15:00:44 +02002924 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002925}
Florian Westphalc1e756b2014-05-05 15:00:44 +02002926EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002927
David S. Miller2ea25512014-08-29 21:10:01 -07002928static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07002929 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002930{
David S. Miller2ea25512014-08-29 21:10:01 -07002931 unsigned int len;
2932 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08002933
Salam Noureddine7866a622015-01-27 11:35:48 -08002934 if (!list_empty(&ptype_all) || !list_empty(&dev->ptype_all))
David S. Miller2ea25512014-08-29 21:10:01 -07002935 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00002936
David S. Miller2ea25512014-08-29 21:10:01 -07002937 len = skb->len;
2938 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07002939 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07002940 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00002941
Patrick McHardy572a9d72009-11-10 06:14:14 +00002942 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002943}
David S. Miller2ea25512014-08-29 21:10:01 -07002944
David S. Miller8dcda222014-09-01 15:06:40 -07002945struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
2946 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07002947{
2948 struct sk_buff *skb = first;
2949 int rc = NETDEV_TX_OK;
2950
2951 while (skb) {
2952 struct sk_buff *next = skb->next;
2953
2954 skb->next = NULL;
David S. Miller95f6b3d2014-08-29 21:57:30 -07002955 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07002956 if (unlikely(!dev_xmit_complete(rc))) {
2957 skb->next = next;
2958 goto out;
2959 }
2960
2961 skb = next;
2962 if (netif_xmit_stopped(txq) && skb) {
2963 rc = NETDEV_TX_BUSY;
2964 break;
2965 }
2966 }
2967
2968out:
2969 *ret = rc;
2970 return skb;
2971}
2972
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07002973static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
2974 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07002975{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002976 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01002977 !vlan_hw_offload_capable(features, skb->vlan_proto))
2978 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07002979 return skb;
2980}
2981
Eric Dumazet55a93b32014-10-03 15:31:07 -07002982static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev)
David S. Millereae3f882014-08-30 15:17:13 -07002983{
2984 netdev_features_t features;
2985
David S. Millereae3f882014-08-30 15:17:13 -07002986 features = netif_skb_features(skb);
2987 skb = validate_xmit_vlan(skb, features);
2988 if (unlikely(!skb))
2989 goto out_null;
2990
Johannes Berg8b86a612015-04-17 15:45:04 +02002991 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07002992 struct sk_buff *segs;
2993
Subash Abhinov Kasiviswanathan717d3392017-06-26 18:46:50 -06002994 __be16 src_port = tcp_hdr(skb)->source;
2995 __be16 dest_port = tcp_hdr(skb)->dest;
2996
2997 trace_print_skb_gso(skb, src_port, dest_port);
David S. Millerce937182014-08-30 19:22:20 -07002998 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08002999 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003000 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003001 } else if (segs) {
3002 consume_skb(skb);
3003 skb = segs;
3004 }
David S. Millereae3f882014-08-30 15:17:13 -07003005 } else {
3006 if (skb_needs_linearize(skb, features) &&
3007 __skb_linearize(skb))
3008 goto out_kfree_skb;
3009
3010 /* If packet is not checksummed and device does not
3011 * support checksumming for this protocol, complete
3012 * checksumming here.
3013 */
3014 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3015 if (skb->encapsulation)
3016 skb_set_inner_transport_header(skb,
3017 skb_checksum_start_offset(skb));
3018 else
3019 skb_set_transport_header(skb,
3020 skb_checksum_start_offset(skb));
Tom Herberta1882222015-12-14 11:19:43 -08003021 if (!(features & NETIF_F_CSUM_MASK) &&
David S. Millereae3f882014-08-30 15:17:13 -07003022 skb_checksum_help(skb))
3023 goto out_kfree_skb;
3024 }
3025 }
3026
3027 return skb;
3028
3029out_kfree_skb:
3030 kfree_skb(skb);
3031out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003032 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003033 return NULL;
3034}
3035
Eric Dumazet55a93b32014-10-03 15:31:07 -07003036struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev)
3037{
3038 struct sk_buff *next, *head = NULL, *tail;
3039
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003040 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003041 next = skb->next;
3042 skb->next = NULL;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003043
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003044 /* in case skb wont be segmented, point to itself */
3045 skb->prev = skb;
3046
3047 skb = validate_xmit_skb(skb, dev);
3048 if (!skb)
3049 continue;
3050
3051 if (!head)
3052 head = skb;
3053 else
3054 tail->next = skb;
3055 /* If skb was segmented, skb->prev points to
3056 * the last segment. If not, it still contains skb.
3057 */
3058 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003059 }
3060 return head;
3061}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003062EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003063
Eric Dumazet1def9232013-01-10 12:36:42 +00003064static void qdisc_pkt_len_init(struct sk_buff *skb)
3065{
3066 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3067
3068 qdisc_skb_cb(skb)->pkt_len = skb->len;
3069
3070 /* To get more precise estimation of bytes sent on wire,
3071 * we add to pkt_len the headers size of all segments
3072 */
3073 if (shinfo->gso_size) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003074 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003075 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003076
Eric Dumazet757b8b12013-01-15 21:14:21 -08003077 /* mac layer + network layer */
3078 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3079
3080 /* + transport layer */
Eric Dumazet1def9232013-01-10 12:36:42 +00003081 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
3082 hdr_len += tcp_hdrlen(skb);
3083 else
3084 hdr_len += sizeof(struct udphdr);
Jason Wang15e5a032013-03-25 20:19:59 +00003085
3086 if (shinfo->gso_type & SKB_GSO_DODGY)
3087 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3088 shinfo->gso_size);
3089
3090 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003091 }
3092}
3093
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003094static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3095 struct net_device *dev,
3096 struct netdev_queue *txq)
3097{
3098 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003099 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003100 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003101 int rc;
3102
Eric Dumazeta2da5702011-01-20 03:48:19 +00003103 qdisc_calculate_pkt_len(skb, q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003104 /*
3105 * Heuristic to force contended enqueues to serialize on a
3106 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003107 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003108 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003109 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003110 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003111 if (unlikely(contended))
3112 spin_lock(&q->busylock);
3113
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003114 spin_lock(root_lock);
3115 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003116 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003117 rc = NET_XMIT_DROP;
3118 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003119 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003120 /*
3121 * This is a work-conserving queue; there are no old skbs
3122 * waiting to be sent out; and the qdisc is not running -
3123 * xmit the skb directly.
3124 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003125
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003126 qdisc_bstats_update(q, skb);
3127
Eric Dumazet55a93b32014-10-03 15:31:07 -07003128 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003129 if (unlikely(contended)) {
3130 spin_unlock(&q->busylock);
3131 contended = false;
3132 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003133 __qdisc_run(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003134 } else
Eric Dumazetbc135b22010-06-02 03:23:51 -07003135 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003136
3137 rc = NET_XMIT_SUCCESS;
3138 } else {
Eric Dumazet520ac302016-06-21 23:16:49 -07003139 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003140 if (qdisc_run_begin(q)) {
3141 if (unlikely(contended)) {
3142 spin_unlock(&q->busylock);
3143 contended = false;
3144 }
3145 __qdisc_run(q);
3146 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003147 }
3148 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003149 if (unlikely(to_free))
3150 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003151 if (unlikely(contended))
3152 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003153 return rc;
3154}
3155
Daniel Borkmann86f85152013-12-29 17:27:11 +01003156#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003157static void skb_update_prio(struct sk_buff *skb)
3158{
Igor Maravic6977a792011-11-25 07:44:54 +00003159 struct netprio_map *map = rcu_dereference_bh(skb->dev->priomap);
Neil Horman5bc14212011-11-22 05:10:51 +00003160
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003161 if (!skb->priority && skb->sk && map) {
Tejun Heo2a56a1f2015-12-07 17:38:52 -05003162 unsigned int prioidx =
3163 sock_cgroup_prioidx(&skb->sk->sk_cgrp_data);
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003164
3165 if (prioidx < map->priomap_len)
3166 skb->priority = map->priomap[prioidx];
3167 }
Neil Horman5bc14212011-11-22 05:10:51 +00003168}
3169#else
3170#define skb_update_prio(skb)
3171#endif
3172
hannes@stressinduktion.orgf60e5992015-04-01 17:07:44 +02003173DEFINE_PER_CPU(int, xmit_recursion);
3174EXPORT_SYMBOL(xmit_recursion);
3175
Dave Jonesd29f7492008-07-22 14:09:06 -07003176/**
Michel Machado95603e22012-06-12 10:16:35 +00003177 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003178 * @net: network namespace this loopback is happening in
3179 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003180 * @skb: buffer to transmit
3181 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003182int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003183{
3184 skb_reset_mac_header(skb);
3185 __skb_pull(skb, skb_network_offset(skb));
3186 skb->pkt_type = PACKET_LOOPBACK;
3187 skb->ip_summed = CHECKSUM_UNNECESSARY;
3188 WARN_ON(!skb_dst(skb));
3189 skb_dst_force(skb);
3190 netif_rx_ni(skb);
3191 return 0;
3192}
3193EXPORT_SYMBOL(dev_loopback_xmit);
3194
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003195#ifdef CONFIG_NET_EGRESS
3196static struct sk_buff *
3197sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3198{
3199 struct tcf_proto *cl = rcu_dereference_bh(dev->egress_cl_list);
3200 struct tcf_result cl_res;
3201
3202 if (!cl)
3203 return skb;
3204
3205 /* skb->tc_verd and qdisc_skb_cb(skb)->pkt_len were already set
3206 * earlier by the caller.
3207 */
3208 qdisc_bstats_cpu_update(cl->q, skb);
3209
3210 switch (tc_classify(skb, cl, &cl_res, false)) {
3211 case TC_ACT_OK:
3212 case TC_ACT_RECLASSIFY:
3213 skb->tc_index = TC_H_MIN(cl_res.classid);
3214 break;
3215 case TC_ACT_SHOT:
3216 qdisc_qstats_cpu_drop(cl->q);
3217 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003218 kfree_skb(skb);
3219 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003220 case TC_ACT_STOLEN:
3221 case TC_ACT_QUEUED:
3222 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003223 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003224 return NULL;
3225 case TC_ACT_REDIRECT:
3226 /* No need to push/pop skb's mac_header here on egress! */
3227 skb_do_redirect(skb);
3228 *ret = NET_XMIT_SUCCESS;
3229 return NULL;
3230 default:
3231 break;
3232 }
3233
3234 return skb;
3235}
3236#endif /* CONFIG_NET_EGRESS */
3237
Jiri Pirko638b2a62015-05-12 14:56:13 +02003238static inline int get_xps_queue(struct net_device *dev, struct sk_buff *skb)
3239{
3240#ifdef CONFIG_XPS
3241 struct xps_dev_maps *dev_maps;
3242 struct xps_map *map;
3243 int queue_index = -1;
3244
3245 rcu_read_lock();
3246 dev_maps = rcu_dereference(dev->xps_maps);
3247 if (dev_maps) {
3248 map = rcu_dereference(
3249 dev_maps->cpu_map[skb->sender_cpu - 1]);
3250 if (map) {
3251 if (map->len == 1)
3252 queue_index = map->queues[0];
3253 else
3254 queue_index = map->queues[reciprocal_scale(skb_get_hash(skb),
3255 map->len)];
3256 if (unlikely(queue_index >= dev->real_num_tx_queues))
3257 queue_index = -1;
3258 }
3259 }
3260 rcu_read_unlock();
3261
3262 return queue_index;
3263#else
3264 return -1;
3265#endif
3266}
3267
3268static u16 __netdev_pick_tx(struct net_device *dev, struct sk_buff *skb)
3269{
3270 struct sock *sk = skb->sk;
3271 int queue_index = sk_tx_queue_get(sk);
3272
3273 if (queue_index < 0 || skb->ooo_okay ||
3274 queue_index >= dev->real_num_tx_queues) {
3275 int new_index = get_xps_queue(dev, skb);
3276 if (new_index < 0)
3277 new_index = skb_tx_hash(dev, skb);
3278
3279 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003280 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02003281 rcu_access_pointer(sk->sk_dst_cache))
3282 sk_tx_queue_set(sk, new_index);
3283
3284 queue_index = new_index;
3285 }
3286
3287 return queue_index;
3288}
3289
3290struct netdev_queue *netdev_pick_tx(struct net_device *dev,
3291 struct sk_buff *skb,
3292 void *accel_priv)
3293{
3294 int queue_index = 0;
3295
3296#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08003297 u32 sender_cpu = skb->sender_cpu - 1;
3298
3299 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003300 skb->sender_cpu = raw_smp_processor_id() + 1;
3301#endif
3302
3303 if (dev->real_num_tx_queues != 1) {
3304 const struct net_device_ops *ops = dev->netdev_ops;
3305 if (ops->ndo_select_queue)
3306 queue_index = ops->ndo_select_queue(dev, skb, accel_priv,
3307 __netdev_pick_tx);
3308 else
3309 queue_index = __netdev_pick_tx(dev, skb);
3310
3311 if (!accel_priv)
3312 queue_index = netdev_cap_txqueue(dev, queue_index);
3313 }
3314
3315 skb_set_queue_mapping(skb, queue_index);
3316 return netdev_get_tx_queue(dev, queue_index);
3317}
3318
Michel Machado95603e22012-06-12 10:16:35 +00003319/**
Jason Wang9d08dd32014-01-20 11:25:13 +08003320 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07003321 * @skb: buffer to transmit
Jason Wang9d08dd32014-01-20 11:25:13 +08003322 * @accel_priv: private data used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07003323 *
3324 * Queue a buffer for transmission to a network device. The caller must
3325 * have set the device and priority and built the buffer before calling
3326 * this function. The function can be called from an interrupt.
3327 *
3328 * A negative errno code is returned on a failure. A success does not
3329 * guarantee the frame will be transmitted as it may be dropped due
3330 * to congestion or traffic shaping.
3331 *
3332 * -----------------------------------------------------------------------------------
3333 * I notice this method can also return errors from the queue disciplines,
3334 * including NET_XMIT_DROP, which is a positive value. So, errors can also
3335 * be positive.
3336 *
3337 * Regardless of the return value, the skb is consumed, so it is currently
3338 * difficult to retry a send to this method. (You can bump the ref count
3339 * before sending to hold a reference for retry if you are careful.)
3340 *
3341 * When calling this method, interrupts MUST be enabled. This is because
3342 * the BH enable code must have IRQs enabled so that it will not deadlock.
3343 * --BLG
3344 */
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05303345static int __dev_queue_xmit(struct sk_buff *skb, void *accel_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346{
3347 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07003348 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 struct Qdisc *q;
3350 int rc = -ENOMEM;
3351
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00003352 skb_reset_mac_header(skb);
3353
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003354 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
3355 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
3356
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003357 /* Disable soft irqs for various locks below. Also
3358 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003360 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003361
Neil Horman5bc14212011-11-22 05:10:51 +00003362 skb_update_prio(skb);
3363
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003364 qdisc_pkt_len_init(skb);
3365#ifdef CONFIG_NET_CLS_ACT
3366 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
3367# ifdef CONFIG_NET_EGRESS
3368 if (static_key_false(&egress_needed)) {
3369 skb = sch_handle_egress(skb, &rc, dev);
3370 if (!skb)
3371 goto out;
3372 }
3373# endif
3374#endif
Eric Dumazet02875872014-10-05 18:38:35 -07003375 /* If device/qdisc don't need skb->dst, release it right now while
3376 * its hot in this cpu cache.
3377 */
3378 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
3379 skb_dst_drop(skb);
3380 else
3381 skb_dst_force(skb);
3382
Jason Wangf663dd92014-01-10 16:18:26 +08003383 txq = netdev_pick_tx(dev, skb, accel_priv);
Paul E. McKenneya898def2010-02-22 17:04:49 -08003384 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07003385
Koki Sanagicf66ba52010-08-23 18:45:02 +09003386 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003388 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07003389 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390 }
3391
3392 /* The device has no queue. Common case for software devices:
3393 loopback, all the sorts of tunnels...
3394
Herbert Xu932ff272006-06-09 12:20:56 -07003395 Really, it is unlikely that netif_tx_lock protection is necessary
3396 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07003397 counters.)
3398 However, it is possible, that they rely on protection
3399 made by us here.
3400
3401 Check this and shot the lock. It is not prone from deadlocks.
3402 Either shot noqueue qdisc, it is even simpler 8)
3403 */
3404 if (dev->flags & IFF_UP) {
3405 int cpu = smp_processor_id(); /* ok because BHs are off */
3406
David S. Millerc773e842008-07-08 23:13:53 -07003407 if (txq->xmit_lock_owner != cpu) {
Daniel Borkmanna70b5062016-06-10 21:19:06 +02003408 if (unlikely(__this_cpu_read(xmit_recursion) >
3409 XMIT_RECURSION_LIMIT))
Eric Dumazet745e20f2010-09-29 13:23:09 -07003410 goto recursion_alert;
3411
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003412 skb = validate_xmit_skb(skb, dev);
3413 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07003414 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003415
David S. Millerc773e842008-07-08 23:13:53 -07003416 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003417
Tom Herbert734664982011-11-28 16:32:44 +00003418 if (!netif_xmit_stopped(txq)) {
Eric Dumazet745e20f2010-09-29 13:23:09 -07003419 __this_cpu_inc(xmit_recursion);
David S. Millerce937182014-08-30 19:22:20 -07003420 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Eric Dumazet745e20f2010-09-29 13:23:09 -07003421 __this_cpu_dec(xmit_recursion);
Patrick McHardy572a9d72009-11-10 06:14:14 +00003422 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07003423 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 goto out;
3425 }
3426 }
David S. Millerc773e842008-07-08 23:13:53 -07003427 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00003428 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
3429 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 } else {
3431 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07003432 * unfortunately
3433 */
3434recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00003435 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
3436 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 }
3438 }
3439
3440 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07003441 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Eric Dumazet015f0682014-03-27 08:45:56 -07003443 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003444 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 return rc;
3446out:
Herbert Xud4828d82006-06-22 02:28:18 -07003447 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 return rc;
3449}
Jason Wangf663dd92014-01-10 16:18:26 +08003450
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003451int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08003452{
3453 return __dev_queue_xmit(skb, NULL);
3454}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003455EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456
Jason Wangf663dd92014-01-10 16:18:26 +08003457int dev_queue_xmit_accel(struct sk_buff *skb, void *accel_priv)
3458{
3459 return __dev_queue_xmit(skb, accel_priv);
3460}
3461EXPORT_SYMBOL(dev_queue_xmit_accel);
3462
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
3464/*=======================================================================
3465 Receiver routines
3466 =======================================================================*/
3467
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003468int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00003469EXPORT_SYMBOL(netdev_max_backlog);
3470
Eric Dumazet3b098e22010-05-15 23:57:10 -07003471int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003472int netdev_budget __read_mostly = 300;
3473int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003475/* Called with irq disabled */
3476static inline void ____napi_schedule(struct softnet_data *sd,
3477 struct napi_struct *napi)
3478{
3479 list_add_tail(&napi->poll_list, &sd->poll_list);
3480 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3481}
3482
Eric Dumazetdf334542010-03-24 19:13:54 +00003483#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07003484
3485/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003486struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07003487EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003488u32 rps_cpu_mask __read_mostly;
3489EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07003490
Ingo Molnarc5905af2012-02-24 08:31:31 +01003491struct static_key rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04003492EXPORT_SYMBOL(rps_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00003493
Ben Hutchingsc4454772011-01-19 11:03:53 +00003494static struct rps_dev_flow *
3495set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3496 struct rps_dev_flow *rflow, u16 next_cpu)
3497{
Eric Dumazeta31196b2015-04-25 09:35:24 -07003498 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00003499#ifdef CONFIG_RFS_ACCEL
3500 struct netdev_rx_queue *rxqueue;
3501 struct rps_dev_flow_table *flow_table;
3502 struct rps_dev_flow *old_rflow;
3503 u32 flow_id;
3504 u16 rxq_index;
3505 int rc;
3506
3507 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00003508 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
3509 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00003510 goto out;
3511 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
3512 if (rxq_index == skb_get_rx_queue(skb))
3513 goto out;
3514
3515 rxqueue = dev->_rx + rxq_index;
3516 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3517 if (!flow_table)
3518 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07003519 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003520 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
3521 rxq_index, flow_id);
3522 if (rc < 0)
3523 goto out;
3524 old_rflow = rflow;
3525 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00003526 rflow->filter = rc;
3527 if (old_rflow->filter == rflow->filter)
3528 old_rflow->filter = RPS_NO_FILTER;
3529 out:
3530#endif
3531 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00003532 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003533 }
3534
Ben Hutchings09994d12011-10-03 04:42:46 +00003535 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003536 return rflow;
3537}
3538
Tom Herbert0a9627f2010-03-16 08:03:29 +00003539/*
3540 * get_rps_cpu is called from netif_receive_skb and returns the target
3541 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003542 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00003543 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003544static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3545 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003546{
Eric Dumazet567e4b72015-02-06 12:59:01 -08003547 const struct rps_sock_flow_table *sock_flow_table;
3548 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07003549 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003550 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003551 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003552 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07003553 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003554
Tom Herbert0a9627f2010-03-16 08:03:29 +00003555 if (skb_rx_queue_recorded(skb)) {
3556 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003557
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003558 if (unlikely(index >= dev->real_num_rx_queues)) {
3559 WARN_ONCE(dev->real_num_rx_queues > 1,
3560 "%s received packet on queue %u, but number "
3561 "of RX queues is %u\n",
3562 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003563 goto done;
3564 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08003565 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003566 }
3567
Eric Dumazet567e4b72015-02-06 12:59:01 -08003568 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
3569
3570 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3571 map = rcu_dereference(rxqueue->rps_map);
3572 if (!flow_table && !map)
3573 goto done;
3574
Changli Gao2d47b452010-08-17 19:00:56 +00003575 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07003576 hash = skb_get_hash(skb);
3577 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003578 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003579
Tom Herbertfec5e652010-04-16 16:01:27 -07003580 sock_flow_table = rcu_dereference(rps_sock_flow_table);
3581 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003582 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003583 u32 next_cpu;
3584 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07003585
Eric Dumazet567e4b72015-02-06 12:59:01 -08003586 /* First check into global flow table if there is a match */
3587 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
3588 if ((ident ^ hash) & ~rps_cpu_mask)
3589 goto try_rps;
3590
3591 next_cpu = ident & rps_cpu_mask;
3592
3593 /* OK, now we know there is a match,
3594 * we can look at the local (per receive queue) flow table
3595 */
Tom Herbert61b905d2014-03-24 15:34:47 -07003596 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07003597 tcpu = rflow->cpu;
3598
Tom Herbertfec5e652010-04-16 16:01:27 -07003599 /*
3600 * If the desired CPU (where last recvmsg was done) is
3601 * different from current CPU (one in the rx-queue flow
3602 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07003603 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07003604 * - Current CPU is offline.
3605 * - The current CPU's queue tail has advanced beyond the
3606 * last packet that was enqueued using this table entry.
3607 * This guarantees that all previous packets for the flow
3608 * have been dequeued, thus preserving in order delivery.
3609 */
3610 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07003611 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07003612 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00003613 rflow->last_qtail)) >= 0)) {
3614 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003615 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00003616 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00003617
Eric Dumazeta31196b2015-04-25 09:35:24 -07003618 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003619 *rflowp = rflow;
3620 cpu = tcpu;
3621 goto done;
3622 }
3623 }
3624
Eric Dumazet567e4b72015-02-06 12:59:01 -08003625try_rps:
3626
Tom Herbert0a9627f2010-03-16 08:03:29 +00003627 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02003628 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00003629 if (cpu_online(tcpu)) {
3630 cpu = tcpu;
3631 goto done;
3632 }
3633 }
3634
3635done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00003636 return cpu;
3637}
3638
Ben Hutchingsc4454772011-01-19 11:03:53 +00003639#ifdef CONFIG_RFS_ACCEL
3640
3641/**
3642 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
3643 * @dev: Device on which the filter was set
3644 * @rxq_index: RX queue index
3645 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
3646 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
3647 *
3648 * Drivers that implement ndo_rx_flow_steer() should periodically call
3649 * this function for each installed filter and remove the filters for
3650 * which it returns %true.
3651 */
3652bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
3653 u32 flow_id, u16 filter_id)
3654{
3655 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
3656 struct rps_dev_flow_table *flow_table;
3657 struct rps_dev_flow *rflow;
3658 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07003659 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003660
3661 rcu_read_lock();
3662 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3663 if (flow_table && flow_id <= flow_table->mask) {
3664 rflow = &flow_table->flows[flow_id];
3665 cpu = ACCESS_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07003666 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00003667 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
3668 rflow->last_qtail) <
3669 (int)(10 * flow_table->mask)))
3670 expire = false;
3671 }
3672 rcu_read_unlock();
3673 return expire;
3674}
3675EXPORT_SYMBOL(rps_may_expire_flow);
3676
3677#endif /* CONFIG_RFS_ACCEL */
3678
Tom Herbert0a9627f2010-03-16 08:03:29 +00003679/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003680static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003681{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003682 struct softnet_data *sd = data;
3683
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003684 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00003685 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003686}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003687
Tom Herbertfec5e652010-04-16 16:01:27 -07003688#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00003689
3690/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003691 * Check if this softnet_data structure is another cpu one
3692 * If yes, queue it to our IPI list and return 1
3693 * If no, return 0
3694 */
3695static int rps_ipi_queued(struct softnet_data *sd)
3696{
3697#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05003698 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003699
3700 if (sd != mysd) {
3701 sd->rps_ipi_next = mysd->rps_ipi_list;
3702 mysd->rps_ipi_list = sd;
3703
3704 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3705 return 1;
3706 }
3707#endif /* CONFIG_RPS */
3708 return 0;
3709}
3710
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003711#ifdef CONFIG_NET_FLOW_LIMIT
3712int netdev_flow_limit_table_len __read_mostly = (1 << 12);
3713#endif
3714
3715static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
3716{
3717#ifdef CONFIG_NET_FLOW_LIMIT
3718 struct sd_flow_limit *fl;
3719 struct softnet_data *sd;
3720 unsigned int old_flow, new_flow;
3721
3722 if (qlen < (netdev_max_backlog >> 1))
3723 return false;
3724
Christoph Lameter903ceff2014-08-17 12:30:35 -05003725 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003726
3727 rcu_read_lock();
3728 fl = rcu_dereference(sd->flow_limit);
3729 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08003730 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003731 old_flow = fl->history[fl->history_head];
3732 fl->history[fl->history_head] = new_flow;
3733
3734 fl->history_head++;
3735 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
3736
3737 if (likely(fl->buckets[old_flow]))
3738 fl->buckets[old_flow]--;
3739
3740 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
3741 fl->count++;
3742 rcu_read_unlock();
3743 return true;
3744 }
3745 }
3746 rcu_read_unlock();
3747#endif
3748 return false;
3749}
3750
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003751/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00003752 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
3753 * queue (may be a remote CPU queue).
3754 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003755static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
3756 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003757{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003758 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003759 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003760 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003761
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003762 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003763
3764 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003765
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003766 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03003767 if (!netif_running(skb->dev))
3768 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003769 qlen = skb_queue_len(&sd->input_pkt_queue);
3770 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08003771 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00003772enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003773 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003774 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003775 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00003776 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003777 return NET_RX_SUCCESS;
3778 }
3779
Eric Dumazetebda37c22010-05-06 23:51:21 +00003780 /* Schedule NAPI for backlog device
3781 * We can use non atomic operation since we own the queue lock
3782 */
3783 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003784 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003785 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003786 }
3787 goto enqueue;
3788 }
3789
Julian Anastasove9e4dd32015-07-09 09:59:09 +03003790drop:
Changli Gaodee42872010-05-02 05:42:16 +00003791 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003792 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003793
Tom Herbert0a9627f2010-03-16 08:03:29 +00003794 local_irq_restore(flags);
3795
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003796 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003797 kfree_skb(skb);
3798 return NET_RX_DROP;
3799}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003801static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003803 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804
Eric Dumazet588f0332011-11-15 04:12:55 +00003805 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806
Koki Sanagicf66ba52010-08-23 18:45:02 +09003807 trace_netif_rx(skb);
Eric Dumazetdf334542010-03-24 19:13:54 +00003808#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003809 if (static_key_false(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003810 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003811 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812
Changli Gaocece1942010-08-07 20:35:43 -07003813 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003814 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003815
3816 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003817 if (cpu < 0)
3818 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07003819
3820 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3821
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003822 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07003823 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00003824 } else
3825#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07003826 {
3827 unsigned int qtail;
3828 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
3829 put_cpu();
3830 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003831 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003833
3834/**
3835 * netif_rx - post buffer to the network code
3836 * @skb: buffer to post
3837 *
3838 * This function receives a packet from a device driver and queues it for
3839 * the upper (protocol) levels to process. It always succeeds. The buffer
3840 * may be dropped during processing for congestion control or by the
3841 * protocol layers.
3842 *
3843 * return values:
3844 * NET_RX_SUCCESS (no congestion)
3845 * NET_RX_DROP (packet was dropped)
3846 *
3847 */
3848
3849int netif_rx(struct sk_buff *skb)
3850{
3851 trace_netif_rx_entry(skb);
3852
3853 return netif_rx_internal(skb);
3854}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003855EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856
3857int netif_rx_ni(struct sk_buff *skb)
3858{
3859 int err;
3860
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003861 trace_netif_rx_ni_entry(skb);
3862
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003864 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 if (local_softirq_pending())
3866 do_softirq();
3867 preempt_enable();
3868
3869 return err;
3870}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871EXPORT_SYMBOL(netif_rx_ni);
3872
Emese Revfy0766f782016-06-20 20:42:34 +02003873static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874{
Christoph Lameter903ceff2014-08-17 12:30:35 -05003875 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876
3877 if (sd->completion_queue) {
3878 struct sk_buff *clist;
3879
3880 local_irq_disable();
3881 clist = sd->completion_queue;
3882 sd->completion_queue = NULL;
3883 local_irq_enable();
3884
3885 while (clist) {
3886 struct sk_buff *skb = clist;
3887 clist = clist->next;
3888
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003889 WARN_ON(atomic_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08003890 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
3891 trace_consume_skb(skb);
3892 else
3893 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01003894
3895 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
3896 __kfree_skb(skb);
3897 else
3898 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01003900
3901 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 }
3903
3904 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07003905 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
3907 local_irq_disable();
3908 head = sd->output_queue;
3909 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00003910 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 local_irq_enable();
3912
3913 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07003914 struct Qdisc *q = head;
3915 spinlock_t *root_lock;
3916
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 head = head->next_sched;
3918
David S. Miller5fb66222008-08-02 20:02:43 -07003919 root_lock = qdisc_lock(q);
Eric Dumazet3bcb8462016-06-04 20:02:28 -07003920 spin_lock(root_lock);
3921 /* We need to make sure head->next_sched is read
3922 * before clearing __QDISC_STATE_SCHED
3923 */
3924 smp_mb__before_atomic();
3925 clear_bit(__QDISC_STATE_SCHED, &q->state);
3926 qdisc_run(q);
3927 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 }
3929 }
3930}
3931
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04003932#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00003933/* This hook is defined here for ATM LANE */
3934int (*br_fdb_test_addr_hook)(struct net_device *dev,
3935 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07003936EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00003937#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003939static inline struct sk_buff *
3940sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
3941 struct net_device *orig_dev)
Herbert Xuf697c3e2007-10-14 00:38:47 -07003942{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02003943#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003944 struct tcf_proto *cl = rcu_dereference_bh(skb->dev->ingress_cl_list);
3945 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00003946
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02003947 /* If there's at least one ingress present somewhere (so
3948 * we get here via enabled static key), remaining devices
3949 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003950 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02003951 */
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003952 if (!cl)
Daniel Borkmann45771392015-04-10 23:07:54 +02003953 return skb;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003954 if (*pt_prev) {
3955 *ret = deliver_skb(skb, *pt_prev, orig_dev);
3956 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003957 }
3958
Florian Westphal33654952015-05-14 00:36:28 +02003959 qdisc_skb_cb(skb)->pkt_len = skb->len;
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02003960 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
Eric Dumazet24ea5912015-07-06 05:18:03 -07003961 qdisc_bstats_cpu_update(cl->q, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02003962
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02003963 switch (tc_classify(skb, cl, &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003964 case TC_ACT_OK:
3965 case TC_ACT_RECLASSIFY:
3966 skb->tc_index = TC_H_MIN(cl_res.classid);
3967 break;
3968 case TC_ACT_SHOT:
Eric Dumazet24ea5912015-07-06 05:18:03 -07003969 qdisc_qstats_cpu_drop(cl->q);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07003970 kfree_skb(skb);
3971 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003972 case TC_ACT_STOLEN:
3973 case TC_ACT_QUEUED:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07003974 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003975 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07003976 case TC_ACT_REDIRECT:
3977 /* skb_mac_header check was done by cls/act_bpf, so
3978 * we can safely push the L2 header back before
3979 * redirecting to another netdev
3980 */
3981 __skb_push(skb, skb->mac_len);
3982 skb_do_redirect(skb);
3983 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003984 default:
3985 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003986 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02003987#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07003988 return skb;
3989}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003991/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07003992 * netdev_is_rx_handler_busy - check if receive handler is registered
3993 * @dev: device to check
3994 *
3995 * Check if a receive handler is already registered for a given device.
3996 * Return true if there one.
3997 *
3998 * The caller must hold the rtnl_mutex.
3999 */
4000bool netdev_is_rx_handler_busy(struct net_device *dev)
4001{
4002 ASSERT_RTNL();
4003 return dev && rtnl_dereference(dev->rx_handler);
4004}
4005EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
4006
4007/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004008 * netdev_rx_handler_register - register receive handler
4009 * @dev: device to register a handler for
4010 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00004011 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004012 *
Masanari Iidae2278672014-02-18 22:54:36 +09004013 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004014 * called from __netif_receive_skb. A negative errno code is returned
4015 * on a failure.
4016 *
4017 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004018 *
4019 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004020 */
4021int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00004022 rx_handler_func_t *rx_handler,
4023 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004024{
4025 ASSERT_RTNL();
4026
4027 if (dev->rx_handler)
4028 return -EBUSY;
4029
Eric Dumazet00cfec32013-03-29 03:01:22 +00004030 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00004031 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004032 rcu_assign_pointer(dev->rx_handler, rx_handler);
4033
4034 return 0;
4035}
4036EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
4037
4038/**
4039 * netdev_rx_handler_unregister - unregister receive handler
4040 * @dev: device to unregister a handler from
4041 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00004042 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004043 *
4044 * The caller must hold the rtnl_mutex.
4045 */
4046void netdev_rx_handler_unregister(struct net_device *dev)
4047{
4048
4049 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004050 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00004051 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
4052 * section has a guarantee to see a non NULL rx_handler_data
4053 * as well.
4054 */
4055 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004056 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004057}
4058EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
4059
Mel Gormanb4b9e352012-07-31 16:44:26 -07004060/*
4061 * Limit the use of PFMEMALLOC reserves to those protocols that implement
4062 * the special handling of PFMEMALLOC skbs.
4063 */
4064static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
4065{
4066 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07004067 case htons(ETH_P_ARP):
4068 case htons(ETH_P_IP):
4069 case htons(ETH_P_IPV6):
4070 case htons(ETH_P_8021Q):
4071 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07004072 return true;
4073 default:
4074 return false;
4075 }
4076}
4077
Pablo Neirae687ad62015-05-13 18:19:38 +02004078static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
4079 int *ret, struct net_device *orig_dev)
4080{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004081#ifdef CONFIG_NETFILTER_INGRESS
Pablo Neirae687ad62015-05-13 18:19:38 +02004082 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04004083 int ingress_retval;
4084
Pablo Neirae687ad62015-05-13 18:19:38 +02004085 if (*pt_prev) {
4086 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4087 *pt_prev = NULL;
4088 }
4089
Aaron Conole2c1e2702016-09-21 11:35:03 -04004090 rcu_read_lock();
4091 ingress_retval = nf_hook_ingress(skb);
4092 rcu_read_unlock();
4093 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02004094 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004095#endif /* CONFIG_NETFILTER_INGRESS */
Pablo Neirae687ad62015-05-13 18:19:38 +02004096 return 0;
4097}
Pablo Neirae687ad62015-05-13 18:19:38 +02004098
David S. Miller9754e292013-02-14 15:57:38 -05004099static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100{
4101 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004102 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07004103 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004104 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 int ret = NET_RX_DROP;
Al Viro252e3342006-11-14 20:48:11 -08004106 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107
Eric Dumazet588f0332011-11-15 04:12:55 +00004108 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07004109
Koki Sanagicf66ba52010-08-23 18:45:02 +09004110 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08004111
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07004112 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00004113
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07004114 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00004115 if (!skb_transport_header_was_set(skb))
4116 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00004117 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118
4119 pt_prev = NULL;
4120
David S. Miller63d8ea72011-02-28 10:48:59 -08004121another_round:
David S. Millerb6858172012-07-23 16:27:54 -07004122 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08004123
4124 __this_cpu_inc(softnet_data.processed);
4125
Patrick McHardy8ad227f2013-04-19 02:04:31 +00004126 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
4127 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004128 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004129 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004130 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004131 }
4132
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133#ifdef CONFIG_NET_CLS_ACT
4134 if (skb->tc_verd & TC_NCLS) {
4135 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
4136 goto ncls;
4137 }
4138#endif
4139
David S. Miller9754e292013-02-14 15:57:38 -05004140 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07004141 goto skip_taps;
4142
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08004144 if (pt_prev)
4145 ret = deliver_skb(skb, pt_prev, orig_dev);
4146 pt_prev = ptype;
4147 }
4148
4149 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
4150 if (pt_prev)
4151 ret = deliver_skb(skb, pt_prev, orig_dev);
4152 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 }
4154
Mel Gormanb4b9e352012-07-31 16:44:26 -07004155skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02004156#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +02004157 if (static_key_false(&ingress_needed)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004158 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev);
Daniel Borkmann45771392015-04-10 23:07:54 +02004159 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004160 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02004161
4162 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004163 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02004164 }
Pablo Neira1cf519002015-05-13 18:19:37 +02004165#endif
4166#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmann45771392015-04-10 23:07:54 +02004167 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168ncls:
4169#endif
David S. Miller9754e292013-02-14 15:57:38 -05004170 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07004171 goto drop;
4172
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004173 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00004174 if (pt_prev) {
4175 ret = deliver_skb(skb, pt_prev, orig_dev);
4176 pt_prev = NULL;
4177 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004178 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00004179 goto another_round;
4180 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004181 goto out;
John Fastabend24257172011-10-10 09:16:41 +00004182 }
4183
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004184 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004185 if (rx_handler) {
4186 if (pt_prev) {
4187 ret = deliver_skb(skb, pt_prev, orig_dev);
4188 pt_prev = NULL;
4189 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004190 switch (rx_handler(&skb)) {
4191 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00004192 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004193 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004194 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08004195 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004196 case RX_HANDLER_EXACT:
4197 deliver_exact = true;
4198 case RX_HANDLER_PASS:
4199 break;
4200 default:
4201 BUG();
4202 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004203 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004205 if (unlikely(skb_vlan_tag_present(skb))) {
4206 if (skb_vlan_tag_get_id(skb))
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004207 skb->pkt_type = PACKET_OTHERHOST;
4208 /* Note: we might in the future use prio bits
4209 * and set skb->priority like in vlan_do_receive()
4210 * For the time being, just ignore Priority Code Point
4211 */
4212 skb->vlan_tci = 0;
4213 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004214
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08004216
4217 /* deliver only exact match when indicated */
4218 if (likely(!deliver_exact)) {
4219 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4220 &ptype_base[ntohs(type) &
4221 PTYPE_HASH_MASK]);
4222 }
4223
4224 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4225 &orig_dev->ptype_specific);
4226
4227 if (unlikely(skb->dev != orig_dev)) {
4228 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4229 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 }
4231
4232 if (pt_prev) {
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00004233 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00004234 goto drop;
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00004235 else
4236 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07004238drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05004239 if (!deliver_exact)
4240 atomic_long_inc(&skb->dev->rx_dropped);
4241 else
4242 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 kfree_skb(skb);
4244 /* Jamal, now you will not able to escape explaining
4245 * me how you were going to use this. :-)
4246 */
4247 ret = NET_RX_DROP;
4248 }
4249
Julian Anastasov2c17d272015-07-09 09:59:10 +03004250out:
David S. Miller9754e292013-02-14 15:57:38 -05004251 return ret;
4252}
4253
4254static int __netif_receive_skb(struct sk_buff *skb)
4255{
4256 int ret;
4257
4258 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
4259 unsigned long pflags = current->flags;
4260
4261 /*
4262 * PFMEMALLOC skbs are special, they should
4263 * - be delivered to SOCK_MEMALLOC sockets only
4264 * - stay away from userspace
4265 * - have bounded memory usage
4266 *
4267 * Use PF_MEMALLOC as this saves us from propagating the allocation
4268 * context down to all allocation sites.
4269 */
4270 current->flags |= PF_MEMALLOC;
4271 ret = __netif_receive_skb_core(skb, true);
4272 tsk_restore_flags(current, pflags, PF_MEMALLOC);
4273 } else
4274 ret = __netif_receive_skb_core(skb, false);
4275
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276 return ret;
4277}
Tom Herbert0a9627f2010-03-16 08:03:29 +00004278
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004279static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004280{
Julian Anastasov2c17d272015-07-09 09:59:10 +03004281 int ret;
4282
Eric Dumazet588f0332011-11-15 04:12:55 +00004283 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07004284
Richard Cochranc1f19b52010-07-17 08:49:36 +00004285 if (skb_defer_rx_timestamp(skb))
4286 return NET_RX_SUCCESS;
4287
Julian Anastasov2c17d272015-07-09 09:59:10 +03004288 rcu_read_lock();
4289
Eric Dumazetdf334542010-03-24 19:13:54 +00004290#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01004291 if (static_key_false(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07004292 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004293 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07004294
Eric Dumazet3b098e22010-05-15 23:57:10 -07004295 if (cpu >= 0) {
4296 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4297 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00004298 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07004299 }
Tom Herbertfec5e652010-04-16 16:01:27 -07004300 }
Tom Herbert1e94d722010-03-18 17:45:44 -07004301#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03004302 ret = __netif_receive_skb(skb);
4303 rcu_read_unlock();
4304 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004305}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004306
4307/**
4308 * netif_receive_skb - process receive buffer from network
4309 * @skb: buffer to process
4310 *
4311 * netif_receive_skb() is the main receive data processing function.
4312 * It always succeeds. The buffer may be dropped during processing
4313 * for congestion control or by the protocol layers.
4314 *
4315 * This function may only be called from softirq context and interrupts
4316 * should be enabled.
4317 *
4318 * Return values (usually ignored):
4319 * NET_RX_SUCCESS: no congestion
4320 * NET_RX_DROP: packet was dropped
4321 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05004322int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004323{
4324 trace_netif_receive_skb_entry(skb);
4325
4326 return netif_receive_skb_internal(skb);
4327}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05004328EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329
Eric Dumazet41852492016-08-26 12:50:39 -07004330DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004331
4332/* Network device is going away, flush any packets still pending */
4333static void flush_backlog(struct work_struct *work)
4334{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004335 struct sk_buff *skb, *tmp;
4336 struct softnet_data *sd;
4337
4338 local_bh_disable();
4339 sd = this_cpu_ptr(&softnet_data);
4340
4341 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004342 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07004343 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07004344 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004345 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004346 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004347 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004348 }
Changli Gao6e7676c2010-04-27 15:07:33 -07004349 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004350 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004351 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004352
4353 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07004354 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07004355 __skb_unlink(skb, &sd->process_queue);
4356 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004357 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07004358 }
4359 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004360 local_bh_enable();
4361}
4362
Eric Dumazet41852492016-08-26 12:50:39 -07004363static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004364{
4365 unsigned int cpu;
4366
4367 get_online_cpus();
4368
Eric Dumazet41852492016-08-26 12:50:39 -07004369 for_each_online_cpu(cpu)
4370 queue_work_on(cpu, system_highpri_wq,
4371 per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004372
4373 for_each_online_cpu(cpu)
Eric Dumazet41852492016-08-26 12:50:39 -07004374 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004375
4376 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004377}
4378
Herbert Xud565b0a2008-12-15 23:38:52 -08004379static int napi_gro_complete(struct sk_buff *skb)
4380{
Vlad Yasevich22061d82012-11-15 08:49:11 +00004381 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08004382 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004383 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08004384 int err = -ENOENT;
4385
Eric Dumazetc3c7c252012-12-06 13:54:59 +00004386 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
4387
Herbert Xufc59f9a2009-04-14 15:11:06 -07004388 if (NAPI_GRO_CB(skb)->count == 1) {
4389 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004390 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07004391 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004392
4393 rcu_read_lock();
4394 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004395 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08004396 continue;
4397
Jerry Chu299603e82013-12-11 20:53:45 -08004398 err = ptype->callbacks.gro_complete(skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08004399 break;
4400 }
4401 rcu_read_unlock();
4402
4403 if (err) {
4404 WARN_ON(&ptype->list == head);
4405 kfree_skb(skb);
4406 return NET_RX_SUCCESS;
4407 }
4408
4409out:
Subash Abhinov Kasiviswanathan27cfd4e2017-06-01 13:43:25 -06004410 __this_cpu_add(softnet_data.gro_coalesced, NAPI_GRO_CB(skb)->count > 1);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004411 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004412}
4413
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004414/* napi->gro_list contains packets ordered by age.
4415 * youngest packets at the head of it.
4416 * Complete skbs in reverse order to reduce latencies.
4417 */
4418void napi_gro_flush(struct napi_struct *napi, bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08004419{
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004420 struct sk_buff *skb, *prev = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004421
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004422 /* scan list and build reverse chain */
4423 for (skb = napi->gro_list; skb != NULL; skb = skb->next) {
4424 skb->prev = prev;
4425 prev = skb;
Herbert Xud565b0a2008-12-15 23:38:52 -08004426 }
4427
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004428 for (skb = prev; skb; skb = prev) {
4429 skb->next = NULL;
4430
4431 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
4432 return;
4433
4434 prev = skb->prev;
4435 napi_gro_complete(skb);
4436 napi->gro_count--;
4437 }
4438
Herbert Xud565b0a2008-12-15 23:38:52 -08004439 napi->gro_list = NULL;
4440}
Eric Dumazet86cac582010-08-31 18:25:32 +00004441EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08004442
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004443static void gro_list_prepare(struct napi_struct *napi, struct sk_buff *skb)
4444{
4445 struct sk_buff *p;
4446 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08004447 u32 hash = skb_get_hash_raw(skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004448
4449 for (p = napi->gro_list; p; p = p->next) {
4450 unsigned long diffs;
4451
Tom Herbert0b4cec82014-01-15 08:58:06 -08004452 NAPI_GRO_CB(p)->flush = 0;
4453
4454 if (hash != skb_get_hash_raw(p)) {
4455 NAPI_GRO_CB(p)->same_flow = 0;
4456 continue;
4457 }
4458
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004459 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
4460 diffs |= p->vlan_tci ^ skb->vlan_tci;
Jesse Grossce87fc62016-01-20 17:59:49 -08004461 diffs |= skb_metadata_dst_cmp(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004462 if (maclen == ETH_HLEN)
4463 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07004464 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004465 else if (!diffs)
4466 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07004467 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004468 maclen);
4469 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004470 }
4471}
4472
Jerry Chu299603e82013-12-11 20:53:45 -08004473static void skb_gro_reset_offset(struct sk_buff *skb)
4474{
4475 const struct skb_shared_info *pinfo = skb_shinfo(skb);
4476 const skb_frag_t *frag0 = &pinfo->frags[0];
4477
4478 NAPI_GRO_CB(skb)->data_offset = 0;
4479 NAPI_GRO_CB(skb)->frag0 = NULL;
4480 NAPI_GRO_CB(skb)->frag0_len = 0;
4481
4482 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
4483 pinfo->nr_frags &&
4484 !PageHighMem(skb_frag_page(frag0))) {
4485 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet934ca012017-01-10 19:52:43 -08004486 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
4487 skb_frag_size(frag0),
4488 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08004489 }
4490}
4491
Eric Dumazeta50e2332014-03-29 21:28:21 -07004492static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
4493{
4494 struct skb_shared_info *pinfo = skb_shinfo(skb);
4495
4496 BUG_ON(skb->end - skb->tail < grow);
4497
4498 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
4499
4500 skb->data_len -= grow;
4501 skb->tail += grow;
4502
4503 pinfo->frags[0].page_offset += grow;
4504 skb_frag_size_sub(&pinfo->frags[0], grow);
4505
4506 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
4507 skb_frag_unref(skb, 0);
4508 memmove(pinfo->frags, pinfo->frags + 1,
4509 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
4510 }
4511}
4512
Rami Rosenbb728822012-11-28 21:55:25 +00004513static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08004514{
4515 struct sk_buff **pp = NULL;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004516 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08004517 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004518 struct list_head *head = &offload_base;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004519 int same_flow;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004520 enum gro_result ret;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004521 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08004522
Eric W. Biederman9c62a682014-03-14 20:51:52 -07004523 if (!(skb->dev->features & NETIF_F_GRO))
Herbert Xud565b0a2008-12-15 23:38:52 -08004524 goto normal;
4525
Tom Herbert5a212322014-08-31 15:12:41 -07004526 if (skb_is_gso(skb) || skb_has_frag_list(skb) || skb->csum_bad)
Herbert Xuf17f5c92009-01-14 14:36:12 -08004527 goto normal;
4528
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004529 gro_list_prepare(napi, skb);
4530
Herbert Xud565b0a2008-12-15 23:38:52 -08004531 rcu_read_lock();
4532 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004533 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08004534 continue;
4535
Herbert Xu86911732009-01-29 14:19:50 +00004536 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00004537 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004538 NAPI_GRO_CB(skb)->same_flow = 0;
4539 NAPI_GRO_CB(skb)->flush = 0;
Herbert Xu5d38a072009-01-04 16:13:40 -08004540 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07004541 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02004542 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07004543 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04004544 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08004545 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004546
Tom Herbert662880f2014-08-27 21:26:56 -07004547 /* Setup for GRO checksum validation */
4548 switch (skb->ip_summed) {
4549 case CHECKSUM_COMPLETE:
4550 NAPI_GRO_CB(skb)->csum = skb->csum;
4551 NAPI_GRO_CB(skb)->csum_valid = 1;
4552 NAPI_GRO_CB(skb)->csum_cnt = 0;
4553 break;
4554 case CHECKSUM_UNNECESSARY:
4555 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
4556 NAPI_GRO_CB(skb)->csum_valid = 0;
4557 break;
4558 default:
4559 NAPI_GRO_CB(skb)->csum_cnt = 0;
4560 NAPI_GRO_CB(skb)->csum_valid = 0;
4561 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004562
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004563 pp = ptype->callbacks.gro_receive(&napi->gro_list, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004564 break;
4565 }
4566 rcu_read_unlock();
4567
4568 if (&ptype->list == head)
4569 goto normal;
4570
Herbert Xu0da2afd52008-12-26 14:57:42 -08004571 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004572 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004573
Herbert Xud565b0a2008-12-15 23:38:52 -08004574 if (pp) {
4575 struct sk_buff *nskb = *pp;
4576
4577 *pp = nskb->next;
4578 nskb->next = NULL;
4579 napi_gro_complete(nskb);
Herbert Xu4ae55442009-02-08 18:00:36 +00004580 napi->gro_count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08004581 }
4582
Herbert Xu0da2afd52008-12-26 14:57:42 -08004583 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08004584 goto ok;
4585
Eric Dumazet600adc12014-01-09 14:12:19 -08004586 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08004587 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08004588
Eric Dumazet600adc12014-01-09 14:12:19 -08004589 if (unlikely(napi->gro_count >= MAX_GRO_SKBS)) {
4590 struct sk_buff *nskb = napi->gro_list;
4591
4592 /* locate the end of the list to select the 'oldest' flow */
4593 while (nskb->next) {
4594 pp = &nskb->next;
4595 nskb = *pp;
4596 }
4597 *pp = NULL;
4598 nskb->next = NULL;
4599 napi_gro_complete(nskb);
4600 } else {
4601 napi->gro_count++;
4602 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004603 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004604 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07004605 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00004606 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004607 skb->next = napi->gro_list;
4608 napi->gro_list = skb;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004609 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08004610
Herbert Xuad0f9902009-02-01 01:24:55 -08004611pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004612 grow = skb_gro_offset(skb) - skb_headlen(skb);
4613 if (grow > 0)
4614 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08004615ok:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004616 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08004617
4618normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08004619 ret = GRO_NORMAL;
4620 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08004621}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004622
Jerry Chubf5a7552014-01-07 10:23:19 -08004623struct packet_offload *gro_find_receive_by_type(__be16 type)
4624{
4625 struct list_head *offload_head = &offload_base;
4626 struct packet_offload *ptype;
4627
4628 list_for_each_entry_rcu(ptype, offload_head, list) {
4629 if (ptype->type != type || !ptype->callbacks.gro_receive)
4630 continue;
4631 return ptype;
4632 }
4633 return NULL;
4634}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004635EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08004636
4637struct packet_offload *gro_find_complete_by_type(__be16 type)
4638{
4639 struct list_head *offload_head = &offload_base;
4640 struct packet_offload *ptype;
4641
4642 list_for_each_entry_rcu(ptype, offload_head, list) {
4643 if (ptype->type != type || !ptype->callbacks.gro_complete)
4644 continue;
4645 return ptype;
4646 }
4647 return NULL;
4648}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004649EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004650
Michal Kubeček06732802017-06-29 11:13:36 +02004651static void napi_skb_free_stolen_head(struct sk_buff *skb)
4652{
4653 skb_dst_drop(skb);
4654 kmem_cache_free(skbuff_head_cache, skb);
4655}
4656
Rami Rosenbb728822012-11-28 21:55:25 +00004657static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08004658{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004659 switch (ret) {
4660 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004661 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004662 ret = GRO_DROP;
4663 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004664
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004665 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08004666 kfree_skb(skb);
4667 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004668
Eric Dumazetdaa86542012-04-19 07:07:40 +00004669 case GRO_MERGED_FREE:
Michal Kubeček06732802017-06-29 11:13:36 +02004670 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4671 napi_skb_free_stolen_head(skb);
4672 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00004673 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00004674 break;
4675
Ben Hutchings5b252f02009-10-29 07:17:09 +00004676 case GRO_HELD:
4677 case GRO_MERGED:
4678 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004679 }
4680
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004681 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004682}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004683
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004684gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004685{
Eric Dumazet93f93a42015-11-18 06:30:59 -08004686 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004687 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00004688
Eric Dumazeta50e2332014-03-29 21:28:21 -07004689 skb_gro_reset_offset(skb);
4690
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004691 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004692}
4693EXPORT_SYMBOL(napi_gro_receive);
4694
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00004695static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004696{
Eric Dumazet93a35f52014-10-23 06:30:30 -07004697 if (unlikely(skb->pfmemalloc)) {
4698 consume_skb(skb);
4699 return;
4700 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004701 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00004702 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
4703 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Jesse Gross3701e512010-10-20 13:56:06 +00004704 skb->vlan_tci = 0;
Herbert Xu66c46d72011-01-29 20:44:54 -08004705 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08004706 skb->skb_iif = 0;
Jerry Chuc3caf112014-07-14 15:54:46 -07004707 skb->encapsulation = 0;
4708 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07004709 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Herbert Xu96e93ea2009-01-06 10:49:34 -08004710
4711 napi->skb = skb;
4712}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004713
Herbert Xu76620aa2009-04-16 02:02:07 -07004714struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08004715{
Herbert Xu5d38a072009-01-04 16:13:40 -08004716 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004717
4718 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08004719 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08004720 if (skb) {
4721 napi->skb = skb;
4722 skb_mark_napi_id(skb, napi);
4723 }
Herbert Xu5d38a072009-01-04 16:13:40 -08004724 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004725 return skb;
4726}
Herbert Xu76620aa2009-04-16 02:02:07 -07004727EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004728
Eric Dumazeta50e2332014-03-29 21:28:21 -07004729static gro_result_t napi_frags_finish(struct napi_struct *napi,
4730 struct sk_buff *skb,
4731 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004732{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004733 switch (ret) {
4734 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004735 case GRO_HELD:
4736 __skb_push(skb, ETH_HLEN);
4737 skb->protocol = eth_type_trans(skb, skb->dev);
4738 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004739 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00004740 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004741
4742 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004743 napi_reuse_skb(napi, skb);
4744 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004745
Michal Kubeček06732802017-06-29 11:13:36 +02004746 case GRO_MERGED_FREE:
4747 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4748 napi_skb_free_stolen_head(skb);
4749 else
4750 napi_reuse_skb(napi, skb);
4751 break;
4752
Ben Hutchings5b252f02009-10-29 07:17:09 +00004753 case GRO_MERGED:
4754 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004755 }
4756
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004757 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004758}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004759
Eric Dumazeta50e2332014-03-29 21:28:21 -07004760/* Upper GRO stack assumes network header starts at gro_offset=0
4761 * Drivers could call both napi_gro_frags() and napi_gro_receive()
4762 * We copy ethernet header into skb->data to have a common layout.
4763 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00004764static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004765{
Herbert Xu76620aa2009-04-16 02:02:07 -07004766 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004767 const struct ethhdr *eth;
4768 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07004769
4770 napi->skb = NULL;
4771
Eric Dumazeta50e2332014-03-29 21:28:21 -07004772 skb_reset_mac_header(skb);
4773 skb_gro_reset_offset(skb);
4774
4775 eth = skb_gro_header_fast(skb, 0);
4776 if (unlikely(skb_gro_header_hard(skb, hlen))) {
4777 eth = skb_gro_header_slow(skb, hlen, 0);
4778 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04004779 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
4780 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07004781 napi_reuse_skb(napi, skb);
4782 return NULL;
4783 }
4784 } else {
4785 gro_pull_from_frag0(skb, hlen);
4786 NAPI_GRO_CB(skb)->frag0 += hlen;
4787 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07004788 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07004789 __skb_pull(skb, hlen);
4790
4791 /*
4792 * This works because the only protocols we care about don't require
4793 * special handling.
4794 * We'll fix it up properly in napi_frags_finish()
4795 */
4796 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07004797
Herbert Xu76620aa2009-04-16 02:02:07 -07004798 return skb;
4799}
Herbert Xu76620aa2009-04-16 02:02:07 -07004800
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004801gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07004802{
4803 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004804
4805 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004806 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08004807
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004808 trace_napi_gro_frags_entry(skb);
4809
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004810 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08004811}
4812EXPORT_SYMBOL(napi_gro_frags);
4813
Tom Herbert573e8fc2014-08-22 13:33:47 -07004814/* Compute the checksum from gro_offset and return the folded value
4815 * after adding in any pseudo checksum.
4816 */
4817__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
4818{
4819 __wsum wsum;
4820 __sum16 sum;
4821
4822 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
4823
4824 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
4825 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
4826 if (likely(!sum)) {
4827 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
4828 !skb->csum_complete_sw)
4829 netdev_rx_csum_fault(skb->dev);
4830 }
4831
4832 NAPI_GRO_CB(skb)->csum = wsum;
4833 NAPI_GRO_CB(skb)->csum_valid = 1;
4834
4835 return sum;
4836}
4837EXPORT_SYMBOL(__skb_gro_checksum_complete);
4838
Eric Dumazete326bed2010-04-22 00:22:45 -07004839/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08004840 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07004841 * Note: called with local irq disabled, but exits with local irq enabled.
4842 */
4843static void net_rps_action_and_irq_enable(struct softnet_data *sd)
4844{
4845#ifdef CONFIG_RPS
4846 struct softnet_data *remsd = sd->rps_ipi_list;
4847
4848 if (remsd) {
4849 sd->rps_ipi_list = NULL;
4850
4851 local_irq_enable();
4852
4853 /* Send pending IPI's to kick RPS processing on remote cpus. */
4854 while (remsd) {
4855 struct softnet_data *next = remsd->rps_ipi_next;
4856
Subash Abhinov Kasiviswanathanc6595492017-06-26 19:04:30 -06004857 if (cpu_online(remsd->cpu)) {
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +01004858 smp_call_function_single_async(remsd->cpu,
Frederic Weisbeckerfce8ad12014-02-24 16:40:01 +01004859 &remsd->csd);
Subash Abhinov Kasiviswanathanc6595492017-06-26 19:04:30 -06004860 } else {
4861 pr_err("%s() cpu offline\n", __func__);
4862 rps_lock(remsd);
4863 remsd->backlog.state = 0;
4864 rps_unlock(remsd);
4865 }
Eric Dumazete326bed2010-04-22 00:22:45 -07004866 remsd = next;
4867 }
4868 } else
4869#endif
4870 local_irq_enable();
4871}
4872
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004873static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
4874{
4875#ifdef CONFIG_RPS
4876 return sd->rps_ipi_list != NULL;
4877#else
4878 return false;
4879#endif
4880}
4881
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004882static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004883{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004884 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004885 bool again = true;
4886 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004887
Eric Dumazete326bed2010-04-22 00:22:45 -07004888 /* Check if we have pending ipi, its better to send them now,
4889 * not waiting net_rx_action() end.
4890 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004891 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07004892 local_irq_disable();
4893 net_rps_action_and_irq_enable(sd);
4894 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004895
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004896 napi->weight = weight_p;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004897 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004898 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004899
Changli Gao6e7676c2010-04-27 15:07:33 -07004900 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03004901 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07004902 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03004903 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00004904 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004905 if (++work >= quota)
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07004906 goto state_changed;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004907 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004908
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004909 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004910 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07004911 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004912 /*
4913 * Inline a custom version of __napi_complete().
4914 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07004915 * and NAPI_STATE_SCHED is the only possible flag set
4916 * on backlog.
4917 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004918 * and we dont need an smp_mb() memory barrier.
4919 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004920 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004921 again = false;
4922 } else {
4923 skb_queue_splice_tail_init(&sd->input_pkt_queue,
4924 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07004925 }
4926 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004927 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004929
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07004930state_changed:
4931 napi_gro_flush(napi, false);
4932 sd->current_napi = NULL;
4933
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004934 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004935}
4936
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004937/**
4938 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07004939 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004940 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07004941 * The entry's receive function will be scheduled to run.
4942 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004943 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08004944void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004945{
4946 unsigned long flags;
4947
4948 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05004949 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004950 local_irq_restore(flags);
4951}
4952EXPORT_SYMBOL(__napi_schedule);
4953
Eric Dumazetbc9ad162014-10-28 18:05:13 -07004954/**
4955 * __napi_schedule_irqoff - schedule for receive
4956 * @n: entry to schedule
4957 *
4958 * Variant of __napi_schedule() assuming hard irqs are masked
4959 */
4960void __napi_schedule_irqoff(struct napi_struct *n)
4961{
4962 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
4963}
4964EXPORT_SYMBOL(__napi_schedule_irqoff);
4965
Herbert Xud565b0a2008-12-15 23:38:52 -08004966void __napi_complete(struct napi_struct *n)
4967{
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07004968 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
4969
Herbert Xud565b0a2008-12-15 23:38:52 -08004970 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
Herbert Xud565b0a2008-12-15 23:38:52 -08004971
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004972 list_del_init(&n->poll_list);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004973 smp_mb__before_atomic();
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07004974 sd->current_napi = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004975 clear_bit(NAPI_STATE_SCHED, &n->state);
4976}
4977EXPORT_SYMBOL(__napi_complete);
4978
Eric Dumazet3b47d302014-11-06 21:09:44 -08004979void napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08004980{
4981 unsigned long flags;
4982
4983 /*
4984 * don't let napi dequeue from the cpu poll list
4985 * just in case its running on a different cpu
4986 */
4987 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
4988 return;
4989
Eric Dumazet3b47d302014-11-06 21:09:44 -08004990 if (n->gro_list) {
4991 unsigned long timeout = 0;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004992
Eric Dumazet3b47d302014-11-06 21:09:44 -08004993 if (work_done)
4994 timeout = n->dev->gro_flush_timeout;
4995
4996 if (timeout)
4997 hrtimer_start(&n->timer, ns_to_ktime(timeout),
4998 HRTIMER_MODE_REL_PINNED);
4999 else
5000 napi_gro_flush(n, false);
5001 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005002 if (likely(list_empty(&n->poll_list))) {
5003 WARN_ON_ONCE(!test_and_clear_bit(NAPI_STATE_SCHED, &n->state));
5004 } else {
5005 /* If n->poll_list is not empty, we need to mask irqs */
5006 local_irq_save(flags);
5007 __napi_complete(n);
5008 local_irq_restore(flags);
5009 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005010}
Eric Dumazet3b47d302014-11-06 21:09:44 -08005011EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08005012
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005013/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08005014static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005015{
5016 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
5017 struct napi_struct *napi;
5018
5019 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
5020 if (napi->napi_id == napi_id)
5021 return napi;
5022
5023 return NULL;
5024}
Eric Dumazet02d62e82015-11-18 06:30:52 -08005025
5026#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazetce6aea92015-11-18 06:30:54 -08005027#define BUSY_POLL_BUDGET 8
Eric Dumazet02d62e82015-11-18 06:30:52 -08005028bool sk_busy_loop(struct sock *sk, int nonblock)
5029{
5030 unsigned long end_time = !nonblock ? sk_busy_loop_end_time(sk) : 0;
Eric Dumazetce6aea92015-11-18 06:30:54 -08005031 int (*busy_poll)(struct napi_struct *dev);
Eric Dumazet02d62e82015-11-18 06:30:52 -08005032 struct napi_struct *napi;
5033 int rc = false;
5034
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005035 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005036
5037 napi = napi_by_id(sk->sk_napi_id);
5038 if (!napi)
5039 goto out;
5040
Eric Dumazetce6aea92015-11-18 06:30:54 -08005041 /* Note: ndo_busy_poll method is optional in linux-4.5 */
5042 busy_poll = napi->dev->netdev_ops->ndo_busy_poll;
Eric Dumazet02d62e82015-11-18 06:30:52 -08005043
5044 do {
Eric Dumazetce6aea92015-11-18 06:30:54 -08005045 rc = 0;
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005046 local_bh_disable();
Eric Dumazetce6aea92015-11-18 06:30:54 -08005047 if (busy_poll) {
5048 rc = busy_poll(napi);
5049 } else if (napi_schedule_prep(napi)) {
5050 void *have = netpoll_poll_lock(napi);
5051
5052 if (test_bit(NAPI_STATE_SCHED, &napi->state)) {
5053 rc = napi->poll(napi, BUSY_POLL_BUDGET);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02005054 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
Eric Dumazetce6aea92015-11-18 06:30:54 -08005055 if (rc == BUSY_POLL_BUDGET) {
5056 napi_complete_done(napi, rc);
5057 napi_schedule(napi);
5058 }
5059 }
5060 netpoll_poll_unlock(have);
5061 }
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005062 if (rc > 0)
Eric Dumazet02a1d6e2016-04-27 16:44:39 -07005063 __NET_ADD_STATS(sock_net(sk),
5064 LINUX_MIB_BUSYPOLLRXPACKETS, rc);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005065 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005066
5067 if (rc == LL_FLUSH_FAILED)
5068 break; /* permanent failure */
5069
Eric Dumazet02d62e82015-11-18 06:30:52 -08005070 cpu_relax();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005071 } while (!nonblock && skb_queue_empty(&sk->sk_receive_queue) &&
5072 !need_resched() && !busy_loop_timeout(end_time));
5073
5074 rc = !skb_queue_empty(&sk->sk_receive_queue);
5075out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005076 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005077 return rc;
5078}
5079EXPORT_SYMBOL(sk_busy_loop);
5080
5081#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005082
5083void napi_hash_add(struct napi_struct *napi)
5084{
Eric Dumazetd64b5e82015-11-18 06:31:00 -08005085 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state) ||
5086 test_and_set_bit(NAPI_STATE_HASHED, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005087 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005088
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005089 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005090
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005091 /* 0..NR_CPUS+1 range is reserved for sender_cpu use */
5092 do {
5093 if (unlikely(++napi_gen_id < NR_CPUS + 1))
5094 napi_gen_id = NR_CPUS + 1;
5095 } while (napi_by_id(napi_gen_id));
5096 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005097
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005098 hlist_add_head_rcu(&napi->napi_hash_node,
5099 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005100
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005101 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005102}
5103EXPORT_SYMBOL_GPL(napi_hash_add);
5104
5105/* Warning : caller is responsible to make sure rcu grace period
5106 * is respected before freeing memory containing @napi
5107 */
Eric Dumazet34cbe272015-11-18 06:31:02 -08005108bool napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005109{
Eric Dumazet34cbe272015-11-18 06:31:02 -08005110 bool rcu_sync_needed = false;
5111
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005112 spin_lock(&napi_hash_lock);
5113
Eric Dumazet34cbe272015-11-18 06:31:02 -08005114 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state)) {
5115 rcu_sync_needed = true;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005116 hlist_del_rcu(&napi->napi_hash_node);
Eric Dumazet34cbe272015-11-18 06:31:02 -08005117 }
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005118 spin_unlock(&napi_hash_lock);
Eric Dumazet34cbe272015-11-18 06:31:02 -08005119 return rcu_sync_needed;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005120}
5121EXPORT_SYMBOL_GPL(napi_hash_del);
5122
Eric Dumazet3b47d302014-11-06 21:09:44 -08005123static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
5124{
5125 struct napi_struct *napi;
5126
5127 napi = container_of(timer, struct napi_struct, timer);
5128 if (napi->gro_list)
5129 napi_schedule(napi);
5130
5131 return HRTIMER_NORESTART;
5132}
5133
Herbert Xud565b0a2008-12-15 23:38:52 -08005134void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
5135 int (*poll)(struct napi_struct *, int), int weight)
5136{
5137 INIT_LIST_HEAD(&napi->poll_list);
Eric Dumazet3b47d302014-11-06 21:09:44 -08005138 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
5139 napi->timer.function = napi_watchdog;
Herbert Xu4ae55442009-02-08 18:00:36 +00005140 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005141 napi->gro_list = NULL;
Herbert Xu5d38a072009-01-04 16:13:40 -08005142 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08005143 napi->poll = poll;
Eric Dumazet82dc3c62013-03-05 15:57:22 +00005144 if (weight > NAPI_POLL_WEIGHT)
5145 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
5146 weight, dev->name);
Herbert Xud565b0a2008-12-15 23:38:52 -08005147 napi->weight = weight;
5148 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08005149 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08005150#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08005151 spin_lock_init(&napi->poll_lock);
5152 napi->poll_owner = -1;
5153#endif
5154 set_bit(NAPI_STATE_SCHED, &napi->state);
Eric Dumazet93d05d42015-11-18 06:31:03 -08005155 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08005156}
5157EXPORT_SYMBOL(netif_napi_add);
5158
Eric Dumazet3b47d302014-11-06 21:09:44 -08005159void napi_disable(struct napi_struct *n)
5160{
5161 might_sleep();
5162 set_bit(NAPI_STATE_DISABLE, &n->state);
5163
5164 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
5165 msleep(1);
Neil Horman2d8bff12015-09-23 14:57:58 -04005166 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
5167 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08005168
5169 hrtimer_cancel(&n->timer);
5170
5171 clear_bit(NAPI_STATE_DISABLE, &n->state);
5172}
5173EXPORT_SYMBOL(napi_disable);
5174
Eric Dumazet93d05d42015-11-18 06:31:03 -08005175/* Must be called in process context */
Herbert Xud565b0a2008-12-15 23:38:52 -08005176void netif_napi_del(struct napi_struct *napi)
5177{
Eric Dumazet93d05d42015-11-18 06:31:03 -08005178 might_sleep();
5179 if (napi_hash_del(napi))
5180 synchronize_net();
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08005181 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07005182 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08005183
Eric Dumazet289dccb2013-12-20 14:29:08 -08005184 kfree_skb_list(napi->gro_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08005185 napi->gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00005186 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005187}
5188EXPORT_SYMBOL(netif_napi_del);
5189
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005190struct napi_struct *get_current_napi_context(void)
5191{
5192 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5193
5194 return sd->current_napi;
5195}
5196EXPORT_SYMBOL(get_current_napi_context);
5197
Herbert Xu726ce702014-12-21 07:16:21 +11005198static int napi_poll(struct napi_struct *n, struct list_head *repoll)
5199{
5200 void *have;
5201 int work, weight;
5202
5203 list_del_init(&n->poll_list);
5204
5205 have = netpoll_poll_lock(n);
5206
5207 weight = n->weight;
5208
5209 /* This NAPI_STATE_SCHED test is for avoiding a race
5210 * with netpoll's poll_napi(). Only the entity which
5211 * obtains the lock and sees NAPI_STATE_SCHED set will
5212 * actually make the ->poll() call. Therefore we avoid
5213 * accidentally calling ->poll() when NAPI is not scheduled.
5214 */
5215 work = 0;
5216 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005217 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5218
5219 sd->current_napi = n;
Herbert Xu726ce702014-12-21 07:16:21 +11005220 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02005221 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11005222 }
5223
5224 WARN_ON_ONCE(work > weight);
5225
5226 if (likely(work < weight))
5227 goto out_unlock;
5228
5229 /* Drivers must not modify the NAPI state if they
5230 * consume the entire weight. In such cases this code
5231 * still "owns" the NAPI instance and therefore can
5232 * move the instance around on the list at-will.
5233 */
5234 if (unlikely(napi_disable_pending(n))) {
5235 napi_complete(n);
5236 goto out_unlock;
5237 }
5238
5239 if (n->gro_list) {
5240 /* flush too old packets
5241 * If HZ < 1000, flush all packets.
5242 */
5243 napi_gro_flush(n, HZ >= 1000);
5244 }
5245
Herbert Xu001ce542014-12-21 07:16:22 +11005246 /* Some drivers may have called napi_schedule
5247 * prior to exhausting their budget.
5248 */
5249 if (unlikely(!list_empty(&n->poll_list))) {
5250 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
5251 n->dev ? n->dev->name : "backlog");
5252 goto out_unlock;
5253 }
5254
Herbert Xu726ce702014-12-21 07:16:21 +11005255 list_add_tail(&n->poll_list, repoll);
5256
5257out_unlock:
5258 netpoll_poll_unlock(have);
5259
5260 return work;
5261}
5262
Emese Revfy0766f782016-06-20 20:42:34 +02005263static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005264{
Christoph Lameter903ceff2014-08-17 12:30:35 -05005265 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Stephen Hemminger24f8b232008-11-03 17:14:38 -08005266 unsigned long time_limit = jiffies + 2;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07005267 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005268 LIST_HEAD(list);
5269 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07005270
Linus Torvalds1da177e2005-04-16 15:20:36 -07005271 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005272 list_splice_init(&sd->poll_list, &list);
5273 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005274
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005275 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005276 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005277
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005278 if (list_empty(&list)) {
5279 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
5280 return;
5281 break;
5282 }
5283
Herbert Xu6bd373e2014-12-21 07:16:24 +11005284 n = list_first_entry(&list, struct napi_struct, poll_list);
5285 budget -= napi_poll(n, &repoll);
5286
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005287 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08005288 * Allow this to run for 2 jiffies since which will allow
5289 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005290 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005291 if (unlikely(budget <= 0 ||
5292 time_after_eq(jiffies, time_limit))) {
5293 sd->time_squeeze++;
5294 break;
5295 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005297
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +01005298 __kfree_skb_flush();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005299 local_irq_disable();
5300
5301 list_splice_tail_init(&sd->poll_list, &list);
5302 list_splice_tail(&repoll, &list);
5303 list_splice(&list, &sd->poll_list);
5304 if (!list_empty(&sd->poll_list))
5305 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
5306
Eric Dumazete326bed2010-04-22 00:22:45 -07005307 net_rps_action_and_irq_enable(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005308}
5309
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005310struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005311 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005312
5313 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005314 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005315
Veaceslav Falico5d261912013-08-28 23:25:05 +02005316 /* counter for the number of times this device was added to us */
5317 u16 ref_nr;
5318
Veaceslav Falico402dae92013-09-25 09:20:09 +02005319 /* private field for the users */
5320 void *private;
5321
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005322 struct list_head list;
5323 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005324};
5325
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005326static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005327 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005328{
Veaceslav Falico5d261912013-08-28 23:25:05 +02005329 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005330
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005331 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005332 if (adj->dev == adj_dev)
5333 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005334 }
5335 return NULL;
5336}
5337
5338/**
5339 * netdev_has_upper_dev - Check if device is linked to an upper device
5340 * @dev: device
5341 * @upper_dev: upper device to check
5342 *
5343 * Find out if a device is linked to specified upper device and return true
5344 * in case it is. Note that this checks only immediate upper device,
5345 * not through a complete stack of devices. The caller must hold the RTNL lock.
5346 */
5347bool netdev_has_upper_dev(struct net_device *dev,
5348 struct net_device *upper_dev)
5349{
5350 ASSERT_RTNL();
5351
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005352 return __netdev_find_adj(upper_dev, &dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005353}
5354EXPORT_SYMBOL(netdev_has_upper_dev);
5355
5356/**
5357 * netdev_has_any_upper_dev - Check if device is linked to some device
5358 * @dev: device
5359 *
5360 * Find out if a device is linked to an upper device and return true in case
5361 * it is. The caller must hold the RTNL lock.
5362 */
stephen hemminger1d143d92013-12-29 14:01:29 -08005363static bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005364{
5365 ASSERT_RTNL();
5366
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005367 return !list_empty(&dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005368}
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005369
5370/**
5371 * netdev_master_upper_dev_get - Get master upper device
5372 * @dev: device
5373 *
5374 * Find a master upper device and return pointer to it or NULL in case
5375 * it's not there. The caller must hold the RTNL lock.
5376 */
5377struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
5378{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005379 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005380
5381 ASSERT_RTNL();
5382
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005383 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005384 return NULL;
5385
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005386 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005387 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005388 if (likely(upper->master))
5389 return upper->dev;
5390 return NULL;
5391}
5392EXPORT_SYMBOL(netdev_master_upper_dev_get);
5393
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02005394void *netdev_adjacent_get_private(struct list_head *adj_list)
5395{
5396 struct netdev_adjacent *adj;
5397
5398 adj = list_entry(adj_list, struct netdev_adjacent, list);
5399
5400 return adj->private;
5401}
5402EXPORT_SYMBOL(netdev_adjacent_get_private);
5403
Veaceslav Falico31088a12013-09-25 09:20:12 +02005404/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04005405 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
5406 * @dev: device
5407 * @iter: list_head ** of the current position
5408 *
5409 * Gets the next device from the dev's upper list, starting from iter
5410 * position. The caller must hold RCU read lock.
5411 */
5412struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
5413 struct list_head **iter)
5414{
5415 struct netdev_adjacent *upper;
5416
5417 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
5418
5419 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5420
5421 if (&upper->list == &dev->adj_list.upper)
5422 return NULL;
5423
5424 *iter = &upper->list;
5425
5426 return upper->dev;
5427}
5428EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
5429
5430/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02005431 * netdev_all_upper_get_next_dev_rcu - Get the next dev from upper list
Veaceslav Falico48311f42013-08-28 23:25:07 +02005432 * @dev: device
5433 * @iter: list_head ** of the current position
5434 *
5435 * Gets the next device from the dev's upper list, starting from iter
5436 * position. The caller must hold RCU read lock.
5437 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005438struct net_device *netdev_all_upper_get_next_dev_rcu(struct net_device *dev,
5439 struct list_head **iter)
Veaceslav Falico48311f42013-08-28 23:25:07 +02005440{
5441 struct netdev_adjacent *upper;
5442
John Fastabend85328242013-11-26 06:33:52 +00005443 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
Veaceslav Falico48311f42013-08-28 23:25:07 +02005444
5445 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5446
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005447 if (&upper->list == &dev->all_adj_list.upper)
Veaceslav Falico48311f42013-08-28 23:25:07 +02005448 return NULL;
5449
5450 *iter = &upper->list;
5451
5452 return upper->dev;
5453}
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005454EXPORT_SYMBOL(netdev_all_upper_get_next_dev_rcu);
Veaceslav Falico48311f42013-08-28 23:25:07 +02005455
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005456/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02005457 * netdev_lower_get_next_private - Get the next ->private from the
5458 * lower neighbour list
5459 * @dev: device
5460 * @iter: list_head ** of the current position
5461 *
5462 * Gets the next netdev_adjacent->private from the dev's lower neighbour
5463 * list, starting from iter position. The caller must hold either hold the
5464 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00005465 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02005466 */
5467void *netdev_lower_get_next_private(struct net_device *dev,
5468 struct list_head **iter)
5469{
5470 struct netdev_adjacent *lower;
5471
5472 lower = list_entry(*iter, struct netdev_adjacent, list);
5473
5474 if (&lower->list == &dev->adj_list.lower)
5475 return NULL;
5476
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02005477 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02005478
5479 return lower->private;
5480}
5481EXPORT_SYMBOL(netdev_lower_get_next_private);
5482
5483/**
5484 * netdev_lower_get_next_private_rcu - Get the next ->private from the
5485 * lower neighbour list, RCU
5486 * variant
5487 * @dev: device
5488 * @iter: list_head ** of the current position
5489 *
5490 * Gets the next netdev_adjacent->private from the dev's lower neighbour
5491 * list, starting from iter position. The caller must hold RCU read lock.
5492 */
5493void *netdev_lower_get_next_private_rcu(struct net_device *dev,
5494 struct list_head **iter)
5495{
5496 struct netdev_adjacent *lower;
5497
5498 WARN_ON_ONCE(!rcu_read_lock_held());
5499
5500 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5501
5502 if (&lower->list == &dev->adj_list.lower)
5503 return NULL;
5504
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02005505 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02005506
5507 return lower->private;
5508}
5509EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
5510
5511/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005512 * netdev_lower_get_next - Get the next device from the lower neighbour
5513 * list
5514 * @dev: device
5515 * @iter: list_head ** of the current position
5516 *
5517 * Gets the next netdev_adjacent from the dev's lower neighbour
5518 * list, starting from iter position. The caller must hold RTNL lock or
5519 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00005520 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005521 */
5522void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
5523{
5524 struct netdev_adjacent *lower;
5525
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01005526 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005527
5528 if (&lower->list == &dev->adj_list.lower)
5529 return NULL;
5530
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01005531 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005532
5533 return lower->dev;
5534}
5535EXPORT_SYMBOL(netdev_lower_get_next);
5536
5537/**
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005538 * netdev_all_lower_get_next - Get the next device from all lower neighbour list
5539 * @dev: device
5540 * @iter: list_head ** of the current position
5541 *
5542 * Gets the next netdev_adjacent from the dev's all lower neighbour
5543 * list, starting from iter position. The caller must hold RTNL lock or
5544 * its own locking that guarantees that the neighbour all lower
5545 * list will remain unchanged.
5546 */
5547struct net_device *netdev_all_lower_get_next(struct net_device *dev, struct list_head **iter)
5548{
5549 struct netdev_adjacent *lower;
5550
5551 lower = list_entry(*iter, struct netdev_adjacent, list);
5552
5553 if (&lower->list == &dev->all_adj_list.lower)
5554 return NULL;
5555
5556 *iter = lower->list.next;
5557
5558 return lower->dev;
5559}
5560EXPORT_SYMBOL(netdev_all_lower_get_next);
5561
5562/**
5563 * netdev_all_lower_get_next_rcu - Get the next device from all
5564 * lower neighbour list, RCU variant
5565 * @dev: device
5566 * @iter: list_head ** of the current position
5567 *
5568 * Gets the next netdev_adjacent from the dev's all lower neighbour
5569 * list, starting from iter position. The caller must hold RCU read lock.
5570 */
5571struct net_device *netdev_all_lower_get_next_rcu(struct net_device *dev,
5572 struct list_head **iter)
5573{
5574 struct netdev_adjacent *lower;
5575
Ido Schimmele4961b02016-10-19 16:57:08 +03005576 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005577
Ido Schimmele4961b02016-10-19 16:57:08 +03005578 if (&lower->list == &dev->all_adj_list.lower)
5579 return NULL;
5580
5581 *iter = &lower->list;
5582
5583 return lower->dev;
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005584}
5585EXPORT_SYMBOL(netdev_all_lower_get_next_rcu);
5586
5587/**
dingtianhonge001bfa2013-12-13 10:19:55 +08005588 * netdev_lower_get_first_private_rcu - Get the first ->private from the
5589 * lower neighbour list, RCU
5590 * variant
5591 * @dev: device
5592 *
5593 * Gets the first netdev_adjacent->private from the dev's lower neighbour
5594 * list. The caller must hold RCU read lock.
5595 */
5596void *netdev_lower_get_first_private_rcu(struct net_device *dev)
5597{
5598 struct netdev_adjacent *lower;
5599
5600 lower = list_first_or_null_rcu(&dev->adj_list.lower,
5601 struct netdev_adjacent, list);
5602 if (lower)
5603 return lower->private;
5604 return NULL;
5605}
5606EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
5607
5608/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005609 * netdev_master_upper_dev_get_rcu - Get master upper device
5610 * @dev: device
5611 *
5612 * Find a master upper device and return pointer to it or NULL in case
5613 * it's not there. The caller must hold the RCU read lock.
5614 */
5615struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
5616{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005617 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005618
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005619 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005620 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005621 if (upper && likely(upper->master))
5622 return upper->dev;
5623 return NULL;
5624}
5625EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
5626
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05305627static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005628 struct net_device *adj_dev,
5629 struct list_head *dev_list)
5630{
5631 char linkname[IFNAMSIZ+7];
5632 sprintf(linkname, dev_list == &dev->adj_list.upper ?
5633 "upper_%s" : "lower_%s", adj_dev->name);
5634 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
5635 linkname);
5636}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05305637static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005638 char *name,
5639 struct list_head *dev_list)
5640{
5641 char linkname[IFNAMSIZ+7];
5642 sprintf(linkname, dev_list == &dev->adj_list.upper ?
5643 "upper_%s" : "lower_%s", name);
5644 sysfs_remove_link(&(dev->dev.kobj), linkname);
5645}
5646
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005647static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
5648 struct net_device *adj_dev,
5649 struct list_head *dev_list)
5650{
5651 return (dev_list == &dev->adj_list.upper ||
5652 dev_list == &dev->adj_list.lower) &&
5653 net_eq(dev_net(dev), dev_net(adj_dev));
5654}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005655
Veaceslav Falico5d261912013-08-28 23:25:05 +02005656static int __netdev_adjacent_dev_insert(struct net_device *dev,
5657 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005658 u16 ref_nr,
Veaceslav Falico7863c052013-09-25 09:20:06 +02005659 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005660 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005661{
5662 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005663 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005664
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005665 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005666
5667 if (adj) {
Andrew Collins93409032016-10-03 13:43:02 -06005668 adj->ref_nr += ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005669 return 0;
5670 }
5671
5672 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
5673 if (!adj)
5674 return -ENOMEM;
5675
5676 adj->dev = adj_dev;
5677 adj->master = master;
Andrew Collins93409032016-10-03 13:43:02 -06005678 adj->ref_nr = ref_nr;
Veaceslav Falico402dae92013-09-25 09:20:09 +02005679 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005680 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005681
5682 pr_debug("dev_hold for %s, because of link added from %s to %s\n",
5683 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005684
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005685 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005686 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005687 if (ret)
5688 goto free_adj;
5689 }
5690
Veaceslav Falico7863c052013-09-25 09:20:06 +02005691 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005692 if (master) {
5693 ret = sysfs_create_link(&(dev->dev.kobj),
5694 &(adj_dev->dev.kobj), "master");
5695 if (ret)
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005696 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005697
Veaceslav Falico7863c052013-09-25 09:20:06 +02005698 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005699 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02005700 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005701 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02005702
5703 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005704
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005705remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005706 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005707 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005708free_adj:
5709 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02005710 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005711
5712 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005713}
5714
stephen hemminger1d143d92013-12-29 14:01:29 -08005715static void __netdev_adjacent_dev_remove(struct net_device *dev,
5716 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005717 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005718 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005719{
5720 struct netdev_adjacent *adj;
5721
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005722 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005723
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005724 if (!adj) {
5725 pr_err("tried to remove device %s from %s\n",
5726 dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005727 BUG();
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005728 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02005729
Andrew Collins93409032016-10-03 13:43:02 -06005730 if (adj->ref_nr > ref_nr) {
5731 pr_debug("%s to %s ref_nr-%d = %d\n", dev->name, adj_dev->name,
5732 ref_nr, adj->ref_nr-ref_nr);
5733 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005734 return;
5735 }
5736
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005737 if (adj->master)
5738 sysfs_remove_link(&(dev->dev.kobj), "master");
5739
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005740 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005741 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005742
Veaceslav Falico5d261912013-08-28 23:25:05 +02005743 list_del_rcu(&adj->list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005744 pr_debug("dev_put for %s, because link removed from %s to %s\n",
5745 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005746 dev_put(adj_dev);
5747 kfree_rcu(adj, rcu);
5748}
5749
stephen hemminger1d143d92013-12-29 14:01:29 -08005750static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
5751 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005752 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005753 struct list_head *up_list,
5754 struct list_head *down_list,
5755 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005756{
5757 int ret;
5758
Andrew Collins93409032016-10-03 13:43:02 -06005759 ret = __netdev_adjacent_dev_insert(dev, upper_dev, ref_nr, up_list,
5760 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005761 if (ret)
5762 return ret;
5763
Andrew Collins93409032016-10-03 13:43:02 -06005764 ret = __netdev_adjacent_dev_insert(upper_dev, dev, ref_nr, down_list,
5765 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005766 if (ret) {
Andrew Collins93409032016-10-03 13:43:02 -06005767 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005768 return ret;
5769 }
5770
5771 return 0;
5772}
5773
stephen hemminger1d143d92013-12-29 14:01:29 -08005774static int __netdev_adjacent_dev_link(struct net_device *dev,
Andrew Collins93409032016-10-03 13:43:02 -06005775 struct net_device *upper_dev,
5776 u16 ref_nr)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005777{
Andrew Collins93409032016-10-03 13:43:02 -06005778 return __netdev_adjacent_dev_link_lists(dev, upper_dev, ref_nr,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005779 &dev->all_adj_list.upper,
5780 &upper_dev->all_adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005781 NULL, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005782}
5783
stephen hemminger1d143d92013-12-29 14:01:29 -08005784static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
5785 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005786 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005787 struct list_head *up_list,
5788 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005789{
Andrew Collins93409032016-10-03 13:43:02 -06005790 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
5791 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005792}
5793
stephen hemminger1d143d92013-12-29 14:01:29 -08005794static void __netdev_adjacent_dev_unlink(struct net_device *dev,
Andrew Collins93409032016-10-03 13:43:02 -06005795 struct net_device *upper_dev,
5796 u16 ref_nr)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005797{
Andrew Collins93409032016-10-03 13:43:02 -06005798 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, ref_nr,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005799 &dev->all_adj_list.upper,
5800 &upper_dev->all_adj_list.lower);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005801}
5802
stephen hemminger1d143d92013-12-29 14:01:29 -08005803static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
5804 struct net_device *upper_dev,
5805 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005806{
Andrew Collins93409032016-10-03 13:43:02 -06005807 int ret = __netdev_adjacent_dev_link(dev, upper_dev, 1);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005808
5809 if (ret)
5810 return ret;
5811
Andrew Collins93409032016-10-03 13:43:02 -06005812 ret = __netdev_adjacent_dev_link_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005813 &dev->adj_list.upper,
5814 &upper_dev->adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005815 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005816 if (ret) {
Andrew Collins93409032016-10-03 13:43:02 -06005817 __netdev_adjacent_dev_unlink(dev, upper_dev, 1);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005818 return ret;
5819 }
5820
5821 return 0;
5822}
5823
stephen hemminger1d143d92013-12-29 14:01:29 -08005824static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
5825 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005826{
Andrew Collins93409032016-10-03 13:43:02 -06005827 __netdev_adjacent_dev_unlink(dev, upper_dev, 1);
5828 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005829 &dev->adj_list.upper,
5830 &upper_dev->adj_list.lower);
5831}
Veaceslav Falico5d261912013-08-28 23:25:05 +02005832
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005833static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005834 struct net_device *upper_dev, bool master,
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005835 void *upper_priv, void *upper_info)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005836{
Jiri Pirko0e4ead92015-08-27 09:31:18 +02005837 struct netdev_notifier_changeupper_info changeupper_info;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005838 struct netdev_adjacent *i, *j, *to_i, *to_j;
5839 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005840
5841 ASSERT_RTNL();
5842
5843 if (dev == upper_dev)
5844 return -EBUSY;
5845
5846 /* To prevent loops, check if dev is not upper device to upper_dev. */
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005847 if (__netdev_find_adj(dev, &upper_dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005848 return -EBUSY;
5849
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005850 if (__netdev_find_adj(upper_dev, &dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005851 return -EEXIST;
5852
5853 if (master && netdev_master_upper_dev_get(dev))
5854 return -EBUSY;
5855
Jiri Pirko0e4ead92015-08-27 09:31:18 +02005856 changeupper_info.upper_dev = upper_dev;
5857 changeupper_info.master = master;
5858 changeupper_info.linking = true;
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005859 changeupper_info.upper_info = upper_info;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02005860
Jiri Pirko573c7ba2015-10-16 14:01:22 +02005861 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER, dev,
5862 &changeupper_info.info);
5863 ret = notifier_to_errno(ret);
5864 if (ret)
5865 return ret;
5866
Jiri Pirko6dffb042015-12-03 12:12:10 +01005867 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005868 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005869 if (ret)
5870 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005871
Veaceslav Falico5d261912013-08-28 23:25:05 +02005872 /* Now that we linked these devs, make all the upper_dev's
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005873 * all_adj_list.upper visible to every dev's all_adj_list.lower an
Veaceslav Falico5d261912013-08-28 23:25:05 +02005874 * versa, and don't forget the devices itself. All of these
5875 * links are non-neighbours.
5876 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005877 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5878 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
5879 pr_debug("Interlinking %s with %s, non-neighbour\n",
5880 i->dev->name, j->dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06005881 ret = __netdev_adjacent_dev_link(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005882 if (ret)
5883 goto rollback_mesh;
5884 }
5885 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005886
Veaceslav Falico5d261912013-08-28 23:25:05 +02005887 /* add dev to every upper_dev's upper device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005888 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
5889 pr_debug("linking %s's upper device %s with %s\n",
5890 upper_dev->name, i->dev->name, dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06005891 ret = __netdev_adjacent_dev_link(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005892 if (ret)
5893 goto rollback_upper_mesh;
5894 }
5895
5896 /* add upper_dev to every dev's lower device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005897 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5898 pr_debug("linking %s's lower device %s with %s\n", dev->name,
5899 i->dev->name, upper_dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06005900 ret = __netdev_adjacent_dev_link(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005901 if (ret)
5902 goto rollback_lower_mesh;
5903 }
5904
Ido Schimmelb03804e2015-12-03 12:12:03 +01005905 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER, dev,
5906 &changeupper_info.info);
5907 ret = notifier_to_errno(ret);
5908 if (ret)
5909 goto rollback_lower_mesh;
5910
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005911 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005912
5913rollback_lower_mesh:
5914 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005915 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005916 if (i == to_i)
5917 break;
Andrew Collins93409032016-10-03 13:43:02 -06005918 __netdev_adjacent_dev_unlink(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005919 }
5920
5921 i = NULL;
5922
5923rollback_upper_mesh:
5924 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005925 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005926 if (i == to_i)
5927 break;
Andrew Collins93409032016-10-03 13:43:02 -06005928 __netdev_adjacent_dev_unlink(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005929 }
5930
5931 i = j = NULL;
5932
5933rollback_mesh:
5934 to_i = i;
5935 to_j = j;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005936 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5937 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005938 if (i == to_i && j == to_j)
5939 break;
Andrew Collins93409032016-10-03 13:43:02 -06005940 __netdev_adjacent_dev_unlink(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005941 }
5942 if (i == to_i)
5943 break;
5944 }
5945
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005946 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005947
5948 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005949}
5950
5951/**
5952 * netdev_upper_dev_link - Add a link to the upper device
5953 * @dev: device
5954 * @upper_dev: new upper device
5955 *
5956 * Adds a link to device which is upper to this one. The caller must hold
5957 * the RTNL lock. On a failure a negative errno code is returned.
5958 * On success the reference counts are adjusted and the function
5959 * returns zero.
5960 */
5961int netdev_upper_dev_link(struct net_device *dev,
5962 struct net_device *upper_dev)
5963{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005964 return __netdev_upper_dev_link(dev, upper_dev, false, NULL, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005965}
5966EXPORT_SYMBOL(netdev_upper_dev_link);
5967
5968/**
5969 * netdev_master_upper_dev_link - Add a master link to the upper device
5970 * @dev: device
5971 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01005972 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005973 * @upper_info: upper info to be passed down via notifier
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005974 *
5975 * Adds a link to device which is upper to this one. In this case, only
5976 * one master upper device can be linked, although other non-master devices
5977 * might be linked as well. The caller must hold the RTNL lock.
5978 * On a failure a negative errno code is returned. On success the reference
5979 * counts are adjusted and the function returns zero.
5980 */
5981int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01005982 struct net_device *upper_dev,
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005983 void *upper_priv, void *upper_info)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005984{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005985 return __netdev_upper_dev_link(dev, upper_dev, true,
5986 upper_priv, upper_info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005987}
5988EXPORT_SYMBOL(netdev_master_upper_dev_link);
5989
5990/**
5991 * netdev_upper_dev_unlink - Removes a link to upper device
5992 * @dev: device
5993 * @upper_dev: new upper device
5994 *
5995 * Removes a link to device which is upper to this one. The caller must hold
5996 * the RTNL lock.
5997 */
5998void netdev_upper_dev_unlink(struct net_device *dev,
5999 struct net_device *upper_dev)
6000{
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006001 struct netdev_notifier_changeupper_info changeupper_info;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006002 struct netdev_adjacent *i, *j;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006003 ASSERT_RTNL();
6004
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006005 changeupper_info.upper_dev = upper_dev;
6006 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
6007 changeupper_info.linking = false;
6008
Jiri Pirko573c7ba2015-10-16 14:01:22 +02006009 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER, dev,
6010 &changeupper_info.info);
6011
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006012 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006013
6014 /* Here is the tricky part. We must remove all dev's lower
6015 * devices from all upper_dev's upper devices and vice
6016 * versa, to maintain the graph relationship.
6017 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006018 list_for_each_entry(i, &dev->all_adj_list.lower, list)
6019 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list)
Andrew Collins93409032016-10-03 13:43:02 -06006020 __netdev_adjacent_dev_unlink(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006021
6022 /* remove also the devices itself from lower/upper device
6023 * list
6024 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006025 list_for_each_entry(i, &dev->all_adj_list.lower, list)
Andrew Collins93409032016-10-03 13:43:02 -06006026 __netdev_adjacent_dev_unlink(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006027
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006028 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list)
Andrew Collins93409032016-10-03 13:43:02 -06006029 __netdev_adjacent_dev_unlink(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006030
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006031 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER, dev,
6032 &changeupper_info.info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006033}
6034EXPORT_SYMBOL(netdev_upper_dev_unlink);
6035
Moni Shoua61bd3852015-02-03 16:48:29 +02006036/**
6037 * netdev_bonding_info_change - Dispatch event about slave change
6038 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09006039 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02006040 *
6041 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
6042 * The caller must hold the RTNL lock.
6043 */
6044void netdev_bonding_info_change(struct net_device *dev,
6045 struct netdev_bonding_info *bonding_info)
6046{
6047 struct netdev_notifier_bonding_info info;
6048
6049 memcpy(&info.bonding_info, bonding_info,
6050 sizeof(struct netdev_bonding_info));
6051 call_netdevice_notifiers_info(NETDEV_BONDING_INFO, dev,
6052 &info.info);
6053}
6054EXPORT_SYMBOL(netdev_bonding_info_change);
6055
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08006056static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006057{
6058 struct netdev_adjacent *iter;
6059
6060 struct net *net = dev_net(dev);
6061
6062 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006063 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006064 continue;
6065 netdev_adjacent_sysfs_add(iter->dev, dev,
6066 &iter->dev->adj_list.lower);
6067 netdev_adjacent_sysfs_add(dev, iter->dev,
6068 &dev->adj_list.upper);
6069 }
6070
6071 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006072 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006073 continue;
6074 netdev_adjacent_sysfs_add(iter->dev, dev,
6075 &iter->dev->adj_list.upper);
6076 netdev_adjacent_sysfs_add(dev, iter->dev,
6077 &dev->adj_list.lower);
6078 }
6079}
6080
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08006081static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006082{
6083 struct netdev_adjacent *iter;
6084
6085 struct net *net = dev_net(dev);
6086
6087 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006088 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006089 continue;
6090 netdev_adjacent_sysfs_del(iter->dev, dev->name,
6091 &iter->dev->adj_list.lower);
6092 netdev_adjacent_sysfs_del(dev, iter->dev->name,
6093 &dev->adj_list.upper);
6094 }
6095
6096 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006097 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006098 continue;
6099 netdev_adjacent_sysfs_del(iter->dev, dev->name,
6100 &iter->dev->adj_list.upper);
6101 netdev_adjacent_sysfs_del(dev, iter->dev->name,
6102 &dev->adj_list.lower);
6103 }
6104}
6105
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006106void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02006107{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006108 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02006109
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006110 struct net *net = dev_net(dev);
6111
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006112 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006113 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006114 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006115 netdev_adjacent_sysfs_del(iter->dev, oldname,
6116 &iter->dev->adj_list.lower);
6117 netdev_adjacent_sysfs_add(iter->dev, dev,
6118 &iter->dev->adj_list.lower);
6119 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02006120
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006121 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006122 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006123 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006124 netdev_adjacent_sysfs_del(iter->dev, oldname,
6125 &iter->dev->adj_list.upper);
6126 netdev_adjacent_sysfs_add(iter->dev, dev,
6127 &iter->dev->adj_list.upper);
6128 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02006129}
Veaceslav Falico402dae92013-09-25 09:20:09 +02006130
6131void *netdev_lower_dev_get_private(struct net_device *dev,
6132 struct net_device *lower_dev)
6133{
6134 struct netdev_adjacent *lower;
6135
6136 if (!lower_dev)
6137 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006138 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02006139 if (!lower)
6140 return NULL;
6141
6142 return lower->private;
6143}
6144EXPORT_SYMBOL(netdev_lower_dev_get_private);
6145
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006146
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006147int dev_get_nest_level(struct net_device *dev)
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006148{
6149 struct net_device *lower = NULL;
6150 struct list_head *iter;
6151 int max_nest = -1;
6152 int nest;
6153
6154 ASSERT_RTNL();
6155
6156 netdev_for_each_lower_dev(dev, lower, iter) {
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006157 nest = dev_get_nest_level(lower);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006158 if (max_nest < nest)
6159 max_nest = nest;
6160 }
6161
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006162 return max_nest + 1;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006163}
6164EXPORT_SYMBOL(dev_get_nest_level);
6165
Jiri Pirko04d48262015-12-03 12:12:15 +01006166/**
6167 * netdev_lower_change - Dispatch event about lower device state change
6168 * @lower_dev: device
6169 * @lower_state_info: state to dispatch
6170 *
6171 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
6172 * The caller must hold the RTNL lock.
6173 */
6174void netdev_lower_state_changed(struct net_device *lower_dev,
6175 void *lower_state_info)
6176{
6177 struct netdev_notifier_changelowerstate_info changelowerstate_info;
6178
6179 ASSERT_RTNL();
6180 changelowerstate_info.lower_state_info = lower_state_info;
6181 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE, lower_dev,
6182 &changelowerstate_info.info);
6183}
6184EXPORT_SYMBOL(netdev_lower_state_changed);
6185
Jiri Pirko18bfb922016-07-05 11:27:38 +02006186int netdev_default_l2upper_neigh_construct(struct net_device *dev,
6187 struct neighbour *n)
6188{
6189 struct net_device *lower_dev, *stop_dev;
6190 struct list_head *iter;
6191 int err;
6192
6193 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6194 if (!lower_dev->netdev_ops->ndo_neigh_construct)
6195 continue;
6196 err = lower_dev->netdev_ops->ndo_neigh_construct(lower_dev, n);
6197 if (err) {
6198 stop_dev = lower_dev;
6199 goto rollback;
6200 }
6201 }
6202 return 0;
6203
6204rollback:
6205 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6206 if (lower_dev == stop_dev)
6207 break;
6208 if (!lower_dev->netdev_ops->ndo_neigh_destroy)
6209 continue;
6210 lower_dev->netdev_ops->ndo_neigh_destroy(lower_dev, n);
6211 }
6212 return err;
6213}
6214EXPORT_SYMBOL_GPL(netdev_default_l2upper_neigh_construct);
6215
6216void netdev_default_l2upper_neigh_destroy(struct net_device *dev,
6217 struct neighbour *n)
6218{
6219 struct net_device *lower_dev;
6220 struct list_head *iter;
6221
6222 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6223 if (!lower_dev->netdev_ops->ndo_neigh_destroy)
6224 continue;
6225 lower_dev->netdev_ops->ndo_neigh_destroy(lower_dev, n);
6226 }
6227}
6228EXPORT_SYMBOL_GPL(netdev_default_l2upper_neigh_destroy);
6229
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006230static void dev_change_rx_flags(struct net_device *dev, int flags)
6231{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006232 const struct net_device_ops *ops = dev->netdev_ops;
6233
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05006234 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006235 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006236}
6237
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006238static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07006239{
Eric Dumazetb536db92011-11-30 21:42:26 +00006240 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06006241 kuid_t uid;
6242 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07006243
Patrick McHardy24023452007-07-14 18:51:31 -07006244 ASSERT_RTNL();
6245
Wang Chendad9b332008-06-18 01:48:28 -07006246 dev->flags |= IFF_PROMISC;
6247 dev->promiscuity += inc;
6248 if (dev->promiscuity == 0) {
6249 /*
6250 * Avoid overflow.
6251 * If inc causes overflow, untouch promisc and return error.
6252 */
6253 if (inc < 0)
6254 dev->flags &= ~IFF_PROMISC;
6255 else {
6256 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006257 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
6258 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07006259 return -EOVERFLOW;
6260 }
6261 }
Patrick McHardy4417da62007-06-27 01:28:10 -07006262 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006263 pr_info("device %s %s promiscuous mode\n",
6264 dev->name,
6265 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11006266 if (audit_enabled) {
6267 current_uid_gid(&uid, &gid);
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05006268 audit_log(current->audit_context, GFP_ATOMIC,
6269 AUDIT_ANOM_PROMISCUOUS,
6270 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
6271 dev->name, (dev->flags & IFF_PROMISC),
6272 (old_flags & IFF_PROMISC),
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07006273 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06006274 from_kuid(&init_user_ns, uid),
6275 from_kgid(&init_user_ns, gid),
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05006276 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11006277 }
Patrick McHardy24023452007-07-14 18:51:31 -07006278
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006279 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07006280 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006281 if (notify)
6282 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07006283 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07006284}
6285
Linus Torvalds1da177e2005-04-16 15:20:36 -07006286/**
6287 * dev_set_promiscuity - update promiscuity count on a device
6288 * @dev: device
6289 * @inc: modifier
6290 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07006291 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07006292 * remains above zero the interface remains promiscuous. Once it hits zero
6293 * the device reverts back to normal filtering operation. A negative inc
6294 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07006295 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296 */
Wang Chendad9b332008-06-18 01:48:28 -07006297int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006298{
Eric Dumazetb536db92011-11-30 21:42:26 +00006299 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07006300 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006301
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006302 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07006303 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07006304 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07006305 if (dev->flags != old_flags)
6306 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07006307 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006309EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006311static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006313 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314
Patrick McHardy24023452007-07-14 18:51:31 -07006315 ASSERT_RTNL();
6316
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07006318 dev->allmulti += inc;
6319 if (dev->allmulti == 0) {
6320 /*
6321 * Avoid overflow.
6322 * If inc causes overflow, untouch allmulti and return error.
6323 */
6324 if (inc < 0)
6325 dev->flags &= ~IFF_ALLMULTI;
6326 else {
6327 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006328 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
6329 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07006330 return -EOVERFLOW;
6331 }
6332 }
Patrick McHardy24023452007-07-14 18:51:31 -07006333 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006334 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07006335 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006336 if (notify)
6337 __dev_notify_flags(dev, old_flags,
6338 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07006339 }
Wang Chendad9b332008-06-18 01:48:28 -07006340 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07006341}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006342
6343/**
6344 * dev_set_allmulti - update allmulti count on a device
6345 * @dev: device
6346 * @inc: modifier
6347 *
6348 * Add or remove reception of all multicast frames to a device. While the
6349 * count in the device remains above zero the interface remains listening
6350 * to all interfaces. Once it hits zero the device reverts back to normal
6351 * filtering operation. A negative @inc value is used to drop the counter
6352 * when releasing a resource needing all multicasts.
6353 * Return 0 if successful or a negative errno code on error.
6354 */
6355
6356int dev_set_allmulti(struct net_device *dev, int inc)
6357{
6358 return __dev_set_allmulti(dev, inc, true);
6359}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006360EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07006361
6362/*
6363 * Upload unicast and multicast address lists to device and
6364 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08006365 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07006366 * are present.
6367 */
6368void __dev_set_rx_mode(struct net_device *dev)
6369{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006370 const struct net_device_ops *ops = dev->netdev_ops;
6371
Patrick McHardy4417da62007-06-27 01:28:10 -07006372 /* dev_open will call this function so the list will stay sane. */
6373 if (!(dev->flags&IFF_UP))
6374 return;
6375
6376 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09006377 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07006378
Jiri Pirko01789342011-08-16 06:29:00 +00006379 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07006380 /* Unicast addresses changes may only happen under the rtnl,
6381 * therefore calling __dev_set_promiscuity here is safe.
6382 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08006383 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006384 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07006385 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08006386 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006387 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07006388 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07006389 }
Patrick McHardy4417da62007-06-27 01:28:10 -07006390 }
Jiri Pirko01789342011-08-16 06:29:00 +00006391
6392 if (ops->ndo_set_rx_mode)
6393 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07006394}
6395
6396void dev_set_rx_mode(struct net_device *dev)
6397{
David S. Millerb9e40852008-07-15 00:15:08 -07006398 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07006399 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07006400 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006401}
6402
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006403/**
6404 * dev_get_flags - get flags reported to userspace
6405 * @dev: device
6406 *
6407 * Get the combination of flag bits exported through APIs to userspace.
6408 */
Eric Dumazet95c96172012-04-15 05:58:06 +00006409unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410{
Eric Dumazet95c96172012-04-15 05:58:06 +00006411 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006412
6413 flags = (dev->flags & ~(IFF_PROMISC |
6414 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08006415 IFF_RUNNING |
6416 IFF_LOWER_UP |
6417 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07006418 (dev->gflags & (IFF_PROMISC |
6419 IFF_ALLMULTI));
6420
Stefan Rompfb00055a2006-03-20 17:09:11 -08006421 if (netif_running(dev)) {
6422 if (netif_oper_up(dev))
6423 flags |= IFF_RUNNING;
6424 if (netif_carrier_ok(dev))
6425 flags |= IFF_LOWER_UP;
6426 if (netif_dormant(dev))
6427 flags |= IFF_DORMANT;
6428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006429
6430 return flags;
6431}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006432EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006433
Patrick McHardybd380812010-02-26 06:34:53 +00006434int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006435{
Eric Dumazetb536db92011-11-30 21:42:26 +00006436 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00006437 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438
Patrick McHardy24023452007-07-14 18:51:31 -07006439 ASSERT_RTNL();
6440
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 /*
6442 * Set the flags on our device.
6443 */
6444
6445 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
6446 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
6447 IFF_AUTOMEDIA)) |
6448 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
6449 IFF_ALLMULTI));
6450
6451 /*
6452 * Load in the correct multicast list now the flags have changed.
6453 */
6454
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006455 if ((old_flags ^ flags) & IFF_MULTICAST)
6456 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07006457
Patrick McHardy4417da62007-06-27 01:28:10 -07006458 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459
6460 /*
6461 * Have we downed the interface. We handle IFF_UP ourselves
6462 * according to user attempts to set it, rather than blindly
6463 * setting it.
6464 */
6465
6466 ret = 0;
Peter Pan(潘卫平)d215d102014-06-16 21:57:22 +08006467 if ((old_flags ^ flags) & IFF_UP)
Patrick McHardybd380812010-02-26 06:34:53 +00006468 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006471 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006472 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006473
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006475
6476 if (__dev_set_promiscuity(dev, inc, false) >= 0)
6477 if (dev->flags != old_flags)
6478 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479 }
6480
6481 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
6482 is important. Some (broken) drivers set IFF_PROMISC, when
6483 IFF_ALLMULTI is requested not asking us and not reporting.
6484 */
6485 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006486 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
6487
Linus Torvalds1da177e2005-04-16 15:20:36 -07006488 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006489 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006490 }
6491
Patrick McHardybd380812010-02-26 06:34:53 +00006492 return ret;
6493}
6494
Nicolas Dichtela528c212013-09-25 12:02:44 +02006495void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
6496 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00006497{
6498 unsigned int changes = dev->flags ^ old_flags;
6499
Nicolas Dichtela528c212013-09-25 12:02:44 +02006500 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006501 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02006502
Patrick McHardybd380812010-02-26 06:34:53 +00006503 if (changes & IFF_UP) {
6504 if (dev->flags & IFF_UP)
6505 call_netdevice_notifiers(NETDEV_UP, dev);
6506 else
6507 call_netdevice_notifiers(NETDEV_DOWN, dev);
6508 }
6509
6510 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00006511 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
6512 struct netdev_notifier_change_info change_info;
6513
6514 change_info.flags_changed = changes;
6515 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
6516 &change_info.info);
6517 }
Patrick McHardybd380812010-02-26 06:34:53 +00006518}
6519
6520/**
6521 * dev_change_flags - change device settings
6522 * @dev: device
6523 * @flags: device state flags
6524 *
6525 * Change settings on device based state flags. The flags are
6526 * in the userspace exported format.
6527 */
Eric Dumazetb536db92011-11-30 21:42:26 +00006528int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00006529{
Eric Dumazetb536db92011-11-30 21:42:26 +00006530 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006531 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00006532
6533 ret = __dev_change_flags(dev, flags);
6534 if (ret < 0)
6535 return ret;
6536
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006537 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02006538 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539 return ret;
6540}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006541EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006543static int __dev_set_mtu(struct net_device *dev, int new_mtu)
6544{
6545 const struct net_device_ops *ops = dev->netdev_ops;
6546
6547 if (ops->ndo_change_mtu)
6548 return ops->ndo_change_mtu(dev, new_mtu);
6549
6550 dev->mtu = new_mtu;
6551 return 0;
6552}
6553
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006554/**
6555 * dev_set_mtu - Change maximum transfer unit
6556 * @dev: device
6557 * @new_mtu: new transfer unit
6558 *
6559 * Change the maximum transfer size of the network device.
6560 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561int dev_set_mtu(struct net_device *dev, int new_mtu)
6562{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006563 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006564
6565 if (new_mtu == dev->mtu)
6566 return 0;
6567
6568 /* MTU must be positive. */
6569 if (new_mtu < 0)
6570 return -EINVAL;
6571
6572 if (!netif_device_present(dev))
6573 return -ENODEV;
6574
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01006575 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
6576 err = notifier_to_errno(err);
6577 if (err)
6578 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006579
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006580 orig_mtu = dev->mtu;
6581 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006582
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006583 if (!err) {
6584 err = call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
6585 err = notifier_to_errno(err);
6586 if (err) {
6587 /* setting mtu back and notifying everyone again,
6588 * so that they have a chance to revert changes.
6589 */
6590 __dev_set_mtu(dev, orig_mtu);
6591 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
6592 }
6593 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594 return err;
6595}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006596EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006598/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00006599 * dev_set_group - Change group this device belongs to
6600 * @dev: device
6601 * @new_group: group this device should belong to
6602 */
6603void dev_set_group(struct net_device *dev, int new_group)
6604{
6605 dev->group = new_group;
6606}
6607EXPORT_SYMBOL(dev_set_group);
6608
6609/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006610 * dev_set_mac_address - Change Media Access Control Address
6611 * @dev: device
6612 * @sa: new address
6613 *
6614 * Change the hardware (MAC) address of the device
6615 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006616int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
6617{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006618 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006619 int err;
6620
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006621 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006622 return -EOPNOTSUPP;
6623 if (sa->sa_family != dev->type)
6624 return -EINVAL;
6625 if (!netif_device_present(dev))
6626 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006627 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00006628 if (err)
6629 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00006630 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00006631 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04006632 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00006633 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006635EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636
Jiri Pirko4bf84c32012-12-27 23:49:37 +00006637/**
6638 * dev_change_carrier - Change device carrier
6639 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00006640 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00006641 *
6642 * Change device carrier
6643 */
6644int dev_change_carrier(struct net_device *dev, bool new_carrier)
6645{
6646 const struct net_device_ops *ops = dev->netdev_ops;
6647
6648 if (!ops->ndo_change_carrier)
6649 return -EOPNOTSUPP;
6650 if (!netif_device_present(dev))
6651 return -ENODEV;
6652 return ops->ndo_change_carrier(dev, new_carrier);
6653}
6654EXPORT_SYMBOL(dev_change_carrier);
6655
Linus Torvalds1da177e2005-04-16 15:20:36 -07006656/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02006657 * dev_get_phys_port_id - Get device physical port ID
6658 * @dev: device
6659 * @ppid: port ID
6660 *
6661 * Get device physical port ID
6662 */
6663int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01006664 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02006665{
6666 const struct net_device_ops *ops = dev->netdev_ops;
6667
6668 if (!ops->ndo_get_phys_port_id)
6669 return -EOPNOTSUPP;
6670 return ops->ndo_get_phys_port_id(dev, ppid);
6671}
6672EXPORT_SYMBOL(dev_get_phys_port_id);
6673
6674/**
David Aherndb24a902015-03-17 20:23:15 -06006675 * dev_get_phys_port_name - Get device physical port name
6676 * @dev: device
6677 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00006678 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06006679 *
6680 * Get device physical port name
6681 */
6682int dev_get_phys_port_name(struct net_device *dev,
6683 char *name, size_t len)
6684{
6685 const struct net_device_ops *ops = dev->netdev_ops;
6686
6687 if (!ops->ndo_get_phys_port_name)
6688 return -EOPNOTSUPP;
6689 return ops->ndo_get_phys_port_name(dev, name, len);
6690}
6691EXPORT_SYMBOL(dev_get_phys_port_name);
6692
6693/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07006694 * dev_change_proto_down - update protocol port state information
6695 * @dev: device
6696 * @proto_down: new value
6697 *
6698 * This info can be used by switch drivers to set the phys state of the
6699 * port.
6700 */
6701int dev_change_proto_down(struct net_device *dev, bool proto_down)
6702{
6703 const struct net_device_ops *ops = dev->netdev_ops;
6704
6705 if (!ops->ndo_change_proto_down)
6706 return -EOPNOTSUPP;
6707 if (!netif_device_present(dev))
6708 return -ENODEV;
6709 return ops->ndo_change_proto_down(dev, proto_down);
6710}
6711EXPORT_SYMBOL(dev_change_proto_down);
6712
6713/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07006714 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
6715 * @dev: device
6716 * @fd: new program fd or negative value to clear
6717 *
6718 * Set or clear a bpf program for a device
6719 */
6720int dev_change_xdp_fd(struct net_device *dev, int fd)
6721{
6722 const struct net_device_ops *ops = dev->netdev_ops;
6723 struct bpf_prog *prog = NULL;
6724 struct netdev_xdp xdp = {};
6725 int err;
6726
6727 if (!ops->ndo_xdp)
6728 return -EOPNOTSUPP;
6729 if (fd >= 0) {
6730 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_XDP);
6731 if (IS_ERR(prog))
6732 return PTR_ERR(prog);
6733 }
6734
6735 xdp.command = XDP_SETUP_PROG;
6736 xdp.prog = prog;
6737 err = ops->ndo_xdp(dev, &xdp);
6738 if (err < 0 && prog)
6739 bpf_prog_put(prog);
6740
6741 return err;
6742}
6743EXPORT_SYMBOL(dev_change_xdp_fd);
6744
6745/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07006747 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748 *
6749 * Returns a suitable unique value for a new device interface
6750 * number. The caller must hold the rtnl semaphore or the
6751 * dev_base_lock to be sure it remains unique.
6752 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07006753static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006754{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00006755 int ifindex = net->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006756 for (;;) {
6757 if (++ifindex <= 0)
6758 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006759 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00006760 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006761 }
6762}
6763
Linus Torvalds1da177e2005-04-16 15:20:36 -07006764/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08006765static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07006766DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006767
Stephen Hemminger6f05f622007-03-08 20:46:03 -08006768static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006770 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07006771 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006772}
6773
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006774static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006775{
Krishna Kumare93737b2009-12-08 22:26:02 +00006776 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006777 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006778
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006779 BUG_ON(dev_boot_phase);
6780 ASSERT_RTNL();
6781
Krishna Kumare93737b2009-12-08 22:26:02 +00006782 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006783 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00006784 * for initialization unwind. Remove those
6785 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006786 */
6787 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006788 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
6789 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006790
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006791 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00006792 list_del(&dev->unreg_list);
6793 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006794 }
Eric Dumazet449f4542011-05-19 12:24:16 +00006795 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006796 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00006797 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006798
Octavian Purdila44345722010-12-13 12:44:07 +00006799 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006800 list_for_each_entry(dev, head, unreg_list)
6801 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04006802 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006803
Octavian Purdila44345722010-12-13 12:44:07 +00006804 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006805 /* And unlink it from device chain. */
6806 unlist_netdevice(dev);
6807
6808 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006809 }
Eric Dumazet41852492016-08-26 12:50:39 -07006810 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006811
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006812 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006813
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006814 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006815 struct sk_buff *skb = NULL;
6816
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006817 /* Shutdown queueing discipline. */
6818 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006819
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006820
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006821 /* Notify protocols, that we are about to destroy
6822 this device. They should clean all the things.
6823 */
6824 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
6825
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006826 if (!dev->rtnl_link_ops ||
6827 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
6828 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U,
6829 GFP_KERNEL);
6830
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006831 /*
6832 * Flush the unicast and multicast chains
6833 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006834 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00006835 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006836
6837 if (dev->netdev_ops->ndo_uninit)
6838 dev->netdev_ops->ndo_uninit(dev);
6839
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006840 if (skb)
6841 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07006842
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006843 /* Notifier chain MUST detach us all upper devices. */
6844 WARN_ON(netdev_has_any_upper_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006845
6846 /* Remove entries from kobject tree */
6847 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00006848#ifdef CONFIG_XPS
6849 /* Remove XPS queueing entries */
6850 netif_reset_xps_queues_gt(dev, 0);
6851#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006852 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006853
Eric W. Biederman850a5452011-10-13 22:25:23 +00006854 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006855
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00006856 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006857 dev_put(dev);
6858}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006859
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006860static void rollback_registered(struct net_device *dev)
6861{
6862 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006863
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006864 list_add(&dev->unreg_list, &single);
6865 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00006866 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006867}
6868
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006869static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
6870 struct net_device *upper, netdev_features_t features)
6871{
6872 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
6873 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05006874 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006875
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05006876 for_each_netdev_feature(&upper_disables, feature_bit) {
6877 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006878 if (!(upper->wanted_features & feature)
6879 && (features & feature)) {
6880 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
6881 &feature, upper->name);
6882 features &= ~feature;
6883 }
6884 }
6885
6886 return features;
6887}
6888
6889static void netdev_sync_lower_features(struct net_device *upper,
6890 struct net_device *lower, netdev_features_t features)
6891{
6892 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
6893 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05006894 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006895
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05006896 for_each_netdev_feature(&upper_disables, feature_bit) {
6897 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006898 if (!(features & feature) && (lower->features & feature)) {
6899 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
6900 &feature, lower->name);
6901 lower->wanted_features &= ~feature;
6902 netdev_update_features(lower);
6903
6904 if (unlikely(lower->features & feature))
6905 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
6906 &feature, lower->name);
6907 }
6908 }
6909}
6910
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006911static netdev_features_t netdev_fix_features(struct net_device *dev,
6912 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07006913{
Michał Mirosław57422dc2011-01-22 12:14:12 +00006914 /* Fix illegal checksum combinations */
6915 if ((features & NETIF_F_HW_CSUM) &&
6916 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006917 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00006918 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
6919 }
6920
Herbert Xub63365a2008-10-23 01:11:29 -07006921 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00006922 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006923 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00006924 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07006925 }
6926
Pravin B Shelarec5f0612013-03-07 09:28:01 +00006927 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
6928 !(features & NETIF_F_IP_CSUM)) {
6929 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
6930 features &= ~NETIF_F_TSO;
6931 features &= ~NETIF_F_TSO_ECN;
6932 }
6933
6934 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
6935 !(features & NETIF_F_IPV6_CSUM)) {
6936 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
6937 features &= ~NETIF_F_TSO6;
6938 }
6939
Alexander Duyckb1dc4972016-05-02 09:38:24 -07006940 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
6941 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
6942 features &= ~NETIF_F_TSO_MANGLEID;
6943
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00006944 /* TSO ECN requires that TSO is present as well. */
6945 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
6946 features &= ~NETIF_F_TSO_ECN;
6947
Michał Mirosław212b5732011-02-15 16:59:16 +00006948 /* Software GSO depends on SG. */
6949 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006950 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00006951 features &= ~NETIF_F_GSO;
6952 }
6953
Michał Mirosławacd11302011-01-24 15:45:15 -08006954 /* UFO needs SG and checksumming */
Herbert Xub63365a2008-10-23 01:11:29 -07006955 if (features & NETIF_F_UFO) {
Michał Mirosław79032642010-11-30 06:38:00 +00006956 /* maybe split UFO into V4 and V6? */
Tom Herbertc8cd0982015-12-14 11:19:44 -08006957 if (!(features & NETIF_F_HW_CSUM) &&
6958 ((features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) !=
6959 (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006960 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08006961 "Dropping NETIF_F_UFO since no checksum offload features.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07006962 features &= ~NETIF_F_UFO;
6963 }
6964
6965 if (!(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006966 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08006967 "Dropping NETIF_F_UFO since no NETIF_F_SG feature.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07006968 features &= ~NETIF_F_UFO;
6969 }
6970 }
6971
Alexander Duyck802ab552016-04-10 21:45:03 -04006972 /* GSO partial features require GSO partial be set */
6973 if ((features & dev->gso_partial_features) &&
6974 !(features & NETIF_F_GSO_PARTIAL)) {
6975 netdev_dbg(dev,
6976 "Dropping partially supported GSO features since no GSO partial.\n");
6977 features &= ~dev->gso_partial_features;
6978 }
6979
Jiri Pirkod0290212014-04-02 23:09:31 +02006980#ifdef CONFIG_NET_RX_BUSY_POLL
6981 if (dev->netdev_ops->ndo_busy_poll)
6982 features |= NETIF_F_BUSY_POLL;
6983 else
6984#endif
6985 features &= ~NETIF_F_BUSY_POLL;
6986
Herbert Xub63365a2008-10-23 01:11:29 -07006987 return features;
6988}
Herbert Xub63365a2008-10-23 01:11:29 -07006989
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006990int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00006991{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006992 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006993 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006994 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05006995 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00006996
Michał Mirosław87267482011-04-12 09:56:38 +00006997 ASSERT_RTNL();
6998
Michał Mirosław5455c692011-02-15 16:59:17 +00006999 features = netdev_get_wanted_features(dev);
7000
7001 if (dev->netdev_ops->ndo_fix_features)
7002 features = dev->netdev_ops->ndo_fix_features(dev, features);
7003
7004 /* driver might be less strict about feature dependencies */
7005 features = netdev_fix_features(dev, features);
7006
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007007 /* some features can't be enabled if they're off an an upper device */
7008 netdev_for_each_upper_dev_rcu(dev, upper, iter)
7009 features = netdev_sync_upper_features(dev, upper, features);
7010
Michał Mirosław5455c692011-02-15 16:59:17 +00007011 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05007012 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00007013
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007014 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
7015 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00007016
7017 if (dev->netdev_ops->ndo_set_features)
7018 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01007019 else
7020 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00007021
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007022 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00007023 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007024 "set_features() failed (%d); wanted %pNF, left %pNF\n",
7025 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01007026 /* return non-0 since some features might have changed and
7027 * it's better to fire a spurious notification than miss it
7028 */
7029 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007030 }
7031
Jarod Wilsone7868a82015-11-03 23:09:32 -05007032sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007033 /* some features must be disabled on lower devices when disabled
7034 * on an upper device (think: bonding master or bridge)
7035 */
7036 netdev_for_each_lower_dev(dev, lower, iter)
7037 netdev_sync_lower_features(dev, lower, features);
7038
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007039 if (!err)
7040 dev->features = features;
7041
Jarod Wilsone7868a82015-11-03 23:09:32 -05007042 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007043}
7044
Michał Mirosławafe12cc2011-05-07 03:22:17 +00007045/**
7046 * netdev_update_features - recalculate device features
7047 * @dev: the device to check
7048 *
7049 * Recalculate dev->features set and send notifications if it
7050 * has changed. Should be called after driver or hardware dependent
7051 * conditions might have changed that influence the features.
7052 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007053void netdev_update_features(struct net_device *dev)
7054{
7055 if (__netdev_update_features(dev))
7056 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00007057}
7058EXPORT_SYMBOL(netdev_update_features);
7059
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00007061 * netdev_change_features - recalculate device features
7062 * @dev: the device to check
7063 *
7064 * Recalculate dev->features set and send notifications even
7065 * if they have not changed. Should be called instead of
7066 * netdev_update_features() if also dev->vlan_features might
7067 * have changed to allow the changes to be propagated to stacked
7068 * VLAN devices.
7069 */
7070void netdev_change_features(struct net_device *dev)
7071{
7072 __netdev_update_features(dev);
7073 netdev_features_change(dev);
7074}
7075EXPORT_SYMBOL(netdev_change_features);
7076
7077/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08007078 * netif_stacked_transfer_operstate - transfer operstate
7079 * @rootdev: the root or lower level device to transfer state from
7080 * @dev: the device to transfer operstate to
7081 *
7082 * Transfer operational state from root to device. This is normally
7083 * called when a stacking relationship exists between the root
7084 * device and the device(a leaf device).
7085 */
7086void netif_stacked_transfer_operstate(const struct net_device *rootdev,
7087 struct net_device *dev)
7088{
7089 if (rootdev->operstate == IF_OPER_DORMANT)
7090 netif_dormant_on(dev);
7091 else
7092 netif_dormant_off(dev);
7093
7094 if (netif_carrier_ok(rootdev)) {
7095 if (!netif_carrier_ok(dev))
7096 netif_carrier_on(dev);
7097 } else {
7098 if (netif_carrier_ok(dev))
7099 netif_carrier_off(dev);
7100 }
7101}
7102EXPORT_SYMBOL(netif_stacked_transfer_operstate);
7103
Michael Daltona953be52014-01-16 22:23:28 -08007104#ifdef CONFIG_SYSFS
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007105static int netif_alloc_rx_queues(struct net_device *dev)
7106{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007107 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00007108 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05307109 size_t sz = count * sizeof(*rx);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007110
Tom Herbertbd25fa72010-10-18 18:00:16 +00007111 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007112
Pankaj Gupta10595902015-01-12 11:41:28 +05307113 rx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7114 if (!rx) {
7115 rx = vzalloc(sz);
7116 if (!rx)
7117 return -ENOMEM;
7118 }
Tom Herbertbd25fa72010-10-18 18:00:16 +00007119 dev->_rx = rx;
7120
Tom Herbertbd25fa72010-10-18 18:00:16 +00007121 for (i = 0; i < count; i++)
Tom Herbertfe822242010-11-09 10:47:38 +00007122 rx[i].dev = dev;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007123 return 0;
7124}
Tom Herbertbf264142010-11-26 08:36:09 +00007125#endif
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007126
Changli Gaoaa942102010-12-04 02:31:41 +00007127static void netdev_init_one_queue(struct net_device *dev,
7128 struct netdev_queue *queue, void *_unused)
7129{
7130 /* Initialize queue lock */
7131 spin_lock_init(&queue->_xmit_lock);
7132 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
7133 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00007134 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00007135 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00007136#ifdef CONFIG_BQL
7137 dql_init(&queue->dql, HZ);
7138#endif
Changli Gaoaa942102010-12-04 02:31:41 +00007139}
7140
Eric Dumazet60877a32013-06-20 01:15:51 -07007141static void netif_free_tx_queues(struct net_device *dev)
7142{
WANG Cong4cb28972014-06-02 15:55:22 -07007143 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07007144}
7145
Tom Herberte6484932010-10-18 18:04:39 +00007146static int netif_alloc_netdev_queues(struct net_device *dev)
7147{
7148 unsigned int count = dev->num_tx_queues;
7149 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07007150 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00007151
Eric Dumazetd3397272015-07-06 17:13:26 +02007152 if (count < 1 || count > 0xffff)
7153 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00007154
Eric Dumazet60877a32013-06-20 01:15:51 -07007155 tx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7156 if (!tx) {
7157 tx = vzalloc(sz);
7158 if (!tx)
7159 return -ENOMEM;
7160 }
Tom Herberte6484932010-10-18 18:04:39 +00007161 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00007162
Tom Herberte6484932010-10-18 18:04:39 +00007163 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
7164 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00007165
7166 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00007167}
7168
Denys Vlasenkoa2029242015-05-11 21:17:53 +02007169void netif_tx_stop_all_queues(struct net_device *dev)
7170{
7171 unsigned int i;
7172
7173 for (i = 0; i < dev->num_tx_queues; i++) {
7174 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
7175 netif_tx_stop_queue(txq);
7176 }
7177}
7178EXPORT_SYMBOL(netif_tx_stop_all_queues);
7179
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08007180/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007181 * register_netdevice - register a network device
7182 * @dev: device to register
7183 *
7184 * Take a completed network device structure and add it to the kernel
7185 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
7186 * chain. 0 is returned on success. A negative errno code is returned
7187 * on a failure to set up the device, or if the name is a duplicate.
7188 *
7189 * Callers must hold the rtnl semaphore. You may want
7190 * register_netdev() instead of this.
7191 *
7192 * BUGS:
7193 * The locking appears insufficient to guarantee two parallel registers
7194 * will not get the same name.
7195 */
7196
7197int register_netdevice(struct net_device *dev)
7198{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007199 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007200 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007201
7202 BUG_ON(dev_boot_phase);
7203 ASSERT_RTNL();
7204
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007205 might_sleep();
7206
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207 /* When net_device's are persistent, this will be fatal. */
7208 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007209 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007210
David S. Millerf1f28aa2008-07-15 00:08:33 -07007211 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07007212 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007213
Gao feng828de4f2012-09-13 20:58:27 +00007214 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00007215 if (ret < 0)
7216 goto out;
7217
Linus Torvalds1da177e2005-04-16 15:20:36 -07007218 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007219 if (dev->netdev_ops->ndo_init) {
7220 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007221 if (ret) {
7222 if (ret > 0)
7223 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08007224 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007225 }
7226 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007227
Patrick McHardyf6469682013-04-19 02:04:27 +00007228 if (((dev->hw_features | dev->features) &
7229 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00007230 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
7231 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
7232 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
7233 ret = -EINVAL;
7234 goto err_uninit;
7235 }
7236
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00007237 ret = -EBUSY;
7238 if (!dev->ifindex)
7239 dev->ifindex = dev_new_index(net);
7240 else if (__dev_get_by_index(net, dev->ifindex))
7241 goto err_uninit;
7242
Michał Mirosław5455c692011-02-15 16:59:17 +00007243 /* Transfer changeable features to wanted_features and enable
7244 * software offloads (GSO and GRO).
7245 */
7246 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00007247 dev->features |= NETIF_F_SOFT_FEATURES;
7248 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007249
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007250 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00007251 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007252
Alexander Duyck7f348a62016-04-20 16:51:00 -04007253 /* If IPv4 TCP segmentation offload is supported we should also
7254 * allow the device to enable segmenting the frame with the option
7255 * of ignoring a static IP ID value. This doesn't enable the
7256 * feature itself but allows the user to enable it later.
7257 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007258 if (dev->hw_features & NETIF_F_TSO)
7259 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04007260 if (dev->vlan_features & NETIF_F_TSO)
7261 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
7262 if (dev->mpls_features & NETIF_F_TSO)
7263 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
7264 if (dev->hw_enc_features & NETIF_F_TSO)
7265 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07007266
Michał Mirosław1180e7d2011-07-14 14:41:11 -07007267 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00007268 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07007269 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00007270
Pravin B Shelaree579672013-03-07 09:28:08 +00007271 /* Make NETIF_F_SG inheritable to tunnel devices.
7272 */
Alexander Duyck802ab552016-04-10 21:45:03 -04007273 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +00007274
Simon Horman0d89d202013-05-23 21:02:52 +00007275 /* Make NETIF_F_SG inheritable to MPLS.
7276 */
7277 dev->mpls_features |= NETIF_F_SG;
7278
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00007279 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
7280 ret = notifier_to_errno(ret);
7281 if (ret)
7282 goto err_uninit;
7283
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007284 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007285 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007286 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007287 dev->reg_state = NETREG_REGISTERED;
7288
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007289 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00007290
Linus Torvalds1da177e2005-04-16 15:20:36 -07007291 /*
7292 * Default initial state at registry is that the
7293 * device is present.
7294 */
7295
7296 set_bit(__LINK_STATE_PRESENT, &dev->state);
7297
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01007298 linkwatch_init_dev(dev);
7299
Linus Torvalds1da177e2005-04-16 15:20:36 -07007300 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007301 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007302 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04007303 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007304
Jiri Pirko948b3372013-01-08 01:38:25 +00007305 /* If the device has permanent device address, driver should
7306 * set dev_addr and also addr_assign_type should be set to
7307 * NET_ADDR_PERM (default value).
7308 */
7309 if (dev->addr_assign_type == NET_ADDR_PERM)
7310 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
7311
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07007313 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07007314 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007315 if (ret) {
7316 rollback_registered(dev);
7317 dev->reg_state = NETREG_UNREGISTERED;
7318 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00007319 /*
7320 * Prevent userspace races by waiting until the network
7321 * device is fully setup before sending notifications.
7322 */
Patrick McHardya2835762010-02-26 06:34:51 +00007323 if (!dev->rtnl_link_ops ||
7324 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007325 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007326
7327out:
7328 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007329
7330err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007331 if (dev->netdev_ops->ndo_uninit)
7332 dev->netdev_ops->ndo_uninit(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007333 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007335EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007336
7337/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007338 * init_dummy_netdev - init a dummy network device for NAPI
7339 * @dev: device to init
7340 *
7341 * This takes a network device structure and initialize the minimum
7342 * amount of fields so it can be used to schedule NAPI polls without
7343 * registering a full blown interface. This is to be used by drivers
7344 * that need to tie several hardware interfaces to a single NAPI
7345 * poll scheduler due to HW limitations.
7346 */
7347int init_dummy_netdev(struct net_device *dev)
7348{
7349 /* Clear everything. Note we don't initialize spinlocks
7350 * are they aren't supposed to be taken by any of the
7351 * NAPI code and this dummy netdev is supposed to be
7352 * only ever used for NAPI polls
7353 */
7354 memset(dev, 0, sizeof(struct net_device));
7355
7356 /* make sure we BUG if trying to hit standard
7357 * register/unregister code path
7358 */
7359 dev->reg_state = NETREG_DUMMY;
7360
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007361 /* NAPI wants this */
7362 INIT_LIST_HEAD(&dev->napi_list);
7363
7364 /* a dummy interface is started by default */
7365 set_bit(__LINK_STATE_PRESENT, &dev->state);
7366 set_bit(__LINK_STATE_START, &dev->state);
7367
Eric Dumazet29b44332010-10-11 10:22:12 +00007368 /* Note : We dont allocate pcpu_refcnt for dummy devices,
7369 * because users of this 'device' dont need to change
7370 * its refcount.
7371 */
7372
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007373 return 0;
7374}
7375EXPORT_SYMBOL_GPL(init_dummy_netdev);
7376
7377
7378/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007379 * register_netdev - register a network device
7380 * @dev: device to register
7381 *
7382 * Take a completed network device structure and add it to the kernel
7383 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
7384 * chain. 0 is returned on success. A negative errno code is returned
7385 * on a failure to set up the device, or if the name is a duplicate.
7386 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07007387 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07007388 * and expands the device name if you passed a format string to
7389 * alloc_netdev.
7390 */
7391int register_netdev(struct net_device *dev)
7392{
7393 int err;
7394
7395 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007396 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007397 rtnl_unlock();
7398 return err;
7399}
7400EXPORT_SYMBOL(register_netdev);
7401
Eric Dumazet29b44332010-10-11 10:22:12 +00007402int netdev_refcnt_read(const struct net_device *dev)
7403{
7404 int i, refcnt = 0;
7405
7406 for_each_possible_cpu(i)
7407 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
7408 return refcnt;
7409}
7410EXPORT_SYMBOL(netdev_refcnt_read);
7411
Ben Hutchings2c530402012-07-10 10:55:09 +00007412/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007413 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00007414 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07007415 *
7416 * This is called when unregistering network devices.
7417 *
7418 * Any protocol or device that holds a reference should register
7419 * for netdevice notification, and cleanup and put back the
7420 * reference if they receive an UNREGISTER event.
7421 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007422 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007423 */
7424static void netdev_wait_allrefs(struct net_device *dev)
7425{
7426 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00007427 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007428
Eric Dumazete014deb2009-11-17 05:59:21 +00007429 linkwatch_forget_dev(dev);
7430
Linus Torvalds1da177e2005-04-16 15:20:36 -07007431 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00007432 refcnt = netdev_refcnt_read(dev);
7433
7434 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007435 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08007436 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007437
7438 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07007439 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007440
Eric Dumazet748e2d92012-08-22 21:50:59 +00007441 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007442 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00007443 rtnl_lock();
7444
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007445 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007446 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
7447 &dev->state)) {
7448 /* We must not have linkwatch events
7449 * pending on unregister. If this
7450 * happens, we simply run the queue
7451 * unscheduled, resulting in a noop
7452 * for this device.
7453 */
7454 linkwatch_run_queue();
7455 }
7456
Stephen Hemminger6756ae42006-03-20 22:23:58 -08007457 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007458
7459 rebroadcast_time = jiffies;
7460 }
7461
7462 msleep(250);
7463
Eric Dumazet29b44332010-10-11 10:22:12 +00007464 refcnt = netdev_refcnt_read(dev);
7465
Linus Torvalds1da177e2005-04-16 15:20:36 -07007466 if (time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007467 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
7468 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007469 warning_time = jiffies;
7470 }
7471 }
7472}
7473
7474/* The sequence is:
7475 *
7476 * rtnl_lock();
7477 * ...
7478 * register_netdevice(x1);
7479 * register_netdevice(x2);
7480 * ...
7481 * unregister_netdevice(y1);
7482 * unregister_netdevice(y2);
7483 * ...
7484 * rtnl_unlock();
7485 * free_netdev(y1);
7486 * free_netdev(y2);
7487 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07007488 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07007489 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007490 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07007491 * without deadlocking with linkwatch via keventd.
7492 * 2) Since we run with the RTNL semaphore not held, we can sleep
7493 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07007494 *
7495 * We must not return until all unregister events added during
7496 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007497 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007498void netdev_run_todo(void)
7499{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007500 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501
Linus Torvalds1da177e2005-04-16 15:20:36 -07007502 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007503 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07007504
7505 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007506
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007507
7508 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00007509 if (!list_empty(&list))
7510 rcu_barrier();
7511
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512 while (!list_empty(&list)) {
7513 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00007514 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007515 list_del(&dev->todo_list);
7516
Eric Dumazet748e2d92012-08-22 21:50:59 +00007517 rtnl_lock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007518 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Eric Dumazet748e2d92012-08-22 21:50:59 +00007519 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007520
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007521 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007522 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07007523 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007524 dump_stack();
7525 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007526 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007527
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007528 dev->reg_state = NETREG_UNREGISTERED;
7529
7530 netdev_wait_allrefs(dev);
7531
7532 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00007533 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -08007534 BUG_ON(!list_empty(&dev->ptype_all));
7535 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +00007536 WARN_ON(rcu_access_pointer(dev->ip_ptr));
7537 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
Ilpo Järvinen547b7922008-07-25 21:43:18 -07007538 WARN_ON(dev->dn_ptr);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007539
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007540 if (dev->destructor)
7541 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07007542
Eric W. Biederman50624c92013-09-23 21:19:49 -07007543 /* Report a network device has been unregistered */
7544 rtnl_lock();
7545 dev_net(dev)->dev_unreg_count--;
7546 __rtnl_unlock();
7547 wake_up(&netdev_unregistering_wq);
7548
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07007549 /* Free network device */
7550 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007552}
7553
Jarod Wilson92566452016-02-01 18:51:04 -05007554/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
7555 * all the same fields in the same order as net_device_stats, with only
7556 * the type differing, but rtnl_link_stats64 may have additional fields
7557 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +00007558 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00007559void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
7560 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00007561{
7562#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -05007563 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys05e165e2017-07-03 03:20:13 +02007564 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -05007565 /* zero out counters that only exist in rtnl_link_stats64 */
7566 memset((char *)stats64 + sizeof(*netdev_stats), 0,
7567 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007568#else
Jarod Wilson92566452016-02-01 18:51:04 -05007569 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +00007570 const unsigned long *src = (const unsigned long *)netdev_stats;
7571 u64 *dst = (u64 *)stats64;
7572
Jarod Wilson92566452016-02-01 18:51:04 -05007573 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007574 for (i = 0; i < n; i++)
7575 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -05007576 /* zero out counters that only exist in rtnl_link_stats64 */
7577 memset((char *)stats64 + n * sizeof(u64), 0,
7578 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007579#endif
7580}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00007581EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00007582
Eric Dumazetd83345a2009-11-16 03:36:51 +00007583/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007584 * dev_get_stats - get network device statistics
7585 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07007586 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007587 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00007588 * Get network statistics from device. Return @storage.
7589 * The device driver may provide its own method by setting
7590 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
7591 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007592 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00007593struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
7594 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00007595{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007596 const struct net_device_ops *ops = dev->netdev_ops;
7597
Eric Dumazet28172732010-07-07 14:58:56 -07007598 if (ops->ndo_get_stats64) {
7599 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00007600 ops->ndo_get_stats64(dev, storage);
7601 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00007602 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00007603 } else {
7604 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07007605 }
Eric Dumazet3f04c322017-06-27 07:02:20 -07007606 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
7607 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
7608 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -07007609 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07007610}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007611EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07007612
Eric Dumazet24824a02010-10-02 06:11:55 +00007613struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07007614{
Eric Dumazet24824a02010-10-02 06:11:55 +00007615 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07007616
Eric Dumazet24824a02010-10-02 06:11:55 +00007617#ifdef CONFIG_NET_CLS_ACT
7618 if (queue)
7619 return queue;
7620 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
7621 if (!queue)
7622 return NULL;
7623 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007624 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +00007625 queue->qdisc_sleeping = &noop_qdisc;
7626 rcu_assign_pointer(dev->ingress_queue, queue);
7627#endif
7628 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07007629}
7630
Eric Dumazet2c60db02012-09-16 09:17:26 +00007631static const struct ethtool_ops default_ethtool_ops;
7632
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00007633void netdev_set_default_ethtool_ops(struct net_device *dev,
7634 const struct ethtool_ops *ops)
7635{
7636 if (dev->ethtool_ops == &default_ethtool_ops)
7637 dev->ethtool_ops = ops;
7638}
7639EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
7640
Eric Dumazet74d332c2013-10-30 13:10:44 -07007641void netdev_freemem(struct net_device *dev)
7642{
7643 char *addr = (char *)dev - dev->padded;
7644
WANG Cong4cb28972014-06-02 15:55:22 -07007645 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07007646}
7647
Linus Torvalds1da177e2005-04-16 15:20:36 -07007648/**
Tom Herbert36909ea2011-01-09 19:36:31 +00007649 * alloc_netdev_mqs - allocate network device
Tom Gundersenc835a672014-07-14 16:37:24 +02007650 * @sizeof_priv: size of private data to allocate space for
7651 * @name: device name format string
7652 * @name_assign_type: origin of device name
7653 * @setup: callback to initialize device
7654 * @txqs: the number of TX subqueues to allocate
7655 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07007656 *
7657 * Allocates a struct net_device with private data area for driver use
Li Zhong90e51ad2013-11-22 15:04:46 +08007658 * and performs basic initialization. Also allocates subqueue structs
Tom Herbert36909ea2011-01-09 19:36:31 +00007659 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007660 */
Tom Herbert36909ea2011-01-09 19:36:31 +00007661struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02007662 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00007663 void (*setup)(struct net_device *),
7664 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007665{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007666 struct net_device *dev;
Stephen Hemminger79439862008-07-21 13:28:44 -07007667 size_t alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007668 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007669
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07007670 BUG_ON(strlen(name) >= sizeof(dev->name));
7671
Tom Herbert36909ea2011-01-09 19:36:31 +00007672 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007673 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00007674 return NULL;
7675 }
7676
Michael Daltona953be52014-01-16 22:23:28 -08007677#ifdef CONFIG_SYSFS
Tom Herbert36909ea2011-01-09 19:36:31 +00007678 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007679 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00007680 return NULL;
7681 }
7682#endif
7683
David S. Millerfd2ea0a2008-07-17 01:56:23 -07007684 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07007685 if (sizeof_priv) {
7686 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007687 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07007688 alloc_size += sizeof_priv;
7689 }
7690 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007691 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007692
Eric Dumazet74d332c2013-10-30 13:10:44 -07007693 p = kzalloc(alloc_size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7694 if (!p)
7695 p = vzalloc(alloc_size);
Joe Perches62b59422013-02-04 16:48:16 +00007696 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007697 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007698
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007699 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007700 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007701
Eric Dumazet29b44332010-10-11 10:22:12 +00007702 dev->pcpu_refcnt = alloc_percpu(int);
7703 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07007704 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007705
Linus Torvalds1da177e2005-04-16 15:20:36 -07007706 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00007707 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007708
Jiri Pirko22bedad32010-04-01 21:22:57 +00007709 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00007710 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00007711
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09007712 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007713
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07007714 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00007715 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007716
Herbert Xud565b0a2008-12-15 23:38:52 -08007717 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00007718 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07007719 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00007720 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007721 INIT_LIST_HEAD(&dev->adj_list.upper);
7722 INIT_LIST_HEAD(&dev->adj_list.lower);
7723 INIT_LIST_HEAD(&dev->all_adj_list.upper);
7724 INIT_LIST_HEAD(&dev->all_adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -08007725 INIT_LIST_HEAD(&dev->ptype_all);
7726 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Kosina59cc1f62016-08-10 11:05:15 +02007727#ifdef CONFIG_NET_SCHED
7728 hash_init(dev->qdisc_hash);
7729#endif
Eric Dumazet02875872014-10-05 18:38:35 -07007730 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007731 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007732
Phil Suttera8131042016-02-17 15:37:43 +01007733 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +02007734 dev->priv_flags |= IFF_NO_QUEUE;
Phil Suttera8131042016-02-17 15:37:43 +01007735 dev->tx_queue_len = 1;
7736 }
Phil Sutter906470c2015-08-18 10:30:48 +02007737
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007738 dev->num_tx_queues = txqs;
7739 dev->real_num_tx_queues = txqs;
7740 if (netif_alloc_netdev_queues(dev))
7741 goto free_all;
7742
Michael Daltona953be52014-01-16 22:23:28 -08007743#ifdef CONFIG_SYSFS
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007744 dev->num_rx_queues = rxqs;
7745 dev->real_num_rx_queues = rxqs;
7746 if (netif_alloc_rx_queues(dev))
7747 goto free_all;
7748#endif
7749
Linus Torvalds1da177e2005-04-16 15:20:36 -07007750 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02007751 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00007752 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00007753 if (!dev->ethtool_ops)
7754 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +02007755
7756 nf_hook_ingress_init(dev);
7757
Linus Torvalds1da177e2005-04-16 15:20:36 -07007758 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007759
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007760free_all:
7761 free_netdev(dev);
7762 return NULL;
7763
Eric Dumazet29b44332010-10-11 10:22:12 +00007764free_pcpu:
7765 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07007766free_dev:
7767 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007768 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769}
Tom Herbert36909ea2011-01-09 19:36:31 +00007770EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007771
7772/**
7773 * free_netdev - free network device
7774 * @dev: device
7775 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007776 * This function does the last stage of destroying an allocated device
7777 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778 * If this is the last reference then it will be freed.
Eric Dumazet93d05d42015-11-18 06:31:03 -08007779 * Must be called in process context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007780 */
7781void free_netdev(struct net_device *dev)
7782{
Herbert Xud565b0a2008-12-15 23:38:52 -08007783 struct napi_struct *p, *n;
7784
Eric Dumazet93d05d42015-11-18 06:31:03 -08007785 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -07007786 netif_free_tx_queues(dev);
Michael Daltona953be52014-01-16 22:23:28 -08007787#ifdef CONFIG_SYSFS
Pankaj Gupta10595902015-01-12 11:41:28 +05307788 kvfree(dev->_rx);
Tom Herbertfe822242010-11-09 10:47:38 +00007789#endif
David S. Millere8a04642008-07-17 00:34:19 -07007790
Eric Dumazet33d480c2011-08-11 19:30:52 +00007791 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00007792
Jiri Pirkof001fde2009-05-05 02:48:28 +00007793 /* Flush device addresses */
7794 dev_addr_flush(dev);
7795
Herbert Xud565b0a2008-12-15 23:38:52 -08007796 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
7797 netif_napi_del(p);
7798
Eric Dumazet29b44332010-10-11 10:22:12 +00007799 free_percpu(dev->pcpu_refcnt);
7800 dev->pcpu_refcnt = NULL;
7801
Stephen Hemminger3041a062006-05-26 13:25:24 -07007802 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007803 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07007804 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805 return;
7806 }
7807
7808 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
7809 dev->reg_state = NETREG_RELEASED;
7810
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07007811 /* will free via device release */
7812 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007814EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007815
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007816/**
7817 * synchronize_net - Synchronize with packet receive processing
7818 *
7819 * Wait for packets currently being received to be done.
7820 * Does not block later packets from starting.
7821 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007822void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007823{
7824 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00007825 if (rtnl_is_locked())
7826 synchronize_rcu_expedited();
7827 else
7828 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007830EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007831
7832/**
Eric Dumazet44a08732009-10-27 07:03:04 +00007833 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07007834 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00007835 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08007836 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007837 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08007838 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00007839 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007840 *
7841 * Callers must hold the rtnl semaphore. You may want
7842 * unregister_netdev() instead of this.
7843 */
7844
Eric Dumazet44a08732009-10-27 07:03:04 +00007845void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007846{
Herbert Xua6620712007-12-12 19:21:56 -08007847 ASSERT_RTNL();
7848
Eric Dumazet44a08732009-10-27 07:03:04 +00007849 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00007850 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00007851 } else {
7852 rollback_registered(dev);
7853 /* Finish processing unregister after unlock */
7854 net_set_todo(dev);
7855 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007856}
Eric Dumazet44a08732009-10-27 07:03:04 +00007857EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007858
7859/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007860 * unregister_netdevice_many - unregister many devices
7861 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07007862 *
7863 * Note: As most callers use a stack allocated list_head,
7864 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007865 */
7866void unregister_netdevice_many(struct list_head *head)
7867{
7868 struct net_device *dev;
7869
7870 if (!list_empty(head)) {
7871 rollback_registered_many(head);
7872 list_for_each_entry(dev, head, unreg_list)
7873 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07007874 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007875 }
7876}
Eric Dumazet63c80992009-10-27 07:06:49 +00007877EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007878
7879/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007880 * unregister_netdev - remove device from the kernel
7881 * @dev: device
7882 *
7883 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08007884 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007885 *
7886 * This is just a wrapper for unregister_netdevice that takes
7887 * the rtnl semaphore. In general you want to use this and not
7888 * unregister_netdevice.
7889 */
7890void unregister_netdev(struct net_device *dev)
7891{
7892 rtnl_lock();
7893 unregister_netdevice(dev);
7894 rtnl_unlock();
7895}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007896EXPORT_SYMBOL(unregister_netdev);
7897
Eric W. Biedermance286d32007-09-12 13:53:49 +02007898/**
7899 * dev_change_net_namespace - move device to different nethost namespace
7900 * @dev: device
7901 * @net: network namespace
7902 * @pat: If not NULL name pattern to try if the current device name
7903 * is already taken in the destination network namespace.
7904 *
7905 * This function shuts down a device interface and moves it
7906 * to a new network namespace. On success 0 is returned, on
7907 * a failure a netagive errno code is returned.
7908 *
7909 * Callers must hold the rtnl semaphore.
7910 */
7911
7912int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
7913{
Eric W. Biedermance286d32007-09-12 13:53:49 +02007914 int err;
7915
7916 ASSERT_RTNL();
7917
7918 /* Don't allow namespace local devices to be moved. */
7919 err = -EINVAL;
7920 if (dev->features & NETIF_F_NETNS_LOCAL)
7921 goto out;
7922
7923 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02007924 if (dev->reg_state != NETREG_REGISTERED)
7925 goto out;
7926
7927 /* Get out if there is nothing todo */
7928 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09007929 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02007930 goto out;
7931
7932 /* Pick the destination device name, and ensure
7933 * we can use it in the destination network namespace.
7934 */
7935 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00007936 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007937 /* We get here if we can't use the current device name */
7938 if (!pat)
7939 goto out;
Gao feng828de4f2012-09-13 20:58:27 +00007940 if (dev_get_valid_name(net, dev, pat) < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02007941 goto out;
7942 }
7943
7944 /*
7945 * And now a mini version of register_netdevice unregister_netdevice.
7946 */
7947
7948 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07007949 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007950
7951 /* And unlink it from device chain */
7952 err = -ENODEV;
7953 unlist_netdevice(dev);
7954
7955 synchronize_net();
7956
7957 /* Shutdown queueing discipline. */
7958 dev_shutdown(dev);
7959
7960 /* Notify protocols, that we are about to destroy
7961 this device. They should clean all the things.
David Lamparter3b27e102010-09-17 03:22:19 +00007962
7963 Note that dev->reg_state stays at NETREG_REGISTERED.
7964 This is wanted because this way 8021q and macvlan know
7965 the device is just moving and can keep their slaves up.
Eric W. Biedermance286d32007-09-12 13:53:49 +02007966 */
7967 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00007968 rcu_barrier();
7969 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007970 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007971
7972 /*
7973 * Flush the unicast and multicast chains
7974 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00007975 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00007976 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007977
Serge Hallyn4e66ae22012-12-03 16:17:12 +00007978 /* Send a netdev-removed uevent to the old namespace */
7979 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007980 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00007981
Eric W. Biedermance286d32007-09-12 13:53:49 +02007982 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09007983 dev_net_set(dev, net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007984
Eric W. Biedermance286d32007-09-12 13:53:49 +02007985 /* If there is an ifindex conflict assign a new one */
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +02007986 if (__dev_get_by_index(net, dev->ifindex))
Eric W. Biedermance286d32007-09-12 13:53:49 +02007987 dev->ifindex = dev_new_index(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007988
Serge Hallyn4e66ae22012-12-03 16:17:12 +00007989 /* Send a netdev-add uevent to the new namespace */
7990 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007991 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00007992
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007993 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07007994 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007995 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007996
7997 /* Add the device back in the hashes */
7998 list_netdevice(dev);
7999
8000 /* Notify protocols, that a new device appeared. */
8001 call_netdevice_notifiers(NETDEV_REGISTER, dev);
8002
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008003 /*
8004 * Prevent userspace races by waiting until the network
8005 * device is fully setup before sending notifications.
8006 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008007 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008008
Eric W. Biedermance286d32007-09-12 13:53:49 +02008009 synchronize_net();
8010 err = 0;
8011out:
8012 return err;
8013}
Johannes Berg463d0182009-07-14 00:33:35 +02008014EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008015
Linus Torvalds1da177e2005-04-16 15:20:36 -07008016static int dev_cpu_callback(struct notifier_block *nfb,
8017 unsigned long action,
8018 void *ocpu)
8019{
8020 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008021 struct sk_buff *skb;
8022 unsigned int cpu, oldcpu = (unsigned long)ocpu;
8023 struct softnet_data *sd, *oldsd;
8024
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008025 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008026 return NOTIFY_OK;
8027
8028 local_irq_disable();
8029 cpu = smp_processor_id();
8030 sd = &per_cpu(softnet_data, cpu);
8031 oldsd = &per_cpu(softnet_data, oldcpu);
8032
8033 /* Find end of our completion_queue. */
8034 list_skb = &sd->completion_queue;
8035 while (*list_skb)
8036 list_skb = &(*list_skb)->next;
8037 /* Append completion queue from offline CPU. */
8038 *list_skb = oldsd->completion_queue;
8039 oldsd->completion_queue = NULL;
8040
Linus Torvalds1da177e2005-04-16 15:20:36 -07008041 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00008042 if (oldsd->output_queue) {
8043 *sd->output_queue_tailp = oldsd->output_queue;
8044 sd->output_queue_tailp = oldsd->output_queue_tailp;
8045 oldsd->output_queue = NULL;
8046 oldsd->output_queue_tailp = &oldsd->output_queue;
8047 }
Eric Dumazetac64da02015-01-15 17:04:22 -08008048 /* Append NAPI poll list from offline CPU, with one exception :
8049 * process_backlog() must be called by cpu owning percpu backlog.
8050 * We properly handle process_queue & input_pkt_queue later.
8051 */
8052 while (!list_empty(&oldsd->poll_list)) {
8053 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
8054 struct napi_struct,
8055 poll_list);
8056
8057 list_del_init(&napi->poll_list);
8058 if (napi->poll == process_backlog)
8059 napi->state = 0;
8060 else
8061 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +00008062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008063
8064 raise_softirq_irqoff(NET_TX_SOFTIRQ);
8065 local_irq_enable();
8066
8067 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00008068 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08008069 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00008070 input_queue_head_incr(oldsd);
8071 }
Eric Dumazetac64da02015-01-15 17:04:22 -08008072 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08008073 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00008074 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07008075 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008076
8077 return NOTIFY_OK;
8078}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008079
8080
Herbert Xu7f353bf2007-08-10 15:47:58 -07008081/**
Herbert Xub63365a2008-10-23 01:11:29 -07008082 * netdev_increment_features - increment feature set by one
8083 * @all: current feature set
8084 * @one: new feature set
8085 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07008086 *
8087 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07008088 * @one to the master device with current feature set @all. Will not
8089 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07008090 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008091netdev_features_t netdev_increment_features(netdev_features_t all,
8092 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07008093{
Tom Herbertc8cd0982015-12-14 11:19:44 -08008094 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -08008095 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +00008096 mask |= NETIF_F_VLAN_CHALLENGED;
8097
Tom Herberta1882222015-12-14 11:19:43 -08008098 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +00008099 all &= one | ~NETIF_F_ALL_FOR_ALL;
8100
Michał Mirosław1742f182011-04-22 06:31:16 +00008101 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -08008102 if (all & NETIF_F_HW_CSUM)
8103 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07008104
8105 return all;
8106}
Herbert Xub63365a2008-10-23 01:11:29 -07008107EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07008108
Baruch Siach430f03c2013-06-02 20:43:55 +00008109static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008110{
8111 int i;
8112 struct hlist_head *hash;
8113
8114 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
8115 if (hash != NULL)
8116 for (i = 0; i < NETDEV_HASHENTRIES; i++)
8117 INIT_HLIST_HEAD(&hash[i]);
8118
8119 return hash;
8120}
8121
Eric W. Biederman881d9662007-09-17 11:56:21 -07008122/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07008123static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07008124{
Rustad, Mark D734b6542012-07-18 09:06:07 +00008125 if (net != &init_net)
8126 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07008127
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008128 net->dev_name_head = netdev_create_hash();
8129 if (net->dev_name_head == NULL)
8130 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008131
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008132 net->dev_index_head = netdev_create_hash();
8133 if (net->dev_index_head == NULL)
8134 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008135
8136 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008137
8138err_idx:
8139 kfree(net->dev_name_head);
8140err_name:
8141 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008142}
8143
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008144/**
8145 * netdev_drivername - network driver for the device
8146 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008147 *
8148 * Determine network driver for device.
8149 */
David S. Miller3019de12011-06-06 16:41:33 -07008150const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07008151{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07008152 const struct device_driver *driver;
8153 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07008154 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07008155
8156 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008157 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07008158 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008159
8160 driver = parent->driver;
8161 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07008162 return driver->name;
8163 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008164}
8165
Joe Perches6ea754e2014-09-22 11:10:50 -07008166static void __netdev_printk(const char *level, const struct net_device *dev,
8167 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +00008168{
Joe Perchesb004ff42012-09-12 20:12:19 -07008169 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -07008170 dev_printk_emit(level[1] - '0',
8171 dev->dev.parent,
8172 "%s %s %s%s: %pV",
8173 dev_driver_string(dev->dev.parent),
8174 dev_name(dev->dev.parent),
8175 netdev_name(dev), netdev_reg_state(dev),
8176 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008177 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -07008178 printk("%s%s%s: %pV",
8179 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008180 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -07008181 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008182 }
Joe Perches256df2f2010-06-27 01:02:35 +00008183}
8184
Joe Perches6ea754e2014-09-22 11:10:50 -07008185void netdev_printk(const char *level, const struct net_device *dev,
8186 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +00008187{
8188 struct va_format vaf;
8189 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +00008190
8191 va_start(args, format);
8192
8193 vaf.fmt = format;
8194 vaf.va = &args;
8195
Joe Perches6ea754e2014-09-22 11:10:50 -07008196 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008197
Joe Perches256df2f2010-06-27 01:02:35 +00008198 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +00008199}
8200EXPORT_SYMBOL(netdev_printk);
8201
8202#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -07008203void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +00008204{ \
Joe Perches256df2f2010-06-27 01:02:35 +00008205 struct va_format vaf; \
8206 va_list args; \
8207 \
8208 va_start(args, fmt); \
8209 \
8210 vaf.fmt = fmt; \
8211 vaf.va = &args; \
8212 \
Joe Perches6ea754e2014-09-22 11:10:50 -07008213 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07008214 \
Joe Perches256df2f2010-06-27 01:02:35 +00008215 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +00008216} \
8217EXPORT_SYMBOL(func);
8218
8219define_netdev_printk_level(netdev_emerg, KERN_EMERG);
8220define_netdev_printk_level(netdev_alert, KERN_ALERT);
8221define_netdev_printk_level(netdev_crit, KERN_CRIT);
8222define_netdev_printk_level(netdev_err, KERN_ERR);
8223define_netdev_printk_level(netdev_warn, KERN_WARNING);
8224define_netdev_printk_level(netdev_notice, KERN_NOTICE);
8225define_netdev_printk_level(netdev_info, KERN_INFO);
8226
Pavel Emelyanov46650792007-10-08 20:38:39 -07008227static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07008228{
8229 kfree(net->dev_name_head);
8230 kfree(net->dev_index_head);
8231}
8232
Denis V. Lunev022cbae2007-11-13 03:23:50 -08008233static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07008234 .init = netdev_init,
8235 .exit = netdev_exit,
8236};
8237
Pavel Emelyanov46650792007-10-08 20:38:39 -07008238static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02008239{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008240 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02008241 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008242 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02008243 * initial network namespace
8244 */
8245 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008246 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008247 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008248 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02008249
8250 /* Ignore unmoveable devices (i.e. loopback) */
8251 if (dev->features & NETIF_F_NETNS_LOCAL)
8252 continue;
8253
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008254 /* Leave virtual devices for the generic cleanup */
8255 if (dev->rtnl_link_ops)
8256 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08008257
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008258 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008259 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
8260 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008261 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008262 pr_emerg("%s: failed to move %s to init_net: %d\n",
8263 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008264 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02008265 }
8266 }
8267 rtnl_unlock();
8268}
8269
Eric W. Biederman50624c92013-09-23 21:19:49 -07008270static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
8271{
8272 /* Return with the rtnl_lock held when there are no network
8273 * devices unregistering in any network namespace in net_list.
8274 */
8275 struct net *net;
8276 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +01008277 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008278
Peter Zijlstraff960a72014-10-29 17:04:56 +01008279 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008280 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -07008281 unregistering = false;
8282 rtnl_lock();
8283 list_for_each_entry(net, net_list, exit_list) {
8284 if (net->dev_unreg_count > 0) {
8285 unregistering = true;
8286 break;
8287 }
8288 }
8289 if (!unregistering)
8290 break;
8291 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +01008292
8293 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008294 }
Peter Zijlstraff960a72014-10-29 17:04:56 +01008295 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008296}
8297
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008298static void __net_exit default_device_exit_batch(struct list_head *net_list)
8299{
8300 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04008301 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008302 * Do this across as many network namespaces as possible to
8303 * improve batching efficiency.
8304 */
8305 struct net_device *dev;
8306 struct net *net;
8307 LIST_HEAD(dev_kill_list);
8308
Eric W. Biederman50624c92013-09-23 21:19:49 -07008309 /* To prevent network device cleanup code from dereferencing
8310 * loopback devices or network devices that have been freed
8311 * wait here for all pending unregistrations to complete,
8312 * before unregistring the loopback device and allowing the
8313 * network namespace be freed.
8314 *
8315 * The netdev todo list containing all network devices
8316 * unregistrations that happen in default_device_exit_batch
8317 * will run in the rtnl_unlock() at the end of
8318 * default_device_exit_batch.
8319 */
8320 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008321 list_for_each_entry(net, net_list, exit_list) {
8322 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02008323 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008324 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
8325 else
8326 unregister_netdevice_queue(dev, &dev_kill_list);
8327 }
8328 }
8329 unregister_netdevice_many(&dev_kill_list);
8330 rtnl_unlock();
8331}
8332
Denis V. Lunev022cbae2007-11-13 03:23:50 -08008333static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008334 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008335 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02008336};
8337
Linus Torvalds1da177e2005-04-16 15:20:36 -07008338/*
8339 * Initialize the DEV module. At boot time this walks the device list and
8340 * unhooks any devices that fail to initialise (normally hardware not
8341 * present) and leaves us with a valid list of present and active devices.
8342 *
8343 */
8344
8345/*
8346 * This is called single threaded during boot, so no need
8347 * to take the rtnl semaphore.
8348 */
8349static int __init net_dev_init(void)
8350{
8351 int i, rc = -ENOMEM;
8352
8353 BUG_ON(!dev_boot_phase);
8354
Linus Torvalds1da177e2005-04-16 15:20:36 -07008355 if (dev_proc_init())
8356 goto out;
8357
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008358 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07008359 goto out;
8360
8361 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08008362 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008363 INIT_LIST_HEAD(&ptype_base[i]);
8364
Vlad Yasevich62532da2012-11-15 08:49:10 +00008365 INIT_LIST_HEAD(&offload_base);
8366
Eric W. Biederman881d9662007-09-17 11:56:21 -07008367 if (register_pernet_subsys(&netdev_net_ops))
8368 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008369
8370 /*
8371 * Initialise the packet receive queues.
8372 */
8373
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07008374 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -07008375 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008376 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008377
Eric Dumazet41852492016-08-26 12:50:39 -07008378 INIT_WORK(flush, flush_backlog);
8379
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008380 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07008381 skb_queue_head_init(&sd->process_queue);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008382 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00008383 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00008384#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008385 sd->csd.func = rps_trigger_softirq;
8386 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008387 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07008388#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00008389
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008390 sd->backlog.poll = process_backlog;
8391 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008392 }
8393
Linus Torvalds1da177e2005-04-16 15:20:36 -07008394 dev_boot_phase = 0;
8395
Eric W. Biederman505d4f72008-11-07 22:54:20 -08008396 /* The loopback device is special if any other network devices
8397 * is present in a network namespace the loopback device must
8398 * be present. Since we now dynamically allocate and free the
8399 * loopback device ensure this invariant is maintained by
8400 * keeping the loopback device as the first device on the
8401 * list of network devices. Ensuring the loopback devices
8402 * is the first device that appears and the last network device
8403 * that disappears.
8404 */
8405 if (register_pernet_device(&loopback_net_ops))
8406 goto out;
8407
8408 if (register_pernet_device(&default_device_ops))
8409 goto out;
8410
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008411 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
8412 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008413
8414 hotcpu_notifier(dev_cpu_callback, 0);
Thomas Graff38a9eb2015-07-21 10:43:56 +02008415 dst_subsys_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008416 rc = 0;
8417out:
8418 return rc;
8419}
8420
8421subsys_initcall(net_dev_init);