blob: e0217f8f73c7b29b3ac27722dcf71c9b0faf2ee1 [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
Cong Wang3e2ab0c2017-10-13 11:58:53 -07001120int dev_get_valid_name(struct net *net, struct net_device *dev,
1121 const char *name)
Gao feng828de4f2012-09-13 20:58:27 +00001122{
1123 BUG_ON(!net);
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001124
Octavian Purdilad9031022009-11-18 02:36:59 +00001125 if (!dev_valid_name(name))
1126 return -EINVAL;
1127
Jiri Pirko1c5cae82011-04-30 01:21:32 +00001128 if (strchr(name, '%'))
Gao feng828de4f2012-09-13 20:58:27 +00001129 return dev_alloc_name_ns(net, dev, name);
Octavian Purdilad9031022009-11-18 02:36:59 +00001130 else if (__dev_get_by_name(net, name))
1131 return -EEXIST;
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001132 else if (dev->name != name)
1133 strlcpy(dev->name, name, IFNAMSIZ);
Octavian Purdilad9031022009-11-18 02:36:59 +00001134
1135 return 0;
1136}
Cong Wang3e2ab0c2017-10-13 11:58:53 -07001137EXPORT_SYMBOL(dev_get_valid_name);
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);
Vlad Yasevich6c548e92017-03-14 08:58:08 -04001309 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
Amerigo Wangee89bab2012-08-09 22:14:56 +00001310 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001311}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001312EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001313
Patrick McHardybd380812010-02-26 06:34:53 +00001314static int __dev_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001316 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001317 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001319 ASSERT_RTNL();
1320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (!netif_device_present(dev))
1322 return -ENODEV;
1323
Neil Hormanca99ca12013-02-05 08:05:43 +00001324 /* Block netpoll from trying to do any rx path servicing.
1325 * If we don't do this there is a chance ndo_poll_controller
1326 * or ndo_poll may be running while we open the device
1327 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001328 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001329
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001330 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1331 ret = notifier_to_errno(ret);
1332 if (ret)
1333 return ret;
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001336
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001337 if (ops->ndo_validate_addr)
1338 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001339
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001340 if (!ret && ops->ndo_open)
1341 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Eric W. Biederman66b55522014-03-27 15:39:03 -07001343 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001344
Jeff Garzikbada3392007-10-23 20:19:37 -07001345 if (ret)
1346 clear_bit(__LINK_STATE_START, &dev->state);
1347 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001349 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001351 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return ret;
1355}
Patrick McHardybd380812010-02-26 06:34:53 +00001356
1357/**
1358 * dev_open - prepare an interface for use.
1359 * @dev: device to open
1360 *
1361 * Takes a device from down to up state. The device's private open
1362 * function is invoked and then the multicast lists are loaded. Finally
1363 * the device is moved into the up state and a %NETDEV_UP message is
1364 * sent to the netdev notifier chain.
1365 *
1366 * Calling this function on an active interface is a nop. On a failure
1367 * a negative errno code is returned.
1368 */
1369int dev_open(struct net_device *dev)
1370{
1371 int ret;
1372
Patrick McHardybd380812010-02-26 06:34:53 +00001373 if (dev->flags & IFF_UP)
1374 return 0;
1375
Patrick McHardybd380812010-02-26 06:34:53 +00001376 ret = __dev_open(dev);
1377 if (ret < 0)
1378 return ret;
1379
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001380 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001381 call_netdevice_notifiers(NETDEV_UP, dev);
1382
1383 return ret;
1384}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001385EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Octavian Purdila44345722010-12-13 12:44:07 +00001387static int __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Octavian Purdila44345722010-12-13 12:44:07 +00001389 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001390
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001391 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001392 might_sleep();
1393
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001394 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001395 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001396 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001397
Octavian Purdila44345722010-12-13 12:44:07 +00001398 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Octavian Purdila44345722010-12-13 12:44:07 +00001400 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Octavian Purdila44345722010-12-13 12:44:07 +00001402 /* Synchronize to scheduled poll. We cannot touch poll list, it
1403 * can be even on different cpu. So just clear netif_running().
1404 *
1405 * dev->stop() will invoke napi_disable() on all of it's
1406 * napi_struct instances on this device.
1407 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001408 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Octavian Purdila44345722010-12-13 12:44:07 +00001411 dev_deactivate_many(head);
1412
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001413 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001414 const struct net_device_ops *ops = dev->netdev_ops;
1415
1416 /*
1417 * Call the device specific close. This cannot fail.
1418 * Only if device is UP
1419 *
1420 * We allow it to be called even after a DETACH hot-plug
1421 * event.
1422 */
1423 if (ops->ndo_stop)
1424 ops->ndo_stop(dev);
1425
Octavian Purdila44345722010-12-13 12:44:07 +00001426 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001427 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001428 }
1429
1430 return 0;
1431}
1432
1433static int __dev_close(struct net_device *dev)
1434{
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001435 int retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001436 LIST_HEAD(single);
1437
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001438 list_add(&dev->close_list, &single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001439 retval = __dev_close_many(&single);
1440 list_del(&single);
Neil Hormanca99ca12013-02-05 08:05:43 +00001441
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001442 return retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001443}
1444
David S. Miller99c4a262015-03-18 22:52:33 -04001445int dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001446{
1447 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001448
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001449 /* Remove the devices that don't need to be closed */
1450 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001451 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001452 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001453
1454 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001455
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001456 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001457 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001458 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001459 if (unlink)
1460 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 return 0;
1464}
David S. Miller99c4a262015-03-18 22:52:33 -04001465EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001466
1467/**
1468 * dev_close - shutdown an interface.
1469 * @dev: device to shutdown
1470 *
1471 * This function moves an active device into down state. A
1472 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1473 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1474 * chain.
1475 */
1476int dev_close(struct net_device *dev)
1477{
Eric Dumazete14a5992011-05-10 12:26:06 -07001478 if (dev->flags & IFF_UP) {
1479 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001480
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001481 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001482 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001483 list_del(&single);
1484 }
dingtianhongda6e3782013-05-27 19:53:31 +00001485 return 0;
Patrick McHardybd380812010-02-26 06:34:53 +00001486}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001487EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001490/**
1491 * dev_disable_lro - disable Large Receive Offload on a device
1492 * @dev: device
1493 *
1494 * Disable Large Receive Offload (LRO) on a net device. Must be
1495 * called under RTNL. This is needed if received packets may be
1496 * forwarded to another interface.
1497 */
1498void dev_disable_lro(struct net_device *dev)
1499{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001500 struct net_device *lower_dev;
1501 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001502
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001503 dev->wanted_features &= ~NETIF_F_LRO;
1504 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001505
Michał Mirosław22d59692011-04-21 12:42:15 +00001506 if (unlikely(dev->features & NETIF_F_LRO))
1507 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001508
1509 netdev_for_each_lower_dev(dev, lower_dev, iter)
1510 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001511}
1512EXPORT_SYMBOL(dev_disable_lro);
1513
Jiri Pirko351638e2013-05-28 01:30:21 +00001514static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1515 struct net_device *dev)
1516{
1517 struct netdev_notifier_info info;
1518
1519 netdev_notifier_info_init(&info, dev);
1520 return nb->notifier_call(nb, val, &info);
1521}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001522
Eric W. Biederman881d9662007-09-17 11:56:21 -07001523static int dev_boot_phase = 1;
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525/**
1526 * register_netdevice_notifier - register a network notifier block
1527 * @nb: notifier
1528 *
1529 * Register a notifier to be called when network device events occur.
1530 * The notifier passed is linked into the kernel structures and must
1531 * not be reused until it has been unregistered. A negative errno code
1532 * is returned on a failure.
1533 *
1534 * When registered all registration and up events are replayed
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001535 * to the new notifier to allow device to have a race free
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 * view of the network device list.
1537 */
1538
1539int register_netdevice_notifier(struct notifier_block *nb)
1540{
1541 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001542 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001543 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 int err;
1545
1546 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001547 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001548 if (err)
1549 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001550 if (dev_boot_phase)
1551 goto unlock;
1552 for_each_net(net) {
1553 for_each_netdev(net, dev) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001554 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001555 err = notifier_to_errno(err);
1556 if (err)
1557 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Eric W. Biederman881d9662007-09-17 11:56:21 -07001559 if (!(dev->flags & IFF_UP))
1560 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001561
Jiri Pirko351638e2013-05-28 01:30:21 +00001562 call_netdevice_notifier(nb, NETDEV_UP, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001565
1566unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 rtnl_unlock();
1568 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001569
1570rollback:
1571 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001572 for_each_net(net) {
1573 for_each_netdev(net, dev) {
1574 if (dev == last)
RongQing.Li8f891482011-11-30 23:43:07 -05001575 goto outroll;
Herbert Xufcc5a032007-07-30 17:03:38 -07001576
Eric W. Biederman881d9662007-09-17 11:56:21 -07001577 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001578 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1579 dev);
1580 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001581 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001582 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001583 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001584 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001585
RongQing.Li8f891482011-11-30 23:43:07 -05001586outroll:
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001587 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001588 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001590EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592/**
1593 * unregister_netdevice_notifier - unregister a network notifier block
1594 * @nb: notifier
1595 *
1596 * Unregister a notifier previously registered by
1597 * register_netdevice_notifier(). The notifier is unlinked into the
1598 * kernel structures and may then be reused. A negative errno code
1599 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001600 *
1601 * After unregistering unregister and down device events are synthesized
1602 * for all devices on the device list to the removed notifier to remove
1603 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 */
1605
1606int unregister_netdevice_notifier(struct notifier_block *nb)
1607{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001608 struct net_device *dev;
1609 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001610 int err;
1611
1612 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001613 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001614 if (err)
1615 goto unlock;
1616
1617 for_each_net(net) {
1618 for_each_netdev(net, dev) {
1619 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001620 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1621 dev);
1622 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001623 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001624 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001625 }
1626 }
1627unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001628 rtnl_unlock();
1629 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001631EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001634 * call_netdevice_notifiers_info - call all network notifier blocks
1635 * @val: value passed unmodified to notifier function
1636 * @dev: net_device pointer passed unmodified to notifier function
1637 * @info: notifier information data
1638 *
1639 * Call all network notifier blocks. Parameters and return value
1640 * are as for raw_notifier_call_chain().
1641 */
1642
stephen hemminger1d143d92013-12-29 14:01:29 -08001643static int call_netdevice_notifiers_info(unsigned long val,
1644 struct net_device *dev,
1645 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00001646{
1647 ASSERT_RTNL();
1648 netdev_notifier_info_init(info, dev);
1649 return raw_notifier_call_chain(&netdev_chain, val, info);
1650}
Jiri Pirko351638e2013-05-28 01:30:21 +00001651
1652/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 * call_netdevice_notifiers - call all network notifier blocks
1654 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001655 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 *
1657 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001658 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 */
1660
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001661int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
Jiri Pirko351638e2013-05-28 01:30:21 +00001663 struct netdev_notifier_info info;
1664
1665 return call_netdevice_notifiers_info(val, dev, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
stephen hemmingeredf947f2011-03-24 13:24:01 +00001667EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Pablo Neira1cf519002015-05-13 18:19:37 +02001669#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +02001670static struct static_key ingress_needed __read_mostly;
1671
1672void net_inc_ingress_queue(void)
1673{
1674 static_key_slow_inc(&ingress_needed);
1675}
1676EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
1677
1678void net_dec_ingress_queue(void)
1679{
1680 static_key_slow_dec(&ingress_needed);
1681}
1682EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
1683#endif
1684
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001685#ifdef CONFIG_NET_EGRESS
1686static struct static_key egress_needed __read_mostly;
1687
1688void net_inc_egress_queue(void)
1689{
1690 static_key_slow_inc(&egress_needed);
1691}
1692EXPORT_SYMBOL_GPL(net_inc_egress_queue);
1693
1694void net_dec_egress_queue(void)
1695{
1696 static_key_slow_dec(&egress_needed);
1697}
1698EXPORT_SYMBOL_GPL(net_dec_egress_queue);
1699#endif
1700
Ingo Molnarc5905af2012-02-24 08:31:31 +01001701static struct static_key netstamp_needed __read_mostly;
Eric Dumazetb90e5792011-11-28 11:16:50 +00001702#ifdef HAVE_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00001703static atomic_t netstamp_needed_deferred;
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001704static atomic_t netstamp_wanted;
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001705static void netstamp_clear(struct work_struct *work)
1706{
1707 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001708 int wanted;
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001709
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001710 wanted = atomic_add_return(deferred, &netstamp_wanted);
1711 if (wanted > 0)
1712 static_key_enable(&netstamp_needed);
1713 else
1714 static_key_disable(&netstamp_needed);
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001715}
1716static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001717#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719void net_enable_timestamp(void)
1720{
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001721#ifdef HAVE_JUMP_LABEL
1722 int wanted;
1723
1724 while (1) {
1725 wanted = atomic_read(&netstamp_wanted);
1726 if (wanted <= 0)
1727 break;
1728 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
1729 return;
1730 }
1731 atomic_inc(&netstamp_needed_deferred);
1732 schedule_work(&netstamp_work);
1733#else
Ingo Molnarc5905af2012-02-24 08:31:31 +01001734 static_key_slow_inc(&netstamp_needed);
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001735#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001737EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739void net_disable_timestamp(void)
1740{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001741#ifdef HAVE_JUMP_LABEL
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001742 int wanted;
1743
1744 while (1) {
1745 wanted = atomic_read(&netstamp_wanted);
1746 if (wanted <= 1)
1747 break;
1748 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
1749 return;
1750 }
1751 atomic_dec(&netstamp_needed_deferred);
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001752 schedule_work(&netstamp_work);
1753#else
Ingo Molnarc5905af2012-02-24 08:31:31 +01001754 static_key_slow_dec(&netstamp_needed);
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001755#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001757EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Eric Dumazet3b098e22010-05-15 23:57:10 -07001759static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
Eric Dumazet588f0332011-11-15 04:12:55 +00001761 skb->tstamp.tv64 = 0;
Ingo Molnarc5905af2012-02-24 08:31:31 +01001762 if (static_key_false(&netstamp_needed))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001763 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765
Eric Dumazet588f0332011-11-15 04:12:55 +00001766#define net_timestamp_check(COND, SKB) \
Ingo Molnarc5905af2012-02-24 08:31:31 +01001767 if (static_key_false(&netstamp_needed)) { \
Eric Dumazet588f0332011-11-15 04:12:55 +00001768 if ((COND) && !(SKB)->tstamp.tv64) \
1769 __net_timestamp(SKB); \
1770 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07001771
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02001772bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001773{
1774 unsigned int len;
1775
1776 if (!(dev->flags & IFF_UP))
1777 return false;
1778
1779 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1780 if (skb->len <= len)
1781 return true;
1782
1783 /* if TSO is enabled, we don't care about the length as the packet
1784 * could be forwarded without being segmented before
1785 */
1786 if (skb_is_gso(skb))
1787 return true;
1788
1789 return false;
1790}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001791EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001792
Herbert Xua0265d22014-04-17 13:45:03 +08001793int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1794{
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001795 int ret = ____dev_forward_skb(dev, skb);
1796
1797 if (likely(!ret)) {
1798 skb->protocol = eth_type_trans(skb, dev);
1799 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08001800 }
1801
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001802 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08001803}
1804EXPORT_SYMBOL_GPL(__dev_forward_skb);
1805
Arnd Bergmann44540962009-11-26 06:07:08 +00001806/**
1807 * dev_forward_skb - loopback an skb to another netif
1808 *
1809 * @dev: destination network device
1810 * @skb: buffer to forward
1811 *
1812 * return values:
1813 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07001814 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00001815 *
1816 * dev_forward_skb can be used for injecting an skb from the
1817 * start_xmit function of one device into the receive queue
1818 * of another device.
1819 *
1820 * The receiving device may be in another namespace, so
1821 * we have to clear all information in the skb that could
1822 * impact namespace isolation.
1823 */
1824int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1825{
Herbert Xua0265d22014-04-17 13:45:03 +08001826 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00001827}
1828EXPORT_SYMBOL_GPL(dev_forward_skb);
1829
Changli Gao71d9dec2010-12-15 19:57:25 +00001830static inline int deliver_skb(struct sk_buff *skb,
1831 struct packet_type *pt_prev,
1832 struct net_device *orig_dev)
1833{
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00001834 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
1835 return -ENOMEM;
Changli Gao71d9dec2010-12-15 19:57:25 +00001836 atomic_inc(&skb->users);
1837 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1838}
1839
Salam Noureddine7866a622015-01-27 11:35:48 -08001840static inline void deliver_ptype_list_skb(struct sk_buff *skb,
1841 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001842 struct net_device *orig_dev,
1843 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08001844 struct list_head *ptype_list)
1845{
1846 struct packet_type *ptype, *pt_prev = *pt;
1847
1848 list_for_each_entry_rcu(ptype, ptype_list, list) {
1849 if (ptype->type != type)
1850 continue;
1851 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001852 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08001853 pt_prev = ptype;
1854 }
1855 *pt = pt_prev;
1856}
1857
Eric Leblondc0de08d2012-08-16 22:02:58 +00001858static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1859{
Eric Leblonda3d744e2012-11-06 02:10:10 +00001860 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001861 return false;
1862
1863 if (ptype->id_match)
1864 return ptype->id_match(ptype, skb->sk);
1865 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
1866 return true;
1867
1868 return false;
1869}
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871/*
1872 * Support routine. Sends outgoing frames to any network
1873 * taps currently in use.
1874 */
1875
David Ahern74b20582016-05-10 11:19:50 -07001876void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877{
1878 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00001879 struct sk_buff *skb2 = NULL;
1880 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08001881 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08001884again:
1885 list_for_each_entry_rcu(ptype, ptype_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 /* Never send packets back to the socket
1887 * they originated from - MvS (miquels@drinkel.ow.org)
1888 */
Salam Noureddine7866a622015-01-27 11:35:48 -08001889 if (skb_loop_sk(ptype, skb))
1890 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00001891
Salam Noureddine7866a622015-01-27 11:35:48 -08001892 if (pt_prev) {
1893 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00001894 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08001895 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
Salam Noureddine7866a622015-01-27 11:35:48 -08001897
1898 /* need to clone skb, done only once */
1899 skb2 = skb_clone(skb, GFP_ATOMIC);
1900 if (!skb2)
1901 goto out_unlock;
1902
1903 net_timestamp_set(skb2);
1904
1905 /* skb->nh should be correctly
1906 * set by sender, so that the second statement is
1907 * just protection against buggy protocols.
1908 */
1909 skb_reset_mac_header(skb2);
1910
1911 if (skb_network_header(skb2) < skb2->data ||
1912 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
1913 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
1914 ntohs(skb2->protocol),
1915 dev->name);
1916 skb_reset_network_header(skb2);
1917 }
1918
1919 skb2->transport_header = skb2->network_header;
1920 skb2->pkt_type = PACKET_OUTGOING;
1921 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
Salam Noureddine7866a622015-01-27 11:35:48 -08001923
1924 if (ptype_list == &ptype_all) {
1925 ptype_list = &dev->ptype_all;
1926 goto again;
1927 }
1928out_unlock:
Changli Gao71d9dec2010-12-15 19:57:25 +00001929 if (pt_prev)
1930 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 rcu_read_unlock();
1932}
David Ahern74b20582016-05-10 11:19:50 -07001933EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Ben Hutchings2c530402012-07-10 10:55:09 +00001935/**
1936 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00001937 * @dev: Network device
1938 * @txq: number of queues available
1939 *
1940 * If real_num_tx_queues is changed the tc mappings may no longer be
1941 * valid. To resolve this verify the tc mapping remains valid and if
1942 * not NULL the mapping. With no priorities mapping to this
1943 * offset/count pair it will no longer be used. In the worst case TC0
1944 * is invalid nothing can be done so disable priority mappings. If is
1945 * expected that drivers will fix this mapping if they can before
1946 * calling netif_set_real_num_tx_queues.
1947 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00001948static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00001949{
1950 int i;
1951 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
1952
1953 /* If TC0 is invalidated disable TC mapping */
1954 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001955 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00001956 dev->num_tc = 0;
1957 return;
1958 }
1959
1960 /* Invalidated prio to tc mappings set to TC0 */
1961 for (i = 1; i < TC_BITMASK + 1; i++) {
1962 int q = netdev_get_prio_tc_map(dev, i);
1963
1964 tc = &dev->tc_to_txq[q];
1965 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001966 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
1967 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00001968 netdev_set_prio_tc_map(dev, i, 0);
1969 }
1970 }
1971}
1972
Alexander Duyck537c00d2013-01-10 08:57:02 +00001973#ifdef CONFIG_XPS
1974static DEFINE_MUTEX(xps_map_mutex);
1975#define xmap_dereference(P) \
1976 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
1977
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001978static struct xps_map *remove_xps_queue(struct xps_dev_maps *dev_maps,
1979 int cpu, u16 index)
1980{
1981 struct xps_map *map = NULL;
1982 int pos;
1983
1984 if (dev_maps)
1985 map = xmap_dereference(dev_maps->cpu_map[cpu]);
1986
1987 for (pos = 0; map && pos < map->len; pos++) {
1988 if (map->queues[pos] == index) {
1989 if (map->len > 1) {
1990 map->queues[pos] = map->queues[--map->len];
1991 } else {
1992 RCU_INIT_POINTER(dev_maps->cpu_map[cpu], NULL);
1993 kfree_rcu(map, rcu);
1994 map = NULL;
1995 }
1996 break;
1997 }
1998 }
1999
2000 return map;
2001}
2002
Alexander Duyck024e9672013-01-10 08:57:46 +00002003static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002004{
2005 struct xps_dev_maps *dev_maps;
Alexander Duyck024e9672013-01-10 08:57:46 +00002006 int cpu, i;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002007 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002008
2009 mutex_lock(&xps_map_mutex);
2010 dev_maps = xmap_dereference(dev->xps_maps);
2011
2012 if (!dev_maps)
2013 goto out_no_maps;
2014
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002015 for_each_possible_cpu(cpu) {
Alexander Duyck024e9672013-01-10 08:57:46 +00002016 for (i = index; i < dev->num_tx_queues; i++) {
2017 if (!remove_xps_queue(dev_maps, cpu, i))
2018 break;
2019 }
2020 if (i == dev->num_tx_queues)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002021 active = true;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002022 }
2023
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002024 if (!active) {
Alexander Duyck537c00d2013-01-10 08:57:02 +00002025 RCU_INIT_POINTER(dev->xps_maps, NULL);
2026 kfree_rcu(dev_maps, rcu);
2027 }
2028
Alexander Duyck024e9672013-01-10 08:57:46 +00002029 for (i = index; i < dev->num_tx_queues; i++)
2030 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, i),
2031 NUMA_NO_NODE);
2032
Alexander Duyck537c00d2013-01-10 08:57:02 +00002033out_no_maps:
2034 mutex_unlock(&xps_map_mutex);
2035}
2036
Alexander Duyck01c5f862013-01-10 08:57:35 +00002037static struct xps_map *expand_xps_map(struct xps_map *map,
2038 int cpu, u16 index)
2039{
2040 struct xps_map *new_map;
2041 int alloc_len = XPS_MIN_MAP_ALLOC;
2042 int i, pos;
2043
2044 for (pos = 0; map && pos < map->len; pos++) {
2045 if (map->queues[pos] != index)
2046 continue;
2047 return map;
2048 }
2049
2050 /* Need to add queue to this CPU's existing map */
2051 if (map) {
2052 if (pos < map->alloc_len)
2053 return map;
2054
2055 alloc_len = map->alloc_len * 2;
2056 }
2057
2058 /* Need to allocate new map to store queue on this CPU's map */
2059 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2060 cpu_to_node(cpu));
2061 if (!new_map)
2062 return NULL;
2063
2064 for (i = 0; i < pos; i++)
2065 new_map->queues[i] = map->queues[i];
2066 new_map->alloc_len = alloc_len;
2067 new_map->len = pos;
2068
2069 return new_map;
2070}
2071
Michael S. Tsirkin35735402013-10-02 09:14:06 +03002072int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2073 u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002074{
Alexander Duyck01c5f862013-01-10 08:57:35 +00002075 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002076 struct xps_map *map, *new_map;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002077 int maps_sz = max_t(unsigned int, XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002078 int cpu, numa_node_id = -2;
2079 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002080
2081 mutex_lock(&xps_map_mutex);
2082
2083 dev_maps = xmap_dereference(dev->xps_maps);
2084
Alexander Duyck01c5f862013-01-10 08:57:35 +00002085 /* allocate memory for queue storage */
2086 for_each_online_cpu(cpu) {
2087 if (!cpumask_test_cpu(cpu, mask))
2088 continue;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002089
Alexander Duyck01c5f862013-01-10 08:57:35 +00002090 if (!new_dev_maps)
2091 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002092 if (!new_dev_maps) {
2093 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002094 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002095 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002096
2097 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2098 NULL;
2099
2100 map = expand_xps_map(map, cpu, index);
2101 if (!map)
2102 goto error;
2103
2104 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
2105 }
2106
2107 if (!new_dev_maps)
2108 goto out_no_new_maps;
2109
2110 for_each_possible_cpu(cpu) {
2111 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu)) {
2112 /* add queue to CPU maps */
2113 int pos = 0;
2114
2115 map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2116 while ((pos < map->len) && (map->queues[pos] != index))
2117 pos++;
2118
2119 if (pos == map->len)
2120 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002121#ifdef CONFIG_NUMA
Alexander Duyck537c00d2013-01-10 08:57:02 +00002122 if (numa_node_id == -2)
2123 numa_node_id = cpu_to_node(cpu);
2124 else if (numa_node_id != cpu_to_node(cpu))
2125 numa_node_id = -1;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002126#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002127 } else if (dev_maps) {
2128 /* fill in the new device map from the old device map */
2129 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2130 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002131 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002132
Alexander Duyck537c00d2013-01-10 08:57:02 +00002133 }
2134
Alexander Duyck01c5f862013-01-10 08:57:35 +00002135 rcu_assign_pointer(dev->xps_maps, new_dev_maps);
2136
Alexander Duyck537c00d2013-01-10 08:57:02 +00002137 /* Cleanup old maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002138 if (dev_maps) {
2139 for_each_possible_cpu(cpu) {
2140 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2141 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2142 if (map && map != new_map)
2143 kfree_rcu(map, rcu);
2144 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002145
Alexander Duyck537c00d2013-01-10 08:57:02 +00002146 kfree_rcu(dev_maps, rcu);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002147 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002148
Alexander Duyck01c5f862013-01-10 08:57:35 +00002149 dev_maps = new_dev_maps;
2150 active = true;
2151
2152out_no_new_maps:
2153 /* update Tx queue numa node */
Alexander Duyck537c00d2013-01-10 08:57:02 +00002154 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2155 (numa_node_id >= 0) ? numa_node_id :
2156 NUMA_NO_NODE);
2157
Alexander Duyck01c5f862013-01-10 08:57:35 +00002158 if (!dev_maps)
2159 goto out_no_maps;
2160
2161 /* removes queue from unused CPUs */
2162 for_each_possible_cpu(cpu) {
2163 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu))
2164 continue;
2165
2166 if (remove_xps_queue(dev_maps, cpu, index))
2167 active = true;
2168 }
2169
2170 /* free map if not active */
2171 if (!active) {
2172 RCU_INIT_POINTER(dev->xps_maps, NULL);
2173 kfree_rcu(dev_maps, rcu);
2174 }
2175
2176out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002177 mutex_unlock(&xps_map_mutex);
2178
2179 return 0;
2180error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002181 /* remove any maps that we added */
2182 for_each_possible_cpu(cpu) {
2183 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2184 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2185 NULL;
2186 if (new_map && new_map != map)
2187 kfree(new_map);
2188 }
2189
Alexander Duyck537c00d2013-01-10 08:57:02 +00002190 mutex_unlock(&xps_map_mutex);
2191
Alexander Duyck537c00d2013-01-10 08:57:02 +00002192 kfree(new_dev_maps);
2193 return -ENOMEM;
2194}
2195EXPORT_SYMBOL(netif_set_xps_queue);
2196
2197#endif
John Fastabendf0796d52010-07-01 13:21:57 +00002198/*
2199 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
2200 * greater then real_num_tx_queues stale skbs on the qdisc must be flushed.
2201 */
Tom Herberte6484932010-10-18 18:04:39 +00002202int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002203{
Tom Herbert1d24eb42010-11-21 13:17:27 +00002204 int rc;
2205
Tom Herberte6484932010-10-18 18:04:39 +00002206 if (txq < 1 || txq > dev->num_tx_queues)
2207 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002208
Ben Hutchings5c565802011-02-15 19:39:21 +00002209 if (dev->reg_state == NETREG_REGISTERED ||
2210 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002211 ASSERT_RTNL();
2212
Tom Herbert1d24eb42010-11-21 13:17:27 +00002213 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2214 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002215 if (rc)
2216 return rc;
2217
John Fastabend4f57c082011-01-17 08:06:04 +00002218 if (dev->num_tc)
2219 netif_setup_tc(dev, txq);
2220
Alexander Duyck024e9672013-01-10 08:57:46 +00002221 if (txq < dev->real_num_tx_queues) {
Tom Herberte6484932010-10-18 18:04:39 +00002222 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002223#ifdef CONFIG_XPS
2224 netif_reset_xps_queues_gt(dev, txq);
2225#endif
2226 }
John Fastabendf0796d52010-07-01 13:21:57 +00002227 }
Tom Herberte6484932010-10-18 18:04:39 +00002228
2229 dev->real_num_tx_queues = txq;
2230 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002231}
2232EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002233
Michael Daltona953be52014-01-16 22:23:28 -08002234#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002235/**
2236 * netif_set_real_num_rx_queues - set actual number of RX queues used
2237 * @dev: Network device
2238 * @rxq: Actual number of RX queues
2239 *
2240 * This must be called either with the rtnl_lock held or before
2241 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002242 * negative error code. If called before registration, it always
2243 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002244 */
2245int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2246{
2247 int rc;
2248
Tom Herbertbd25fa72010-10-18 18:00:16 +00002249 if (rxq < 1 || rxq > dev->num_rx_queues)
2250 return -EINVAL;
2251
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002252 if (dev->reg_state == NETREG_REGISTERED) {
2253 ASSERT_RTNL();
2254
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002255 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2256 rxq);
2257 if (rc)
2258 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002259 }
2260
2261 dev->real_num_rx_queues = rxq;
2262 return 0;
2263}
2264EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2265#endif
2266
Ben Hutchings2c530402012-07-10 10:55:09 +00002267/**
2268 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002269 *
2270 * This routine should set an upper limit on the number of RSS queues
2271 * used by default by multiqueue devices.
2272 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002273int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002274{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05302275 return is_kdump_kernel() ?
2276 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00002277}
2278EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2279
Eric Dumazet3bcb8462016-06-04 20:02:28 -07002280static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002281{
2282 struct softnet_data *sd;
2283 unsigned long flags;
2284
2285 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05002286 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002287 q->next_sched = NULL;
2288 *sd->output_queue_tailp = q;
2289 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002290 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2291 local_irq_restore(flags);
2292}
2293
David S. Miller37437bb2008-07-16 02:15:04 -07002294void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002295{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002296 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2297 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002298}
2299EXPORT_SYMBOL(__netif_schedule);
2300
Eric Dumazete6247022013-12-05 04:45:08 -08002301struct dev_kfree_skb_cb {
2302 enum skb_free_reason reason;
2303};
2304
2305static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002306{
Eric Dumazete6247022013-12-05 04:45:08 -08002307 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002308}
Denis Vlasenko56079432006-03-29 15:57:29 -08002309
John Fastabend46e5da42014-09-12 20:04:52 -07002310void netif_schedule_queue(struct netdev_queue *txq)
2311{
2312 rcu_read_lock();
2313 if (!(txq->state & QUEUE_STATE_ANY_XOFF)) {
2314 struct Qdisc *q = rcu_dereference(txq->qdisc);
2315
2316 __netif_schedule(q);
2317 }
2318 rcu_read_unlock();
2319}
2320EXPORT_SYMBOL(netif_schedule_queue);
2321
2322/**
2323 * netif_wake_subqueue - allow sending packets on subqueue
2324 * @dev: network device
2325 * @queue_index: sub queue index
2326 *
2327 * Resume individual transmit queue of a device with multiple transmit queues.
2328 */
2329void netif_wake_subqueue(struct net_device *dev, u16 queue_index)
2330{
2331 struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
2332
2333 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &txq->state)) {
2334 struct Qdisc *q;
2335
2336 rcu_read_lock();
2337 q = rcu_dereference(txq->qdisc);
2338 __netif_schedule(q);
2339 rcu_read_unlock();
2340 }
2341}
2342EXPORT_SYMBOL(netif_wake_subqueue);
2343
2344void netif_tx_wake_queue(struct netdev_queue *dev_queue)
2345{
2346 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
2347 struct Qdisc *q;
2348
2349 rcu_read_lock();
2350 q = rcu_dereference(dev_queue->qdisc);
2351 __netif_schedule(q);
2352 rcu_read_unlock();
2353 }
2354}
2355EXPORT_SYMBOL(netif_tx_wake_queue);
2356
Eric Dumazete6247022013-12-05 04:45:08 -08002357void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2358{
2359 unsigned long flags;
2360
Myungho Jung1dee03a2017-04-25 11:58:15 -07002361 if (unlikely(!skb))
2362 return;
2363
Eric Dumazete6247022013-12-05 04:45:08 -08002364 if (likely(atomic_read(&skb->users) == 1)) {
2365 smp_rmb();
2366 atomic_set(&skb->users, 0);
2367 } else if (likely(!atomic_dec_and_test(&skb->users))) {
2368 return;
2369 }
2370 get_kfree_skb_cb(skb)->reason = reason;
2371 local_irq_save(flags);
2372 skb->next = __this_cpu_read(softnet_data.completion_queue);
2373 __this_cpu_write(softnet_data.completion_queue, skb);
2374 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2375 local_irq_restore(flags);
2376}
2377EXPORT_SYMBOL(__dev_kfree_skb_irq);
2378
2379void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002380{
2381 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002382 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002383 else
2384 dev_kfree_skb(skb);
2385}
Eric Dumazete6247022013-12-05 04:45:08 -08002386EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002387
2388
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002389/**
2390 * netif_device_detach - mark device as removed
2391 * @dev: network device
2392 *
2393 * Mark device as removed from system and therefore no longer available.
2394 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002395void netif_device_detach(struct net_device *dev)
2396{
2397 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2398 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002399 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002400 }
2401}
2402EXPORT_SYMBOL(netif_device_detach);
2403
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002404/**
2405 * netif_device_attach - mark device as attached
2406 * @dev: network device
2407 *
2408 * Mark device as attached from system and restart if needed.
2409 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002410void netif_device_attach(struct net_device *dev)
2411{
2412 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2413 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002414 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002415 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002416 }
2417}
2418EXPORT_SYMBOL(netif_device_attach);
2419
Jiri Pirko5605c762015-05-12 14:56:12 +02002420/*
2421 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
2422 * to be used as a distribution range.
2423 */
2424u16 __skb_tx_hash(const struct net_device *dev, struct sk_buff *skb,
2425 unsigned int num_tx_queues)
2426{
2427 u32 hash;
2428 u16 qoffset = 0;
2429 u16 qcount = num_tx_queues;
2430
2431 if (skb_rx_queue_recorded(skb)) {
2432 hash = skb_get_rx_queue(skb);
2433 while (unlikely(hash >= num_tx_queues))
2434 hash -= num_tx_queues;
2435 return hash;
2436 }
2437
2438 if (dev->num_tc) {
2439 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
2440 qoffset = dev->tc_to_txq[tc].offset;
2441 qcount = dev->tc_to_txq[tc].count;
2442 }
2443
2444 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
2445}
2446EXPORT_SYMBOL(__skb_tx_hash);
2447
Ben Hutchings36c92472012-01-17 07:57:56 +00002448static void skb_warn_bad_offload(const struct sk_buff *skb)
2449{
Wei Tang84d15ae2016-06-16 21:17:49 +08002450 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00002451 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01002452 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00002453
Ben Greearc846ad92013-04-19 10:45:52 +00002454 if (!net_ratelimit())
2455 return;
2456
Bjørn Mork88ad4172015-11-16 19:16:40 +01002457 if (dev) {
2458 if (dev->dev.parent)
2459 name = dev_driver_string(dev->dev.parent);
2460 else
2461 name = netdev_name(dev);
2462 }
Ben Hutchings36c92472012-01-17 07:57:56 +00002463 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2464 "gso_type=%d ip_summed=%d\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01002465 name, dev ? &dev->features : &null_features,
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002466 skb->sk ? &skb->sk->sk_route_caps : &null_features,
Ben Hutchings36c92472012-01-17 07:57:56 +00002467 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2468 skb_shinfo(skb)->gso_type, skb->ip_summed);
2469}
2470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471/*
2472 * Invalidate hardware checksum when packet is to be mangled, and
2473 * complete checksum manually on outgoing path.
2474 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002475int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476{
Al Virod3bc23e2006-11-14 21:24:49 -08002477 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002478 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Patrick McHardy84fa7932006-08-29 16:44:56 -07002480 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002481 goto out_set_summed;
2482
2483 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002484 skb_warn_bad_offload(skb);
2485 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 }
2487
Eric Dumazetcef401d2013-01-25 20:34:37 +00002488 /* Before computing a checksum, we should make sure no frag could
2489 * be modified by an external entity : checksum could be wrong.
2490 */
2491 if (skb_has_shared_frag(skb)) {
2492 ret = __skb_linearize(skb);
2493 if (ret)
2494 goto out;
2495 }
2496
Michał Mirosław55508d62010-12-14 15:24:08 +00002497 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002498 BUG_ON(offset >= skb_headlen(skb));
2499 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2500
2501 offset += skb->csum_offset;
2502 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2503
2504 if (skb_cloned(skb) &&
2505 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2507 if (ret)
2508 goto out;
2509 }
2510
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07002511 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07002512out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002514out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 return ret;
2516}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002517EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Tom Herbert6ae23ad2015-12-14 11:19:46 -08002519/* skb_csum_offload_check - Driver helper function to determine if a device
2520 * with limited checksum offload capabilities is able to offload the checksum
2521 * for a given packet.
2522 *
2523 * Arguments:
2524 * skb - sk_buff for the packet in question
2525 * spec - contains the description of what device can offload
2526 * csum_encapped - returns true if the checksum being offloaded is
2527 * encpasulated. That is it is checksum for the transport header
2528 * in the inner headers.
2529 * checksum_help - when set indicates that helper function should
2530 * call skb_checksum_help if offload checks fail
2531 *
2532 * Returns:
2533 * true: Packet has passed the checksum checks and should be offloadable to
2534 * the device (a driver may still need to check for additional
2535 * restrictions of its device)
2536 * false: Checksum is not offloadable. If checksum_help was set then
2537 * skb_checksum_help was called to resolve checksum for non-GSO
2538 * packets and when IP protocol is not SCTP
2539 */
2540bool __skb_csum_offload_chk(struct sk_buff *skb,
2541 const struct skb_csum_offl_spec *spec,
2542 bool *csum_encapped,
2543 bool csum_help)
2544{
2545 struct iphdr *iph;
2546 struct ipv6hdr *ipv6;
2547 void *nhdr;
2548 int protocol;
2549 u8 ip_proto;
2550
2551 if (skb->protocol == htons(ETH_P_8021Q) ||
2552 skb->protocol == htons(ETH_P_8021AD)) {
2553 if (!spec->vlan_okay)
2554 goto need_help;
2555 }
2556
2557 /* We check whether the checksum refers to a transport layer checksum in
2558 * the outermost header or an encapsulated transport layer checksum that
2559 * corresponds to the inner headers of the skb. If the checksum is for
2560 * something else in the packet we need help.
2561 */
2562 if (skb_checksum_start_offset(skb) == skb_transport_offset(skb)) {
2563 /* Non-encapsulated checksum */
2564 protocol = eproto_to_ipproto(vlan_get_protocol(skb));
2565 nhdr = skb_network_header(skb);
2566 *csum_encapped = false;
2567 if (spec->no_not_encapped)
2568 goto need_help;
2569 } else if (skb->encapsulation && spec->encap_okay &&
2570 skb_checksum_start_offset(skb) ==
2571 skb_inner_transport_offset(skb)) {
2572 /* Encapsulated checksum */
2573 *csum_encapped = true;
2574 switch (skb->inner_protocol_type) {
2575 case ENCAP_TYPE_ETHER:
2576 protocol = eproto_to_ipproto(skb->inner_protocol);
2577 break;
2578 case ENCAP_TYPE_IPPROTO:
2579 protocol = skb->inner_protocol;
2580 break;
2581 }
2582 nhdr = skb_inner_network_header(skb);
2583 } else {
2584 goto need_help;
2585 }
2586
2587 switch (protocol) {
2588 case IPPROTO_IP:
2589 if (!spec->ipv4_okay)
2590 goto need_help;
2591 iph = nhdr;
2592 ip_proto = iph->protocol;
2593 if (iph->ihl != 5 && !spec->ip_options_okay)
2594 goto need_help;
2595 break;
2596 case IPPROTO_IPV6:
2597 if (!spec->ipv6_okay)
2598 goto need_help;
2599 if (spec->no_encapped_ipv6 && *csum_encapped)
2600 goto need_help;
2601 ipv6 = nhdr;
2602 nhdr += sizeof(*ipv6);
2603 ip_proto = ipv6->nexthdr;
2604 break;
2605 default:
2606 goto need_help;
2607 }
2608
2609ip_proto_again:
2610 switch (ip_proto) {
2611 case IPPROTO_TCP:
2612 if (!spec->tcp_okay ||
2613 skb->csum_offset != offsetof(struct tcphdr, check))
2614 goto need_help;
2615 break;
2616 case IPPROTO_UDP:
2617 if (!spec->udp_okay ||
2618 skb->csum_offset != offsetof(struct udphdr, check))
2619 goto need_help;
2620 break;
2621 case IPPROTO_SCTP:
2622 if (!spec->sctp_okay ||
2623 skb->csum_offset != offsetof(struct sctphdr, checksum))
2624 goto cant_help;
2625 break;
2626 case NEXTHDR_HOP:
2627 case NEXTHDR_ROUTING:
2628 case NEXTHDR_DEST: {
2629 u8 *opthdr = nhdr;
2630
2631 if (protocol != IPPROTO_IPV6 || !spec->ext_hdrs_okay)
2632 goto need_help;
2633
2634 ip_proto = opthdr[0];
2635 nhdr += (opthdr[1] + 1) << 3;
2636
2637 goto ip_proto_again;
2638 }
2639 default:
2640 goto need_help;
2641 }
2642
2643 /* Passed the tests for offloading checksum */
2644 return true;
2645
2646need_help:
2647 if (csum_help && !skb_shinfo(skb)->gso_size)
2648 skb_checksum_help(skb);
2649cant_help:
2650 return false;
2651}
2652EXPORT_SYMBOL(__skb_csum_offload_chk);
2653
Vlad Yasevich53d64712014-03-27 17:26:18 -04002654__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002655{
2656 __be16 type = skb->protocol;
2657
Pravin B Shelar19acc322013-05-07 20:41:07 +00002658 /* Tunnel gso handlers can set protocol to ethernet. */
2659 if (type == htons(ETH_P_TEB)) {
2660 struct ethhdr *eth;
2661
2662 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
2663 return 0;
2664
2665 eth = (struct ethhdr *)skb_mac_header(skb);
2666 type = eth->h_proto;
2667 }
2668
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09002669 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002670}
2671
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002672/**
2673 * skb_mac_gso_segment - mac layer segmentation handler.
2674 * @skb: buffer to segment
2675 * @features: features for the output path (see dev->features)
2676 */
2677struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
2678 netdev_features_t features)
2679{
2680 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
2681 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04002682 int vlan_depth = skb->mac_len;
2683 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002684
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002685 if (unlikely(!type))
2686 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002687
Vlad Yasevich53d64712014-03-27 17:26:18 -04002688 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002689
2690 rcu_read_lock();
2691 list_for_each_entry_rcu(ptype, &offload_base, list) {
2692 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002693 segs = ptype->callbacks.gso_segment(skb, features);
2694 break;
2695 }
2696 }
2697 rcu_read_unlock();
2698
2699 __skb_push(skb, skb->data - skb_mac_header(skb));
2700
2701 return segs;
2702}
2703EXPORT_SYMBOL(skb_mac_gso_segment);
2704
2705
Cong Wang12b00042013-02-05 16:36:38 +00002706/* openvswitch calls this on rx path, so we need a different check.
2707 */
2708static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
2709{
2710 if (tx_path)
Eric Dumazet48a70be2017-02-03 14:29:42 -08002711 return skb->ip_summed != CHECKSUM_PARTIAL &&
Willem de Bruijn69ffc962017-08-08 14:22:55 -04002712 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet48a70be2017-02-03 14:29:42 -08002713
2714 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00002715}
2716
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002717/**
Cong Wang12b00042013-02-05 16:36:38 +00002718 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002719 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002720 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00002721 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002722 *
2723 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07002724 *
2725 * It may return NULL if the skb requires no segmentation. This is
2726 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03002727 *
2728 * Segmentation preserves SKB_SGO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002729 */
Cong Wang12b00042013-02-05 16:36:38 +00002730struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
2731 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002732{
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002733 struct sk_buff *segs;
2734
Cong Wang12b00042013-02-05 16:36:38 +00002735 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002736 int err;
2737
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002738 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02002739 err = skb_cow_head(skb, 0);
2740 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07002741 return ERR_PTR(err);
2742 }
2743
Alexander Duyck802ab552016-04-10 21:45:03 -04002744 /* Only report GSO partial support if it will enable us to
2745 * support segmentation on this frame without needing additional
2746 * work.
2747 */
2748 if (features & NETIF_F_GSO_PARTIAL) {
2749 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
2750 struct net_device *dev = skb->dev;
2751
2752 partial_features |= dev->features & dev->gso_partial_features;
2753 if (!skb_gso_ok(skb, features | partial_features))
2754 features &= ~NETIF_F_GSO_PARTIAL;
2755 }
2756
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03002757 BUILD_BUG_ON(SKB_SGO_CB_OFFSET +
2758 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
2759
Pravin B Shelar68c33162013-02-14 14:02:41 +00002760 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07002761 SKB_GSO_CB(skb)->encap_level = 0;
2762
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002763 skb_reset_mac_header(skb);
2764 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002765
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002766 segs = skb_mac_gso_segment(skb, features);
2767
2768 if (unlikely(skb_needs_check(skb, tx_path)))
2769 skb_warn_bad_offload(skb);
2770
2771 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002772}
Cong Wang12b00042013-02-05 16:36:38 +00002773EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002774
Herbert Xufb286bb2005-11-10 13:01:24 -08002775/* Take action when hardware reception checksum errors are detected. */
2776#ifdef CONFIG_BUG
2777void netdev_rx_csum_fault(struct net_device *dev)
2778{
2779 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002780 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08002781 dump_stack();
2782 }
2783}
2784EXPORT_SYMBOL(netdev_rx_csum_fault);
2785#endif
2786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787/* Actually, we should eliminate this check as soon as we know, that:
2788 * 1. IOMMU is present and allows to map all the memory.
2789 * 2. No high memory really exists on this machine.
2790 */
2791
Florian Westphalc1e756b2014-05-05 15:00:44 +02002792static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793{
Herbert Xu3d3a8532006-06-27 13:33:10 -07002794#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 int i;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002796 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002797 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2798 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2799 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002800 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00002801 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002804 if (PCI_DMA_BUS_IS_PHYS) {
2805 struct device *pdev = dev->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Eric Dumazet9092c652010-04-02 13:34:49 -07002807 if (!pdev)
2808 return 0;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002809 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002810 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2811 dma_addr_t addr = page_to_phys(skb_frag_page(frag));
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002812 if (!pdev->dma_mask || addr + PAGE_SIZE - 1 > *pdev->dma_mask)
2813 return 1;
2814 }
2815 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07002816#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 return 0;
2818}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
Simon Horman3b392dd2014-06-04 08:53:17 +09002820/* If MPLS offload request, verify we are testing hardware MPLS features
2821 * instead of standard features for the netdev.
2822 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08002823#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09002824static netdev_features_t net_mpls_features(struct sk_buff *skb,
2825 netdev_features_t features,
2826 __be16 type)
2827{
Simon Horman25cd9ba2014-10-06 05:05:13 -07002828 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09002829 features &= skb->dev->mpls_features;
2830
2831 return features;
2832}
2833#else
2834static netdev_features_t net_mpls_features(struct sk_buff *skb,
2835 netdev_features_t features,
2836 __be16 type)
2837{
2838 return features;
2839}
2840#endif
2841
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002842static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02002843 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00002844{
Vlad Yasevich53d64712014-03-27 17:26:18 -04002845 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09002846 __be16 type;
2847
2848 type = skb_network_protocol(skb, &tmp);
2849 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04002850
Ed Cashinc0d680e2012-09-19 15:49:00 +00002851 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09002852 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07002853 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00002854 }
Eric Dumazet948e1372017-01-18 12:12:17 -08002855 if (illegal_highdma(skb->dev, skb))
2856 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00002857
2858 return features;
2859}
2860
Toshiaki Makitae38f3022015-03-27 14:31:13 +09002861netdev_features_t passthru_features_check(struct sk_buff *skb,
2862 struct net_device *dev,
2863 netdev_features_t features)
2864{
2865 return features;
2866}
2867EXPORT_SYMBOL(passthru_features_check);
2868
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09002869static netdev_features_t dflt_features_check(const struct sk_buff *skb,
2870 struct net_device *dev,
2871 netdev_features_t features)
2872{
2873 return vlan_features_check(skb, features);
2874}
2875
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002876static netdev_features_t gso_features_check(const struct sk_buff *skb,
2877 struct net_device *dev,
2878 netdev_features_t features)
2879{
2880 u16 gso_segs = skb_shinfo(skb)->gso_segs;
2881
2882 if (gso_segs > dev->gso_max_segs)
2883 return features & ~NETIF_F_GSO_MASK;
2884
Alexander Duyck802ab552016-04-10 21:45:03 -04002885 /* Support for GSO partial features requires software
2886 * intervention before we can actually process the packets
2887 * so we need to strip support for any partial features now
2888 * and we can pull them back in after we have partially
2889 * segmented the frame.
2890 */
2891 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
2892 features &= ~dev->gso_partial_features;
2893
2894 /* Make sure to clear the IPv4 ID mangling feature if the
2895 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002896 */
2897 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
2898 struct iphdr *iph = skb->encapsulation ?
2899 inner_ip_hdr(skb) : ip_hdr(skb);
2900
2901 if (!(iph->frag_off & htons(IP_DF)))
2902 features &= ~NETIF_F_TSO_MANGLEID;
2903 }
2904
2905 return features;
2906}
2907
Florian Westphalc1e756b2014-05-05 15:00:44 +02002908netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00002909{
Jesse Gross5f352272014-12-23 22:37:26 -08002910 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07002911 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00002912
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002913 if (skb_is_gso(skb))
2914 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00002915
Jesse Gross5f352272014-12-23 22:37:26 -08002916 /* If encapsulation offload request, verify we are testing
2917 * hardware encapsulation features instead of standard
2918 * features for the netdev
2919 */
2920 if (skb->encapsulation)
2921 features &= dev->hw_enc_features;
2922
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09002923 if (skb_vlan_tagged(skb))
2924 features = netdev_intersect_features(features,
2925 dev->vlan_features |
2926 NETIF_F_HW_VLAN_CTAG_TX |
2927 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00002928
Jesse Gross5f352272014-12-23 22:37:26 -08002929 if (dev->netdev_ops->ndo_features_check)
2930 features &= dev->netdev_ops->ndo_features_check(skb, dev,
2931 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09002932 else
2933 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08002934
Florian Westphalc1e756b2014-05-05 15:00:44 +02002935 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002936}
Florian Westphalc1e756b2014-05-05 15:00:44 +02002937EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002938
David S. Miller2ea25512014-08-29 21:10:01 -07002939static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07002940 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002941{
David S. Miller2ea25512014-08-29 21:10:01 -07002942 unsigned int len;
2943 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08002944
Salam Noureddine7866a622015-01-27 11:35:48 -08002945 if (!list_empty(&ptype_all) || !list_empty(&dev->ptype_all))
David S. Miller2ea25512014-08-29 21:10:01 -07002946 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00002947
David S. Miller2ea25512014-08-29 21:10:01 -07002948 len = skb->len;
2949 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07002950 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07002951 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00002952
Patrick McHardy572a9d72009-11-10 06:14:14 +00002953 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002954}
David S. Miller2ea25512014-08-29 21:10:01 -07002955
Mohammed Javid7ea99462015-10-23 17:27:00 +05302956static int xmit_list(struct sk_buff *list, struct net_device *dev,
2957 struct netdev_queue *txq)
2958{
2959 unsigned int len;
2960 int rc;
2961 struct sk_buff *skb = list, *head = list;
2962
2963 /* Call the taps for individual skb's in the list. */
2964 if (!list_empty(&ptype_all)) {
2965 while (skb) {
2966 struct sk_buff *next = skb->next;
2967
2968 skb->next = NULL;
2969
2970 dev_queue_xmit_nit(skb, dev);
2971
2972 skb = next;
2973 /* Keep the original list intact. */
2974 head->next = skb;
2975 head = head->next;
2976 }
2977 }
2978
2979 len = list->len;
2980 trace_net_dev_start_xmit(list, dev);
2981 rc = netdev_start_xmit(list, dev, txq, false);
2982 trace_net_dev_xmit(list, rc, dev, len);
2983
2984 return rc;
2985}
2986
David S. Miller8dcda222014-09-01 15:06:40 -07002987struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
2988 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07002989{
2990 struct sk_buff *skb = first;
2991 int rc = NETDEV_TX_OK;
2992
2993 while (skb) {
2994 struct sk_buff *next = skb->next;
2995
2996 skb->next = NULL;
David S. Miller95f6b3d2014-08-29 21:57:30 -07002997 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07002998 if (unlikely(!dev_xmit_complete(rc))) {
2999 skb->next = next;
3000 goto out;
3001 }
3002
3003 skb = next;
3004 if (netif_xmit_stopped(txq) && skb) {
3005 rc = NETDEV_TX_BUSY;
3006 break;
3007 }
3008 }
3009
3010out:
3011 *ret = rc;
3012 return skb;
3013}
3014
Mohammed Javid7ea99462015-10-23 17:27:00 +05303015struct sk_buff *dev_hard_start_xmit_list(struct sk_buff *first,
3016 struct net_device *dev,
3017 struct netdev_queue *txq, int *ret)
3018{
3019 struct sk_buff *skb = first;
3020 int rc = NETDEV_TX_OK;
3021
3022 if (skb) {
3023 rc = xmit_list(skb, dev, txq);
3024 if (unlikely(!dev_xmit_complete(rc)))
3025 goto out;
3026 skb = NULL;
3027 }
3028
3029out:
3030 *ret = rc;
3031 return skb;
3032}
3033
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003034static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3035 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003036{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003037 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003038 !vlan_hw_offload_capable(features, skb->vlan_proto))
3039 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003040 return skb;
3041}
3042
Eric Dumazet55a93b32014-10-03 15:31:07 -07003043static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev)
David S. Millereae3f882014-08-30 15:17:13 -07003044{
3045 netdev_features_t features;
3046
David S. Millereae3f882014-08-30 15:17:13 -07003047 features = netif_skb_features(skb);
3048 skb = validate_xmit_vlan(skb, features);
3049 if (unlikely(!skb))
3050 goto out_null;
3051
Johannes Berg8b86a612015-04-17 15:45:04 +02003052 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003053 struct sk_buff *segs;
3054
Subash Abhinov Kasiviswanathan717d3392017-06-26 18:46:50 -06003055 __be16 src_port = tcp_hdr(skb)->source;
3056 __be16 dest_port = tcp_hdr(skb)->dest;
3057
3058 trace_print_skb_gso(skb, src_port, dest_port);
David S. Millerce937182014-08-30 19:22:20 -07003059 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003060 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003061 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003062 } else if (segs) {
3063 consume_skb(skb);
3064 skb = segs;
3065 }
David S. Millereae3f882014-08-30 15:17:13 -07003066 } else {
3067 if (skb_needs_linearize(skb, features) &&
3068 __skb_linearize(skb))
3069 goto out_kfree_skb;
3070
3071 /* If packet is not checksummed and device does not
3072 * support checksumming for this protocol, complete
3073 * checksumming here.
3074 */
3075 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3076 if (skb->encapsulation)
3077 skb_set_inner_transport_header(skb,
3078 skb_checksum_start_offset(skb));
3079 else
3080 skb_set_transport_header(skb,
3081 skb_checksum_start_offset(skb));
Tom Herberta1882222015-12-14 11:19:43 -08003082 if (!(features & NETIF_F_CSUM_MASK) &&
David S. Millereae3f882014-08-30 15:17:13 -07003083 skb_checksum_help(skb))
3084 goto out_kfree_skb;
3085 }
3086 }
3087
3088 return skb;
3089
3090out_kfree_skb:
3091 kfree_skb(skb);
3092out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003093 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003094 return NULL;
3095}
3096
Eric Dumazet55a93b32014-10-03 15:31:07 -07003097struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev)
3098{
3099 struct sk_buff *next, *head = NULL, *tail;
3100
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003101 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003102 next = skb->next;
3103 skb->next = NULL;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003104
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003105 /* in case skb wont be segmented, point to itself */
3106 skb->prev = skb;
3107
3108 skb = validate_xmit_skb(skb, dev);
3109 if (!skb)
3110 continue;
3111
3112 if (!head)
3113 head = skb;
3114 else
3115 tail->next = skb;
3116 /* If skb was segmented, skb->prev points to
3117 * the last segment. If not, it still contains skb.
3118 */
3119 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003120 }
3121 return head;
3122}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003123EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003124
Eric Dumazet1def9232013-01-10 12:36:42 +00003125static void qdisc_pkt_len_init(struct sk_buff *skb)
3126{
3127 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3128
3129 qdisc_skb_cb(skb)->pkt_len = skb->len;
3130
3131 /* To get more precise estimation of bytes sent on wire,
3132 * we add to pkt_len the headers size of all segments
3133 */
3134 if (shinfo->gso_size) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003135 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003136 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003137
Eric Dumazet757b8b12013-01-15 21:14:21 -08003138 /* mac layer + network layer */
3139 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3140
3141 /* + transport layer */
Eric Dumazet1def9232013-01-10 12:36:42 +00003142 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
3143 hdr_len += tcp_hdrlen(skb);
3144 else
3145 hdr_len += sizeof(struct udphdr);
Jason Wang15e5a032013-03-25 20:19:59 +00003146
3147 if (shinfo->gso_type & SKB_GSO_DODGY)
3148 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3149 shinfo->gso_size);
3150
3151 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003152 }
3153}
3154
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003155static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3156 struct net_device *dev,
3157 struct netdev_queue *txq)
3158{
3159 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003160 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003161 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003162 int rc;
3163
Eric Dumazeta2da5702011-01-20 03:48:19 +00003164 qdisc_calculate_pkt_len(skb, q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003165 /*
3166 * Heuristic to force contended enqueues to serialize on a
3167 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003168 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003169 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003170 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003171 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003172 if (unlikely(contended))
3173 spin_lock(&q->busylock);
3174
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003175 spin_lock(root_lock);
3176 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003177 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003178 rc = NET_XMIT_DROP;
3179 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003180 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003181 /*
3182 * This is a work-conserving queue; there are no old skbs
3183 * waiting to be sent out; and the qdisc is not running -
3184 * xmit the skb directly.
3185 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003186
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003187 qdisc_bstats_update(q, skb);
3188
Eric Dumazet55a93b32014-10-03 15:31:07 -07003189 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003190 if (unlikely(contended)) {
3191 spin_unlock(&q->busylock);
3192 contended = false;
3193 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003194 __qdisc_run(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003195 } else
Eric Dumazetbc135b22010-06-02 03:23:51 -07003196 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003197
3198 rc = NET_XMIT_SUCCESS;
3199 } else {
Eric Dumazet520ac302016-06-21 23:16:49 -07003200 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003201 if (qdisc_run_begin(q)) {
3202 if (unlikely(contended)) {
3203 spin_unlock(&q->busylock);
3204 contended = false;
3205 }
3206 __qdisc_run(q);
3207 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003208 }
3209 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003210 if (unlikely(to_free))
3211 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003212 if (unlikely(contended))
3213 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003214 return rc;
3215}
3216
Daniel Borkmann86f85152013-12-29 17:27:11 +01003217#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003218static void skb_update_prio(struct sk_buff *skb)
3219{
Igor Maravic6977a792011-11-25 07:44:54 +00003220 struct netprio_map *map = rcu_dereference_bh(skb->dev->priomap);
Neil Horman5bc14212011-11-22 05:10:51 +00003221
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003222 if (!skb->priority && skb->sk && map) {
Tejun Heo2a56a1f2015-12-07 17:38:52 -05003223 unsigned int prioidx =
3224 sock_cgroup_prioidx(&skb->sk->sk_cgrp_data);
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003225
3226 if (prioidx < map->priomap_len)
3227 skb->priority = map->priomap[prioidx];
3228 }
Neil Horman5bc14212011-11-22 05:10:51 +00003229}
3230#else
3231#define skb_update_prio(skb)
3232#endif
3233
hannes@stressinduktion.orgf60e5992015-04-01 17:07:44 +02003234DEFINE_PER_CPU(int, xmit_recursion);
3235EXPORT_SYMBOL(xmit_recursion);
3236
Dave Jonesd29f7492008-07-22 14:09:06 -07003237/**
Michel Machado95603e22012-06-12 10:16:35 +00003238 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003239 * @net: network namespace this loopback is happening in
3240 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003241 * @skb: buffer to transmit
3242 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003243int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003244{
3245 skb_reset_mac_header(skb);
3246 __skb_pull(skb, skb_network_offset(skb));
3247 skb->pkt_type = PACKET_LOOPBACK;
3248 skb->ip_summed = CHECKSUM_UNNECESSARY;
3249 WARN_ON(!skb_dst(skb));
3250 skb_dst_force(skb);
3251 netif_rx_ni(skb);
3252 return 0;
3253}
3254EXPORT_SYMBOL(dev_loopback_xmit);
3255
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003256#ifdef CONFIG_NET_EGRESS
3257static struct sk_buff *
3258sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3259{
3260 struct tcf_proto *cl = rcu_dereference_bh(dev->egress_cl_list);
3261 struct tcf_result cl_res;
3262
3263 if (!cl)
3264 return skb;
3265
3266 /* skb->tc_verd and qdisc_skb_cb(skb)->pkt_len were already set
3267 * earlier by the caller.
3268 */
3269 qdisc_bstats_cpu_update(cl->q, skb);
3270
3271 switch (tc_classify(skb, cl, &cl_res, false)) {
3272 case TC_ACT_OK:
3273 case TC_ACT_RECLASSIFY:
3274 skb->tc_index = TC_H_MIN(cl_res.classid);
3275 break;
3276 case TC_ACT_SHOT:
3277 qdisc_qstats_cpu_drop(cl->q);
3278 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003279 kfree_skb(skb);
3280 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003281 case TC_ACT_STOLEN:
3282 case TC_ACT_QUEUED:
3283 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003284 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003285 return NULL;
3286 case TC_ACT_REDIRECT:
3287 /* No need to push/pop skb's mac_header here on egress! */
3288 skb_do_redirect(skb);
3289 *ret = NET_XMIT_SUCCESS;
3290 return NULL;
3291 default:
3292 break;
3293 }
3294
3295 return skb;
3296}
3297#endif /* CONFIG_NET_EGRESS */
3298
Jiri Pirko638b2a62015-05-12 14:56:13 +02003299static inline int get_xps_queue(struct net_device *dev, struct sk_buff *skb)
3300{
3301#ifdef CONFIG_XPS
3302 struct xps_dev_maps *dev_maps;
3303 struct xps_map *map;
3304 int queue_index = -1;
3305
3306 rcu_read_lock();
3307 dev_maps = rcu_dereference(dev->xps_maps);
3308 if (dev_maps) {
3309 map = rcu_dereference(
3310 dev_maps->cpu_map[skb->sender_cpu - 1]);
3311 if (map) {
3312 if (map->len == 1)
3313 queue_index = map->queues[0];
3314 else
3315 queue_index = map->queues[reciprocal_scale(skb_get_hash(skb),
3316 map->len)];
3317 if (unlikely(queue_index >= dev->real_num_tx_queues))
3318 queue_index = -1;
3319 }
3320 }
3321 rcu_read_unlock();
3322
3323 return queue_index;
3324#else
3325 return -1;
3326#endif
3327}
3328
3329static u16 __netdev_pick_tx(struct net_device *dev, struct sk_buff *skb)
3330{
3331 struct sock *sk = skb->sk;
3332 int queue_index = sk_tx_queue_get(sk);
3333
3334 if (queue_index < 0 || skb->ooo_okay ||
3335 queue_index >= dev->real_num_tx_queues) {
3336 int new_index = get_xps_queue(dev, skb);
3337 if (new_index < 0)
3338 new_index = skb_tx_hash(dev, skb);
3339
3340 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003341 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02003342 rcu_access_pointer(sk->sk_dst_cache))
3343 sk_tx_queue_set(sk, new_index);
3344
3345 queue_index = new_index;
3346 }
3347
3348 return queue_index;
3349}
3350
3351struct netdev_queue *netdev_pick_tx(struct net_device *dev,
3352 struct sk_buff *skb,
3353 void *accel_priv)
3354{
3355 int queue_index = 0;
3356
3357#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08003358 u32 sender_cpu = skb->sender_cpu - 1;
3359
3360 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003361 skb->sender_cpu = raw_smp_processor_id() + 1;
3362#endif
3363
3364 if (dev->real_num_tx_queues != 1) {
3365 const struct net_device_ops *ops = dev->netdev_ops;
3366 if (ops->ndo_select_queue)
3367 queue_index = ops->ndo_select_queue(dev, skb, accel_priv,
3368 __netdev_pick_tx);
3369 else
3370 queue_index = __netdev_pick_tx(dev, skb);
3371
3372 if (!accel_priv)
3373 queue_index = netdev_cap_txqueue(dev, queue_index);
3374 }
3375
3376 skb_set_queue_mapping(skb, queue_index);
3377 return netdev_get_tx_queue(dev, queue_index);
3378}
3379
Michel Machado95603e22012-06-12 10:16:35 +00003380/**
Jason Wang9d08dd32014-01-20 11:25:13 +08003381 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07003382 * @skb: buffer to transmit
Jason Wang9d08dd32014-01-20 11:25:13 +08003383 * @accel_priv: private data used for L2 forwarding offload
Mohammed Javid7ea99462015-10-23 17:27:00 +05303384 * @skb_list: Boolean used for skb list processing.
Dave Jonesd29f7492008-07-22 14:09:06 -07003385 *
3386 * Queue a buffer for transmission to a network device. The caller must
3387 * have set the device and priority and built the buffer before calling
3388 * this function. The function can be called from an interrupt.
3389 *
3390 * A negative errno code is returned on a failure. A success does not
3391 * guarantee the frame will be transmitted as it may be dropped due
3392 * to congestion or traffic shaping.
3393 *
3394 * -----------------------------------------------------------------------------------
3395 * I notice this method can also return errors from the queue disciplines,
3396 * including NET_XMIT_DROP, which is a positive value. So, errors can also
3397 * be positive.
3398 *
3399 * Regardless of the return value, the skb is consumed, so it is currently
3400 * difficult to retry a send to this method. (You can bump the ref count
3401 * before sending to hold a reference for retry if you are careful.)
3402 *
3403 * When calling this method, interrupts MUST be enabled. This is because
3404 * the BH enable code must have IRQs enabled so that it will not deadlock.
3405 * --BLG
3406 */
Mohammed Javid7ea99462015-10-23 17:27:00 +05303407static int __dev_queue_xmit(struct sk_buff *skb, void *accel_priv,
3408 bool skb_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409{
3410 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07003411 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 struct Qdisc *q;
3413 int rc = -ENOMEM;
3414
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00003415 skb_reset_mac_header(skb);
3416
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003417 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
3418 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
3419
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003420 /* Disable soft irqs for various locks below. Also
3421 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003423 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
Neil Horman5bc14212011-11-22 05:10:51 +00003425 skb_update_prio(skb);
3426
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003427 qdisc_pkt_len_init(skb);
3428#ifdef CONFIG_NET_CLS_ACT
3429 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
3430# ifdef CONFIG_NET_EGRESS
3431 if (static_key_false(&egress_needed)) {
3432 skb = sch_handle_egress(skb, &rc, dev);
3433 if (!skb)
3434 goto out;
3435 }
3436# endif
3437#endif
Eric Dumazet02875872014-10-05 18:38:35 -07003438 /* If device/qdisc don't need skb->dst, release it right now while
3439 * its hot in this cpu cache.
3440 */
3441 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
3442 skb_dst_drop(skb);
3443 else
3444 skb_dst_force(skb);
3445
Jason Wangf663dd92014-01-10 16:18:26 +08003446 txq = netdev_pick_tx(dev, skb, accel_priv);
Paul E. McKenneya898def2010-02-22 17:04:49 -08003447 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07003448
Koki Sanagicf66ba52010-08-23 18:45:02 +09003449 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003451 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07003452 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 }
3454
3455 /* The device has no queue. Common case for software devices:
3456 loopback, all the sorts of tunnels...
3457
Herbert Xu932ff272006-06-09 12:20:56 -07003458 Really, it is unlikely that netif_tx_lock protection is necessary
3459 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 counters.)
3461 However, it is possible, that they rely on protection
3462 made by us here.
3463
3464 Check this and shot the lock. It is not prone from deadlocks.
3465 Either shot noqueue qdisc, it is even simpler 8)
3466 */
3467 if (dev->flags & IFF_UP) {
3468 int cpu = smp_processor_id(); /* ok because BHs are off */
3469
David S. Millerc773e842008-07-08 23:13:53 -07003470 if (txq->xmit_lock_owner != cpu) {
Daniel Borkmanna70b5062016-06-10 21:19:06 +02003471 if (unlikely(__this_cpu_read(xmit_recursion) >
3472 XMIT_RECURSION_LIMIT))
Eric Dumazet745e20f2010-09-29 13:23:09 -07003473 goto recursion_alert;
3474
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003475 skb = validate_xmit_skb(skb, dev);
3476 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07003477 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003478
David S. Millerc773e842008-07-08 23:13:53 -07003479 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480
Tom Herbert734664982011-11-28 16:32:44 +00003481 if (!netif_xmit_stopped(txq)) {
Eric Dumazet745e20f2010-09-29 13:23:09 -07003482 __this_cpu_inc(xmit_recursion);
Mohammed Javid7ea99462015-10-23 17:27:00 +05303483 if (likely(!skb_list))
3484 skb = dev_hard_start_xmit(skb, dev,
3485 txq, &rc);
3486 else
3487 skb = dev_hard_start_xmit_list(skb,
3488 dev,
3489 txq,
3490 &rc);
Eric Dumazet745e20f2010-09-29 13:23:09 -07003491 __this_cpu_dec(xmit_recursion);
Patrick McHardy572a9d72009-11-10 06:14:14 +00003492 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07003493 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 goto out;
3495 }
3496 }
David S. Millerc773e842008-07-08 23:13:53 -07003497 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00003498 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
3499 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 } else {
3501 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07003502 * unfortunately
3503 */
3504recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00003505 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
3506 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 }
3508 }
3509
3510 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07003511 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
Eric Dumazet015f0682014-03-27 08:45:56 -07003513 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003514 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 return rc;
3516out:
Herbert Xud4828d82006-06-22 02:28:18 -07003517 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 return rc;
3519}
Jason Wangf663dd92014-01-10 16:18:26 +08003520
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003521int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08003522{
Mohammed Javid7ea99462015-10-23 17:27:00 +05303523 return __dev_queue_xmit(skb, NULL, false);
Jason Wangf663dd92014-01-10 16:18:26 +08003524}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003525EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526
Jason Wangf663dd92014-01-10 16:18:26 +08003527int dev_queue_xmit_accel(struct sk_buff *skb, void *accel_priv)
3528{
Mohammed Javid7ea99462015-10-23 17:27:00 +05303529 return __dev_queue_xmit(skb, accel_priv, false);
Jason Wangf663dd92014-01-10 16:18:26 +08003530}
3531EXPORT_SYMBOL(dev_queue_xmit_accel);
3532
Mohammed Javid7ea99462015-10-23 17:27:00 +05303533int dev_queue_xmit_list(struct sk_buff *skb)
3534{
3535 return __dev_queue_xmit(skb, NULL, true);
3536}
3537EXPORT_SYMBOL(dev_queue_xmit_list);
3538
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539
3540/*=======================================================================
3541 Receiver routines
3542 =======================================================================*/
3543
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003544int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00003545EXPORT_SYMBOL(netdev_max_backlog);
3546
Eric Dumazet3b098e22010-05-15 23:57:10 -07003547int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003548int netdev_budget __read_mostly = 300;
3549int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003551/* Called with irq disabled */
3552static inline void ____napi_schedule(struct softnet_data *sd,
3553 struct napi_struct *napi)
3554{
3555 list_add_tail(&napi->poll_list, &sd->poll_list);
3556 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3557}
3558
Eric Dumazetdf334542010-03-24 19:13:54 +00003559#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07003560
3561/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003562struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07003563EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003564u32 rps_cpu_mask __read_mostly;
3565EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07003566
Ingo Molnarc5905af2012-02-24 08:31:31 +01003567struct static_key rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04003568EXPORT_SYMBOL(rps_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00003569
Ben Hutchingsc4454772011-01-19 11:03:53 +00003570static struct rps_dev_flow *
3571set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3572 struct rps_dev_flow *rflow, u16 next_cpu)
3573{
Eric Dumazeta31196b2015-04-25 09:35:24 -07003574 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00003575#ifdef CONFIG_RFS_ACCEL
3576 struct netdev_rx_queue *rxqueue;
3577 struct rps_dev_flow_table *flow_table;
3578 struct rps_dev_flow *old_rflow;
3579 u32 flow_id;
3580 u16 rxq_index;
3581 int rc;
3582
3583 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00003584 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
3585 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00003586 goto out;
3587 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
3588 if (rxq_index == skb_get_rx_queue(skb))
3589 goto out;
3590
3591 rxqueue = dev->_rx + rxq_index;
3592 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3593 if (!flow_table)
3594 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07003595 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003596 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
3597 rxq_index, flow_id);
3598 if (rc < 0)
3599 goto out;
3600 old_rflow = rflow;
3601 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00003602 rflow->filter = rc;
3603 if (old_rflow->filter == rflow->filter)
3604 old_rflow->filter = RPS_NO_FILTER;
3605 out:
3606#endif
3607 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00003608 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003609 }
3610
Ben Hutchings09994d12011-10-03 04:42:46 +00003611 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003612 return rflow;
3613}
3614
Tom Herbert0a9627f2010-03-16 08:03:29 +00003615/*
3616 * get_rps_cpu is called from netif_receive_skb and returns the target
3617 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003618 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00003619 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003620static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3621 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003622{
Eric Dumazet567e4b72015-02-06 12:59:01 -08003623 const struct rps_sock_flow_table *sock_flow_table;
3624 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07003625 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003626 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003627 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003628 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07003629 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003630
Tom Herbert0a9627f2010-03-16 08:03:29 +00003631 if (skb_rx_queue_recorded(skb)) {
3632 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003633
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003634 if (unlikely(index >= dev->real_num_rx_queues)) {
3635 WARN_ONCE(dev->real_num_rx_queues > 1,
3636 "%s received packet on queue %u, but number "
3637 "of RX queues is %u\n",
3638 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003639 goto done;
3640 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08003641 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003642 }
3643
Eric Dumazet567e4b72015-02-06 12:59:01 -08003644 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
3645
3646 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3647 map = rcu_dereference(rxqueue->rps_map);
3648 if (!flow_table && !map)
3649 goto done;
3650
Changli Gao2d47b452010-08-17 19:00:56 +00003651 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07003652 hash = skb_get_hash(skb);
3653 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003654 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003655
Tom Herbertfec5e652010-04-16 16:01:27 -07003656 sock_flow_table = rcu_dereference(rps_sock_flow_table);
3657 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003658 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003659 u32 next_cpu;
3660 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07003661
Eric Dumazet567e4b72015-02-06 12:59:01 -08003662 /* First check into global flow table if there is a match */
3663 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
3664 if ((ident ^ hash) & ~rps_cpu_mask)
3665 goto try_rps;
3666
3667 next_cpu = ident & rps_cpu_mask;
3668
3669 /* OK, now we know there is a match,
3670 * we can look at the local (per receive queue) flow table
3671 */
Tom Herbert61b905d2014-03-24 15:34:47 -07003672 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07003673 tcpu = rflow->cpu;
3674
Tom Herbertfec5e652010-04-16 16:01:27 -07003675 /*
3676 * If the desired CPU (where last recvmsg was done) is
3677 * different from current CPU (one in the rx-queue flow
3678 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07003679 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07003680 * - Current CPU is offline.
3681 * - The current CPU's queue tail has advanced beyond the
3682 * last packet that was enqueued using this table entry.
3683 * This guarantees that all previous packets for the flow
3684 * have been dequeued, thus preserving in order delivery.
3685 */
3686 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07003687 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07003688 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00003689 rflow->last_qtail)) >= 0)) {
3690 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003691 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00003692 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00003693
Eric Dumazeta31196b2015-04-25 09:35:24 -07003694 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003695 *rflowp = rflow;
3696 cpu = tcpu;
3697 goto done;
3698 }
3699 }
3700
Eric Dumazet567e4b72015-02-06 12:59:01 -08003701try_rps:
3702
Tom Herbert0a9627f2010-03-16 08:03:29 +00003703 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02003704 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00003705 if (cpu_online(tcpu)) {
3706 cpu = tcpu;
3707 goto done;
3708 }
3709 }
3710
3711done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00003712 return cpu;
3713}
3714
Ben Hutchingsc4454772011-01-19 11:03:53 +00003715#ifdef CONFIG_RFS_ACCEL
3716
3717/**
3718 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
3719 * @dev: Device on which the filter was set
3720 * @rxq_index: RX queue index
3721 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
3722 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
3723 *
3724 * Drivers that implement ndo_rx_flow_steer() should periodically call
3725 * this function for each installed filter and remove the filters for
3726 * which it returns %true.
3727 */
3728bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
3729 u32 flow_id, u16 filter_id)
3730{
3731 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
3732 struct rps_dev_flow_table *flow_table;
3733 struct rps_dev_flow *rflow;
3734 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07003735 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003736
3737 rcu_read_lock();
3738 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3739 if (flow_table && flow_id <= flow_table->mask) {
3740 rflow = &flow_table->flows[flow_id];
3741 cpu = ACCESS_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07003742 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00003743 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
3744 rflow->last_qtail) <
3745 (int)(10 * flow_table->mask)))
3746 expire = false;
3747 }
3748 rcu_read_unlock();
3749 return expire;
3750}
3751EXPORT_SYMBOL(rps_may_expire_flow);
3752
3753#endif /* CONFIG_RFS_ACCEL */
3754
Tom Herbert0a9627f2010-03-16 08:03:29 +00003755/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003756static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003757{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003758 struct softnet_data *sd = data;
3759
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003760 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00003761 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003762}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003763
Tom Herbertfec5e652010-04-16 16:01:27 -07003764#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00003765
3766/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003767 * Check if this softnet_data structure is another cpu one
3768 * If yes, queue it to our IPI list and return 1
3769 * If no, return 0
3770 */
3771static int rps_ipi_queued(struct softnet_data *sd)
3772{
3773#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05003774 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003775
3776 if (sd != mysd) {
3777 sd->rps_ipi_next = mysd->rps_ipi_list;
3778 mysd->rps_ipi_list = sd;
3779
3780 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3781 return 1;
3782 }
3783#endif /* CONFIG_RPS */
3784 return 0;
3785}
3786
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003787#ifdef CONFIG_NET_FLOW_LIMIT
3788int netdev_flow_limit_table_len __read_mostly = (1 << 12);
3789#endif
3790
3791static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
3792{
3793#ifdef CONFIG_NET_FLOW_LIMIT
3794 struct sd_flow_limit *fl;
3795 struct softnet_data *sd;
3796 unsigned int old_flow, new_flow;
3797
3798 if (qlen < (netdev_max_backlog >> 1))
3799 return false;
3800
Christoph Lameter903ceff2014-08-17 12:30:35 -05003801 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003802
3803 rcu_read_lock();
3804 fl = rcu_dereference(sd->flow_limit);
3805 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08003806 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003807 old_flow = fl->history[fl->history_head];
3808 fl->history[fl->history_head] = new_flow;
3809
3810 fl->history_head++;
3811 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
3812
3813 if (likely(fl->buckets[old_flow]))
3814 fl->buckets[old_flow]--;
3815
3816 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
3817 fl->count++;
3818 rcu_read_unlock();
3819 return true;
3820 }
3821 }
3822 rcu_read_unlock();
3823#endif
3824 return false;
3825}
3826
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003827/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00003828 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
3829 * queue (may be a remote CPU queue).
3830 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003831static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
3832 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003833{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003834 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003835 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003836 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003837
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003838 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003839
3840 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003841
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003842 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03003843 if (!netif_running(skb->dev))
3844 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003845 qlen = skb_queue_len(&sd->input_pkt_queue);
3846 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08003847 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00003848enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003849 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003850 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003851 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00003852 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003853 return NET_RX_SUCCESS;
3854 }
3855
Eric Dumazetebda37c22010-05-06 23:51:21 +00003856 /* Schedule NAPI for backlog device
3857 * We can use non atomic operation since we own the queue lock
3858 */
3859 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003860 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003861 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003862 }
3863 goto enqueue;
3864 }
3865
Julian Anastasove9e4dd32015-07-09 09:59:09 +03003866drop:
Changli Gaodee42872010-05-02 05:42:16 +00003867 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003868 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003869
Tom Herbert0a9627f2010-03-16 08:03:29 +00003870 local_irq_restore(flags);
3871
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003872 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003873 kfree_skb(skb);
3874 return NET_RX_DROP;
3875}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003877static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003879 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880
Eric Dumazet588f0332011-11-15 04:12:55 +00003881 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882
Koki Sanagicf66ba52010-08-23 18:45:02 +09003883 trace_netif_rx(skb);
Eric Dumazetdf334542010-03-24 19:13:54 +00003884#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003885 if (static_key_false(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003886 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003887 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Changli Gaocece1942010-08-07 20:35:43 -07003889 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003890 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003891
3892 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003893 if (cpu < 0)
3894 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07003895
3896 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3897
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003898 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07003899 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00003900 } else
3901#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07003902 {
3903 unsigned int qtail;
3904 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
3905 put_cpu();
3906 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003907 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003909
3910/**
3911 * netif_rx - post buffer to the network code
3912 * @skb: buffer to post
3913 *
3914 * This function receives a packet from a device driver and queues it for
3915 * the upper (protocol) levels to process. It always succeeds. The buffer
3916 * may be dropped during processing for congestion control or by the
3917 * protocol layers.
3918 *
3919 * return values:
3920 * NET_RX_SUCCESS (no congestion)
3921 * NET_RX_DROP (packet was dropped)
3922 *
3923 */
3924
3925int netif_rx(struct sk_buff *skb)
3926{
3927 trace_netif_rx_entry(skb);
3928
3929 return netif_rx_internal(skb);
3930}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003931EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
3933int netif_rx_ni(struct sk_buff *skb)
3934{
3935 int err;
3936
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003937 trace_netif_rx_ni_entry(skb);
3938
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003940 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 if (local_softirq_pending())
3942 do_softirq();
3943 preempt_enable();
3944
3945 return err;
3946}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947EXPORT_SYMBOL(netif_rx_ni);
3948
Emese Revfy0766f782016-06-20 20:42:34 +02003949static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950{
Christoph Lameter903ceff2014-08-17 12:30:35 -05003951 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
3953 if (sd->completion_queue) {
3954 struct sk_buff *clist;
3955
3956 local_irq_disable();
3957 clist = sd->completion_queue;
3958 sd->completion_queue = NULL;
3959 local_irq_enable();
3960
3961 while (clist) {
3962 struct sk_buff *skb = clist;
3963 clist = clist->next;
3964
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003965 WARN_ON(atomic_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08003966 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
3967 trace_consume_skb(skb);
3968 else
3969 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01003970
3971 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
3972 __kfree_skb(skb);
3973 else
3974 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01003976
3977 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 }
3979
3980 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07003981 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982
3983 local_irq_disable();
3984 head = sd->output_queue;
3985 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00003986 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 local_irq_enable();
3988
3989 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07003990 struct Qdisc *q = head;
3991 spinlock_t *root_lock;
3992
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 head = head->next_sched;
3994
David S. Miller5fb66222008-08-02 20:02:43 -07003995 root_lock = qdisc_lock(q);
Eric Dumazet3bcb8462016-06-04 20:02:28 -07003996 spin_lock(root_lock);
3997 /* We need to make sure head->next_sched is read
3998 * before clearing __QDISC_STATE_SCHED
3999 */
4000 smp_mb__before_atomic();
4001 clear_bit(__QDISC_STATE_SCHED, &q->state);
4002 qdisc_run(q);
4003 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 }
4005 }
4006}
4007
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04004008#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00004009/* This hook is defined here for ATM LANE */
4010int (*br_fdb_test_addr_hook)(struct net_device *dev,
4011 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07004012EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00004013#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004015static inline struct sk_buff *
4016sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
4017 struct net_device *orig_dev)
Herbert Xuf697c3e2007-10-14 00:38:47 -07004018{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004019#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004020 struct tcf_proto *cl = rcu_dereference_bh(skb->dev->ingress_cl_list);
4021 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00004022
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004023 /* If there's at least one ingress present somewhere (so
4024 * we get here via enabled static key), remaining devices
4025 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004026 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004027 */
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004028 if (!cl)
Daniel Borkmann45771392015-04-10 23:07:54 +02004029 return skb;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004030 if (*pt_prev) {
4031 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4032 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004033 }
4034
Florian Westphal33654952015-05-14 00:36:28 +02004035 qdisc_skb_cb(skb)->pkt_len = skb->len;
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004036 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
Eric Dumazet24ea5912015-07-06 05:18:03 -07004037 qdisc_bstats_cpu_update(cl->q, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004038
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02004039 switch (tc_classify(skb, cl, &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004040 case TC_ACT_OK:
4041 case TC_ACT_RECLASSIFY:
4042 skb->tc_index = TC_H_MIN(cl_res.classid);
4043 break;
4044 case TC_ACT_SHOT:
Eric Dumazet24ea5912015-07-06 05:18:03 -07004045 qdisc_qstats_cpu_drop(cl->q);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004046 kfree_skb(skb);
4047 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004048 case TC_ACT_STOLEN:
4049 case TC_ACT_QUEUED:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004050 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004051 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004052 case TC_ACT_REDIRECT:
4053 /* skb_mac_header check was done by cls/act_bpf, so
4054 * we can safely push the L2 header back before
4055 * redirecting to another netdev
4056 */
4057 __skb_push(skb, skb->mac_len);
4058 skb_do_redirect(skb);
4059 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004060 default:
4061 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004062 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004063#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07004064 return skb;
4065}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004067/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07004068 * netdev_is_rx_handler_busy - check if receive handler is registered
4069 * @dev: device to check
4070 *
4071 * Check if a receive handler is already registered for a given device.
4072 * Return true if there one.
4073 *
4074 * The caller must hold the rtnl_mutex.
4075 */
4076bool netdev_is_rx_handler_busy(struct net_device *dev)
4077{
4078 ASSERT_RTNL();
4079 return dev && rtnl_dereference(dev->rx_handler);
4080}
4081EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
4082
4083/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004084 * netdev_rx_handler_register - register receive handler
4085 * @dev: device to register a handler for
4086 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00004087 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004088 *
Masanari Iidae2278672014-02-18 22:54:36 +09004089 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004090 * called from __netif_receive_skb. A negative errno code is returned
4091 * on a failure.
4092 *
4093 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004094 *
4095 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004096 */
4097int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00004098 rx_handler_func_t *rx_handler,
4099 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004100{
4101 ASSERT_RTNL();
4102
4103 if (dev->rx_handler)
4104 return -EBUSY;
4105
Eric Dumazet00cfec32013-03-29 03:01:22 +00004106 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00004107 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004108 rcu_assign_pointer(dev->rx_handler, rx_handler);
4109
4110 return 0;
4111}
4112EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
4113
4114/**
4115 * netdev_rx_handler_unregister - unregister receive handler
4116 * @dev: device to unregister a handler from
4117 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00004118 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004119 *
4120 * The caller must hold the rtnl_mutex.
4121 */
4122void netdev_rx_handler_unregister(struct net_device *dev)
4123{
4124
4125 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004126 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00004127 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
4128 * section has a guarantee to see a non NULL rx_handler_data
4129 * as well.
4130 */
4131 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004132 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004133}
4134EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
4135
Mel Gormanb4b9e352012-07-31 16:44:26 -07004136/*
4137 * Limit the use of PFMEMALLOC reserves to those protocols that implement
4138 * the special handling of PFMEMALLOC skbs.
4139 */
4140static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
4141{
4142 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07004143 case htons(ETH_P_ARP):
4144 case htons(ETH_P_IP):
4145 case htons(ETH_P_IPV6):
4146 case htons(ETH_P_8021Q):
4147 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07004148 return true;
4149 default:
4150 return false;
4151 }
4152}
4153
Pablo Neirae687ad62015-05-13 18:19:38 +02004154static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
4155 int *ret, struct net_device *orig_dev)
4156{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004157#ifdef CONFIG_NETFILTER_INGRESS
Pablo Neirae687ad62015-05-13 18:19:38 +02004158 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04004159 int ingress_retval;
4160
Pablo Neirae687ad62015-05-13 18:19:38 +02004161 if (*pt_prev) {
4162 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4163 *pt_prev = NULL;
4164 }
4165
Aaron Conole2c1e2702016-09-21 11:35:03 -04004166 rcu_read_lock();
4167 ingress_retval = nf_hook_ingress(skb);
4168 rcu_read_unlock();
4169 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02004170 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004171#endif /* CONFIG_NETFILTER_INGRESS */
Pablo Neirae687ad62015-05-13 18:19:38 +02004172 return 0;
4173}
Pablo Neirae687ad62015-05-13 18:19:38 +02004174
Justin Tee7c888a12017-12-20 08:42:31 -08004175int (*gsb_nw_stack_recv)(struct sk_buff *skb) __rcu __read_mostly;
4176EXPORT_SYMBOL(gsb_nw_stack_recv);
4177
Mohammed Javid9c843412015-07-16 22:43:04 +05304178int (*athrs_fast_nat_recv)(struct sk_buff *skb) __rcu __read_mostly;
4179EXPORT_SYMBOL(athrs_fast_nat_recv);
4180
Ravinder Konka94266eb2015-10-15 19:55:24 +05304181int (*embms_tm_multicast_recv)(struct sk_buff *skb) __rcu __read_mostly;
4182EXPORT_SYMBOL(embms_tm_multicast_recv);
4183
David S. Miller9754e292013-02-14 15:57:38 -05004184static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185{
4186 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004187 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07004188 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004189 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190 int ret = NET_RX_DROP;
Al Viro252e3342006-11-14 20:48:11 -08004191 __be16 type;
Justin Tee7c888a12017-12-20 08:42:31 -08004192 int (*gsb_ns_recv)(struct sk_buff *skb);
Mohammed Javid9c843412015-07-16 22:43:04 +05304193 int (*fast_recv)(struct sk_buff *skb);
Ravinder Konka94266eb2015-10-15 19:55:24 +05304194 int (*embms_recv)(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Eric Dumazet588f0332011-11-15 04:12:55 +00004196 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07004197
Koki Sanagicf66ba52010-08-23 18:45:02 +09004198 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08004199
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07004200 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00004201
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07004202 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00004203 if (!skb_transport_header_was_set(skb))
4204 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00004205 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
4207 pt_prev = NULL;
4208
David S. Miller63d8ea72011-02-28 10:48:59 -08004209another_round:
David S. Millerb6858172012-07-23 16:27:54 -07004210 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08004211
4212 __this_cpu_inc(softnet_data.processed);
4213
Patrick McHardy8ad227f2013-04-19 02:04:31 +00004214 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
4215 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004216 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004217 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004218 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004219 }
4220
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221#ifdef CONFIG_NET_CLS_ACT
4222 if (skb->tc_verd & TC_NCLS) {
4223 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
4224 goto ncls;
4225 }
4226#endif
4227
David S. Miller9754e292013-02-14 15:57:38 -05004228 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07004229 goto skip_taps;
4230
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08004232 if (pt_prev)
4233 ret = deliver_skb(skb, pt_prev, orig_dev);
4234 pt_prev = ptype;
4235 }
4236
4237 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
4238 if (pt_prev)
4239 ret = deliver_skb(skb, pt_prev, orig_dev);
4240 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 }
4242
Mel Gormanb4b9e352012-07-31 16:44:26 -07004243skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02004244#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +02004245 if (static_key_false(&ingress_needed)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004246 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev);
Daniel Borkmann45771392015-04-10 23:07:54 +02004247 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004248 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02004249
4250 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004251 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02004252 }
Pablo Neira1cf519002015-05-13 18:19:37 +02004253#endif
Justin Tee7c888a12017-12-20 08:42:31 -08004254 gsb_ns_recv = rcu_dereference(gsb_nw_stack_recv);
4255 if (gsb_ns_recv) {
4256 if (gsb_ns_recv(skb)) {
4257 ret = NET_RX_SUCCESS;
4258 goto out;
4259 }
4260 }
Mohammed Javid9c843412015-07-16 22:43:04 +05304261 fast_recv = rcu_dereference(athrs_fast_nat_recv);
4262 if (fast_recv) {
4263 if (fast_recv(skb)) {
4264 ret = NET_RX_SUCCESS;
4265 goto out;
4266 }
4267 }
4268
Ravinder Konka94266eb2015-10-15 19:55:24 +05304269 embms_recv = rcu_dereference(embms_tm_multicast_recv);
4270 if (embms_recv)
4271 embms_recv(skb);
4272
Pablo Neira1cf519002015-05-13 18:19:37 +02004273#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmann45771392015-04-10 23:07:54 +02004274 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275ncls:
4276#endif
David S. Miller9754e292013-02-14 15:57:38 -05004277 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07004278 goto drop;
4279
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004280 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00004281 if (pt_prev) {
4282 ret = deliver_skb(skb, pt_prev, orig_dev);
4283 pt_prev = NULL;
4284 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004285 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00004286 goto another_round;
4287 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004288 goto out;
John Fastabend24257172011-10-10 09:16:41 +00004289 }
4290
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004291 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004292 if (rx_handler) {
4293 if (pt_prev) {
4294 ret = deliver_skb(skb, pt_prev, orig_dev);
4295 pt_prev = NULL;
4296 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004297 switch (rx_handler(&skb)) {
4298 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00004299 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004300 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004301 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08004302 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004303 case RX_HANDLER_EXACT:
4304 deliver_exact = true;
4305 case RX_HANDLER_PASS:
4306 break;
4307 default:
4308 BUG();
4309 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004311
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004312 if (unlikely(skb_vlan_tag_present(skb))) {
4313 if (skb_vlan_tag_get_id(skb))
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004314 skb->pkt_type = PACKET_OTHERHOST;
4315 /* Note: we might in the future use prio bits
4316 * and set skb->priority like in vlan_do_receive()
4317 * For the time being, just ignore Priority Code Point
4318 */
4319 skb->vlan_tci = 0;
4320 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004321
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08004323
4324 /* deliver only exact match when indicated */
4325 if (likely(!deliver_exact)) {
4326 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4327 &ptype_base[ntohs(type) &
4328 PTYPE_HASH_MASK]);
4329 }
4330
4331 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4332 &orig_dev->ptype_specific);
4333
4334 if (unlikely(skb->dev != orig_dev)) {
4335 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4336 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 }
4338
4339 if (pt_prev) {
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00004340 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00004341 goto drop;
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00004342 else
4343 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07004345drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05004346 if (!deliver_exact)
4347 atomic_long_inc(&skb->dev->rx_dropped);
4348 else
4349 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 kfree_skb(skb);
4351 /* Jamal, now you will not able to escape explaining
4352 * me how you were going to use this. :-)
4353 */
4354 ret = NET_RX_DROP;
4355 }
4356
Julian Anastasov2c17d272015-07-09 09:59:10 +03004357out:
David S. Miller9754e292013-02-14 15:57:38 -05004358 return ret;
4359}
4360
4361static int __netif_receive_skb(struct sk_buff *skb)
4362{
4363 int ret;
4364
4365 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
4366 unsigned long pflags = current->flags;
4367
4368 /*
4369 * PFMEMALLOC skbs are special, they should
4370 * - be delivered to SOCK_MEMALLOC sockets only
4371 * - stay away from userspace
4372 * - have bounded memory usage
4373 *
4374 * Use PF_MEMALLOC as this saves us from propagating the allocation
4375 * context down to all allocation sites.
4376 */
4377 current->flags |= PF_MEMALLOC;
4378 ret = __netif_receive_skb_core(skb, true);
4379 tsk_restore_flags(current, pflags, PF_MEMALLOC);
4380 } else
4381 ret = __netif_receive_skb_core(skb, false);
4382
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 return ret;
4384}
Tom Herbert0a9627f2010-03-16 08:03:29 +00004385
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004386static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004387{
Julian Anastasov2c17d272015-07-09 09:59:10 +03004388 int ret;
4389
Eric Dumazet588f0332011-11-15 04:12:55 +00004390 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07004391
Richard Cochranc1f19b52010-07-17 08:49:36 +00004392 if (skb_defer_rx_timestamp(skb))
4393 return NET_RX_SUCCESS;
4394
Julian Anastasov2c17d272015-07-09 09:59:10 +03004395 rcu_read_lock();
4396
Eric Dumazetdf334542010-03-24 19:13:54 +00004397#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01004398 if (static_key_false(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07004399 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004400 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07004401
Eric Dumazet3b098e22010-05-15 23:57:10 -07004402 if (cpu >= 0) {
4403 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4404 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00004405 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07004406 }
Tom Herbertfec5e652010-04-16 16:01:27 -07004407 }
Tom Herbert1e94d722010-03-18 17:45:44 -07004408#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03004409 ret = __netif_receive_skb(skb);
4410 rcu_read_unlock();
4411 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004412}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004413
4414/**
4415 * netif_receive_skb - process receive buffer from network
4416 * @skb: buffer to process
4417 *
4418 * netif_receive_skb() is the main receive data processing function.
4419 * It always succeeds. The buffer may be dropped during processing
4420 * for congestion control or by the protocol layers.
4421 *
4422 * This function may only be called from softirq context and interrupts
4423 * should be enabled.
4424 *
4425 * Return values (usually ignored):
4426 * NET_RX_SUCCESS: no congestion
4427 * NET_RX_DROP: packet was dropped
4428 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05004429int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004430{
4431 trace_netif_receive_skb_entry(skb);
4432
4433 return netif_receive_skb_internal(skb);
4434}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05004435EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436
Eric Dumazet41852492016-08-26 12:50:39 -07004437DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004438
4439/* Network device is going away, flush any packets still pending */
4440static void flush_backlog(struct work_struct *work)
4441{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004442 struct sk_buff *skb, *tmp;
4443 struct softnet_data *sd;
4444
4445 local_bh_disable();
4446 sd = this_cpu_ptr(&softnet_data);
4447
4448 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004449 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07004450 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07004451 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004452 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004453 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004454 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004455 }
Changli Gao6e7676c2010-04-27 15:07:33 -07004456 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004457 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004458 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004459
4460 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07004461 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07004462 __skb_unlink(skb, &sd->process_queue);
4463 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004464 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07004465 }
4466 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004467 local_bh_enable();
4468}
4469
Eric Dumazet41852492016-08-26 12:50:39 -07004470static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004471{
4472 unsigned int cpu;
4473
4474 get_online_cpus();
4475
Eric Dumazet41852492016-08-26 12:50:39 -07004476 for_each_online_cpu(cpu)
4477 queue_work_on(cpu, system_highpri_wq,
4478 per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004479
4480 for_each_online_cpu(cpu)
Eric Dumazet41852492016-08-26 12:50:39 -07004481 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004482
4483 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004484}
4485
Herbert Xud565b0a2008-12-15 23:38:52 -08004486static int napi_gro_complete(struct sk_buff *skb)
4487{
Vlad Yasevich22061d82012-11-15 08:49:11 +00004488 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08004489 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004490 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08004491 int err = -ENOENT;
4492
Eric Dumazetc3c7c252012-12-06 13:54:59 +00004493 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
4494
Herbert Xufc59f9a2009-04-14 15:11:06 -07004495 if (NAPI_GRO_CB(skb)->count == 1) {
4496 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004497 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07004498 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004499
4500 rcu_read_lock();
4501 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004502 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08004503 continue;
4504
Jerry Chu299603e82013-12-11 20:53:45 -08004505 err = ptype->callbacks.gro_complete(skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08004506 break;
4507 }
4508 rcu_read_unlock();
4509
4510 if (err) {
4511 WARN_ON(&ptype->list == head);
4512 kfree_skb(skb);
4513 return NET_RX_SUCCESS;
4514 }
4515
4516out:
Subash Abhinov Kasiviswanathan27cfd4e2017-06-01 13:43:25 -06004517 __this_cpu_add(softnet_data.gro_coalesced, NAPI_GRO_CB(skb)->count > 1);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004518 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004519}
4520
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004521/* napi->gro_list contains packets ordered by age.
4522 * youngest packets at the head of it.
4523 * Complete skbs in reverse order to reduce latencies.
4524 */
4525void napi_gro_flush(struct napi_struct *napi, bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08004526{
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004527 struct sk_buff *skb, *prev = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004528
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004529 /* scan list and build reverse chain */
4530 for (skb = napi->gro_list; skb != NULL; skb = skb->next) {
4531 skb->prev = prev;
4532 prev = skb;
Herbert Xud565b0a2008-12-15 23:38:52 -08004533 }
4534
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004535 for (skb = prev; skb; skb = prev) {
4536 skb->next = NULL;
4537
4538 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
4539 return;
4540
4541 prev = skb->prev;
4542 napi_gro_complete(skb);
4543 napi->gro_count--;
4544 }
4545
Herbert Xud565b0a2008-12-15 23:38:52 -08004546 napi->gro_list = NULL;
4547}
Eric Dumazet86cac582010-08-31 18:25:32 +00004548EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08004549
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004550static void gro_list_prepare(struct napi_struct *napi, struct sk_buff *skb)
4551{
4552 struct sk_buff *p;
4553 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08004554 u32 hash = skb_get_hash_raw(skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004555
4556 for (p = napi->gro_list; p; p = p->next) {
4557 unsigned long diffs;
4558
Tom Herbert0b4cec82014-01-15 08:58:06 -08004559 NAPI_GRO_CB(p)->flush = 0;
4560
4561 if (hash != skb_get_hash_raw(p)) {
4562 NAPI_GRO_CB(p)->same_flow = 0;
4563 continue;
4564 }
4565
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004566 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
4567 diffs |= p->vlan_tci ^ skb->vlan_tci;
Jesse Grossce87fc62016-01-20 17:59:49 -08004568 diffs |= skb_metadata_dst_cmp(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004569 if (maclen == ETH_HLEN)
4570 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07004571 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004572 else if (!diffs)
4573 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07004574 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004575 maclen);
4576 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004577 }
4578}
4579
Jerry Chu299603e82013-12-11 20:53:45 -08004580static void skb_gro_reset_offset(struct sk_buff *skb)
4581{
4582 const struct skb_shared_info *pinfo = skb_shinfo(skb);
4583 const skb_frag_t *frag0 = &pinfo->frags[0];
4584
4585 NAPI_GRO_CB(skb)->data_offset = 0;
4586 NAPI_GRO_CB(skb)->frag0 = NULL;
4587 NAPI_GRO_CB(skb)->frag0_len = 0;
4588
4589 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
4590 pinfo->nr_frags &&
4591 !PageHighMem(skb_frag_page(frag0))) {
4592 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet934ca012017-01-10 19:52:43 -08004593 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
4594 skb_frag_size(frag0),
4595 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08004596 }
4597}
4598
Eric Dumazeta50e2332014-03-29 21:28:21 -07004599static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
4600{
4601 struct skb_shared_info *pinfo = skb_shinfo(skb);
4602
4603 BUG_ON(skb->end - skb->tail < grow);
4604
4605 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
4606
4607 skb->data_len -= grow;
4608 skb->tail += grow;
4609
4610 pinfo->frags[0].page_offset += grow;
4611 skb_frag_size_sub(&pinfo->frags[0], grow);
4612
4613 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
4614 skb_frag_unref(skb, 0);
4615 memmove(pinfo->frags, pinfo->frags + 1,
4616 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
4617 }
4618}
4619
Rami Rosenbb728822012-11-28 21:55:25 +00004620static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08004621{
4622 struct sk_buff **pp = NULL;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004623 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08004624 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004625 struct list_head *head = &offload_base;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004626 int same_flow;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004627 enum gro_result ret;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004628 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08004629
Eric W. Biederman9c62a682014-03-14 20:51:52 -07004630 if (!(skb->dev->features & NETIF_F_GRO))
Herbert Xud565b0a2008-12-15 23:38:52 -08004631 goto normal;
4632
Tom Herbert5a212322014-08-31 15:12:41 -07004633 if (skb_is_gso(skb) || skb_has_frag_list(skb) || skb->csum_bad)
Herbert Xuf17f5c92009-01-14 14:36:12 -08004634 goto normal;
4635
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004636 gro_list_prepare(napi, skb);
4637
Herbert Xud565b0a2008-12-15 23:38:52 -08004638 rcu_read_lock();
4639 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004640 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08004641 continue;
4642
Herbert Xu86911732009-01-29 14:19:50 +00004643 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00004644 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004645 NAPI_GRO_CB(skb)->same_flow = 0;
4646 NAPI_GRO_CB(skb)->flush = 0;
Herbert Xu5d38a072009-01-04 16:13:40 -08004647 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07004648 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02004649 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07004650 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04004651 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08004652 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004653
Tom Herbert662880f2014-08-27 21:26:56 -07004654 /* Setup for GRO checksum validation */
4655 switch (skb->ip_summed) {
4656 case CHECKSUM_COMPLETE:
4657 NAPI_GRO_CB(skb)->csum = skb->csum;
4658 NAPI_GRO_CB(skb)->csum_valid = 1;
4659 NAPI_GRO_CB(skb)->csum_cnt = 0;
4660 break;
4661 case CHECKSUM_UNNECESSARY:
4662 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
4663 NAPI_GRO_CB(skb)->csum_valid = 0;
4664 break;
4665 default:
4666 NAPI_GRO_CB(skb)->csum_cnt = 0;
4667 NAPI_GRO_CB(skb)->csum_valid = 0;
4668 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004669
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004670 pp = ptype->callbacks.gro_receive(&napi->gro_list, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004671 break;
4672 }
4673 rcu_read_unlock();
4674
4675 if (&ptype->list == head)
4676 goto normal;
4677
Herbert Xu0da2afd52008-12-26 14:57:42 -08004678 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004679 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004680
Herbert Xud565b0a2008-12-15 23:38:52 -08004681 if (pp) {
4682 struct sk_buff *nskb = *pp;
4683
4684 *pp = nskb->next;
4685 nskb->next = NULL;
4686 napi_gro_complete(nskb);
Herbert Xu4ae55442009-02-08 18:00:36 +00004687 napi->gro_count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08004688 }
4689
Herbert Xu0da2afd52008-12-26 14:57:42 -08004690 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08004691 goto ok;
4692
Eric Dumazet600adc12014-01-09 14:12:19 -08004693 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08004694 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08004695
Eric Dumazet600adc12014-01-09 14:12:19 -08004696 if (unlikely(napi->gro_count >= MAX_GRO_SKBS)) {
4697 struct sk_buff *nskb = napi->gro_list;
4698
4699 /* locate the end of the list to select the 'oldest' flow */
4700 while (nskb->next) {
4701 pp = &nskb->next;
4702 nskb = *pp;
4703 }
4704 *pp = NULL;
4705 nskb->next = NULL;
4706 napi_gro_complete(nskb);
4707 } else {
4708 napi->gro_count++;
4709 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004710 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004711 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07004712 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00004713 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004714 skb->next = napi->gro_list;
4715 napi->gro_list = skb;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004716 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08004717
Herbert Xuad0f9902009-02-01 01:24:55 -08004718pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004719 grow = skb_gro_offset(skb) - skb_headlen(skb);
4720 if (grow > 0)
4721 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08004722ok:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004723 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08004724
4725normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08004726 ret = GRO_NORMAL;
4727 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08004728}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004729
Jerry Chubf5a7552014-01-07 10:23:19 -08004730struct packet_offload *gro_find_receive_by_type(__be16 type)
4731{
4732 struct list_head *offload_head = &offload_base;
4733 struct packet_offload *ptype;
4734
4735 list_for_each_entry_rcu(ptype, offload_head, list) {
4736 if (ptype->type != type || !ptype->callbacks.gro_receive)
4737 continue;
4738 return ptype;
4739 }
4740 return NULL;
4741}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004742EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08004743
4744struct packet_offload *gro_find_complete_by_type(__be16 type)
4745{
4746 struct list_head *offload_head = &offload_base;
4747 struct packet_offload *ptype;
4748
4749 list_for_each_entry_rcu(ptype, offload_head, list) {
4750 if (ptype->type != type || !ptype->callbacks.gro_complete)
4751 continue;
4752 return ptype;
4753 }
4754 return NULL;
4755}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004756EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004757
Michal Kubeček06732802017-06-29 11:13:36 +02004758static void napi_skb_free_stolen_head(struct sk_buff *skb)
4759{
4760 skb_dst_drop(skb);
4761 kmem_cache_free(skbuff_head_cache, skb);
4762}
4763
Rami Rosenbb728822012-11-28 21:55:25 +00004764static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08004765{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004766 switch (ret) {
4767 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004768 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004769 ret = GRO_DROP;
4770 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004771
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004772 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08004773 kfree_skb(skb);
4774 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004775
Eric Dumazetdaa86542012-04-19 07:07:40 +00004776 case GRO_MERGED_FREE:
Michal Kubeček06732802017-06-29 11:13:36 +02004777 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4778 napi_skb_free_stolen_head(skb);
4779 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00004780 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00004781 break;
4782
Ben Hutchings5b252f02009-10-29 07:17:09 +00004783 case GRO_HELD:
4784 case GRO_MERGED:
4785 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004786 }
4787
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004788 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004789}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004790
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004791gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004792{
Eric Dumazet93f93a42015-11-18 06:30:59 -08004793 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004794 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00004795
Eric Dumazeta50e2332014-03-29 21:28:21 -07004796 skb_gro_reset_offset(skb);
4797
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004798 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004799}
4800EXPORT_SYMBOL(napi_gro_receive);
4801
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00004802static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004803{
Eric Dumazet93a35f52014-10-23 06:30:30 -07004804 if (unlikely(skb->pfmemalloc)) {
4805 consume_skb(skb);
4806 return;
4807 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004808 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00004809 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
4810 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Jesse Gross3701e512010-10-20 13:56:06 +00004811 skb->vlan_tci = 0;
Herbert Xu66c46d72011-01-29 20:44:54 -08004812 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08004813 skb->skb_iif = 0;
Jerry Chuc3caf112014-07-14 15:54:46 -07004814 skb->encapsulation = 0;
4815 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07004816 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Herbert Xu96e93ea2009-01-06 10:49:34 -08004817
4818 napi->skb = skb;
4819}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004820
Herbert Xu76620aa2009-04-16 02:02:07 -07004821struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08004822{
Herbert Xu5d38a072009-01-04 16:13:40 -08004823 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004824
4825 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08004826 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08004827 if (skb) {
4828 napi->skb = skb;
4829 skb_mark_napi_id(skb, napi);
4830 }
Herbert Xu5d38a072009-01-04 16:13:40 -08004831 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004832 return skb;
4833}
Herbert Xu76620aa2009-04-16 02:02:07 -07004834EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004835
Eric Dumazeta50e2332014-03-29 21:28:21 -07004836static gro_result_t napi_frags_finish(struct napi_struct *napi,
4837 struct sk_buff *skb,
4838 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004839{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004840 switch (ret) {
4841 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004842 case GRO_HELD:
4843 __skb_push(skb, ETH_HLEN);
4844 skb->protocol = eth_type_trans(skb, skb->dev);
4845 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004846 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00004847 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004848
4849 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004850 napi_reuse_skb(napi, skb);
4851 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004852
Michal Kubeček06732802017-06-29 11:13:36 +02004853 case GRO_MERGED_FREE:
4854 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4855 napi_skb_free_stolen_head(skb);
4856 else
4857 napi_reuse_skb(napi, skb);
4858 break;
4859
Ben Hutchings5b252f02009-10-29 07:17:09 +00004860 case GRO_MERGED:
4861 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004862 }
4863
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004864 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004865}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004866
Eric Dumazeta50e2332014-03-29 21:28:21 -07004867/* Upper GRO stack assumes network header starts at gro_offset=0
4868 * Drivers could call both napi_gro_frags() and napi_gro_receive()
4869 * We copy ethernet header into skb->data to have a common layout.
4870 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00004871static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004872{
Herbert Xu76620aa2009-04-16 02:02:07 -07004873 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004874 const struct ethhdr *eth;
4875 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07004876
4877 napi->skb = NULL;
4878
Eric Dumazeta50e2332014-03-29 21:28:21 -07004879 skb_reset_mac_header(skb);
4880 skb_gro_reset_offset(skb);
4881
4882 eth = skb_gro_header_fast(skb, 0);
4883 if (unlikely(skb_gro_header_hard(skb, hlen))) {
4884 eth = skb_gro_header_slow(skb, hlen, 0);
4885 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04004886 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
4887 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07004888 napi_reuse_skb(napi, skb);
4889 return NULL;
4890 }
4891 } else {
4892 gro_pull_from_frag0(skb, hlen);
4893 NAPI_GRO_CB(skb)->frag0 += hlen;
4894 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07004895 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07004896 __skb_pull(skb, hlen);
4897
4898 /*
4899 * This works because the only protocols we care about don't require
4900 * special handling.
4901 * We'll fix it up properly in napi_frags_finish()
4902 */
4903 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07004904
Herbert Xu76620aa2009-04-16 02:02:07 -07004905 return skb;
4906}
Herbert Xu76620aa2009-04-16 02:02:07 -07004907
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004908gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07004909{
4910 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004911
4912 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004913 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08004914
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004915 trace_napi_gro_frags_entry(skb);
4916
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004917 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08004918}
4919EXPORT_SYMBOL(napi_gro_frags);
4920
Tom Herbert573e8fc2014-08-22 13:33:47 -07004921/* Compute the checksum from gro_offset and return the folded value
4922 * after adding in any pseudo checksum.
4923 */
4924__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
4925{
4926 __wsum wsum;
4927 __sum16 sum;
4928
4929 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
4930
4931 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
4932 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
4933 if (likely(!sum)) {
4934 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
4935 !skb->csum_complete_sw)
4936 netdev_rx_csum_fault(skb->dev);
4937 }
4938
4939 NAPI_GRO_CB(skb)->csum = wsum;
4940 NAPI_GRO_CB(skb)->csum_valid = 1;
4941
4942 return sum;
4943}
4944EXPORT_SYMBOL(__skb_gro_checksum_complete);
4945
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05304946static void net_rps_send_ipi(struct softnet_data *remsd)
4947{
4948#ifdef CONFIG_RPS
4949 while (remsd) {
4950 struct softnet_data *next = remsd->rps_ipi_next;
4951
Ashwanth Goli9a044862017-07-07 13:15:13 +05304952 if (cpu_online(remsd->cpu)) {
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05304953 smp_call_function_single_async(remsd->cpu, &remsd->csd);
Ashwanth Goli9a044862017-07-07 13:15:13 +05304954 } else {
4955 rps_lock(remsd);
4956 remsd->backlog.state = 0;
4957 rps_unlock(remsd);
4958 }
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05304959 remsd = next;
4960 }
4961#endif
4962}
4963
Eric Dumazete326bed2010-04-22 00:22:45 -07004964/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08004965 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07004966 * Note: called with local irq disabled, but exits with local irq enabled.
4967 */
4968static void net_rps_action_and_irq_enable(struct softnet_data *sd)
4969{
4970#ifdef CONFIG_RPS
4971 struct softnet_data *remsd = sd->rps_ipi_list;
4972
4973 if (remsd) {
4974 sd->rps_ipi_list = NULL;
4975
4976 local_irq_enable();
4977
4978 /* Send pending IPI's to kick RPS processing on remote cpus. */
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05304979 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07004980 } else
4981#endif
4982 local_irq_enable();
4983}
4984
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004985static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
4986{
4987#ifdef CONFIG_RPS
4988 return sd->rps_ipi_list != NULL;
4989#else
4990 return false;
4991#endif
4992}
4993
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004994static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004995{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004996 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004997 bool again = true;
4998 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004999
Eric Dumazete326bed2010-04-22 00:22:45 -07005000 /* Check if we have pending ipi, its better to send them now,
5001 * not waiting net_rx_action() end.
5002 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005003 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07005004 local_irq_disable();
5005 net_rps_action_and_irq_enable(sd);
5006 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005007
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005008 napi->weight = weight_p;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005009 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005011
Changli Gao6e7676c2010-04-27 15:07:33 -07005012 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03005013 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07005014 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03005015 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00005016 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005017 if (++work >= quota)
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005018 goto state_changed;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005020
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005021 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005022 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07005023 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005024 /*
5025 * Inline a custom version of __napi_complete().
5026 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07005027 * and NAPI_STATE_SCHED is the only possible flag set
5028 * on backlog.
5029 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005030 * and we dont need an smp_mb() memory barrier.
5031 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005032 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005033 again = false;
5034 } else {
5035 skb_queue_splice_tail_init(&sd->input_pkt_queue,
5036 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07005037 }
5038 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005039 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005041
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005042state_changed:
5043 napi_gro_flush(napi, false);
5044 sd->current_napi = NULL;
5045
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005046 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005047}
5048
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005049/**
5050 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005051 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005052 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005053 * The entry's receive function will be scheduled to run.
5054 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005055 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08005056void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005057{
5058 unsigned long flags;
5059
5060 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05005061 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005062 local_irq_restore(flags);
5063}
5064EXPORT_SYMBOL(__napi_schedule);
5065
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005066/**
5067 * __napi_schedule_irqoff - schedule for receive
5068 * @n: entry to schedule
5069 *
5070 * Variant of __napi_schedule() assuming hard irqs are masked
5071 */
5072void __napi_schedule_irqoff(struct napi_struct *n)
5073{
5074 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
5075}
5076EXPORT_SYMBOL(__napi_schedule_irqoff);
5077
Herbert Xud565b0a2008-12-15 23:38:52 -08005078void __napi_complete(struct napi_struct *n)
5079{
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005080 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5081
Herbert Xud565b0a2008-12-15 23:38:52 -08005082 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
Herbert Xud565b0a2008-12-15 23:38:52 -08005083
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005084 list_del_init(&n->poll_list);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005085 smp_mb__before_atomic();
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005086 sd->current_napi = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08005087 clear_bit(NAPI_STATE_SCHED, &n->state);
5088}
5089EXPORT_SYMBOL(__napi_complete);
5090
Eric Dumazet3b47d302014-11-06 21:09:44 -08005091void napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08005092{
5093 unsigned long flags;
5094
5095 /*
5096 * don't let napi dequeue from the cpu poll list
5097 * just in case its running on a different cpu
5098 */
5099 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
5100 return;
5101
Eric Dumazet3b47d302014-11-06 21:09:44 -08005102 if (n->gro_list) {
5103 unsigned long timeout = 0;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005104
Eric Dumazet3b47d302014-11-06 21:09:44 -08005105 if (work_done)
5106 timeout = n->dev->gro_flush_timeout;
5107
5108 if (timeout)
5109 hrtimer_start(&n->timer, ns_to_ktime(timeout),
5110 HRTIMER_MODE_REL_PINNED);
5111 else
5112 napi_gro_flush(n, false);
5113 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005114 if (likely(list_empty(&n->poll_list))) {
5115 WARN_ON_ONCE(!test_and_clear_bit(NAPI_STATE_SCHED, &n->state));
5116 } else {
5117 /* If n->poll_list is not empty, we need to mask irqs */
5118 local_irq_save(flags);
5119 __napi_complete(n);
5120 local_irq_restore(flags);
5121 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005122}
Eric Dumazet3b47d302014-11-06 21:09:44 -08005123EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08005124
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005125/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08005126static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005127{
5128 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
5129 struct napi_struct *napi;
5130
5131 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
5132 if (napi->napi_id == napi_id)
5133 return napi;
5134
5135 return NULL;
5136}
Eric Dumazet02d62e82015-11-18 06:30:52 -08005137
5138#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazetce6aea92015-11-18 06:30:54 -08005139#define BUSY_POLL_BUDGET 8
Eric Dumazet02d62e82015-11-18 06:30:52 -08005140bool sk_busy_loop(struct sock *sk, int nonblock)
5141{
5142 unsigned long end_time = !nonblock ? sk_busy_loop_end_time(sk) : 0;
Eric Dumazetce6aea92015-11-18 06:30:54 -08005143 int (*busy_poll)(struct napi_struct *dev);
Eric Dumazet02d62e82015-11-18 06:30:52 -08005144 struct napi_struct *napi;
5145 int rc = false;
5146
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005147 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005148
5149 napi = napi_by_id(sk->sk_napi_id);
5150 if (!napi)
5151 goto out;
5152
Eric Dumazetce6aea92015-11-18 06:30:54 -08005153 /* Note: ndo_busy_poll method is optional in linux-4.5 */
5154 busy_poll = napi->dev->netdev_ops->ndo_busy_poll;
Eric Dumazet02d62e82015-11-18 06:30:52 -08005155
5156 do {
Eric Dumazetce6aea92015-11-18 06:30:54 -08005157 rc = 0;
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005158 local_bh_disable();
Eric Dumazetce6aea92015-11-18 06:30:54 -08005159 if (busy_poll) {
5160 rc = busy_poll(napi);
5161 } else if (napi_schedule_prep(napi)) {
5162 void *have = netpoll_poll_lock(napi);
5163
5164 if (test_bit(NAPI_STATE_SCHED, &napi->state)) {
5165 rc = napi->poll(napi, BUSY_POLL_BUDGET);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02005166 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
Eric Dumazetce6aea92015-11-18 06:30:54 -08005167 if (rc == BUSY_POLL_BUDGET) {
5168 napi_complete_done(napi, rc);
5169 napi_schedule(napi);
5170 }
5171 }
5172 netpoll_poll_unlock(have);
5173 }
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005174 if (rc > 0)
Eric Dumazet02a1d6e2016-04-27 16:44:39 -07005175 __NET_ADD_STATS(sock_net(sk),
5176 LINUX_MIB_BUSYPOLLRXPACKETS, rc);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005177 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005178
5179 if (rc == LL_FLUSH_FAILED)
5180 break; /* permanent failure */
5181
Eric Dumazet02d62e82015-11-18 06:30:52 -08005182 cpu_relax();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005183 } while (!nonblock && skb_queue_empty(&sk->sk_receive_queue) &&
5184 !need_resched() && !busy_loop_timeout(end_time));
5185
5186 rc = !skb_queue_empty(&sk->sk_receive_queue);
5187out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005188 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005189 return rc;
5190}
5191EXPORT_SYMBOL(sk_busy_loop);
5192
5193#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005194
5195void napi_hash_add(struct napi_struct *napi)
5196{
Eric Dumazetd64b5e82015-11-18 06:31:00 -08005197 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state) ||
5198 test_and_set_bit(NAPI_STATE_HASHED, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005199 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005200
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005201 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005202
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005203 /* 0..NR_CPUS+1 range is reserved for sender_cpu use */
5204 do {
5205 if (unlikely(++napi_gen_id < NR_CPUS + 1))
5206 napi_gen_id = NR_CPUS + 1;
5207 } while (napi_by_id(napi_gen_id));
5208 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005209
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005210 hlist_add_head_rcu(&napi->napi_hash_node,
5211 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005212
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005213 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005214}
5215EXPORT_SYMBOL_GPL(napi_hash_add);
5216
5217/* Warning : caller is responsible to make sure rcu grace period
5218 * is respected before freeing memory containing @napi
5219 */
Eric Dumazet34cbe272015-11-18 06:31:02 -08005220bool napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005221{
Eric Dumazet34cbe272015-11-18 06:31:02 -08005222 bool rcu_sync_needed = false;
5223
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005224 spin_lock(&napi_hash_lock);
5225
Eric Dumazet34cbe272015-11-18 06:31:02 -08005226 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state)) {
5227 rcu_sync_needed = true;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005228 hlist_del_rcu(&napi->napi_hash_node);
Eric Dumazet34cbe272015-11-18 06:31:02 -08005229 }
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005230 spin_unlock(&napi_hash_lock);
Eric Dumazet34cbe272015-11-18 06:31:02 -08005231 return rcu_sync_needed;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005232}
5233EXPORT_SYMBOL_GPL(napi_hash_del);
5234
Eric Dumazet3b47d302014-11-06 21:09:44 -08005235static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
5236{
5237 struct napi_struct *napi;
5238
5239 napi = container_of(timer, struct napi_struct, timer);
5240 if (napi->gro_list)
5241 napi_schedule(napi);
5242
5243 return HRTIMER_NORESTART;
5244}
5245
Herbert Xud565b0a2008-12-15 23:38:52 -08005246void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
5247 int (*poll)(struct napi_struct *, int), int weight)
5248{
5249 INIT_LIST_HEAD(&napi->poll_list);
Eric Dumazet3b47d302014-11-06 21:09:44 -08005250 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
5251 napi->timer.function = napi_watchdog;
Herbert Xu4ae55442009-02-08 18:00:36 +00005252 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005253 napi->gro_list = NULL;
Herbert Xu5d38a072009-01-04 16:13:40 -08005254 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08005255 napi->poll = poll;
Eric Dumazet82dc3c62013-03-05 15:57:22 +00005256 if (weight > NAPI_POLL_WEIGHT)
5257 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
5258 weight, dev->name);
Herbert Xud565b0a2008-12-15 23:38:52 -08005259 napi->weight = weight;
5260 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08005261 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08005262#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08005263 spin_lock_init(&napi->poll_lock);
5264 napi->poll_owner = -1;
5265#endif
5266 set_bit(NAPI_STATE_SCHED, &napi->state);
Eric Dumazet93d05d42015-11-18 06:31:03 -08005267 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08005268}
5269EXPORT_SYMBOL(netif_napi_add);
5270
Eric Dumazet3b47d302014-11-06 21:09:44 -08005271void napi_disable(struct napi_struct *n)
5272{
5273 might_sleep();
5274 set_bit(NAPI_STATE_DISABLE, &n->state);
5275
5276 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
5277 msleep(1);
Neil Horman2d8bff12015-09-23 14:57:58 -04005278 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
5279 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08005280
5281 hrtimer_cancel(&n->timer);
5282
5283 clear_bit(NAPI_STATE_DISABLE, &n->state);
5284}
5285EXPORT_SYMBOL(napi_disable);
5286
Eric Dumazet93d05d42015-11-18 06:31:03 -08005287/* Must be called in process context */
Herbert Xud565b0a2008-12-15 23:38:52 -08005288void netif_napi_del(struct napi_struct *napi)
5289{
Eric Dumazet93d05d42015-11-18 06:31:03 -08005290 might_sleep();
5291 if (napi_hash_del(napi))
5292 synchronize_net();
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08005293 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07005294 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08005295
Eric Dumazet289dccb2013-12-20 14:29:08 -08005296 kfree_skb_list(napi->gro_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08005297 napi->gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00005298 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005299}
5300EXPORT_SYMBOL(netif_napi_del);
5301
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005302struct napi_struct *get_current_napi_context(void)
5303{
5304 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5305
5306 return sd->current_napi;
5307}
5308EXPORT_SYMBOL(get_current_napi_context);
5309
Herbert Xu726ce702014-12-21 07:16:21 +11005310static int napi_poll(struct napi_struct *n, struct list_head *repoll)
5311{
5312 void *have;
5313 int work, weight;
5314
5315 list_del_init(&n->poll_list);
5316
5317 have = netpoll_poll_lock(n);
5318
5319 weight = n->weight;
5320
5321 /* This NAPI_STATE_SCHED test is for avoiding a race
5322 * with netpoll's poll_napi(). Only the entity which
5323 * obtains the lock and sees NAPI_STATE_SCHED set will
5324 * actually make the ->poll() call. Therefore we avoid
5325 * accidentally calling ->poll() when NAPI is not scheduled.
5326 */
5327 work = 0;
5328 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005329 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5330
5331 sd->current_napi = n;
Herbert Xu726ce702014-12-21 07:16:21 +11005332 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02005333 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11005334 }
5335
5336 WARN_ON_ONCE(work > weight);
5337
5338 if (likely(work < weight))
5339 goto out_unlock;
5340
5341 /* Drivers must not modify the NAPI state if they
5342 * consume the entire weight. In such cases this code
5343 * still "owns" the NAPI instance and therefore can
5344 * move the instance around on the list at-will.
5345 */
5346 if (unlikely(napi_disable_pending(n))) {
5347 napi_complete(n);
5348 goto out_unlock;
5349 }
5350
5351 if (n->gro_list) {
5352 /* flush too old packets
5353 * If HZ < 1000, flush all packets.
5354 */
5355 napi_gro_flush(n, HZ >= 1000);
5356 }
5357
Herbert Xu001ce542014-12-21 07:16:22 +11005358 /* Some drivers may have called napi_schedule
5359 * prior to exhausting their budget.
5360 */
5361 if (unlikely(!list_empty(&n->poll_list))) {
5362 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
5363 n->dev ? n->dev->name : "backlog");
5364 goto out_unlock;
5365 }
5366
Herbert Xu726ce702014-12-21 07:16:21 +11005367 list_add_tail(&n->poll_list, repoll);
5368
5369out_unlock:
5370 netpoll_poll_unlock(have);
5371
5372 return work;
5373}
5374
Emese Revfy0766f782016-06-20 20:42:34 +02005375static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005376{
Christoph Lameter903ceff2014-08-17 12:30:35 -05005377 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Stephen Hemminger24f8b232008-11-03 17:14:38 -08005378 unsigned long time_limit = jiffies + 2;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07005379 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005380 LIST_HEAD(list);
5381 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07005382
Linus Torvalds1da177e2005-04-16 15:20:36 -07005383 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005384 list_splice_init(&sd->poll_list, &list);
5385 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005387 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005388 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005389
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005390 if (list_empty(&list)) {
5391 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
5392 return;
5393 break;
5394 }
5395
Herbert Xu6bd373e2014-12-21 07:16:24 +11005396 n = list_first_entry(&list, struct napi_struct, poll_list);
5397 budget -= napi_poll(n, &repoll);
5398
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005399 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08005400 * Allow this to run for 2 jiffies since which will allow
5401 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005402 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005403 if (unlikely(budget <= 0 ||
5404 time_after_eq(jiffies, time_limit))) {
5405 sd->time_squeeze++;
5406 break;
5407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005408 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005409
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +01005410 __kfree_skb_flush();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005411 local_irq_disable();
5412
5413 list_splice_tail_init(&sd->poll_list, &list);
5414 list_splice_tail(&repoll, &list);
5415 list_splice(&list, &sd->poll_list);
5416 if (!list_empty(&sd->poll_list))
5417 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
5418
Eric Dumazete326bed2010-04-22 00:22:45 -07005419 net_rps_action_and_irq_enable(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005420}
5421
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005422struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005423 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005424
5425 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005426 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005427
Veaceslav Falico5d261912013-08-28 23:25:05 +02005428 /* counter for the number of times this device was added to us */
5429 u16 ref_nr;
5430
Veaceslav Falico402dae92013-09-25 09:20:09 +02005431 /* private field for the users */
5432 void *private;
5433
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005434 struct list_head list;
5435 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005436};
5437
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005438static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005439 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005440{
Veaceslav Falico5d261912013-08-28 23:25:05 +02005441 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005442
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005443 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005444 if (adj->dev == adj_dev)
5445 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005446 }
5447 return NULL;
5448}
5449
5450/**
5451 * netdev_has_upper_dev - Check if device is linked to an upper device
5452 * @dev: device
5453 * @upper_dev: upper device to check
5454 *
5455 * Find out if a device is linked to specified upper device and return true
5456 * in case it is. Note that this checks only immediate upper device,
5457 * not through a complete stack of devices. The caller must hold the RTNL lock.
5458 */
5459bool netdev_has_upper_dev(struct net_device *dev,
5460 struct net_device *upper_dev)
5461{
5462 ASSERT_RTNL();
5463
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005464 return __netdev_find_adj(upper_dev, &dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005465}
5466EXPORT_SYMBOL(netdev_has_upper_dev);
5467
5468/**
5469 * netdev_has_any_upper_dev - Check if device is linked to some device
5470 * @dev: device
5471 *
5472 * Find out if a device is linked to an upper device and return true in case
5473 * it is. The caller must hold the RTNL lock.
5474 */
Ido Schimmel73ee5a732017-09-01 10:52:31 +02005475bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005476{
5477 ASSERT_RTNL();
5478
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005479 return !list_empty(&dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005480}
Ido Schimmel73ee5a732017-09-01 10:52:31 +02005481EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005482
5483/**
5484 * netdev_master_upper_dev_get - Get master upper device
5485 * @dev: device
5486 *
5487 * Find a master upper device and return pointer to it or NULL in case
5488 * it's not there. The caller must hold the RTNL lock.
5489 */
5490struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
5491{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005492 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005493
5494 ASSERT_RTNL();
5495
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005496 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005497 return NULL;
5498
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005499 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005500 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005501 if (likely(upper->master))
5502 return upper->dev;
5503 return NULL;
5504}
5505EXPORT_SYMBOL(netdev_master_upper_dev_get);
5506
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02005507void *netdev_adjacent_get_private(struct list_head *adj_list)
5508{
5509 struct netdev_adjacent *adj;
5510
5511 adj = list_entry(adj_list, struct netdev_adjacent, list);
5512
5513 return adj->private;
5514}
5515EXPORT_SYMBOL(netdev_adjacent_get_private);
5516
Veaceslav Falico31088a12013-09-25 09:20:12 +02005517/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04005518 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
5519 * @dev: device
5520 * @iter: list_head ** of the current position
5521 *
5522 * Gets the next device from the dev's upper list, starting from iter
5523 * position. The caller must hold RCU read lock.
5524 */
5525struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
5526 struct list_head **iter)
5527{
5528 struct netdev_adjacent *upper;
5529
5530 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
5531
5532 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5533
5534 if (&upper->list == &dev->adj_list.upper)
5535 return NULL;
5536
5537 *iter = &upper->list;
5538
5539 return upper->dev;
5540}
5541EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
5542
5543/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02005544 * netdev_all_upper_get_next_dev_rcu - Get the next dev from upper list
Veaceslav Falico48311f42013-08-28 23:25:07 +02005545 * @dev: device
5546 * @iter: list_head ** of the current position
5547 *
5548 * Gets the next device from the dev's upper list, starting from iter
5549 * position. The caller must hold RCU read lock.
5550 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005551struct net_device *netdev_all_upper_get_next_dev_rcu(struct net_device *dev,
5552 struct list_head **iter)
Veaceslav Falico48311f42013-08-28 23:25:07 +02005553{
5554 struct netdev_adjacent *upper;
5555
John Fastabend85328242013-11-26 06:33:52 +00005556 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
Veaceslav Falico48311f42013-08-28 23:25:07 +02005557
5558 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5559
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005560 if (&upper->list == &dev->all_adj_list.upper)
Veaceslav Falico48311f42013-08-28 23:25:07 +02005561 return NULL;
5562
5563 *iter = &upper->list;
5564
5565 return upper->dev;
5566}
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005567EXPORT_SYMBOL(netdev_all_upper_get_next_dev_rcu);
Veaceslav Falico48311f42013-08-28 23:25:07 +02005568
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005569/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02005570 * netdev_lower_get_next_private - Get the next ->private from the
5571 * lower neighbour list
5572 * @dev: device
5573 * @iter: list_head ** of the current position
5574 *
5575 * Gets the next netdev_adjacent->private from the dev's lower neighbour
5576 * list, starting from iter position. The caller must hold either hold the
5577 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00005578 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02005579 */
5580void *netdev_lower_get_next_private(struct net_device *dev,
5581 struct list_head **iter)
5582{
5583 struct netdev_adjacent *lower;
5584
5585 lower = list_entry(*iter, struct netdev_adjacent, list);
5586
5587 if (&lower->list == &dev->adj_list.lower)
5588 return NULL;
5589
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02005590 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02005591
5592 return lower->private;
5593}
5594EXPORT_SYMBOL(netdev_lower_get_next_private);
5595
5596/**
5597 * netdev_lower_get_next_private_rcu - Get the next ->private from the
5598 * lower neighbour list, RCU
5599 * variant
5600 * @dev: device
5601 * @iter: list_head ** of the current position
5602 *
5603 * Gets the next netdev_adjacent->private from the dev's lower neighbour
5604 * list, starting from iter position. The caller must hold RCU read lock.
5605 */
5606void *netdev_lower_get_next_private_rcu(struct net_device *dev,
5607 struct list_head **iter)
5608{
5609 struct netdev_adjacent *lower;
5610
5611 WARN_ON_ONCE(!rcu_read_lock_held());
5612
5613 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5614
5615 if (&lower->list == &dev->adj_list.lower)
5616 return NULL;
5617
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02005618 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02005619
5620 return lower->private;
5621}
5622EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
5623
5624/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005625 * netdev_lower_get_next - Get the next device from the lower neighbour
5626 * list
5627 * @dev: device
5628 * @iter: list_head ** of the current position
5629 *
5630 * Gets the next netdev_adjacent from the dev's lower neighbour
5631 * list, starting from iter position. The caller must hold RTNL lock or
5632 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00005633 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005634 */
5635void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
5636{
5637 struct netdev_adjacent *lower;
5638
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01005639 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005640
5641 if (&lower->list == &dev->adj_list.lower)
5642 return NULL;
5643
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01005644 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005645
5646 return lower->dev;
5647}
5648EXPORT_SYMBOL(netdev_lower_get_next);
5649
5650/**
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005651 * netdev_all_lower_get_next - Get the next device from all lower neighbour list
5652 * @dev: device
5653 * @iter: list_head ** of the current position
5654 *
5655 * Gets the next netdev_adjacent from the dev's all lower neighbour
5656 * list, starting from iter position. The caller must hold RTNL lock or
5657 * its own locking that guarantees that the neighbour all lower
5658 * list will remain unchanged.
5659 */
5660struct net_device *netdev_all_lower_get_next(struct net_device *dev, struct list_head **iter)
5661{
5662 struct netdev_adjacent *lower;
5663
5664 lower = list_entry(*iter, struct netdev_adjacent, list);
5665
5666 if (&lower->list == &dev->all_adj_list.lower)
5667 return NULL;
5668
5669 *iter = lower->list.next;
5670
5671 return lower->dev;
5672}
5673EXPORT_SYMBOL(netdev_all_lower_get_next);
5674
5675/**
5676 * netdev_all_lower_get_next_rcu - Get the next device from all
5677 * lower neighbour list, RCU variant
5678 * @dev: device
5679 * @iter: list_head ** of the current position
5680 *
5681 * Gets the next netdev_adjacent from the dev's all lower neighbour
5682 * list, starting from iter position. The caller must hold RCU read lock.
5683 */
5684struct net_device *netdev_all_lower_get_next_rcu(struct net_device *dev,
5685 struct list_head **iter)
5686{
5687 struct netdev_adjacent *lower;
5688
Ido Schimmele4961b02016-10-19 16:57:08 +03005689 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005690
Ido Schimmele4961b02016-10-19 16:57:08 +03005691 if (&lower->list == &dev->all_adj_list.lower)
5692 return NULL;
5693
5694 *iter = &lower->list;
5695
5696 return lower->dev;
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005697}
5698EXPORT_SYMBOL(netdev_all_lower_get_next_rcu);
5699
5700/**
dingtianhonge001bfa2013-12-13 10:19:55 +08005701 * netdev_lower_get_first_private_rcu - Get the first ->private from the
5702 * lower neighbour list, RCU
5703 * variant
5704 * @dev: device
5705 *
5706 * Gets the first netdev_adjacent->private from the dev's lower neighbour
5707 * list. The caller must hold RCU read lock.
5708 */
5709void *netdev_lower_get_first_private_rcu(struct net_device *dev)
5710{
5711 struct netdev_adjacent *lower;
5712
5713 lower = list_first_or_null_rcu(&dev->adj_list.lower,
5714 struct netdev_adjacent, list);
5715 if (lower)
5716 return lower->private;
5717 return NULL;
5718}
5719EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
5720
5721/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005722 * netdev_master_upper_dev_get_rcu - Get master upper device
5723 * @dev: device
5724 *
5725 * Find a master upper device and return pointer to it or NULL in case
5726 * it's not there. The caller must hold the RCU read lock.
5727 */
5728struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
5729{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005730 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005731
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005732 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005733 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005734 if (upper && likely(upper->master))
5735 return upper->dev;
5736 return NULL;
5737}
5738EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
5739
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05305740static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005741 struct net_device *adj_dev,
5742 struct list_head *dev_list)
5743{
5744 char linkname[IFNAMSIZ+7];
5745 sprintf(linkname, dev_list == &dev->adj_list.upper ?
5746 "upper_%s" : "lower_%s", adj_dev->name);
5747 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
5748 linkname);
5749}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05305750static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005751 char *name,
5752 struct list_head *dev_list)
5753{
5754 char linkname[IFNAMSIZ+7];
5755 sprintf(linkname, dev_list == &dev->adj_list.upper ?
5756 "upper_%s" : "lower_%s", name);
5757 sysfs_remove_link(&(dev->dev.kobj), linkname);
5758}
5759
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005760static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
5761 struct net_device *adj_dev,
5762 struct list_head *dev_list)
5763{
5764 return (dev_list == &dev->adj_list.upper ||
5765 dev_list == &dev->adj_list.lower) &&
5766 net_eq(dev_net(dev), dev_net(adj_dev));
5767}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005768
Veaceslav Falico5d261912013-08-28 23:25:05 +02005769static int __netdev_adjacent_dev_insert(struct net_device *dev,
5770 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005771 u16 ref_nr,
Veaceslav Falico7863c052013-09-25 09:20:06 +02005772 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005773 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005774{
5775 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005776 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005777
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005778 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005779
5780 if (adj) {
Andrew Collins93409032016-10-03 13:43:02 -06005781 adj->ref_nr += ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005782 return 0;
5783 }
5784
5785 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
5786 if (!adj)
5787 return -ENOMEM;
5788
5789 adj->dev = adj_dev;
5790 adj->master = master;
Andrew Collins93409032016-10-03 13:43:02 -06005791 adj->ref_nr = ref_nr;
Veaceslav Falico402dae92013-09-25 09:20:09 +02005792 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005793 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005794
5795 pr_debug("dev_hold for %s, because of link added from %s to %s\n",
5796 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005797
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005798 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005799 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005800 if (ret)
5801 goto free_adj;
5802 }
5803
Veaceslav Falico7863c052013-09-25 09:20:06 +02005804 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005805 if (master) {
5806 ret = sysfs_create_link(&(dev->dev.kobj),
5807 &(adj_dev->dev.kobj), "master");
5808 if (ret)
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005809 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005810
Veaceslav Falico7863c052013-09-25 09:20:06 +02005811 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005812 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02005813 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005814 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02005815
5816 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005817
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005818remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005819 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005820 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005821free_adj:
5822 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02005823 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005824
5825 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005826}
5827
stephen hemminger1d143d92013-12-29 14:01:29 -08005828static void __netdev_adjacent_dev_remove(struct net_device *dev,
5829 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005830 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005831 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005832{
5833 struct netdev_adjacent *adj;
5834
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005835 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005836
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005837 if (!adj) {
5838 pr_err("tried to remove device %s from %s\n",
5839 dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005840 BUG();
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005841 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02005842
Andrew Collins93409032016-10-03 13:43:02 -06005843 if (adj->ref_nr > ref_nr) {
5844 pr_debug("%s to %s ref_nr-%d = %d\n", dev->name, adj_dev->name,
5845 ref_nr, adj->ref_nr-ref_nr);
5846 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005847 return;
5848 }
5849
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005850 if (adj->master)
5851 sysfs_remove_link(&(dev->dev.kobj), "master");
5852
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005853 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005854 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005855
Veaceslav Falico5d261912013-08-28 23:25:05 +02005856 list_del_rcu(&adj->list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005857 pr_debug("dev_put for %s, because link removed from %s to %s\n",
5858 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005859 dev_put(adj_dev);
5860 kfree_rcu(adj, rcu);
5861}
5862
stephen hemminger1d143d92013-12-29 14:01:29 -08005863static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
5864 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005865 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005866 struct list_head *up_list,
5867 struct list_head *down_list,
5868 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005869{
5870 int ret;
5871
Andrew Collins93409032016-10-03 13:43:02 -06005872 ret = __netdev_adjacent_dev_insert(dev, upper_dev, ref_nr, up_list,
5873 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005874 if (ret)
5875 return ret;
5876
Andrew Collins93409032016-10-03 13:43:02 -06005877 ret = __netdev_adjacent_dev_insert(upper_dev, dev, ref_nr, down_list,
5878 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005879 if (ret) {
Andrew Collins93409032016-10-03 13:43:02 -06005880 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005881 return ret;
5882 }
5883
5884 return 0;
5885}
5886
stephen hemminger1d143d92013-12-29 14:01:29 -08005887static int __netdev_adjacent_dev_link(struct net_device *dev,
Andrew Collins93409032016-10-03 13:43:02 -06005888 struct net_device *upper_dev,
5889 u16 ref_nr)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005890{
Andrew Collins93409032016-10-03 13:43:02 -06005891 return __netdev_adjacent_dev_link_lists(dev, upper_dev, ref_nr,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005892 &dev->all_adj_list.upper,
5893 &upper_dev->all_adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005894 NULL, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005895}
5896
stephen hemminger1d143d92013-12-29 14:01:29 -08005897static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
5898 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005899 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005900 struct list_head *up_list,
5901 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005902{
Andrew Collins93409032016-10-03 13:43:02 -06005903 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
5904 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005905}
5906
stephen hemminger1d143d92013-12-29 14:01:29 -08005907static void __netdev_adjacent_dev_unlink(struct net_device *dev,
Andrew Collins93409032016-10-03 13:43:02 -06005908 struct net_device *upper_dev,
5909 u16 ref_nr)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005910{
Andrew Collins93409032016-10-03 13:43:02 -06005911 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, ref_nr,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005912 &dev->all_adj_list.upper,
5913 &upper_dev->all_adj_list.lower);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005914}
5915
stephen hemminger1d143d92013-12-29 14:01:29 -08005916static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
5917 struct net_device *upper_dev,
5918 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005919{
Andrew Collins93409032016-10-03 13:43:02 -06005920 int ret = __netdev_adjacent_dev_link(dev, upper_dev, 1);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005921
5922 if (ret)
5923 return ret;
5924
Andrew Collins93409032016-10-03 13:43:02 -06005925 ret = __netdev_adjacent_dev_link_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005926 &dev->adj_list.upper,
5927 &upper_dev->adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005928 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005929 if (ret) {
Andrew Collins93409032016-10-03 13:43:02 -06005930 __netdev_adjacent_dev_unlink(dev, upper_dev, 1);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005931 return ret;
5932 }
5933
5934 return 0;
5935}
5936
stephen hemminger1d143d92013-12-29 14:01:29 -08005937static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
5938 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005939{
Andrew Collins93409032016-10-03 13:43:02 -06005940 __netdev_adjacent_dev_unlink(dev, upper_dev, 1);
5941 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005942 &dev->adj_list.upper,
5943 &upper_dev->adj_list.lower);
5944}
Veaceslav Falico5d261912013-08-28 23:25:05 +02005945
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005946static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005947 struct net_device *upper_dev, bool master,
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005948 void *upper_priv, void *upper_info)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005949{
Jiri Pirko0e4ead92015-08-27 09:31:18 +02005950 struct netdev_notifier_changeupper_info changeupper_info;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005951 struct netdev_adjacent *i, *j, *to_i, *to_j;
5952 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005953
5954 ASSERT_RTNL();
5955
5956 if (dev == upper_dev)
5957 return -EBUSY;
5958
5959 /* To prevent loops, check if dev is not upper device to upper_dev. */
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005960 if (__netdev_find_adj(dev, &upper_dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005961 return -EBUSY;
5962
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005963 if (__netdev_find_adj(upper_dev, &dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005964 return -EEXIST;
5965
5966 if (master && netdev_master_upper_dev_get(dev))
5967 return -EBUSY;
5968
Jiri Pirko0e4ead92015-08-27 09:31:18 +02005969 changeupper_info.upper_dev = upper_dev;
5970 changeupper_info.master = master;
5971 changeupper_info.linking = true;
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005972 changeupper_info.upper_info = upper_info;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02005973
Jiri Pirko573c7ba2015-10-16 14:01:22 +02005974 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER, dev,
5975 &changeupper_info.info);
5976 ret = notifier_to_errno(ret);
5977 if (ret)
5978 return ret;
5979
Jiri Pirko6dffb042015-12-03 12:12:10 +01005980 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005981 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005982 if (ret)
5983 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005984
Veaceslav Falico5d261912013-08-28 23:25:05 +02005985 /* Now that we linked these devs, make all the upper_dev's
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005986 * all_adj_list.upper visible to every dev's all_adj_list.lower an
Veaceslav Falico5d261912013-08-28 23:25:05 +02005987 * versa, and don't forget the devices itself. All of these
5988 * links are non-neighbours.
5989 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005990 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5991 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
5992 pr_debug("Interlinking %s with %s, non-neighbour\n",
5993 i->dev->name, j->dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06005994 ret = __netdev_adjacent_dev_link(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005995 if (ret)
5996 goto rollback_mesh;
5997 }
5998 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005999
Veaceslav Falico5d261912013-08-28 23:25:05 +02006000 /* add dev to every upper_dev's upper device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006001 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
6002 pr_debug("linking %s's upper device %s with %s\n",
6003 upper_dev->name, i->dev->name, dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06006004 ret = __netdev_adjacent_dev_link(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006005 if (ret)
6006 goto rollback_upper_mesh;
6007 }
6008
6009 /* add upper_dev to every dev's lower device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006010 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
6011 pr_debug("linking %s's lower device %s with %s\n", dev->name,
6012 i->dev->name, upper_dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06006013 ret = __netdev_adjacent_dev_link(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006014 if (ret)
6015 goto rollback_lower_mesh;
6016 }
6017
Ido Schimmelb03804e2015-12-03 12:12:03 +01006018 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER, dev,
6019 &changeupper_info.info);
6020 ret = notifier_to_errno(ret);
6021 if (ret)
6022 goto rollback_lower_mesh;
6023
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006024 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006025
6026rollback_lower_mesh:
6027 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006028 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006029 if (i == to_i)
6030 break;
Andrew Collins93409032016-10-03 13:43:02 -06006031 __netdev_adjacent_dev_unlink(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006032 }
6033
6034 i = NULL;
6035
6036rollback_upper_mesh:
6037 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006038 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006039 if (i == to_i)
6040 break;
Andrew Collins93409032016-10-03 13:43:02 -06006041 __netdev_adjacent_dev_unlink(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006042 }
6043
6044 i = j = NULL;
6045
6046rollback_mesh:
6047 to_i = i;
6048 to_j = j;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006049 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
6050 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006051 if (i == to_i && j == to_j)
6052 break;
Andrew Collins93409032016-10-03 13:43:02 -06006053 __netdev_adjacent_dev_unlink(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006054 }
6055 if (i == to_i)
6056 break;
6057 }
6058
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006059 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006060
6061 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006062}
6063
6064/**
6065 * netdev_upper_dev_link - Add a link to the upper device
6066 * @dev: device
6067 * @upper_dev: new upper device
6068 *
6069 * Adds a link to device which is upper to this one. The caller must hold
6070 * the RTNL lock. On a failure a negative errno code is returned.
6071 * On success the reference counts are adjusted and the function
6072 * returns zero.
6073 */
6074int netdev_upper_dev_link(struct net_device *dev,
6075 struct net_device *upper_dev)
6076{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006077 return __netdev_upper_dev_link(dev, upper_dev, false, NULL, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006078}
6079EXPORT_SYMBOL(netdev_upper_dev_link);
6080
6081/**
6082 * netdev_master_upper_dev_link - Add a master link to the upper device
6083 * @dev: device
6084 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01006085 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006086 * @upper_info: upper info to be passed down via notifier
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006087 *
6088 * Adds a link to device which is upper to this one. In this case, only
6089 * one master upper device can be linked, although other non-master devices
6090 * might be linked as well. The caller must hold the RTNL lock.
6091 * On a failure a negative errno code is returned. On success the reference
6092 * counts are adjusted and the function returns zero.
6093 */
6094int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01006095 struct net_device *upper_dev,
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006096 void *upper_priv, void *upper_info)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006097{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006098 return __netdev_upper_dev_link(dev, upper_dev, true,
6099 upper_priv, upper_info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006100}
6101EXPORT_SYMBOL(netdev_master_upper_dev_link);
6102
6103/**
6104 * netdev_upper_dev_unlink - Removes a link to upper device
6105 * @dev: device
6106 * @upper_dev: new upper device
6107 *
6108 * Removes a link to device which is upper to this one. The caller must hold
6109 * the RTNL lock.
6110 */
6111void netdev_upper_dev_unlink(struct net_device *dev,
6112 struct net_device *upper_dev)
6113{
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006114 struct netdev_notifier_changeupper_info changeupper_info;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006115 struct netdev_adjacent *i, *j;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006116 ASSERT_RTNL();
6117
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006118 changeupper_info.upper_dev = upper_dev;
6119 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
6120 changeupper_info.linking = false;
6121
Jiri Pirko573c7ba2015-10-16 14:01:22 +02006122 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER, dev,
6123 &changeupper_info.info);
6124
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006125 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006126
6127 /* Here is the tricky part. We must remove all dev's lower
6128 * devices from all upper_dev's upper devices and vice
6129 * versa, to maintain the graph relationship.
6130 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006131 list_for_each_entry(i, &dev->all_adj_list.lower, list)
6132 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list)
Andrew Collins93409032016-10-03 13:43:02 -06006133 __netdev_adjacent_dev_unlink(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006134
6135 /* remove also the devices itself from lower/upper device
6136 * list
6137 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006138 list_for_each_entry(i, &dev->all_adj_list.lower, list)
Andrew Collins93409032016-10-03 13:43:02 -06006139 __netdev_adjacent_dev_unlink(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006140
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006141 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list)
Andrew Collins93409032016-10-03 13:43:02 -06006142 __netdev_adjacent_dev_unlink(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006143
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006144 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER, dev,
6145 &changeupper_info.info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006146}
6147EXPORT_SYMBOL(netdev_upper_dev_unlink);
6148
Moni Shoua61bd3852015-02-03 16:48:29 +02006149/**
6150 * netdev_bonding_info_change - Dispatch event about slave change
6151 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09006152 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02006153 *
6154 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
6155 * The caller must hold the RTNL lock.
6156 */
6157void netdev_bonding_info_change(struct net_device *dev,
6158 struct netdev_bonding_info *bonding_info)
6159{
6160 struct netdev_notifier_bonding_info info;
6161
6162 memcpy(&info.bonding_info, bonding_info,
6163 sizeof(struct netdev_bonding_info));
6164 call_netdevice_notifiers_info(NETDEV_BONDING_INFO, dev,
6165 &info.info);
6166}
6167EXPORT_SYMBOL(netdev_bonding_info_change);
6168
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08006169static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006170{
6171 struct netdev_adjacent *iter;
6172
6173 struct net *net = dev_net(dev);
6174
6175 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006176 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006177 continue;
6178 netdev_adjacent_sysfs_add(iter->dev, dev,
6179 &iter->dev->adj_list.lower);
6180 netdev_adjacent_sysfs_add(dev, iter->dev,
6181 &dev->adj_list.upper);
6182 }
6183
6184 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006185 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006186 continue;
6187 netdev_adjacent_sysfs_add(iter->dev, dev,
6188 &iter->dev->adj_list.upper);
6189 netdev_adjacent_sysfs_add(dev, iter->dev,
6190 &dev->adj_list.lower);
6191 }
6192}
6193
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08006194static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006195{
6196 struct netdev_adjacent *iter;
6197
6198 struct net *net = dev_net(dev);
6199
6200 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006201 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006202 continue;
6203 netdev_adjacent_sysfs_del(iter->dev, dev->name,
6204 &iter->dev->adj_list.lower);
6205 netdev_adjacent_sysfs_del(dev, iter->dev->name,
6206 &dev->adj_list.upper);
6207 }
6208
6209 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006210 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006211 continue;
6212 netdev_adjacent_sysfs_del(iter->dev, dev->name,
6213 &iter->dev->adj_list.upper);
6214 netdev_adjacent_sysfs_del(dev, iter->dev->name,
6215 &dev->adj_list.lower);
6216 }
6217}
6218
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006219void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02006220{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006221 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02006222
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006223 struct net *net = dev_net(dev);
6224
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006225 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006226 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006227 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006228 netdev_adjacent_sysfs_del(iter->dev, oldname,
6229 &iter->dev->adj_list.lower);
6230 netdev_adjacent_sysfs_add(iter->dev, dev,
6231 &iter->dev->adj_list.lower);
6232 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02006233
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006234 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006235 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006236 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006237 netdev_adjacent_sysfs_del(iter->dev, oldname,
6238 &iter->dev->adj_list.upper);
6239 netdev_adjacent_sysfs_add(iter->dev, dev,
6240 &iter->dev->adj_list.upper);
6241 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02006242}
Veaceslav Falico402dae92013-09-25 09:20:09 +02006243
6244void *netdev_lower_dev_get_private(struct net_device *dev,
6245 struct net_device *lower_dev)
6246{
6247 struct netdev_adjacent *lower;
6248
6249 if (!lower_dev)
6250 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006251 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02006252 if (!lower)
6253 return NULL;
6254
6255 return lower->private;
6256}
6257EXPORT_SYMBOL(netdev_lower_dev_get_private);
6258
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006259
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006260int dev_get_nest_level(struct net_device *dev)
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006261{
6262 struct net_device *lower = NULL;
6263 struct list_head *iter;
6264 int max_nest = -1;
6265 int nest;
6266
6267 ASSERT_RTNL();
6268
6269 netdev_for_each_lower_dev(dev, lower, iter) {
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006270 nest = dev_get_nest_level(lower);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006271 if (max_nest < nest)
6272 max_nest = nest;
6273 }
6274
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006275 return max_nest + 1;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006276}
6277EXPORT_SYMBOL(dev_get_nest_level);
6278
Jiri Pirko04d48262015-12-03 12:12:15 +01006279/**
6280 * netdev_lower_change - Dispatch event about lower device state change
6281 * @lower_dev: device
6282 * @lower_state_info: state to dispatch
6283 *
6284 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
6285 * The caller must hold the RTNL lock.
6286 */
6287void netdev_lower_state_changed(struct net_device *lower_dev,
6288 void *lower_state_info)
6289{
6290 struct netdev_notifier_changelowerstate_info changelowerstate_info;
6291
6292 ASSERT_RTNL();
6293 changelowerstate_info.lower_state_info = lower_state_info;
6294 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE, lower_dev,
6295 &changelowerstate_info.info);
6296}
6297EXPORT_SYMBOL(netdev_lower_state_changed);
6298
Jiri Pirko18bfb922016-07-05 11:27:38 +02006299int netdev_default_l2upper_neigh_construct(struct net_device *dev,
6300 struct neighbour *n)
6301{
6302 struct net_device *lower_dev, *stop_dev;
6303 struct list_head *iter;
6304 int err;
6305
6306 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6307 if (!lower_dev->netdev_ops->ndo_neigh_construct)
6308 continue;
6309 err = lower_dev->netdev_ops->ndo_neigh_construct(lower_dev, n);
6310 if (err) {
6311 stop_dev = lower_dev;
6312 goto rollback;
6313 }
6314 }
6315 return 0;
6316
6317rollback:
6318 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6319 if (lower_dev == stop_dev)
6320 break;
6321 if (!lower_dev->netdev_ops->ndo_neigh_destroy)
6322 continue;
6323 lower_dev->netdev_ops->ndo_neigh_destroy(lower_dev, n);
6324 }
6325 return err;
6326}
6327EXPORT_SYMBOL_GPL(netdev_default_l2upper_neigh_construct);
6328
6329void netdev_default_l2upper_neigh_destroy(struct net_device *dev,
6330 struct neighbour *n)
6331{
6332 struct net_device *lower_dev;
6333 struct list_head *iter;
6334
6335 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6336 if (!lower_dev->netdev_ops->ndo_neigh_destroy)
6337 continue;
6338 lower_dev->netdev_ops->ndo_neigh_destroy(lower_dev, n);
6339 }
6340}
6341EXPORT_SYMBOL_GPL(netdev_default_l2upper_neigh_destroy);
6342
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006343static void dev_change_rx_flags(struct net_device *dev, int flags)
6344{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006345 const struct net_device_ops *ops = dev->netdev_ops;
6346
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05006347 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006348 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006349}
6350
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006351static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07006352{
Eric Dumazetb536db92011-11-30 21:42:26 +00006353 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06006354 kuid_t uid;
6355 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07006356
Patrick McHardy24023452007-07-14 18:51:31 -07006357 ASSERT_RTNL();
6358
Wang Chendad9b332008-06-18 01:48:28 -07006359 dev->flags |= IFF_PROMISC;
6360 dev->promiscuity += inc;
6361 if (dev->promiscuity == 0) {
6362 /*
6363 * Avoid overflow.
6364 * If inc causes overflow, untouch promisc and return error.
6365 */
6366 if (inc < 0)
6367 dev->flags &= ~IFF_PROMISC;
6368 else {
6369 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006370 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
6371 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07006372 return -EOVERFLOW;
6373 }
6374 }
Patrick McHardy4417da62007-06-27 01:28:10 -07006375 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006376 pr_info("device %s %s promiscuous mode\n",
6377 dev->name,
6378 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11006379 if (audit_enabled) {
6380 current_uid_gid(&uid, &gid);
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05006381 audit_log(current->audit_context, GFP_ATOMIC,
6382 AUDIT_ANOM_PROMISCUOUS,
6383 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
6384 dev->name, (dev->flags & IFF_PROMISC),
6385 (old_flags & IFF_PROMISC),
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07006386 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06006387 from_kuid(&init_user_ns, uid),
6388 from_kgid(&init_user_ns, gid),
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05006389 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11006390 }
Patrick McHardy24023452007-07-14 18:51:31 -07006391
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006392 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07006393 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006394 if (notify)
6395 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07006396 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07006397}
6398
Linus Torvalds1da177e2005-04-16 15:20:36 -07006399/**
6400 * dev_set_promiscuity - update promiscuity count on a device
6401 * @dev: device
6402 * @inc: modifier
6403 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07006404 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07006405 * remains above zero the interface remains promiscuous. Once it hits zero
6406 * the device reverts back to normal filtering operation. A negative inc
6407 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07006408 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006409 */
Wang Chendad9b332008-06-18 01:48:28 -07006410int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006411{
Eric Dumazetb536db92011-11-30 21:42:26 +00006412 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07006413 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006414
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006415 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07006416 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07006417 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07006418 if (dev->flags != old_flags)
6419 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07006420 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006421}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006422EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006423
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006424static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006426 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006427
Patrick McHardy24023452007-07-14 18:51:31 -07006428 ASSERT_RTNL();
6429
Linus Torvalds1da177e2005-04-16 15:20:36 -07006430 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07006431 dev->allmulti += inc;
6432 if (dev->allmulti == 0) {
6433 /*
6434 * Avoid overflow.
6435 * If inc causes overflow, untouch allmulti and return error.
6436 */
6437 if (inc < 0)
6438 dev->flags &= ~IFF_ALLMULTI;
6439 else {
6440 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006441 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
6442 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07006443 return -EOVERFLOW;
6444 }
6445 }
Patrick McHardy24023452007-07-14 18:51:31 -07006446 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006447 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07006448 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006449 if (notify)
6450 __dev_notify_flags(dev, old_flags,
6451 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07006452 }
Wang Chendad9b332008-06-18 01:48:28 -07006453 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07006454}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006455
6456/**
6457 * dev_set_allmulti - update allmulti count on a device
6458 * @dev: device
6459 * @inc: modifier
6460 *
6461 * Add or remove reception of all multicast frames to a device. While the
6462 * count in the device remains above zero the interface remains listening
6463 * to all interfaces. Once it hits zero the device reverts back to normal
6464 * filtering operation. A negative @inc value is used to drop the counter
6465 * when releasing a resource needing all multicasts.
6466 * Return 0 if successful or a negative errno code on error.
6467 */
6468
6469int dev_set_allmulti(struct net_device *dev, int inc)
6470{
6471 return __dev_set_allmulti(dev, inc, true);
6472}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006473EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07006474
6475/*
6476 * Upload unicast and multicast address lists to device and
6477 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08006478 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07006479 * are present.
6480 */
6481void __dev_set_rx_mode(struct net_device *dev)
6482{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006483 const struct net_device_ops *ops = dev->netdev_ops;
6484
Patrick McHardy4417da62007-06-27 01:28:10 -07006485 /* dev_open will call this function so the list will stay sane. */
6486 if (!(dev->flags&IFF_UP))
6487 return;
6488
6489 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09006490 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07006491
Jiri Pirko01789342011-08-16 06:29:00 +00006492 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07006493 /* Unicast addresses changes may only happen under the rtnl,
6494 * therefore calling __dev_set_promiscuity here is safe.
6495 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08006496 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006497 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07006498 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08006499 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006500 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07006501 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07006502 }
Patrick McHardy4417da62007-06-27 01:28:10 -07006503 }
Jiri Pirko01789342011-08-16 06:29:00 +00006504
6505 if (ops->ndo_set_rx_mode)
6506 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07006507}
6508
6509void dev_set_rx_mode(struct net_device *dev)
6510{
David S. Millerb9e40852008-07-15 00:15:08 -07006511 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07006512 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07006513 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006514}
6515
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006516/**
6517 * dev_get_flags - get flags reported to userspace
6518 * @dev: device
6519 *
6520 * Get the combination of flag bits exported through APIs to userspace.
6521 */
Eric Dumazet95c96172012-04-15 05:58:06 +00006522unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006523{
Eric Dumazet95c96172012-04-15 05:58:06 +00006524 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525
6526 flags = (dev->flags & ~(IFF_PROMISC |
6527 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08006528 IFF_RUNNING |
6529 IFF_LOWER_UP |
6530 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531 (dev->gflags & (IFF_PROMISC |
6532 IFF_ALLMULTI));
6533
Stefan Rompfb00055a2006-03-20 17:09:11 -08006534 if (netif_running(dev)) {
6535 if (netif_oper_up(dev))
6536 flags |= IFF_RUNNING;
6537 if (netif_carrier_ok(dev))
6538 flags |= IFF_LOWER_UP;
6539 if (netif_dormant(dev))
6540 flags |= IFF_DORMANT;
6541 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542
6543 return flags;
6544}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006545EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546
Patrick McHardybd380812010-02-26 06:34:53 +00006547int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548{
Eric Dumazetb536db92011-11-30 21:42:26 +00006549 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00006550 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006551
Patrick McHardy24023452007-07-14 18:51:31 -07006552 ASSERT_RTNL();
6553
Linus Torvalds1da177e2005-04-16 15:20:36 -07006554 /*
6555 * Set the flags on our device.
6556 */
6557
6558 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
6559 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
6560 IFF_AUTOMEDIA)) |
6561 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
6562 IFF_ALLMULTI));
6563
6564 /*
6565 * Load in the correct multicast list now the flags have changed.
6566 */
6567
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006568 if ((old_flags ^ flags) & IFF_MULTICAST)
6569 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07006570
Patrick McHardy4417da62007-06-27 01:28:10 -07006571 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572
6573 /*
6574 * Have we downed the interface. We handle IFF_UP ourselves
6575 * according to user attempts to set it, rather than blindly
6576 * setting it.
6577 */
6578
6579 ret = 0;
Peter Pan(潘卫平)d215d102014-06-16 21:57:22 +08006580 if ((old_flags ^ flags) & IFF_UP)
Patrick McHardybd380812010-02-26 06:34:53 +00006581 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006582
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006584 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006585 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006586
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006588
6589 if (__dev_set_promiscuity(dev, inc, false) >= 0)
6590 if (dev->flags != old_flags)
6591 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006592 }
6593
6594 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
6595 is important. Some (broken) drivers set IFF_PROMISC, when
6596 IFF_ALLMULTI is requested not asking us and not reporting.
6597 */
6598 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006599 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
6600
Linus Torvalds1da177e2005-04-16 15:20:36 -07006601 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006602 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603 }
6604
Patrick McHardybd380812010-02-26 06:34:53 +00006605 return ret;
6606}
6607
Nicolas Dichtela528c212013-09-25 12:02:44 +02006608void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
6609 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00006610{
6611 unsigned int changes = dev->flags ^ old_flags;
6612
Nicolas Dichtela528c212013-09-25 12:02:44 +02006613 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006614 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02006615
Patrick McHardybd380812010-02-26 06:34:53 +00006616 if (changes & IFF_UP) {
6617 if (dev->flags & IFF_UP)
6618 call_netdevice_notifiers(NETDEV_UP, dev);
6619 else
6620 call_netdevice_notifiers(NETDEV_DOWN, dev);
6621 }
6622
6623 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00006624 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
6625 struct netdev_notifier_change_info change_info;
6626
6627 change_info.flags_changed = changes;
6628 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
6629 &change_info.info);
6630 }
Patrick McHardybd380812010-02-26 06:34:53 +00006631}
6632
6633/**
6634 * dev_change_flags - change device settings
6635 * @dev: device
6636 * @flags: device state flags
6637 *
6638 * Change settings on device based state flags. The flags are
6639 * in the userspace exported format.
6640 */
Eric Dumazetb536db92011-11-30 21:42:26 +00006641int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00006642{
Eric Dumazetb536db92011-11-30 21:42:26 +00006643 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006644 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00006645
6646 ret = __dev_change_flags(dev, flags);
6647 if (ret < 0)
6648 return ret;
6649
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006650 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02006651 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006652 return ret;
6653}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006654EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006655
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006656static int __dev_set_mtu(struct net_device *dev, int new_mtu)
6657{
6658 const struct net_device_ops *ops = dev->netdev_ops;
6659
6660 if (ops->ndo_change_mtu)
6661 return ops->ndo_change_mtu(dev, new_mtu);
6662
6663 dev->mtu = new_mtu;
6664 return 0;
6665}
6666
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006667/**
6668 * dev_set_mtu - Change maximum transfer unit
6669 * @dev: device
6670 * @new_mtu: new transfer unit
6671 *
6672 * Change the maximum transfer size of the network device.
6673 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674int dev_set_mtu(struct net_device *dev, int new_mtu)
6675{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006676 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677
6678 if (new_mtu == dev->mtu)
6679 return 0;
6680
6681 /* MTU must be positive. */
6682 if (new_mtu < 0)
6683 return -EINVAL;
6684
6685 if (!netif_device_present(dev))
6686 return -ENODEV;
6687
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01006688 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
6689 err = notifier_to_errno(err);
6690 if (err)
6691 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006692
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006693 orig_mtu = dev->mtu;
6694 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006695
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006696 if (!err) {
6697 err = call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
6698 err = notifier_to_errno(err);
6699 if (err) {
6700 /* setting mtu back and notifying everyone again,
6701 * so that they have a chance to revert changes.
6702 */
6703 __dev_set_mtu(dev, orig_mtu);
6704 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
6705 }
6706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006707 return err;
6708}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006709EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006710
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006711/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00006712 * dev_set_group - Change group this device belongs to
6713 * @dev: device
6714 * @new_group: group this device should belong to
6715 */
6716void dev_set_group(struct net_device *dev, int new_group)
6717{
6718 dev->group = new_group;
6719}
6720EXPORT_SYMBOL(dev_set_group);
6721
6722/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006723 * dev_set_mac_address - Change Media Access Control Address
6724 * @dev: device
6725 * @sa: new address
6726 *
6727 * Change the hardware (MAC) address of the device
6728 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006729int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
6730{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006731 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006732 int err;
6733
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006734 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735 return -EOPNOTSUPP;
6736 if (sa->sa_family != dev->type)
6737 return -EINVAL;
6738 if (!netif_device_present(dev))
6739 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006740 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00006741 if (err)
6742 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00006743 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00006744 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04006745 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00006746 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006747}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006748EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006749
Jiri Pirko4bf84c32012-12-27 23:49:37 +00006750/**
6751 * dev_change_carrier - Change device carrier
6752 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00006753 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00006754 *
6755 * Change device carrier
6756 */
6757int dev_change_carrier(struct net_device *dev, bool new_carrier)
6758{
6759 const struct net_device_ops *ops = dev->netdev_ops;
6760
6761 if (!ops->ndo_change_carrier)
6762 return -EOPNOTSUPP;
6763 if (!netif_device_present(dev))
6764 return -ENODEV;
6765 return ops->ndo_change_carrier(dev, new_carrier);
6766}
6767EXPORT_SYMBOL(dev_change_carrier);
6768
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02006770 * dev_get_phys_port_id - Get device physical port ID
6771 * @dev: device
6772 * @ppid: port ID
6773 *
6774 * Get device physical port ID
6775 */
6776int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01006777 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02006778{
6779 const struct net_device_ops *ops = dev->netdev_ops;
6780
6781 if (!ops->ndo_get_phys_port_id)
6782 return -EOPNOTSUPP;
6783 return ops->ndo_get_phys_port_id(dev, ppid);
6784}
6785EXPORT_SYMBOL(dev_get_phys_port_id);
6786
6787/**
David Aherndb24a902015-03-17 20:23:15 -06006788 * dev_get_phys_port_name - Get device physical port name
6789 * @dev: device
6790 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00006791 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06006792 *
6793 * Get device physical port name
6794 */
6795int dev_get_phys_port_name(struct net_device *dev,
6796 char *name, size_t len)
6797{
6798 const struct net_device_ops *ops = dev->netdev_ops;
6799
6800 if (!ops->ndo_get_phys_port_name)
6801 return -EOPNOTSUPP;
6802 return ops->ndo_get_phys_port_name(dev, name, len);
6803}
6804EXPORT_SYMBOL(dev_get_phys_port_name);
6805
6806/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07006807 * dev_change_proto_down - update protocol port state information
6808 * @dev: device
6809 * @proto_down: new value
6810 *
6811 * This info can be used by switch drivers to set the phys state of the
6812 * port.
6813 */
6814int dev_change_proto_down(struct net_device *dev, bool proto_down)
6815{
6816 const struct net_device_ops *ops = dev->netdev_ops;
6817
6818 if (!ops->ndo_change_proto_down)
6819 return -EOPNOTSUPP;
6820 if (!netif_device_present(dev))
6821 return -ENODEV;
6822 return ops->ndo_change_proto_down(dev, proto_down);
6823}
6824EXPORT_SYMBOL(dev_change_proto_down);
6825
6826/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07006827 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
6828 * @dev: device
6829 * @fd: new program fd or negative value to clear
6830 *
6831 * Set or clear a bpf program for a device
6832 */
6833int dev_change_xdp_fd(struct net_device *dev, int fd)
6834{
6835 const struct net_device_ops *ops = dev->netdev_ops;
6836 struct bpf_prog *prog = NULL;
6837 struct netdev_xdp xdp = {};
6838 int err;
6839
6840 if (!ops->ndo_xdp)
6841 return -EOPNOTSUPP;
6842 if (fd >= 0) {
6843 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_XDP);
6844 if (IS_ERR(prog))
6845 return PTR_ERR(prog);
6846 }
6847
6848 xdp.command = XDP_SETUP_PROG;
6849 xdp.prog = prog;
6850 err = ops->ndo_xdp(dev, &xdp);
6851 if (err < 0 && prog)
6852 bpf_prog_put(prog);
6853
6854 return err;
6855}
6856EXPORT_SYMBOL(dev_change_xdp_fd);
6857
6858/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006859 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07006860 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07006861 *
6862 * Returns a suitable unique value for a new device interface
6863 * number. The caller must hold the rtnl semaphore or the
6864 * dev_base_lock to be sure it remains unique.
6865 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07006866static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006867{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00006868 int ifindex = net->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006869 for (;;) {
6870 if (++ifindex <= 0)
6871 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006872 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00006873 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006874 }
6875}
6876
Linus Torvalds1da177e2005-04-16 15:20:36 -07006877/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08006878static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07006879DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880
Stephen Hemminger6f05f622007-03-08 20:46:03 -08006881static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006882{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006883 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07006884 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006885}
6886
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006887static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006888{
Krishna Kumare93737b2009-12-08 22:26:02 +00006889 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006890 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006891
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006892 BUG_ON(dev_boot_phase);
6893 ASSERT_RTNL();
6894
Krishna Kumare93737b2009-12-08 22:26:02 +00006895 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006896 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00006897 * for initialization unwind. Remove those
6898 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006899 */
6900 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006901 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
6902 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006903
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006904 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00006905 list_del(&dev->unreg_list);
6906 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006907 }
Eric Dumazet449f4542011-05-19 12:24:16 +00006908 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006909 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00006910 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006911
Octavian Purdila44345722010-12-13 12:44:07 +00006912 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006913 list_for_each_entry(dev, head, unreg_list)
6914 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04006915 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006916
Octavian Purdila44345722010-12-13 12:44:07 +00006917 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006918 /* And unlink it from device chain. */
6919 unlist_netdevice(dev);
6920
6921 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006922 }
Eric Dumazet41852492016-08-26 12:50:39 -07006923 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006924
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006925 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006926
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006927 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006928 struct sk_buff *skb = NULL;
6929
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006930 /* Shutdown queueing discipline. */
6931 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006932
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006933
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006934 /* Notify protocols, that we are about to destroy
6935 this device. They should clean all the things.
6936 */
6937 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
6938
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006939 if (!dev->rtnl_link_ops ||
6940 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
6941 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U,
6942 GFP_KERNEL);
6943
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006944 /*
6945 * Flush the unicast and multicast chains
6946 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006947 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00006948 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006949
6950 if (dev->netdev_ops->ndo_uninit)
6951 dev->netdev_ops->ndo_uninit(dev);
6952
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006953 if (skb)
6954 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07006955
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006956 /* Notifier chain MUST detach us all upper devices. */
6957 WARN_ON(netdev_has_any_upper_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006958
6959 /* Remove entries from kobject tree */
6960 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00006961#ifdef CONFIG_XPS
6962 /* Remove XPS queueing entries */
6963 netif_reset_xps_queues_gt(dev, 0);
6964#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006965 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006966
Eric W. Biederman850a5452011-10-13 22:25:23 +00006967 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006968
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00006969 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006970 dev_put(dev);
6971}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006972
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006973static void rollback_registered(struct net_device *dev)
6974{
6975 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006976
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006977 list_add(&dev->unreg_list, &single);
6978 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00006979 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006980}
6981
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006982static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
6983 struct net_device *upper, netdev_features_t features)
6984{
6985 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
6986 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05006987 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006988
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05006989 for_each_netdev_feature(&upper_disables, feature_bit) {
6990 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006991 if (!(upper->wanted_features & feature)
6992 && (features & feature)) {
6993 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
6994 &feature, upper->name);
6995 features &= ~feature;
6996 }
6997 }
6998
6999 return features;
7000}
7001
7002static void netdev_sync_lower_features(struct net_device *upper,
7003 struct net_device *lower, netdev_features_t features)
7004{
7005 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
7006 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007007 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007008
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007009 for_each_netdev_feature(&upper_disables, feature_bit) {
7010 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007011 if (!(features & feature) && (lower->features & feature)) {
7012 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
7013 &feature, lower->name);
7014 lower->wanted_features &= ~feature;
7015 netdev_update_features(lower);
7016
7017 if (unlikely(lower->features & feature))
7018 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
7019 &feature, lower->name);
7020 }
7021 }
7022}
7023
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007024static netdev_features_t netdev_fix_features(struct net_device *dev,
7025 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07007026{
Michał Mirosław57422dc2011-01-22 12:14:12 +00007027 /* Fix illegal checksum combinations */
7028 if ((features & NETIF_F_HW_CSUM) &&
7029 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007030 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00007031 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
7032 }
7033
Herbert Xub63365a2008-10-23 01:11:29 -07007034 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00007035 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007036 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00007037 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07007038 }
7039
Pravin B Shelarec5f0612013-03-07 09:28:01 +00007040 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
7041 !(features & NETIF_F_IP_CSUM)) {
7042 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
7043 features &= ~NETIF_F_TSO;
7044 features &= ~NETIF_F_TSO_ECN;
7045 }
7046
7047 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
7048 !(features & NETIF_F_IPV6_CSUM)) {
7049 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
7050 features &= ~NETIF_F_TSO6;
7051 }
7052
Alexander Duyckb1dc4972016-05-02 09:38:24 -07007053 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
7054 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
7055 features &= ~NETIF_F_TSO_MANGLEID;
7056
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00007057 /* TSO ECN requires that TSO is present as well. */
7058 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
7059 features &= ~NETIF_F_TSO_ECN;
7060
Michał Mirosław212b5732011-02-15 16:59:16 +00007061 /* Software GSO depends on SG. */
7062 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007063 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00007064 features &= ~NETIF_F_GSO;
7065 }
7066
Michał Mirosławacd11302011-01-24 15:45:15 -08007067 /* UFO needs SG and checksumming */
Herbert Xub63365a2008-10-23 01:11:29 -07007068 if (features & NETIF_F_UFO) {
Michał Mirosław79032642010-11-30 06:38:00 +00007069 /* maybe split UFO into V4 and V6? */
Tom Herbertc8cd0982015-12-14 11:19:44 -08007070 if (!(features & NETIF_F_HW_CSUM) &&
7071 ((features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) !=
7072 (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007073 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08007074 "Dropping NETIF_F_UFO since no checksum offload features.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07007075 features &= ~NETIF_F_UFO;
7076 }
7077
7078 if (!(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007079 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08007080 "Dropping NETIF_F_UFO since no NETIF_F_SG feature.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07007081 features &= ~NETIF_F_UFO;
7082 }
7083 }
7084
Alexander Duyck802ab552016-04-10 21:45:03 -04007085 /* GSO partial features require GSO partial be set */
7086 if ((features & dev->gso_partial_features) &&
7087 !(features & NETIF_F_GSO_PARTIAL)) {
7088 netdev_dbg(dev,
7089 "Dropping partially supported GSO features since no GSO partial.\n");
7090 features &= ~dev->gso_partial_features;
7091 }
7092
Jiri Pirkod0290212014-04-02 23:09:31 +02007093#ifdef CONFIG_NET_RX_BUSY_POLL
7094 if (dev->netdev_ops->ndo_busy_poll)
7095 features |= NETIF_F_BUSY_POLL;
7096 else
7097#endif
7098 features &= ~NETIF_F_BUSY_POLL;
7099
Herbert Xub63365a2008-10-23 01:11:29 -07007100 return features;
7101}
Herbert Xub63365a2008-10-23 01:11:29 -07007102
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007103int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00007104{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007105 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007106 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007107 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05007108 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00007109
Michał Mirosław87267482011-04-12 09:56:38 +00007110 ASSERT_RTNL();
7111
Michał Mirosław5455c692011-02-15 16:59:17 +00007112 features = netdev_get_wanted_features(dev);
7113
7114 if (dev->netdev_ops->ndo_fix_features)
7115 features = dev->netdev_ops->ndo_fix_features(dev, features);
7116
7117 /* driver might be less strict about feature dependencies */
7118 features = netdev_fix_features(dev, features);
7119
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007120 /* some features can't be enabled if they're off an an upper device */
7121 netdev_for_each_upper_dev_rcu(dev, upper, iter)
7122 features = netdev_sync_upper_features(dev, upper, features);
7123
Michał Mirosław5455c692011-02-15 16:59:17 +00007124 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05007125 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00007126
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007127 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
7128 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00007129
7130 if (dev->netdev_ops->ndo_set_features)
7131 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01007132 else
7133 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00007134
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007135 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00007136 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007137 "set_features() failed (%d); wanted %pNF, left %pNF\n",
7138 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01007139 /* return non-0 since some features might have changed and
7140 * it's better to fire a spurious notification than miss it
7141 */
7142 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007143 }
7144
Jarod Wilsone7868a82015-11-03 23:09:32 -05007145sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007146 /* some features must be disabled on lower devices when disabled
7147 * on an upper device (think: bonding master or bridge)
7148 */
7149 netdev_for_each_lower_dev(dev, lower, iter)
7150 netdev_sync_lower_features(dev, lower, features);
7151
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007152 if (!err)
7153 dev->features = features;
7154
Jarod Wilsone7868a82015-11-03 23:09:32 -05007155 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007156}
7157
Michał Mirosławafe12cc2011-05-07 03:22:17 +00007158/**
7159 * netdev_update_features - recalculate device features
7160 * @dev: the device to check
7161 *
7162 * Recalculate dev->features set and send notifications if it
7163 * has changed. Should be called after driver or hardware dependent
7164 * conditions might have changed that influence the features.
7165 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007166void netdev_update_features(struct net_device *dev)
7167{
7168 if (__netdev_update_features(dev))
7169 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00007170}
7171EXPORT_SYMBOL(netdev_update_features);
7172
Linus Torvalds1da177e2005-04-16 15:20:36 -07007173/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00007174 * netdev_change_features - recalculate device features
7175 * @dev: the device to check
7176 *
7177 * Recalculate dev->features set and send notifications even
7178 * if they have not changed. Should be called instead of
7179 * netdev_update_features() if also dev->vlan_features might
7180 * have changed to allow the changes to be propagated to stacked
7181 * VLAN devices.
7182 */
7183void netdev_change_features(struct net_device *dev)
7184{
7185 __netdev_update_features(dev);
7186 netdev_features_change(dev);
7187}
7188EXPORT_SYMBOL(netdev_change_features);
7189
7190/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08007191 * netif_stacked_transfer_operstate - transfer operstate
7192 * @rootdev: the root or lower level device to transfer state from
7193 * @dev: the device to transfer operstate to
7194 *
7195 * Transfer operational state from root to device. This is normally
7196 * called when a stacking relationship exists between the root
7197 * device and the device(a leaf device).
7198 */
7199void netif_stacked_transfer_operstate(const struct net_device *rootdev,
7200 struct net_device *dev)
7201{
7202 if (rootdev->operstate == IF_OPER_DORMANT)
7203 netif_dormant_on(dev);
7204 else
7205 netif_dormant_off(dev);
7206
7207 if (netif_carrier_ok(rootdev)) {
7208 if (!netif_carrier_ok(dev))
7209 netif_carrier_on(dev);
7210 } else {
7211 if (netif_carrier_ok(dev))
7212 netif_carrier_off(dev);
7213 }
7214}
7215EXPORT_SYMBOL(netif_stacked_transfer_operstate);
7216
Michael Daltona953be52014-01-16 22:23:28 -08007217#ifdef CONFIG_SYSFS
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007218static int netif_alloc_rx_queues(struct net_device *dev)
7219{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007220 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00007221 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05307222 size_t sz = count * sizeof(*rx);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007223
Tom Herbertbd25fa72010-10-18 18:00:16 +00007224 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007225
Pankaj Gupta10595902015-01-12 11:41:28 +05307226 rx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7227 if (!rx) {
7228 rx = vzalloc(sz);
7229 if (!rx)
7230 return -ENOMEM;
7231 }
Tom Herbertbd25fa72010-10-18 18:00:16 +00007232 dev->_rx = rx;
7233
Tom Herbertbd25fa72010-10-18 18:00:16 +00007234 for (i = 0; i < count; i++)
Tom Herbertfe822242010-11-09 10:47:38 +00007235 rx[i].dev = dev;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007236 return 0;
7237}
Tom Herbertbf264142010-11-26 08:36:09 +00007238#endif
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007239
Changli Gaoaa942102010-12-04 02:31:41 +00007240static void netdev_init_one_queue(struct net_device *dev,
7241 struct netdev_queue *queue, void *_unused)
7242{
7243 /* Initialize queue lock */
7244 spin_lock_init(&queue->_xmit_lock);
7245 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
7246 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00007247 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00007248 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00007249#ifdef CONFIG_BQL
7250 dql_init(&queue->dql, HZ);
7251#endif
Changli Gaoaa942102010-12-04 02:31:41 +00007252}
7253
Eric Dumazet60877a32013-06-20 01:15:51 -07007254static void netif_free_tx_queues(struct net_device *dev)
7255{
WANG Cong4cb28972014-06-02 15:55:22 -07007256 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07007257}
7258
Tom Herberte6484932010-10-18 18:04:39 +00007259static int netif_alloc_netdev_queues(struct net_device *dev)
7260{
7261 unsigned int count = dev->num_tx_queues;
7262 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07007263 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00007264
Eric Dumazetd3397272015-07-06 17:13:26 +02007265 if (count < 1 || count > 0xffff)
7266 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00007267
Eric Dumazet60877a32013-06-20 01:15:51 -07007268 tx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7269 if (!tx) {
7270 tx = vzalloc(sz);
7271 if (!tx)
7272 return -ENOMEM;
7273 }
Tom Herberte6484932010-10-18 18:04:39 +00007274 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00007275
Tom Herberte6484932010-10-18 18:04:39 +00007276 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
7277 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00007278
7279 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00007280}
7281
Denys Vlasenkoa2029242015-05-11 21:17:53 +02007282void netif_tx_stop_all_queues(struct net_device *dev)
7283{
7284 unsigned int i;
7285
7286 for (i = 0; i < dev->num_tx_queues; i++) {
7287 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
7288 netif_tx_stop_queue(txq);
7289 }
7290}
7291EXPORT_SYMBOL(netif_tx_stop_all_queues);
7292
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08007293/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294 * register_netdevice - register a network device
7295 * @dev: device to register
7296 *
7297 * Take a completed network device structure and add it to the kernel
7298 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
7299 * chain. 0 is returned on success. A negative errno code is returned
7300 * on a failure to set up the device, or if the name is a duplicate.
7301 *
7302 * Callers must hold the rtnl semaphore. You may want
7303 * register_netdev() instead of this.
7304 *
7305 * BUGS:
7306 * The locking appears insufficient to guarantee two parallel registers
7307 * will not get the same name.
7308 */
7309
7310int register_netdevice(struct net_device *dev)
7311{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007312 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007313 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007314
7315 BUG_ON(dev_boot_phase);
7316 ASSERT_RTNL();
7317
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007318 might_sleep();
7319
Linus Torvalds1da177e2005-04-16 15:20:36 -07007320 /* When net_device's are persistent, this will be fatal. */
7321 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007322 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007323
David S. Millerf1f28aa2008-07-15 00:08:33 -07007324 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07007325 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007326
Gao feng828de4f2012-09-13 20:58:27 +00007327 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00007328 if (ret < 0)
7329 goto out;
7330
Linus Torvalds1da177e2005-04-16 15:20:36 -07007331 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007332 if (dev->netdev_ops->ndo_init) {
7333 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334 if (ret) {
7335 if (ret > 0)
7336 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08007337 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007338 }
7339 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007340
Patrick McHardyf6469682013-04-19 02:04:27 +00007341 if (((dev->hw_features | dev->features) &
7342 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00007343 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
7344 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
7345 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
7346 ret = -EINVAL;
7347 goto err_uninit;
7348 }
7349
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00007350 ret = -EBUSY;
7351 if (!dev->ifindex)
7352 dev->ifindex = dev_new_index(net);
7353 else if (__dev_get_by_index(net, dev->ifindex))
7354 goto err_uninit;
7355
Michał Mirosław5455c692011-02-15 16:59:17 +00007356 /* Transfer changeable features to wanted_features and enable
7357 * software offloads (GSO and GRO).
7358 */
7359 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00007360 dev->features |= NETIF_F_SOFT_FEATURES;
7361 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007362
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007363 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00007364 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007365
Alexander Duyck7f348a62016-04-20 16:51:00 -04007366 /* If IPv4 TCP segmentation offload is supported we should also
7367 * allow the device to enable segmenting the frame with the option
7368 * of ignoring a static IP ID value. This doesn't enable the
7369 * feature itself but allows the user to enable it later.
7370 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007371 if (dev->hw_features & NETIF_F_TSO)
7372 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04007373 if (dev->vlan_features & NETIF_F_TSO)
7374 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
7375 if (dev->mpls_features & NETIF_F_TSO)
7376 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
7377 if (dev->hw_enc_features & NETIF_F_TSO)
7378 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07007379
Michał Mirosław1180e7d2011-07-14 14:41:11 -07007380 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00007381 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07007382 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00007383
Pravin B Shelaree579672013-03-07 09:28:08 +00007384 /* Make NETIF_F_SG inheritable to tunnel devices.
7385 */
Alexander Duyck802ab552016-04-10 21:45:03 -04007386 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +00007387
Simon Horman0d89d202013-05-23 21:02:52 +00007388 /* Make NETIF_F_SG inheritable to MPLS.
7389 */
7390 dev->mpls_features |= NETIF_F_SG;
7391
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00007392 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
7393 ret = notifier_to_errno(ret);
7394 if (ret)
7395 goto err_uninit;
7396
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007397 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007398 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007399 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007400 dev->reg_state = NETREG_REGISTERED;
7401
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007402 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00007403
Linus Torvalds1da177e2005-04-16 15:20:36 -07007404 /*
7405 * Default initial state at registry is that the
7406 * device is present.
7407 */
7408
7409 set_bit(__LINK_STATE_PRESENT, &dev->state);
7410
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01007411 linkwatch_init_dev(dev);
7412
Linus Torvalds1da177e2005-04-16 15:20:36 -07007413 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007414 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007415 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04007416 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007417
Jiri Pirko948b3372013-01-08 01:38:25 +00007418 /* If the device has permanent device address, driver should
7419 * set dev_addr and also addr_assign_type should be set to
7420 * NET_ADDR_PERM (default value).
7421 */
7422 if (dev->addr_assign_type == NET_ADDR_PERM)
7423 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
7424
Linus Torvalds1da177e2005-04-16 15:20:36 -07007425 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07007426 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07007427 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007428 if (ret) {
7429 rollback_registered(dev);
7430 dev->reg_state = NETREG_UNREGISTERED;
7431 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00007432 /*
7433 * Prevent userspace races by waiting until the network
7434 * device is fully setup before sending notifications.
7435 */
Patrick McHardya2835762010-02-26 06:34:51 +00007436 if (!dev->rtnl_link_ops ||
7437 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007438 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007439
7440out:
7441 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007442
7443err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007444 if (dev->netdev_ops->ndo_uninit)
7445 dev->netdev_ops->ndo_uninit(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007446 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007447}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007448EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007449
7450/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007451 * init_dummy_netdev - init a dummy network device for NAPI
7452 * @dev: device to init
7453 *
7454 * This takes a network device structure and initialize the minimum
7455 * amount of fields so it can be used to schedule NAPI polls without
7456 * registering a full blown interface. This is to be used by drivers
7457 * that need to tie several hardware interfaces to a single NAPI
7458 * poll scheduler due to HW limitations.
7459 */
7460int init_dummy_netdev(struct net_device *dev)
7461{
7462 /* Clear everything. Note we don't initialize spinlocks
7463 * are they aren't supposed to be taken by any of the
7464 * NAPI code and this dummy netdev is supposed to be
7465 * only ever used for NAPI polls
7466 */
7467 memset(dev, 0, sizeof(struct net_device));
7468
7469 /* make sure we BUG if trying to hit standard
7470 * register/unregister code path
7471 */
7472 dev->reg_state = NETREG_DUMMY;
7473
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007474 /* NAPI wants this */
7475 INIT_LIST_HEAD(&dev->napi_list);
7476
7477 /* a dummy interface is started by default */
7478 set_bit(__LINK_STATE_PRESENT, &dev->state);
7479 set_bit(__LINK_STATE_START, &dev->state);
7480
Eric Dumazet29b44332010-10-11 10:22:12 +00007481 /* Note : We dont allocate pcpu_refcnt for dummy devices,
7482 * because users of this 'device' dont need to change
7483 * its refcount.
7484 */
7485
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007486 return 0;
7487}
7488EXPORT_SYMBOL_GPL(init_dummy_netdev);
7489
7490
7491/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007492 * register_netdev - register a network device
7493 * @dev: device to register
7494 *
7495 * Take a completed network device structure and add it to the kernel
7496 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
7497 * chain. 0 is returned on success. A negative errno code is returned
7498 * on a failure to set up the device, or if the name is a duplicate.
7499 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07007500 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07007501 * and expands the device name if you passed a format string to
7502 * alloc_netdev.
7503 */
7504int register_netdev(struct net_device *dev)
7505{
7506 int err;
7507
7508 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007509 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007510 rtnl_unlock();
7511 return err;
7512}
7513EXPORT_SYMBOL(register_netdev);
7514
Eric Dumazet29b44332010-10-11 10:22:12 +00007515int netdev_refcnt_read(const struct net_device *dev)
7516{
7517 int i, refcnt = 0;
7518
7519 for_each_possible_cpu(i)
7520 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
7521 return refcnt;
7522}
7523EXPORT_SYMBOL(netdev_refcnt_read);
7524
Ben Hutchings2c530402012-07-10 10:55:09 +00007525/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007526 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00007527 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07007528 *
7529 * This is called when unregistering network devices.
7530 *
7531 * Any protocol or device that holds a reference should register
7532 * for netdevice notification, and cleanup and put back the
7533 * reference if they receive an UNREGISTER event.
7534 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007535 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007536 */
7537static void netdev_wait_allrefs(struct net_device *dev)
7538{
7539 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00007540 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007541
Eric Dumazete014deb2009-11-17 05:59:21 +00007542 linkwatch_forget_dev(dev);
7543
Linus Torvalds1da177e2005-04-16 15:20:36 -07007544 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00007545 refcnt = netdev_refcnt_read(dev);
7546
7547 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007548 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08007549 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007550
7551 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07007552 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007553
Eric Dumazet748e2d92012-08-22 21:50:59 +00007554 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007555 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00007556 rtnl_lock();
7557
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007558 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
7560 &dev->state)) {
7561 /* We must not have linkwatch events
7562 * pending on unregister. If this
7563 * happens, we simply run the queue
7564 * unscheduled, resulting in a noop
7565 * for this device.
7566 */
7567 linkwatch_run_queue();
7568 }
7569
Stephen Hemminger6756ae42006-03-20 22:23:58 -08007570 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007571
7572 rebroadcast_time = jiffies;
7573 }
7574
7575 msleep(250);
7576
Eric Dumazet29b44332010-10-11 10:22:12 +00007577 refcnt = netdev_refcnt_read(dev);
7578
Linus Torvalds1da177e2005-04-16 15:20:36 -07007579 if (time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007580 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
7581 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582 warning_time = jiffies;
7583 }
7584 }
7585}
7586
7587/* The sequence is:
7588 *
7589 * rtnl_lock();
7590 * ...
7591 * register_netdevice(x1);
7592 * register_netdevice(x2);
7593 * ...
7594 * unregister_netdevice(y1);
7595 * unregister_netdevice(y2);
7596 * ...
7597 * rtnl_unlock();
7598 * free_netdev(y1);
7599 * free_netdev(y2);
7600 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07007601 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07007602 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007603 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07007604 * without deadlocking with linkwatch via keventd.
7605 * 2) Since we run with the RTNL semaphore not held, we can sleep
7606 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07007607 *
7608 * We must not return until all unregister events added during
7609 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007610 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007611void netdev_run_todo(void)
7612{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007613 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007614
Linus Torvalds1da177e2005-04-16 15:20:36 -07007615 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007616 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07007617
7618 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007619
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007620
7621 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00007622 if (!list_empty(&list))
7623 rcu_barrier();
7624
Linus Torvalds1da177e2005-04-16 15:20:36 -07007625 while (!list_empty(&list)) {
7626 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00007627 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007628 list_del(&dev->todo_list);
7629
Eric Dumazet748e2d92012-08-22 21:50:59 +00007630 rtnl_lock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007631 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Eric Dumazet748e2d92012-08-22 21:50:59 +00007632 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007633
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007634 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007635 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07007636 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007637 dump_stack();
7638 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007640
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007641 dev->reg_state = NETREG_UNREGISTERED;
7642
7643 netdev_wait_allrefs(dev);
7644
7645 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00007646 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -08007647 BUG_ON(!list_empty(&dev->ptype_all));
7648 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +00007649 WARN_ON(rcu_access_pointer(dev->ip_ptr));
7650 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
Ilpo Järvinen547b7922008-07-25 21:43:18 -07007651 WARN_ON(dev->dn_ptr);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007652
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007653 if (dev->destructor)
7654 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07007655
Eric W. Biederman50624c92013-09-23 21:19:49 -07007656 /* Report a network device has been unregistered */
7657 rtnl_lock();
7658 dev_net(dev)->dev_unreg_count--;
7659 __rtnl_unlock();
7660 wake_up(&netdev_unregistering_wq);
7661
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07007662 /* Free network device */
7663 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007665}
7666
Jarod Wilson92566452016-02-01 18:51:04 -05007667/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
7668 * all the same fields in the same order as net_device_stats, with only
7669 * the type differing, but rtnl_link_stats64 may have additional fields
7670 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +00007671 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00007672void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
7673 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00007674{
7675#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -05007676 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys05e165e2017-07-03 03:20:13 +02007677 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -05007678 /* zero out counters that only exist in rtnl_link_stats64 */
7679 memset((char *)stats64 + sizeof(*netdev_stats), 0,
7680 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007681#else
Jarod Wilson92566452016-02-01 18:51:04 -05007682 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +00007683 const unsigned long *src = (const unsigned long *)netdev_stats;
7684 u64 *dst = (u64 *)stats64;
7685
Jarod Wilson92566452016-02-01 18:51:04 -05007686 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007687 for (i = 0; i < n; i++)
7688 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -05007689 /* zero out counters that only exist in rtnl_link_stats64 */
7690 memset((char *)stats64 + n * sizeof(u64), 0,
7691 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007692#endif
7693}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00007694EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00007695
Eric Dumazetd83345a2009-11-16 03:36:51 +00007696/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007697 * dev_get_stats - get network device statistics
7698 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07007699 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007700 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00007701 * Get network statistics from device. Return @storage.
7702 * The device driver may provide its own method by setting
7703 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
7704 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007705 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00007706struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
7707 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00007708{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007709 const struct net_device_ops *ops = dev->netdev_ops;
7710
Eric Dumazet28172732010-07-07 14:58:56 -07007711 if (ops->ndo_get_stats64) {
7712 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00007713 ops->ndo_get_stats64(dev, storage);
7714 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00007715 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00007716 } else {
7717 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07007718 }
Eric Dumazet3f04c322017-06-27 07:02:20 -07007719 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
7720 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
7721 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -07007722 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07007723}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007724EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07007725
Eric Dumazet24824a02010-10-02 06:11:55 +00007726struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07007727{
Eric Dumazet24824a02010-10-02 06:11:55 +00007728 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07007729
Eric Dumazet24824a02010-10-02 06:11:55 +00007730#ifdef CONFIG_NET_CLS_ACT
7731 if (queue)
7732 return queue;
7733 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
7734 if (!queue)
7735 return NULL;
7736 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007737 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +00007738 queue->qdisc_sleeping = &noop_qdisc;
7739 rcu_assign_pointer(dev->ingress_queue, queue);
7740#endif
7741 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07007742}
7743
Eric Dumazet2c60db02012-09-16 09:17:26 +00007744static const struct ethtool_ops default_ethtool_ops;
7745
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00007746void netdev_set_default_ethtool_ops(struct net_device *dev,
7747 const struct ethtool_ops *ops)
7748{
7749 if (dev->ethtool_ops == &default_ethtool_ops)
7750 dev->ethtool_ops = ops;
7751}
7752EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
7753
Eric Dumazet74d332c2013-10-30 13:10:44 -07007754void netdev_freemem(struct net_device *dev)
7755{
7756 char *addr = (char *)dev - dev->padded;
7757
WANG Cong4cb28972014-06-02 15:55:22 -07007758 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07007759}
7760
Linus Torvalds1da177e2005-04-16 15:20:36 -07007761/**
Tom Herbert36909ea2011-01-09 19:36:31 +00007762 * alloc_netdev_mqs - allocate network device
Tom Gundersenc835a672014-07-14 16:37:24 +02007763 * @sizeof_priv: size of private data to allocate space for
7764 * @name: device name format string
7765 * @name_assign_type: origin of device name
7766 * @setup: callback to initialize device
7767 * @txqs: the number of TX subqueues to allocate
7768 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07007769 *
7770 * Allocates a struct net_device with private data area for driver use
Li Zhong90e51ad2013-11-22 15:04:46 +08007771 * and performs basic initialization. Also allocates subqueue structs
Tom Herbert36909ea2011-01-09 19:36:31 +00007772 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007773 */
Tom Herbert36909ea2011-01-09 19:36:31 +00007774struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02007775 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00007776 void (*setup)(struct net_device *),
7777 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007778{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007779 struct net_device *dev;
Stephen Hemminger79439862008-07-21 13:28:44 -07007780 size_t alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007781 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007782
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07007783 BUG_ON(strlen(name) >= sizeof(dev->name));
7784
Tom Herbert36909ea2011-01-09 19:36:31 +00007785 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007786 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00007787 return NULL;
7788 }
7789
Michael Daltona953be52014-01-16 22:23:28 -08007790#ifdef CONFIG_SYSFS
Tom Herbert36909ea2011-01-09 19:36:31 +00007791 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007792 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00007793 return NULL;
7794 }
7795#endif
7796
David S. Millerfd2ea0a2008-07-17 01:56:23 -07007797 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07007798 if (sizeof_priv) {
7799 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007800 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07007801 alloc_size += sizeof_priv;
7802 }
7803 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007804 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007805
Eric Dumazet74d332c2013-10-30 13:10:44 -07007806 p = kzalloc(alloc_size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7807 if (!p)
7808 p = vzalloc(alloc_size);
Joe Perches62b59422013-02-04 16:48:16 +00007809 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007810 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007811
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007812 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007813 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007814
Eric Dumazet29b44332010-10-11 10:22:12 +00007815 dev->pcpu_refcnt = alloc_percpu(int);
7816 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07007817 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007818
Linus Torvalds1da177e2005-04-16 15:20:36 -07007819 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00007820 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007821
Jiri Pirko22bedad32010-04-01 21:22:57 +00007822 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00007823 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00007824
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09007825 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007826
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07007827 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00007828 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829
Herbert Xud565b0a2008-12-15 23:38:52 -08007830 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00007831 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07007832 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00007833 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007834 INIT_LIST_HEAD(&dev->adj_list.upper);
7835 INIT_LIST_HEAD(&dev->adj_list.lower);
7836 INIT_LIST_HEAD(&dev->all_adj_list.upper);
7837 INIT_LIST_HEAD(&dev->all_adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -08007838 INIT_LIST_HEAD(&dev->ptype_all);
7839 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Kosina59cc1f62016-08-10 11:05:15 +02007840#ifdef CONFIG_NET_SCHED
7841 hash_init(dev->qdisc_hash);
7842#endif
Eric Dumazet02875872014-10-05 18:38:35 -07007843 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007844 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007845
Phil Suttera8131042016-02-17 15:37:43 +01007846 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +02007847 dev->priv_flags |= IFF_NO_QUEUE;
Phil Suttera8131042016-02-17 15:37:43 +01007848 dev->tx_queue_len = 1;
7849 }
Phil Sutter906470c2015-08-18 10:30:48 +02007850
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007851 dev->num_tx_queues = txqs;
7852 dev->real_num_tx_queues = txqs;
7853 if (netif_alloc_netdev_queues(dev))
7854 goto free_all;
7855
Michael Daltona953be52014-01-16 22:23:28 -08007856#ifdef CONFIG_SYSFS
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007857 dev->num_rx_queues = rxqs;
7858 dev->real_num_rx_queues = rxqs;
7859 if (netif_alloc_rx_queues(dev))
7860 goto free_all;
7861#endif
7862
Linus Torvalds1da177e2005-04-16 15:20:36 -07007863 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02007864 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00007865 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00007866 if (!dev->ethtool_ops)
7867 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +02007868
7869 nf_hook_ingress_init(dev);
7870
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007872
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007873free_all:
7874 free_netdev(dev);
7875 return NULL;
7876
Eric Dumazet29b44332010-10-11 10:22:12 +00007877free_pcpu:
7878 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07007879free_dev:
7880 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007881 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007882}
Tom Herbert36909ea2011-01-09 19:36:31 +00007883EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007884
7885/**
7886 * free_netdev - free network device
7887 * @dev: device
7888 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007889 * This function does the last stage of destroying an allocated device
7890 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007891 * If this is the last reference then it will be freed.
Eric Dumazet93d05d42015-11-18 06:31:03 -08007892 * Must be called in process context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007893 */
7894void free_netdev(struct net_device *dev)
7895{
Herbert Xud565b0a2008-12-15 23:38:52 -08007896 struct napi_struct *p, *n;
7897
Eric Dumazet93d05d42015-11-18 06:31:03 -08007898 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -07007899 netif_free_tx_queues(dev);
Michael Daltona953be52014-01-16 22:23:28 -08007900#ifdef CONFIG_SYSFS
Pankaj Gupta10595902015-01-12 11:41:28 +05307901 kvfree(dev->_rx);
Tom Herbertfe822242010-11-09 10:47:38 +00007902#endif
David S. Millere8a04642008-07-17 00:34:19 -07007903
Eric Dumazet33d480c2011-08-11 19:30:52 +00007904 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00007905
Jiri Pirkof001fde2009-05-05 02:48:28 +00007906 /* Flush device addresses */
7907 dev_addr_flush(dev);
7908
Herbert Xud565b0a2008-12-15 23:38:52 -08007909 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
7910 netif_napi_del(p);
7911
Eric Dumazet29b44332010-10-11 10:22:12 +00007912 free_percpu(dev->pcpu_refcnt);
7913 dev->pcpu_refcnt = NULL;
7914
Stephen Hemminger3041a062006-05-26 13:25:24 -07007915 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007916 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07007917 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007918 return;
7919 }
7920
7921 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
7922 dev->reg_state = NETREG_RELEASED;
7923
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07007924 /* will free via device release */
7925 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007926}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007927EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007928
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007929/**
7930 * synchronize_net - Synchronize with packet receive processing
7931 *
7932 * Wait for packets currently being received to be done.
7933 * Does not block later packets from starting.
7934 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007935void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007936{
7937 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00007938 if (rtnl_is_locked())
7939 synchronize_rcu_expedited();
7940 else
7941 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007942}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007943EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007944
7945/**
Eric Dumazet44a08732009-10-27 07:03:04 +00007946 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07007947 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00007948 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08007949 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007950 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08007951 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00007952 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953 *
7954 * Callers must hold the rtnl semaphore. You may want
7955 * unregister_netdev() instead of this.
7956 */
7957
Eric Dumazet44a08732009-10-27 07:03:04 +00007958void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007959{
Herbert Xua6620712007-12-12 19:21:56 -08007960 ASSERT_RTNL();
7961
Eric Dumazet44a08732009-10-27 07:03:04 +00007962 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00007963 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00007964 } else {
7965 rollback_registered(dev);
7966 /* Finish processing unregister after unlock */
7967 net_set_todo(dev);
7968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007969}
Eric Dumazet44a08732009-10-27 07:03:04 +00007970EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007971
7972/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007973 * unregister_netdevice_many - unregister many devices
7974 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07007975 *
7976 * Note: As most callers use a stack allocated list_head,
7977 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007978 */
7979void unregister_netdevice_many(struct list_head *head)
7980{
7981 struct net_device *dev;
7982
7983 if (!list_empty(head)) {
7984 rollback_registered_many(head);
7985 list_for_each_entry(dev, head, unreg_list)
7986 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07007987 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007988 }
7989}
Eric Dumazet63c80992009-10-27 07:06:49 +00007990EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007991
7992/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007993 * unregister_netdev - remove device from the kernel
7994 * @dev: device
7995 *
7996 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08007997 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007998 *
7999 * This is just a wrapper for unregister_netdevice that takes
8000 * the rtnl semaphore. In general you want to use this and not
8001 * unregister_netdevice.
8002 */
8003void unregister_netdev(struct net_device *dev)
8004{
8005 rtnl_lock();
8006 unregister_netdevice(dev);
8007 rtnl_unlock();
8008}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008009EXPORT_SYMBOL(unregister_netdev);
8010
Eric W. Biedermance286d32007-09-12 13:53:49 +02008011/**
8012 * dev_change_net_namespace - move device to different nethost namespace
8013 * @dev: device
8014 * @net: network namespace
8015 * @pat: If not NULL name pattern to try if the current device name
8016 * is already taken in the destination network namespace.
8017 *
8018 * This function shuts down a device interface and moves it
8019 * to a new network namespace. On success 0 is returned, on
8020 * a failure a netagive errno code is returned.
8021 *
8022 * Callers must hold the rtnl semaphore.
8023 */
8024
8025int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
8026{
Eric W. Biedermance286d32007-09-12 13:53:49 +02008027 int err;
8028
8029 ASSERT_RTNL();
8030
8031 /* Don't allow namespace local devices to be moved. */
8032 err = -EINVAL;
8033 if (dev->features & NETIF_F_NETNS_LOCAL)
8034 goto out;
8035
8036 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02008037 if (dev->reg_state != NETREG_REGISTERED)
8038 goto out;
8039
8040 /* Get out if there is nothing todo */
8041 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09008042 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02008043 goto out;
8044
8045 /* Pick the destination device name, and ensure
8046 * we can use it in the destination network namespace.
8047 */
8048 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00008049 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008050 /* We get here if we can't use the current device name */
8051 if (!pat)
8052 goto out;
Gao feng828de4f2012-09-13 20:58:27 +00008053 if (dev_get_valid_name(net, dev, pat) < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02008054 goto out;
8055 }
8056
8057 /*
8058 * And now a mini version of register_netdevice unregister_netdevice.
8059 */
8060
8061 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07008062 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008063
8064 /* And unlink it from device chain */
8065 err = -ENODEV;
8066 unlist_netdevice(dev);
8067
8068 synchronize_net();
8069
8070 /* Shutdown queueing discipline. */
8071 dev_shutdown(dev);
8072
8073 /* Notify protocols, that we are about to destroy
8074 this device. They should clean all the things.
David Lamparter3b27e102010-09-17 03:22:19 +00008075
8076 Note that dev->reg_state stays at NETREG_REGISTERED.
8077 This is wanted because this way 8021q and macvlan know
8078 the device is just moving and can keep their slaves up.
Eric W. Biedermance286d32007-09-12 13:53:49 +02008079 */
8080 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00008081 rcu_barrier();
8082 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008083 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008084
8085 /*
8086 * Flush the unicast and multicast chains
8087 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00008088 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00008089 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008090
Serge Hallyn4e66ae22012-12-03 16:17:12 +00008091 /* Send a netdev-removed uevent to the old namespace */
8092 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008093 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00008094
Eric W. Biedermance286d32007-09-12 13:53:49 +02008095 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09008096 dev_net_set(dev, net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008097
Eric W. Biedermance286d32007-09-12 13:53:49 +02008098 /* If there is an ifindex conflict assign a new one */
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +02008099 if (__dev_get_by_index(net, dev->ifindex))
Eric W. Biedermance286d32007-09-12 13:53:49 +02008100 dev->ifindex = dev_new_index(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008101
Serge Hallyn4e66ae22012-12-03 16:17:12 +00008102 /* Send a netdev-add uevent to the new namespace */
8103 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008104 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00008105
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008106 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07008107 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008108 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008109
8110 /* Add the device back in the hashes */
8111 list_netdevice(dev);
8112
8113 /* Notify protocols, that a new device appeared. */
8114 call_netdevice_notifiers(NETDEV_REGISTER, dev);
8115
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008116 /*
8117 * Prevent userspace races by waiting until the network
8118 * device is fully setup before sending notifications.
8119 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008120 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008121
Eric W. Biedermance286d32007-09-12 13:53:49 +02008122 synchronize_net();
8123 err = 0;
8124out:
8125 return err;
8126}
Johannes Berg463d0182009-07-14 00:33:35 +02008127EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008128
Linus Torvalds1da177e2005-04-16 15:20:36 -07008129static int dev_cpu_callback(struct notifier_block *nfb,
8130 unsigned long action,
8131 void *ocpu)
8132{
8133 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008134 struct sk_buff *skb;
8135 unsigned int cpu, oldcpu = (unsigned long)ocpu;
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05308136 struct softnet_data *sd, *oldsd, *remsd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008137
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008138 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008139 return NOTIFY_OK;
8140
8141 local_irq_disable();
8142 cpu = smp_processor_id();
8143 sd = &per_cpu(softnet_data, cpu);
8144 oldsd = &per_cpu(softnet_data, oldcpu);
8145
8146 /* Find end of our completion_queue. */
8147 list_skb = &sd->completion_queue;
8148 while (*list_skb)
8149 list_skb = &(*list_skb)->next;
8150 /* Append completion queue from offline CPU. */
8151 *list_skb = oldsd->completion_queue;
8152 oldsd->completion_queue = NULL;
8153
Linus Torvalds1da177e2005-04-16 15:20:36 -07008154 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00008155 if (oldsd->output_queue) {
8156 *sd->output_queue_tailp = oldsd->output_queue;
8157 sd->output_queue_tailp = oldsd->output_queue_tailp;
8158 oldsd->output_queue = NULL;
8159 oldsd->output_queue_tailp = &oldsd->output_queue;
8160 }
Eric Dumazetac64da02015-01-15 17:04:22 -08008161 /* Append NAPI poll list from offline CPU, with one exception :
8162 * process_backlog() must be called by cpu owning percpu backlog.
8163 * We properly handle process_queue & input_pkt_queue later.
8164 */
8165 while (!list_empty(&oldsd->poll_list)) {
8166 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
8167 struct napi_struct,
8168 poll_list);
8169
8170 list_del_init(&napi->poll_list);
8171 if (napi->poll == process_backlog)
8172 napi->state = 0;
8173 else
8174 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +00008175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008176
8177 raise_softirq_irqoff(NET_TX_SOFTIRQ);
8178 local_irq_enable();
8179
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05308180#ifdef CONFIG_RPS
8181 remsd = oldsd->rps_ipi_list;
8182 oldsd->rps_ipi_list = NULL;
8183#endif
8184 /* send out pending IPI's on offline CPU */
8185 net_rps_send_ipi(remsd);
8186
Linus Torvalds1da177e2005-04-16 15:20:36 -07008187 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00008188 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08008189 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00008190 input_queue_head_incr(oldsd);
8191 }
Eric Dumazetac64da02015-01-15 17:04:22 -08008192 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08008193 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00008194 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07008195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008196
8197 return NOTIFY_OK;
8198}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008199
8200
Herbert Xu7f353bf2007-08-10 15:47:58 -07008201/**
Herbert Xub63365a2008-10-23 01:11:29 -07008202 * netdev_increment_features - increment feature set by one
8203 * @all: current feature set
8204 * @one: new feature set
8205 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07008206 *
8207 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07008208 * @one to the master device with current feature set @all. Will not
8209 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07008210 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008211netdev_features_t netdev_increment_features(netdev_features_t all,
8212 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07008213{
Tom Herbertc8cd0982015-12-14 11:19:44 -08008214 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -08008215 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +00008216 mask |= NETIF_F_VLAN_CHALLENGED;
8217
Tom Herberta1882222015-12-14 11:19:43 -08008218 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +00008219 all &= one | ~NETIF_F_ALL_FOR_ALL;
8220
Michał Mirosław1742f182011-04-22 06:31:16 +00008221 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -08008222 if (all & NETIF_F_HW_CSUM)
8223 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07008224
8225 return all;
8226}
Herbert Xub63365a2008-10-23 01:11:29 -07008227EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07008228
Baruch Siach430f03c2013-06-02 20:43:55 +00008229static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008230{
8231 int i;
8232 struct hlist_head *hash;
8233
8234 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
8235 if (hash != NULL)
8236 for (i = 0; i < NETDEV_HASHENTRIES; i++)
8237 INIT_HLIST_HEAD(&hash[i]);
8238
8239 return hash;
8240}
8241
Eric W. Biederman881d9662007-09-17 11:56:21 -07008242/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07008243static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07008244{
Rustad, Mark D734b6542012-07-18 09:06:07 +00008245 if (net != &init_net)
8246 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07008247
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008248 net->dev_name_head = netdev_create_hash();
8249 if (net->dev_name_head == NULL)
8250 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008251
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008252 net->dev_index_head = netdev_create_hash();
8253 if (net->dev_index_head == NULL)
8254 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008255
8256 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008257
8258err_idx:
8259 kfree(net->dev_name_head);
8260err_name:
8261 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008262}
8263
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008264/**
8265 * netdev_drivername - network driver for the device
8266 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008267 *
8268 * Determine network driver for device.
8269 */
David S. Miller3019de12011-06-06 16:41:33 -07008270const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07008271{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07008272 const struct device_driver *driver;
8273 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07008274 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07008275
8276 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008277 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07008278 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008279
8280 driver = parent->driver;
8281 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07008282 return driver->name;
8283 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008284}
8285
Joe Perches6ea754e2014-09-22 11:10:50 -07008286static void __netdev_printk(const char *level, const struct net_device *dev,
8287 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +00008288{
Joe Perchesb004ff42012-09-12 20:12:19 -07008289 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -07008290 dev_printk_emit(level[1] - '0',
8291 dev->dev.parent,
8292 "%s %s %s%s: %pV",
8293 dev_driver_string(dev->dev.parent),
8294 dev_name(dev->dev.parent),
8295 netdev_name(dev), netdev_reg_state(dev),
8296 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008297 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -07008298 printk("%s%s%s: %pV",
8299 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008300 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -07008301 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008302 }
Joe Perches256df2f2010-06-27 01:02:35 +00008303}
8304
Joe Perches6ea754e2014-09-22 11:10:50 -07008305void netdev_printk(const char *level, const struct net_device *dev,
8306 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +00008307{
8308 struct va_format vaf;
8309 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +00008310
8311 va_start(args, format);
8312
8313 vaf.fmt = format;
8314 vaf.va = &args;
8315
Joe Perches6ea754e2014-09-22 11:10:50 -07008316 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008317
Joe Perches256df2f2010-06-27 01:02:35 +00008318 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +00008319}
8320EXPORT_SYMBOL(netdev_printk);
8321
8322#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -07008323void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +00008324{ \
Joe Perches256df2f2010-06-27 01:02:35 +00008325 struct va_format vaf; \
8326 va_list args; \
8327 \
8328 va_start(args, fmt); \
8329 \
8330 vaf.fmt = fmt; \
8331 vaf.va = &args; \
8332 \
Joe Perches6ea754e2014-09-22 11:10:50 -07008333 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07008334 \
Joe Perches256df2f2010-06-27 01:02:35 +00008335 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +00008336} \
8337EXPORT_SYMBOL(func);
8338
8339define_netdev_printk_level(netdev_emerg, KERN_EMERG);
8340define_netdev_printk_level(netdev_alert, KERN_ALERT);
8341define_netdev_printk_level(netdev_crit, KERN_CRIT);
8342define_netdev_printk_level(netdev_err, KERN_ERR);
8343define_netdev_printk_level(netdev_warn, KERN_WARNING);
8344define_netdev_printk_level(netdev_notice, KERN_NOTICE);
8345define_netdev_printk_level(netdev_info, KERN_INFO);
8346
Pavel Emelyanov46650792007-10-08 20:38:39 -07008347static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07008348{
8349 kfree(net->dev_name_head);
8350 kfree(net->dev_index_head);
8351}
8352
Denis V. Lunev022cbae2007-11-13 03:23:50 -08008353static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07008354 .init = netdev_init,
8355 .exit = netdev_exit,
8356};
8357
Pavel Emelyanov46650792007-10-08 20:38:39 -07008358static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02008359{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008360 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02008361 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008362 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02008363 * initial network namespace
8364 */
8365 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008366 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008367 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008368 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02008369
8370 /* Ignore unmoveable devices (i.e. loopback) */
8371 if (dev->features & NETIF_F_NETNS_LOCAL)
8372 continue;
8373
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008374 /* Leave virtual devices for the generic cleanup */
8375 if (dev->rtnl_link_ops)
8376 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08008377
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008378 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008379 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
8380 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008381 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008382 pr_emerg("%s: failed to move %s to init_net: %d\n",
8383 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008384 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02008385 }
8386 }
8387 rtnl_unlock();
8388}
8389
Eric W. Biederman50624c92013-09-23 21:19:49 -07008390static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
8391{
8392 /* Return with the rtnl_lock held when there are no network
8393 * devices unregistering in any network namespace in net_list.
8394 */
8395 struct net *net;
8396 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +01008397 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008398
Peter Zijlstraff960a72014-10-29 17:04:56 +01008399 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008400 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -07008401 unregistering = false;
8402 rtnl_lock();
8403 list_for_each_entry(net, net_list, exit_list) {
8404 if (net->dev_unreg_count > 0) {
8405 unregistering = true;
8406 break;
8407 }
8408 }
8409 if (!unregistering)
8410 break;
8411 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +01008412
8413 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008414 }
Peter Zijlstraff960a72014-10-29 17:04:56 +01008415 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008416}
8417
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008418static void __net_exit default_device_exit_batch(struct list_head *net_list)
8419{
8420 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04008421 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008422 * Do this across as many network namespaces as possible to
8423 * improve batching efficiency.
8424 */
8425 struct net_device *dev;
8426 struct net *net;
8427 LIST_HEAD(dev_kill_list);
8428
Eric W. Biederman50624c92013-09-23 21:19:49 -07008429 /* To prevent network device cleanup code from dereferencing
8430 * loopback devices or network devices that have been freed
8431 * wait here for all pending unregistrations to complete,
8432 * before unregistring the loopback device and allowing the
8433 * network namespace be freed.
8434 *
8435 * The netdev todo list containing all network devices
8436 * unregistrations that happen in default_device_exit_batch
8437 * will run in the rtnl_unlock() at the end of
8438 * default_device_exit_batch.
8439 */
8440 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008441 list_for_each_entry(net, net_list, exit_list) {
8442 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02008443 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008444 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
8445 else
8446 unregister_netdevice_queue(dev, &dev_kill_list);
8447 }
8448 }
8449 unregister_netdevice_many(&dev_kill_list);
8450 rtnl_unlock();
8451}
8452
Denis V. Lunev022cbae2007-11-13 03:23:50 -08008453static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008454 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008455 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02008456};
8457
Linus Torvalds1da177e2005-04-16 15:20:36 -07008458/*
8459 * Initialize the DEV module. At boot time this walks the device list and
8460 * unhooks any devices that fail to initialise (normally hardware not
8461 * present) and leaves us with a valid list of present and active devices.
8462 *
8463 */
8464
8465/*
8466 * This is called single threaded during boot, so no need
8467 * to take the rtnl semaphore.
8468 */
8469static int __init net_dev_init(void)
8470{
8471 int i, rc = -ENOMEM;
8472
8473 BUG_ON(!dev_boot_phase);
8474
Linus Torvalds1da177e2005-04-16 15:20:36 -07008475 if (dev_proc_init())
8476 goto out;
8477
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008478 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07008479 goto out;
8480
8481 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08008482 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008483 INIT_LIST_HEAD(&ptype_base[i]);
8484
Vlad Yasevich62532da2012-11-15 08:49:10 +00008485 INIT_LIST_HEAD(&offload_base);
8486
Eric W. Biederman881d9662007-09-17 11:56:21 -07008487 if (register_pernet_subsys(&netdev_net_ops))
8488 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008489
8490 /*
8491 * Initialise the packet receive queues.
8492 */
8493
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07008494 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -07008495 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008496 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008497
Eric Dumazet41852492016-08-26 12:50:39 -07008498 INIT_WORK(flush, flush_backlog);
8499
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008500 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07008501 skb_queue_head_init(&sd->process_queue);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008502 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00008503 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00008504#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008505 sd->csd.func = rps_trigger_softirq;
8506 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008507 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07008508#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00008509
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008510 sd->backlog.poll = process_backlog;
8511 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008512 }
8513
Linus Torvalds1da177e2005-04-16 15:20:36 -07008514 dev_boot_phase = 0;
8515
Eric W. Biederman505d4f72008-11-07 22:54:20 -08008516 /* The loopback device is special if any other network devices
8517 * is present in a network namespace the loopback device must
8518 * be present. Since we now dynamically allocate and free the
8519 * loopback device ensure this invariant is maintained by
8520 * keeping the loopback device as the first device on the
8521 * list of network devices. Ensuring the loopback devices
8522 * is the first device that appears and the last network device
8523 * that disappears.
8524 */
8525 if (register_pernet_device(&loopback_net_ops))
8526 goto out;
8527
8528 if (register_pernet_device(&default_device_ops))
8529 goto out;
8530
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008531 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
8532 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008533
8534 hotcpu_notifier(dev_cpu_callback, 0);
Thomas Graff38a9eb2015-07-21 10:43:56 +02008535 dst_subsys_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008536 rc = 0;
8537out:
8538 return rc;
8539}
8540
8541subsys_initcall(net_dev_init);