blob: 69ac821ad6f460db88bbca136ff03b4ca99e12a1 [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;
Eric Dumazet0d1c0572018-04-05 06:39:26 -0700998 if (strnlen(name, IFNAMSIZ) == 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
Sabrina Dubroca8d59c3a2018-10-09 17:48:14 +02001669/**
1670 * call_netdevice_notifiers_mtu - call all network notifier blocks
1671 * @val: value passed unmodified to notifier function
1672 * @dev: net_device pointer passed unmodified to notifier function
1673 * @arg: additional u32 argument passed to the notifier function
1674 *
1675 * Call all network notifier blocks. Parameters and return value
1676 * are as for raw_notifier_call_chain().
1677 */
1678static int call_netdevice_notifiers_mtu(unsigned long val,
1679 struct net_device *dev, u32 arg)
1680{
1681 struct netdev_notifier_info_ext info = {
1682 .info.dev = dev,
1683 .ext.mtu = arg,
1684 };
1685
1686 BUILD_BUG_ON(offsetof(struct netdev_notifier_info_ext, info) != 0);
1687
1688 return call_netdevice_notifiers_info(val, dev, &info.info);
1689}
1690
Pablo Neira1cf519002015-05-13 18:19:37 +02001691#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +02001692static struct static_key ingress_needed __read_mostly;
1693
1694void net_inc_ingress_queue(void)
1695{
1696 static_key_slow_inc(&ingress_needed);
1697}
1698EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
1699
1700void net_dec_ingress_queue(void)
1701{
1702 static_key_slow_dec(&ingress_needed);
1703}
1704EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
1705#endif
1706
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001707#ifdef CONFIG_NET_EGRESS
1708static struct static_key egress_needed __read_mostly;
1709
1710void net_inc_egress_queue(void)
1711{
1712 static_key_slow_inc(&egress_needed);
1713}
1714EXPORT_SYMBOL_GPL(net_inc_egress_queue);
1715
1716void net_dec_egress_queue(void)
1717{
1718 static_key_slow_dec(&egress_needed);
1719}
1720EXPORT_SYMBOL_GPL(net_dec_egress_queue);
1721#endif
1722
Ingo Molnarc5905af2012-02-24 08:31:31 +01001723static struct static_key netstamp_needed __read_mostly;
Eric Dumazetb90e5792011-11-28 11:16:50 +00001724#ifdef HAVE_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00001725static atomic_t netstamp_needed_deferred;
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001726static atomic_t netstamp_wanted;
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001727static void netstamp_clear(struct work_struct *work)
1728{
1729 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001730 int wanted;
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001731
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001732 wanted = atomic_add_return(deferred, &netstamp_wanted);
1733 if (wanted > 0)
1734 static_key_enable(&netstamp_needed);
1735 else
1736 static_key_disable(&netstamp_needed);
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001737}
1738static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001739#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
1741void net_enable_timestamp(void)
1742{
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001743#ifdef HAVE_JUMP_LABEL
1744 int wanted;
1745
1746 while (1) {
1747 wanted = atomic_read(&netstamp_wanted);
1748 if (wanted <= 0)
1749 break;
1750 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
1751 return;
1752 }
1753 atomic_inc(&netstamp_needed_deferred);
1754 schedule_work(&netstamp_work);
1755#else
Ingo Molnarc5905af2012-02-24 08:31:31 +01001756 static_key_slow_inc(&netstamp_needed);
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001757#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001759EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760
1761void net_disable_timestamp(void)
1762{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001763#ifdef HAVE_JUMP_LABEL
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001764 int wanted;
1765
1766 while (1) {
1767 wanted = atomic_read(&netstamp_wanted);
1768 if (wanted <= 1)
1769 break;
1770 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
1771 return;
1772 }
1773 atomic_dec(&netstamp_needed_deferred);
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001774 schedule_work(&netstamp_work);
1775#else
Ingo Molnarc5905af2012-02-24 08:31:31 +01001776 static_key_slow_dec(&netstamp_needed);
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001777#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001779EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780
Eric Dumazet3b098e22010-05-15 23:57:10 -07001781static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782{
Eric Dumazet588f0332011-11-15 04:12:55 +00001783 skb->tstamp.tv64 = 0;
Ingo Molnarc5905af2012-02-24 08:31:31 +01001784 if (static_key_false(&netstamp_needed))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001785 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786}
1787
Eric Dumazet588f0332011-11-15 04:12:55 +00001788#define net_timestamp_check(COND, SKB) \
Ingo Molnarc5905af2012-02-24 08:31:31 +01001789 if (static_key_false(&netstamp_needed)) { \
Eric Dumazet588f0332011-11-15 04:12:55 +00001790 if ((COND) && !(SKB)->tstamp.tv64) \
1791 __net_timestamp(SKB); \
1792 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07001793
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02001794bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001795{
1796 unsigned int len;
1797
1798 if (!(dev->flags & IFF_UP))
1799 return false;
1800
1801 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1802 if (skb->len <= len)
1803 return true;
1804
1805 /* if TSO is enabled, we don't care about the length as the packet
1806 * could be forwarded without being segmented before
1807 */
1808 if (skb_is_gso(skb))
1809 return true;
1810
1811 return false;
1812}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001813EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001814
Herbert Xua0265d22014-04-17 13:45:03 +08001815int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1816{
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001817 int ret = ____dev_forward_skb(dev, skb);
1818
1819 if (likely(!ret)) {
1820 skb->protocol = eth_type_trans(skb, dev);
1821 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08001822 }
1823
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001824 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08001825}
1826EXPORT_SYMBOL_GPL(__dev_forward_skb);
1827
Arnd Bergmann44540962009-11-26 06:07:08 +00001828/**
1829 * dev_forward_skb - loopback an skb to another netif
1830 *
1831 * @dev: destination network device
1832 * @skb: buffer to forward
1833 *
1834 * return values:
1835 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07001836 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00001837 *
1838 * dev_forward_skb can be used for injecting an skb from the
1839 * start_xmit function of one device into the receive queue
1840 * of another device.
1841 *
1842 * The receiving device may be in another namespace, so
1843 * we have to clear all information in the skb that could
1844 * impact namespace isolation.
1845 */
1846int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1847{
Herbert Xua0265d22014-04-17 13:45:03 +08001848 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00001849}
1850EXPORT_SYMBOL_GPL(dev_forward_skb);
1851
Changli Gao71d9dec2010-12-15 19:57:25 +00001852static inline int deliver_skb(struct sk_buff *skb,
1853 struct packet_type *pt_prev,
1854 struct net_device *orig_dev)
1855{
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00001856 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
1857 return -ENOMEM;
Changli Gao71d9dec2010-12-15 19:57:25 +00001858 atomic_inc(&skb->users);
1859 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1860}
1861
Salam Noureddine7866a622015-01-27 11:35:48 -08001862static inline void deliver_ptype_list_skb(struct sk_buff *skb,
1863 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001864 struct net_device *orig_dev,
1865 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08001866 struct list_head *ptype_list)
1867{
1868 struct packet_type *ptype, *pt_prev = *pt;
1869
1870 list_for_each_entry_rcu(ptype, ptype_list, list) {
1871 if (ptype->type != type)
1872 continue;
1873 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001874 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08001875 pt_prev = ptype;
1876 }
1877 *pt = pt_prev;
1878}
1879
Eric Leblondc0de08d2012-08-16 22:02:58 +00001880static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1881{
Eric Leblonda3d744e2012-11-06 02:10:10 +00001882 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001883 return false;
1884
1885 if (ptype->id_match)
1886 return ptype->id_match(ptype, skb->sk);
1887 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
1888 return true;
1889
1890 return false;
1891}
1892
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893/*
1894 * Support routine. Sends outgoing frames to any network
1895 * taps currently in use.
1896 */
1897
David Ahern74b20582016-05-10 11:19:50 -07001898void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899{
1900 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00001901 struct sk_buff *skb2 = NULL;
1902 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08001903 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001904
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08001906again:
1907 list_for_each_entry_rcu(ptype, ptype_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 /* Never send packets back to the socket
1909 * they originated from - MvS (miquels@drinkel.ow.org)
1910 */
Salam Noureddine7866a622015-01-27 11:35:48 -08001911 if (skb_loop_sk(ptype, skb))
1912 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00001913
Salam Noureddine7866a622015-01-27 11:35:48 -08001914 if (pt_prev) {
1915 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00001916 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08001917 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 }
Salam Noureddine7866a622015-01-27 11:35:48 -08001919
1920 /* need to clone skb, done only once */
1921 skb2 = skb_clone(skb, GFP_ATOMIC);
1922 if (!skb2)
1923 goto out_unlock;
1924
1925 net_timestamp_set(skb2);
1926
1927 /* skb->nh should be correctly
1928 * set by sender, so that the second statement is
1929 * just protection against buggy protocols.
1930 */
1931 skb_reset_mac_header(skb2);
1932
1933 if (skb_network_header(skb2) < skb2->data ||
1934 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
1935 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
1936 ntohs(skb2->protocol),
1937 dev->name);
1938 skb_reset_network_header(skb2);
1939 }
1940
1941 skb2->transport_header = skb2->network_header;
1942 skb2->pkt_type = PACKET_OUTGOING;
1943 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 }
Salam Noureddine7866a622015-01-27 11:35:48 -08001945
1946 if (ptype_list == &ptype_all) {
1947 ptype_list = &dev->ptype_all;
1948 goto again;
1949 }
1950out_unlock:
Changli Gao71d9dec2010-12-15 19:57:25 +00001951 if (pt_prev)
1952 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 rcu_read_unlock();
1954}
David Ahern74b20582016-05-10 11:19:50 -07001955EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956
Ben Hutchings2c530402012-07-10 10:55:09 +00001957/**
1958 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00001959 * @dev: Network device
1960 * @txq: number of queues available
1961 *
1962 * If real_num_tx_queues is changed the tc mappings may no longer be
1963 * valid. To resolve this verify the tc mapping remains valid and if
1964 * not NULL the mapping. With no priorities mapping to this
1965 * offset/count pair it will no longer be used. In the worst case TC0
1966 * is invalid nothing can be done so disable priority mappings. If is
1967 * expected that drivers will fix this mapping if they can before
1968 * calling netif_set_real_num_tx_queues.
1969 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00001970static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00001971{
1972 int i;
1973 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
1974
1975 /* If TC0 is invalidated disable TC mapping */
1976 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001977 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00001978 dev->num_tc = 0;
1979 return;
1980 }
1981
1982 /* Invalidated prio to tc mappings set to TC0 */
1983 for (i = 1; i < TC_BITMASK + 1; i++) {
1984 int q = netdev_get_prio_tc_map(dev, i);
1985
1986 tc = &dev->tc_to_txq[q];
1987 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001988 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
1989 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00001990 netdev_set_prio_tc_map(dev, i, 0);
1991 }
1992 }
1993}
1994
Alexander Duyck537c00d2013-01-10 08:57:02 +00001995#ifdef CONFIG_XPS
1996static DEFINE_MUTEX(xps_map_mutex);
1997#define xmap_dereference(P) \
1998 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
1999
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002000static struct xps_map *remove_xps_queue(struct xps_dev_maps *dev_maps,
2001 int cpu, u16 index)
2002{
2003 struct xps_map *map = NULL;
2004 int pos;
2005
2006 if (dev_maps)
2007 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2008
2009 for (pos = 0; map && pos < map->len; pos++) {
2010 if (map->queues[pos] == index) {
2011 if (map->len > 1) {
2012 map->queues[pos] = map->queues[--map->len];
2013 } else {
2014 RCU_INIT_POINTER(dev_maps->cpu_map[cpu], NULL);
2015 kfree_rcu(map, rcu);
2016 map = NULL;
2017 }
2018 break;
2019 }
2020 }
2021
2022 return map;
2023}
2024
Alexander Duyck024e9672013-01-10 08:57:46 +00002025static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002026{
2027 struct xps_dev_maps *dev_maps;
Alexander Duyck024e9672013-01-10 08:57:46 +00002028 int cpu, i;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002029 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002030
2031 mutex_lock(&xps_map_mutex);
2032 dev_maps = xmap_dereference(dev->xps_maps);
2033
2034 if (!dev_maps)
2035 goto out_no_maps;
2036
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002037 for_each_possible_cpu(cpu) {
Alexander Duyck024e9672013-01-10 08:57:46 +00002038 for (i = index; i < dev->num_tx_queues; i++) {
2039 if (!remove_xps_queue(dev_maps, cpu, i))
2040 break;
2041 }
2042 if (i == dev->num_tx_queues)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002043 active = true;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002044 }
2045
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002046 if (!active) {
Alexander Duyck537c00d2013-01-10 08:57:02 +00002047 RCU_INIT_POINTER(dev->xps_maps, NULL);
2048 kfree_rcu(dev_maps, rcu);
2049 }
2050
Alexander Duyck024e9672013-01-10 08:57:46 +00002051 for (i = index; i < dev->num_tx_queues; i++)
2052 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, i),
2053 NUMA_NO_NODE);
2054
Alexander Duyck537c00d2013-01-10 08:57:02 +00002055out_no_maps:
2056 mutex_unlock(&xps_map_mutex);
2057}
2058
Alexander Duyck01c5f862013-01-10 08:57:35 +00002059static struct xps_map *expand_xps_map(struct xps_map *map,
2060 int cpu, u16 index)
2061{
2062 struct xps_map *new_map;
2063 int alloc_len = XPS_MIN_MAP_ALLOC;
2064 int i, pos;
2065
2066 for (pos = 0; map && pos < map->len; pos++) {
2067 if (map->queues[pos] != index)
2068 continue;
2069 return map;
2070 }
2071
2072 /* Need to add queue to this CPU's existing map */
2073 if (map) {
2074 if (pos < map->alloc_len)
2075 return map;
2076
2077 alloc_len = map->alloc_len * 2;
2078 }
2079
2080 /* Need to allocate new map to store queue on this CPU's map */
2081 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2082 cpu_to_node(cpu));
2083 if (!new_map)
2084 return NULL;
2085
2086 for (i = 0; i < pos; i++)
2087 new_map->queues[i] = map->queues[i];
2088 new_map->alloc_len = alloc_len;
2089 new_map->len = pos;
2090
2091 return new_map;
2092}
2093
Michael S. Tsirkin35735402013-10-02 09:14:06 +03002094int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2095 u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002096{
Alexander Duyck01c5f862013-01-10 08:57:35 +00002097 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002098 struct xps_map *map, *new_map;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002099 int maps_sz = max_t(unsigned int, XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002100 int cpu, numa_node_id = -2;
2101 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002102
2103 mutex_lock(&xps_map_mutex);
2104
2105 dev_maps = xmap_dereference(dev->xps_maps);
2106
Alexander Duyck01c5f862013-01-10 08:57:35 +00002107 /* allocate memory for queue storage */
2108 for_each_online_cpu(cpu) {
2109 if (!cpumask_test_cpu(cpu, mask))
2110 continue;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002111
Alexander Duyck01c5f862013-01-10 08:57:35 +00002112 if (!new_dev_maps)
2113 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002114 if (!new_dev_maps) {
2115 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002116 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002117 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002118
2119 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2120 NULL;
2121
2122 map = expand_xps_map(map, cpu, index);
2123 if (!map)
2124 goto error;
2125
2126 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
2127 }
2128
2129 if (!new_dev_maps)
2130 goto out_no_new_maps;
2131
2132 for_each_possible_cpu(cpu) {
2133 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu)) {
2134 /* add queue to CPU maps */
2135 int pos = 0;
2136
2137 map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2138 while ((pos < map->len) && (map->queues[pos] != index))
2139 pos++;
2140
2141 if (pos == map->len)
2142 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002143#ifdef CONFIG_NUMA
Alexander Duyck537c00d2013-01-10 08:57:02 +00002144 if (numa_node_id == -2)
2145 numa_node_id = cpu_to_node(cpu);
2146 else if (numa_node_id != cpu_to_node(cpu))
2147 numa_node_id = -1;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002148#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002149 } else if (dev_maps) {
2150 /* fill in the new device map from the old device map */
2151 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2152 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002153 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002154
Alexander Duyck537c00d2013-01-10 08:57:02 +00002155 }
2156
Alexander Duyck01c5f862013-01-10 08:57:35 +00002157 rcu_assign_pointer(dev->xps_maps, new_dev_maps);
2158
Alexander Duyck537c00d2013-01-10 08:57:02 +00002159 /* Cleanup old maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002160 if (dev_maps) {
2161 for_each_possible_cpu(cpu) {
2162 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2163 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2164 if (map && map != new_map)
2165 kfree_rcu(map, rcu);
2166 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002167
Alexander Duyck537c00d2013-01-10 08:57:02 +00002168 kfree_rcu(dev_maps, rcu);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002169 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002170
Alexander Duyck01c5f862013-01-10 08:57:35 +00002171 dev_maps = new_dev_maps;
2172 active = true;
2173
2174out_no_new_maps:
2175 /* update Tx queue numa node */
Alexander Duyck537c00d2013-01-10 08:57:02 +00002176 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2177 (numa_node_id >= 0) ? numa_node_id :
2178 NUMA_NO_NODE);
2179
Alexander Duyck01c5f862013-01-10 08:57:35 +00002180 if (!dev_maps)
2181 goto out_no_maps;
2182
2183 /* removes queue from unused CPUs */
2184 for_each_possible_cpu(cpu) {
2185 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu))
2186 continue;
2187
2188 if (remove_xps_queue(dev_maps, cpu, index))
2189 active = true;
2190 }
2191
2192 /* free map if not active */
2193 if (!active) {
2194 RCU_INIT_POINTER(dev->xps_maps, NULL);
2195 kfree_rcu(dev_maps, rcu);
2196 }
2197
2198out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002199 mutex_unlock(&xps_map_mutex);
2200
2201 return 0;
2202error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002203 /* remove any maps that we added */
2204 for_each_possible_cpu(cpu) {
2205 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2206 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2207 NULL;
2208 if (new_map && new_map != map)
2209 kfree(new_map);
2210 }
2211
Alexander Duyck537c00d2013-01-10 08:57:02 +00002212 mutex_unlock(&xps_map_mutex);
2213
Alexander Duyck537c00d2013-01-10 08:57:02 +00002214 kfree(new_dev_maps);
2215 return -ENOMEM;
2216}
2217EXPORT_SYMBOL(netif_set_xps_queue);
2218
2219#endif
John Fastabendf0796d52010-07-01 13:21:57 +00002220/*
2221 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
2222 * greater then real_num_tx_queues stale skbs on the qdisc must be flushed.
2223 */
Tom Herberte6484932010-10-18 18:04:39 +00002224int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002225{
Jakub Kicinski106dc962018-02-12 21:35:31 -08002226 bool disabling;
Tom Herbert1d24eb42010-11-21 13:17:27 +00002227 int rc;
2228
Jakub Kicinski106dc962018-02-12 21:35:31 -08002229 disabling = txq < dev->real_num_tx_queues;
2230
Tom Herberte6484932010-10-18 18:04:39 +00002231 if (txq < 1 || txq > dev->num_tx_queues)
2232 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002233
Ben Hutchings5c565802011-02-15 19:39:21 +00002234 if (dev->reg_state == NETREG_REGISTERED ||
2235 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002236 ASSERT_RTNL();
2237
Tom Herbert1d24eb42010-11-21 13:17:27 +00002238 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2239 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002240 if (rc)
2241 return rc;
2242
John Fastabend4f57c082011-01-17 08:06:04 +00002243 if (dev->num_tc)
2244 netif_setup_tc(dev, txq);
2245
Jakub Kicinski106dc962018-02-12 21:35:31 -08002246 dev->real_num_tx_queues = txq;
2247
2248 if (disabling) {
2249 synchronize_net();
Tom Herberte6484932010-10-18 18:04:39 +00002250 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002251#ifdef CONFIG_XPS
2252 netif_reset_xps_queues_gt(dev, txq);
2253#endif
2254 }
Jakub Kicinski106dc962018-02-12 21:35:31 -08002255 } else {
2256 dev->real_num_tx_queues = txq;
John Fastabendf0796d52010-07-01 13:21:57 +00002257 }
Tom Herberte6484932010-10-18 18:04:39 +00002258
Tom Herberte6484932010-10-18 18:04:39 +00002259 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002260}
2261EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002262
Michael Daltona953be52014-01-16 22:23:28 -08002263#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002264/**
2265 * netif_set_real_num_rx_queues - set actual number of RX queues used
2266 * @dev: Network device
2267 * @rxq: Actual number of RX queues
2268 *
2269 * This must be called either with the rtnl_lock held or before
2270 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002271 * negative error code. If called before registration, it always
2272 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002273 */
2274int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2275{
2276 int rc;
2277
Tom Herbertbd25fa72010-10-18 18:00:16 +00002278 if (rxq < 1 || rxq > dev->num_rx_queues)
2279 return -EINVAL;
2280
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002281 if (dev->reg_state == NETREG_REGISTERED) {
2282 ASSERT_RTNL();
2283
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002284 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2285 rxq);
2286 if (rc)
2287 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002288 }
2289
2290 dev->real_num_rx_queues = rxq;
2291 return 0;
2292}
2293EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2294#endif
2295
Ben Hutchings2c530402012-07-10 10:55:09 +00002296/**
2297 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002298 *
2299 * This routine should set an upper limit on the number of RSS queues
2300 * used by default by multiqueue devices.
2301 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002302int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002303{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05302304 return is_kdump_kernel() ?
2305 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00002306}
2307EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2308
Eric Dumazet3bcb8462016-06-04 20:02:28 -07002309static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002310{
2311 struct softnet_data *sd;
2312 unsigned long flags;
2313
2314 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05002315 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002316 q->next_sched = NULL;
2317 *sd->output_queue_tailp = q;
2318 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002319 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2320 local_irq_restore(flags);
2321}
2322
David S. Miller37437bb2008-07-16 02:15:04 -07002323void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002324{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002325 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2326 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002327}
2328EXPORT_SYMBOL(__netif_schedule);
2329
Eric Dumazete6247022013-12-05 04:45:08 -08002330struct dev_kfree_skb_cb {
2331 enum skb_free_reason reason;
2332};
2333
2334static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002335{
Eric Dumazete6247022013-12-05 04:45:08 -08002336 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002337}
Denis Vlasenko56079432006-03-29 15:57:29 -08002338
John Fastabend46e5da42014-09-12 20:04:52 -07002339void netif_schedule_queue(struct netdev_queue *txq)
2340{
2341 rcu_read_lock();
2342 if (!(txq->state & QUEUE_STATE_ANY_XOFF)) {
2343 struct Qdisc *q = rcu_dereference(txq->qdisc);
2344
2345 __netif_schedule(q);
2346 }
2347 rcu_read_unlock();
2348}
2349EXPORT_SYMBOL(netif_schedule_queue);
2350
2351/**
2352 * netif_wake_subqueue - allow sending packets on subqueue
2353 * @dev: network device
2354 * @queue_index: sub queue index
2355 *
2356 * Resume individual transmit queue of a device with multiple transmit queues.
2357 */
2358void netif_wake_subqueue(struct net_device *dev, u16 queue_index)
2359{
2360 struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
2361
2362 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &txq->state)) {
2363 struct Qdisc *q;
2364
2365 rcu_read_lock();
2366 q = rcu_dereference(txq->qdisc);
2367 __netif_schedule(q);
2368 rcu_read_unlock();
2369 }
2370}
2371EXPORT_SYMBOL(netif_wake_subqueue);
2372
2373void netif_tx_wake_queue(struct netdev_queue *dev_queue)
2374{
2375 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
2376 struct Qdisc *q;
2377
2378 rcu_read_lock();
2379 q = rcu_dereference(dev_queue->qdisc);
2380 __netif_schedule(q);
2381 rcu_read_unlock();
2382 }
2383}
2384EXPORT_SYMBOL(netif_tx_wake_queue);
2385
Eric Dumazete6247022013-12-05 04:45:08 -08002386void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2387{
2388 unsigned long flags;
2389
Myungho Jung1dee03a2017-04-25 11:58:15 -07002390 if (unlikely(!skb))
2391 return;
2392
Eric Dumazete6247022013-12-05 04:45:08 -08002393 if (likely(atomic_read(&skb->users) == 1)) {
2394 smp_rmb();
2395 atomic_set(&skb->users, 0);
2396 } else if (likely(!atomic_dec_and_test(&skb->users))) {
2397 return;
2398 }
2399 get_kfree_skb_cb(skb)->reason = reason;
2400 local_irq_save(flags);
2401 skb->next = __this_cpu_read(softnet_data.completion_queue);
2402 __this_cpu_write(softnet_data.completion_queue, skb);
2403 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2404 local_irq_restore(flags);
2405}
2406EXPORT_SYMBOL(__dev_kfree_skb_irq);
2407
2408void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002409{
2410 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002411 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002412 else
2413 dev_kfree_skb(skb);
2414}
Eric Dumazete6247022013-12-05 04:45:08 -08002415EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002416
2417
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002418/**
2419 * netif_device_detach - mark device as removed
2420 * @dev: network device
2421 *
2422 * Mark device as removed from system and therefore no longer available.
2423 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002424void netif_device_detach(struct net_device *dev)
2425{
2426 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2427 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002428 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002429 }
2430}
2431EXPORT_SYMBOL(netif_device_detach);
2432
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002433/**
2434 * netif_device_attach - mark device as attached
2435 * @dev: network device
2436 *
2437 * Mark device as attached from system and restart if needed.
2438 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002439void netif_device_attach(struct net_device *dev)
2440{
2441 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2442 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002443 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002444 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002445 }
2446}
2447EXPORT_SYMBOL(netif_device_attach);
2448
Jiri Pirko5605c762015-05-12 14:56:12 +02002449/*
2450 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
2451 * to be used as a distribution range.
2452 */
2453u16 __skb_tx_hash(const struct net_device *dev, struct sk_buff *skb,
2454 unsigned int num_tx_queues)
2455{
2456 u32 hash;
2457 u16 qoffset = 0;
2458 u16 qcount = num_tx_queues;
2459
2460 if (skb_rx_queue_recorded(skb)) {
2461 hash = skb_get_rx_queue(skb);
2462 while (unlikely(hash >= num_tx_queues))
2463 hash -= num_tx_queues;
2464 return hash;
2465 }
2466
2467 if (dev->num_tc) {
2468 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
2469 qoffset = dev->tc_to_txq[tc].offset;
2470 qcount = dev->tc_to_txq[tc].count;
2471 }
2472
2473 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
2474}
2475EXPORT_SYMBOL(__skb_tx_hash);
2476
Ben Hutchings36c92472012-01-17 07:57:56 +00002477static void skb_warn_bad_offload(const struct sk_buff *skb)
2478{
Wei Tang84d15ae2016-06-16 21:17:49 +08002479 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00002480 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01002481 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00002482
Ben Greearc846ad92013-04-19 10:45:52 +00002483 if (!net_ratelimit())
2484 return;
2485
Bjørn Mork88ad4172015-11-16 19:16:40 +01002486 if (dev) {
2487 if (dev->dev.parent)
2488 name = dev_driver_string(dev->dev.parent);
2489 else
2490 name = netdev_name(dev);
2491 }
Ben Hutchings36c92472012-01-17 07:57:56 +00002492 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2493 "gso_type=%d ip_summed=%d\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01002494 name, dev ? &dev->features : &null_features,
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002495 skb->sk ? &skb->sk->sk_route_caps : &null_features,
Ben Hutchings36c92472012-01-17 07:57:56 +00002496 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2497 skb_shinfo(skb)->gso_type, skb->ip_summed);
2498}
2499
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500/*
2501 * Invalidate hardware checksum when packet is to be mangled, and
2502 * complete checksum manually on outgoing path.
2503 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002504int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505{
Al Virod3bc23e2006-11-14 21:24:49 -08002506 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002507 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
Patrick McHardy84fa7932006-08-29 16:44:56 -07002509 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002510 goto out_set_summed;
2511
2512 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002513 skb_warn_bad_offload(skb);
2514 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 }
2516
Eric Dumazetcef401d2013-01-25 20:34:37 +00002517 /* Before computing a checksum, we should make sure no frag could
2518 * be modified by an external entity : checksum could be wrong.
2519 */
2520 if (skb_has_shared_frag(skb)) {
2521 ret = __skb_linearize(skb);
2522 if (ret)
2523 goto out;
2524 }
2525
Michał Mirosław55508d62010-12-14 15:24:08 +00002526 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002527 BUG_ON(offset >= skb_headlen(skb));
2528 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2529
2530 offset += skb->csum_offset;
2531 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2532
2533 if (skb_cloned(skb) &&
2534 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2536 if (ret)
2537 goto out;
2538 }
2539
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07002540 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07002541out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002543out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 return ret;
2545}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002546EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002547
Tom Herbert6ae23ad2015-12-14 11:19:46 -08002548/* skb_csum_offload_check - Driver helper function to determine if a device
2549 * with limited checksum offload capabilities is able to offload the checksum
2550 * for a given packet.
2551 *
2552 * Arguments:
2553 * skb - sk_buff for the packet in question
2554 * spec - contains the description of what device can offload
2555 * csum_encapped - returns true if the checksum being offloaded is
2556 * encpasulated. That is it is checksum for the transport header
2557 * in the inner headers.
2558 * checksum_help - when set indicates that helper function should
2559 * call skb_checksum_help if offload checks fail
2560 *
2561 * Returns:
2562 * true: Packet has passed the checksum checks and should be offloadable to
2563 * the device (a driver may still need to check for additional
2564 * restrictions of its device)
2565 * false: Checksum is not offloadable. If checksum_help was set then
2566 * skb_checksum_help was called to resolve checksum for non-GSO
2567 * packets and when IP protocol is not SCTP
2568 */
2569bool __skb_csum_offload_chk(struct sk_buff *skb,
2570 const struct skb_csum_offl_spec *spec,
2571 bool *csum_encapped,
2572 bool csum_help)
2573{
2574 struct iphdr *iph;
2575 struct ipv6hdr *ipv6;
2576 void *nhdr;
2577 int protocol;
2578 u8 ip_proto;
2579
2580 if (skb->protocol == htons(ETH_P_8021Q) ||
2581 skb->protocol == htons(ETH_P_8021AD)) {
2582 if (!spec->vlan_okay)
2583 goto need_help;
2584 }
2585
2586 /* We check whether the checksum refers to a transport layer checksum in
2587 * the outermost header or an encapsulated transport layer checksum that
2588 * corresponds to the inner headers of the skb. If the checksum is for
2589 * something else in the packet we need help.
2590 */
2591 if (skb_checksum_start_offset(skb) == skb_transport_offset(skb)) {
2592 /* Non-encapsulated checksum */
2593 protocol = eproto_to_ipproto(vlan_get_protocol(skb));
2594 nhdr = skb_network_header(skb);
2595 *csum_encapped = false;
2596 if (spec->no_not_encapped)
2597 goto need_help;
2598 } else if (skb->encapsulation && spec->encap_okay &&
2599 skb_checksum_start_offset(skb) ==
2600 skb_inner_transport_offset(skb)) {
2601 /* Encapsulated checksum */
2602 *csum_encapped = true;
2603 switch (skb->inner_protocol_type) {
2604 case ENCAP_TYPE_ETHER:
2605 protocol = eproto_to_ipproto(skb->inner_protocol);
2606 break;
2607 case ENCAP_TYPE_IPPROTO:
2608 protocol = skb->inner_protocol;
2609 break;
2610 }
2611 nhdr = skb_inner_network_header(skb);
2612 } else {
2613 goto need_help;
2614 }
2615
2616 switch (protocol) {
2617 case IPPROTO_IP:
2618 if (!spec->ipv4_okay)
2619 goto need_help;
2620 iph = nhdr;
2621 ip_proto = iph->protocol;
2622 if (iph->ihl != 5 && !spec->ip_options_okay)
2623 goto need_help;
2624 break;
2625 case IPPROTO_IPV6:
2626 if (!spec->ipv6_okay)
2627 goto need_help;
2628 if (spec->no_encapped_ipv6 && *csum_encapped)
2629 goto need_help;
2630 ipv6 = nhdr;
2631 nhdr += sizeof(*ipv6);
2632 ip_proto = ipv6->nexthdr;
2633 break;
2634 default:
2635 goto need_help;
2636 }
2637
2638ip_proto_again:
2639 switch (ip_proto) {
2640 case IPPROTO_TCP:
2641 if (!spec->tcp_okay ||
2642 skb->csum_offset != offsetof(struct tcphdr, check))
2643 goto need_help;
2644 break;
2645 case IPPROTO_UDP:
2646 if (!spec->udp_okay ||
2647 skb->csum_offset != offsetof(struct udphdr, check))
2648 goto need_help;
2649 break;
2650 case IPPROTO_SCTP:
2651 if (!spec->sctp_okay ||
2652 skb->csum_offset != offsetof(struct sctphdr, checksum))
2653 goto cant_help;
2654 break;
2655 case NEXTHDR_HOP:
2656 case NEXTHDR_ROUTING:
2657 case NEXTHDR_DEST: {
2658 u8 *opthdr = nhdr;
2659
2660 if (protocol != IPPROTO_IPV6 || !spec->ext_hdrs_okay)
2661 goto need_help;
2662
2663 ip_proto = opthdr[0];
2664 nhdr += (opthdr[1] + 1) << 3;
2665
2666 goto ip_proto_again;
2667 }
2668 default:
2669 goto need_help;
2670 }
2671
2672 /* Passed the tests for offloading checksum */
2673 return true;
2674
2675need_help:
2676 if (csum_help && !skb_shinfo(skb)->gso_size)
2677 skb_checksum_help(skb);
2678cant_help:
2679 return false;
2680}
2681EXPORT_SYMBOL(__skb_csum_offload_chk);
2682
Vlad Yasevich53d64712014-03-27 17:26:18 -04002683__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002684{
2685 __be16 type = skb->protocol;
2686
Pravin B Shelar19acc322013-05-07 20:41:07 +00002687 /* Tunnel gso handlers can set protocol to ethernet. */
2688 if (type == htons(ETH_P_TEB)) {
2689 struct ethhdr *eth;
2690
2691 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
2692 return 0;
2693
Eric Dumazetfb9fa142018-03-26 08:08:07 -07002694 eth = (struct ethhdr *)skb->data;
Pravin B Shelar19acc322013-05-07 20:41:07 +00002695 type = eth->h_proto;
2696 }
2697
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09002698 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002699}
2700
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002701/**
2702 * skb_mac_gso_segment - mac layer segmentation handler.
2703 * @skb: buffer to segment
2704 * @features: features for the output path (see dev->features)
2705 */
2706struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
2707 netdev_features_t features)
2708{
2709 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
2710 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04002711 int vlan_depth = skb->mac_len;
2712 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002713
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002714 if (unlikely(!type))
2715 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002716
Vlad Yasevich53d64712014-03-27 17:26:18 -04002717 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002718
2719 rcu_read_lock();
2720 list_for_each_entry_rcu(ptype, &offload_base, list) {
2721 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002722 segs = ptype->callbacks.gso_segment(skb, features);
2723 break;
2724 }
2725 }
2726 rcu_read_unlock();
2727
2728 __skb_push(skb, skb->data - skb_mac_header(skb));
2729
2730 return segs;
2731}
2732EXPORT_SYMBOL(skb_mac_gso_segment);
2733
2734
Cong Wang12b00042013-02-05 16:36:38 +00002735/* openvswitch calls this on rx path, so we need a different check.
2736 */
2737static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
2738{
2739 if (tx_path)
Eric Dumazet48a70be2017-02-03 14:29:42 -08002740 return skb->ip_summed != CHECKSUM_PARTIAL &&
Willem de Bruijn69ffc962017-08-08 14:22:55 -04002741 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet48a70be2017-02-03 14:29:42 -08002742
2743 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00002744}
2745
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002746/**
Cong Wang12b00042013-02-05 16:36:38 +00002747 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002748 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002749 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00002750 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002751 *
2752 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07002753 *
2754 * It may return NULL if the skb requires no segmentation. This is
2755 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03002756 *
2757 * Segmentation preserves SKB_SGO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002758 */
Cong Wang12b00042013-02-05 16:36:38 +00002759struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
2760 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002761{
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002762 struct sk_buff *segs;
2763
Cong Wang12b00042013-02-05 16:36:38 +00002764 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002765 int err;
2766
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002767 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02002768 err = skb_cow_head(skb, 0);
2769 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07002770 return ERR_PTR(err);
2771 }
2772
Alexander Duyck802ab552016-04-10 21:45:03 -04002773 /* Only report GSO partial support if it will enable us to
2774 * support segmentation on this frame without needing additional
2775 * work.
2776 */
2777 if (features & NETIF_F_GSO_PARTIAL) {
2778 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
2779 struct net_device *dev = skb->dev;
2780
2781 partial_features |= dev->features & dev->gso_partial_features;
2782 if (!skb_gso_ok(skb, features | partial_features))
2783 features &= ~NETIF_F_GSO_PARTIAL;
2784 }
2785
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03002786 BUILD_BUG_ON(SKB_SGO_CB_OFFSET +
2787 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
2788
Pravin B Shelar68c33162013-02-14 14:02:41 +00002789 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07002790 SKB_GSO_CB(skb)->encap_level = 0;
2791
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002792 skb_reset_mac_header(skb);
2793 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002794
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002795 segs = skb_mac_gso_segment(skb, features);
2796
Willem de Bruijneb9c7c72017-12-12 11:39:04 -05002797 if (unlikely(skb_needs_check(skb, tx_path) && !IS_ERR(segs)))
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002798 skb_warn_bad_offload(skb);
2799
2800 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002801}
Cong Wang12b00042013-02-05 16:36:38 +00002802EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002803
Herbert Xufb286bb2005-11-10 13:01:24 -08002804/* Take action when hardware reception checksum errors are detected. */
2805#ifdef CONFIG_BUG
2806void netdev_rx_csum_fault(struct net_device *dev)
2807{
2808 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002809 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08002810 dump_stack();
2811 }
2812}
2813EXPORT_SYMBOL(netdev_rx_csum_fault);
2814#endif
2815
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816/* Actually, we should eliminate this check as soon as we know, that:
2817 * 1. IOMMU is present and allows to map all the memory.
2818 * 2. No high memory really exists on this machine.
2819 */
2820
Florian Westphalc1e756b2014-05-05 15:00:44 +02002821static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822{
Herbert Xu3d3a8532006-06-27 13:33:10 -07002823#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 int i;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002825 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002826 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2827 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2828 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002829 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00002830 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002833 if (PCI_DMA_BUS_IS_PHYS) {
2834 struct device *pdev = dev->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Eric Dumazet9092c652010-04-02 13:34:49 -07002836 if (!pdev)
2837 return 0;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002838 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002839 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2840 dma_addr_t addr = page_to_phys(skb_frag_page(frag));
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002841 if (!pdev->dma_mask || addr + PAGE_SIZE - 1 > *pdev->dma_mask)
2842 return 1;
2843 }
2844 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07002845#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 return 0;
2847}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
Simon Horman3b392dd2014-06-04 08:53:17 +09002849/* If MPLS offload request, verify we are testing hardware MPLS features
2850 * instead of standard features for the netdev.
2851 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08002852#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09002853static netdev_features_t net_mpls_features(struct sk_buff *skb,
2854 netdev_features_t features,
2855 __be16 type)
2856{
Simon Horman25cd9ba2014-10-06 05:05:13 -07002857 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09002858 features &= skb->dev->mpls_features;
2859
2860 return features;
2861}
2862#else
2863static netdev_features_t net_mpls_features(struct sk_buff *skb,
2864 netdev_features_t features,
2865 __be16 type)
2866{
2867 return features;
2868}
2869#endif
2870
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002871static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02002872 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00002873{
Vlad Yasevich53d64712014-03-27 17:26:18 -04002874 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09002875 __be16 type;
2876
2877 type = skb_network_protocol(skb, &tmp);
2878 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04002879
Ed Cashinc0d680e2012-09-19 15:49:00 +00002880 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09002881 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07002882 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00002883 }
Eric Dumazet948e1372017-01-18 12:12:17 -08002884 if (illegal_highdma(skb->dev, skb))
2885 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00002886
2887 return features;
2888}
2889
Toshiaki Makitae38f3022015-03-27 14:31:13 +09002890netdev_features_t passthru_features_check(struct sk_buff *skb,
2891 struct net_device *dev,
2892 netdev_features_t features)
2893{
2894 return features;
2895}
2896EXPORT_SYMBOL(passthru_features_check);
2897
Toshiaki Makita9d33bff2018-04-17 18:46:14 +09002898static netdev_features_t dflt_features_check(struct sk_buff *skb,
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09002899 struct net_device *dev,
2900 netdev_features_t features)
2901{
2902 return vlan_features_check(skb, features);
2903}
2904
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002905static netdev_features_t gso_features_check(const struct sk_buff *skb,
2906 struct net_device *dev,
2907 netdev_features_t features)
2908{
2909 u16 gso_segs = skb_shinfo(skb)->gso_segs;
2910
2911 if (gso_segs > dev->gso_max_segs)
2912 return features & ~NETIF_F_GSO_MASK;
2913
Alexander Duyck802ab552016-04-10 21:45:03 -04002914 /* Support for GSO partial features requires software
2915 * intervention before we can actually process the packets
2916 * so we need to strip support for any partial features now
2917 * and we can pull them back in after we have partially
2918 * segmented the frame.
2919 */
2920 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
2921 features &= ~dev->gso_partial_features;
2922
2923 /* Make sure to clear the IPv4 ID mangling feature if the
2924 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002925 */
2926 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
2927 struct iphdr *iph = skb->encapsulation ?
2928 inner_ip_hdr(skb) : ip_hdr(skb);
2929
2930 if (!(iph->frag_off & htons(IP_DF)))
2931 features &= ~NETIF_F_TSO_MANGLEID;
2932 }
2933
2934 return features;
2935}
2936
Florian Westphalc1e756b2014-05-05 15:00:44 +02002937netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00002938{
Jesse Gross5f352272014-12-23 22:37:26 -08002939 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07002940 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00002941
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002942 if (skb_is_gso(skb))
2943 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00002944
Jesse Gross5f352272014-12-23 22:37:26 -08002945 /* If encapsulation offload request, verify we are testing
2946 * hardware encapsulation features instead of standard
2947 * features for the netdev
2948 */
2949 if (skb->encapsulation)
2950 features &= dev->hw_enc_features;
2951
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09002952 if (skb_vlan_tagged(skb))
2953 features = netdev_intersect_features(features,
2954 dev->vlan_features |
2955 NETIF_F_HW_VLAN_CTAG_TX |
2956 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00002957
Jesse Gross5f352272014-12-23 22:37:26 -08002958 if (dev->netdev_ops->ndo_features_check)
2959 features &= dev->netdev_ops->ndo_features_check(skb, dev,
2960 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09002961 else
2962 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08002963
Florian Westphalc1e756b2014-05-05 15:00:44 +02002964 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002965}
Florian Westphalc1e756b2014-05-05 15:00:44 +02002966EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002967
David S. Miller2ea25512014-08-29 21:10:01 -07002968static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07002969 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002970{
David S. Miller2ea25512014-08-29 21:10:01 -07002971 unsigned int len;
2972 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08002973
Salam Noureddine7866a622015-01-27 11:35:48 -08002974 if (!list_empty(&ptype_all) || !list_empty(&dev->ptype_all))
David S. Miller2ea25512014-08-29 21:10:01 -07002975 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00002976
David S. Miller2ea25512014-08-29 21:10:01 -07002977 len = skb->len;
2978 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07002979 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07002980 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00002981
Patrick McHardy572a9d72009-11-10 06:14:14 +00002982 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002983}
David S. Miller2ea25512014-08-29 21:10:01 -07002984
Mohammed Javid7ea99462015-10-23 17:27:00 +05302985static int xmit_list(struct sk_buff *list, struct net_device *dev,
2986 struct netdev_queue *txq)
2987{
2988 unsigned int len;
2989 int rc;
2990 struct sk_buff *skb = list, *head = list;
2991
2992 /* Call the taps for individual skb's in the list. */
2993 if (!list_empty(&ptype_all)) {
2994 while (skb) {
2995 struct sk_buff *next = skb->next;
2996
2997 skb->next = NULL;
2998
2999 dev_queue_xmit_nit(skb, dev);
3000
3001 skb = next;
3002 /* Keep the original list intact. */
3003 head->next = skb;
3004 head = head->next;
3005 }
3006 }
3007
3008 len = list->len;
3009 trace_net_dev_start_xmit(list, dev);
3010 rc = netdev_start_xmit(list, dev, txq, false);
3011 trace_net_dev_xmit(list, rc, dev, len);
3012
3013 return rc;
3014}
3015
David S. Miller8dcda222014-09-01 15:06:40 -07003016struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
3017 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07003018{
3019 struct sk_buff *skb = first;
3020 int rc = NETDEV_TX_OK;
3021
3022 while (skb) {
3023 struct sk_buff *next = skb->next;
3024
3025 skb->next = NULL;
David S. Miller95f6b3d2014-08-29 21:57:30 -07003026 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07003027 if (unlikely(!dev_xmit_complete(rc))) {
3028 skb->next = next;
3029 goto out;
3030 }
3031
3032 skb = next;
Eric Dumazetf4e7ca02018-10-31 08:39:13 -07003033 if (netif_tx_queue_stopped(txq) && skb) {
David S. Miller7f2e8702014-08-29 21:19:14 -07003034 rc = NETDEV_TX_BUSY;
3035 break;
3036 }
3037 }
3038
3039out:
3040 *ret = rc;
3041 return skb;
3042}
3043
Mohammed Javid7ea99462015-10-23 17:27:00 +05303044struct sk_buff *dev_hard_start_xmit_list(struct sk_buff *first,
3045 struct net_device *dev,
3046 struct netdev_queue *txq, int *ret)
3047{
3048 struct sk_buff *skb = first;
3049 int rc = NETDEV_TX_OK;
3050
3051 if (skb) {
3052 rc = xmit_list(skb, dev, txq);
3053 if (unlikely(!dev_xmit_complete(rc)))
3054 goto out;
3055 skb = NULL;
3056 }
3057
3058out:
3059 *ret = rc;
3060 return skb;
3061}
3062
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003063static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3064 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003065{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003066 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003067 !vlan_hw_offload_capable(features, skb->vlan_proto))
3068 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003069 return skb;
3070}
3071
Eric Dumazet55a93b32014-10-03 15:31:07 -07003072static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev)
David S. Millereae3f882014-08-30 15:17:13 -07003073{
3074 netdev_features_t features;
3075
David S. Millereae3f882014-08-30 15:17:13 -07003076 features = netif_skb_features(skb);
3077 skb = validate_xmit_vlan(skb, features);
3078 if (unlikely(!skb))
3079 goto out_null;
3080
Johannes Berg8b86a612015-04-17 15:45:04 +02003081 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003082 struct sk_buff *segs;
3083
Subash Abhinov Kasiviswanathan717d3392017-06-26 18:46:50 -06003084 __be16 src_port = tcp_hdr(skb)->source;
3085 __be16 dest_port = tcp_hdr(skb)->dest;
3086
3087 trace_print_skb_gso(skb, src_port, dest_port);
David S. Millerce937182014-08-30 19:22:20 -07003088 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003089 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003090 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003091 } else if (segs) {
3092 consume_skb(skb);
3093 skb = segs;
3094 }
David S. Millereae3f882014-08-30 15:17:13 -07003095 } else {
3096 if (skb_needs_linearize(skb, features) &&
3097 __skb_linearize(skb))
3098 goto out_kfree_skb;
3099
3100 /* If packet is not checksummed and device does not
3101 * support checksumming for this protocol, complete
3102 * checksumming here.
3103 */
3104 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3105 if (skb->encapsulation)
3106 skb_set_inner_transport_header(skb,
3107 skb_checksum_start_offset(skb));
3108 else
3109 skb_set_transport_header(skb,
3110 skb_checksum_start_offset(skb));
Tom Herberta1882222015-12-14 11:19:43 -08003111 if (!(features & NETIF_F_CSUM_MASK) &&
David S. Millereae3f882014-08-30 15:17:13 -07003112 skb_checksum_help(skb))
3113 goto out_kfree_skb;
3114 }
3115 }
3116
3117 return skb;
3118
3119out_kfree_skb:
3120 kfree_skb(skb);
3121out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003122 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003123 return NULL;
3124}
3125
Eric Dumazet55a93b32014-10-03 15:31:07 -07003126struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev)
3127{
3128 struct sk_buff *next, *head = NULL, *tail;
3129
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003130 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003131 next = skb->next;
3132 skb->next = NULL;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003133
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003134 /* in case skb wont be segmented, point to itself */
3135 skb->prev = skb;
3136
3137 skb = validate_xmit_skb(skb, dev);
3138 if (!skb)
3139 continue;
3140
3141 if (!head)
3142 head = skb;
3143 else
3144 tail->next = skb;
3145 /* If skb was segmented, skb->prev points to
3146 * the last segment. If not, it still contains skb.
3147 */
3148 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003149 }
3150 return head;
3151}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003152EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003153
Eric Dumazet1def9232013-01-10 12:36:42 +00003154static void qdisc_pkt_len_init(struct sk_buff *skb)
3155{
3156 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3157
3158 qdisc_skb_cb(skb)->pkt_len = skb->len;
3159
3160 /* To get more precise estimation of bytes sent on wire,
3161 * we add to pkt_len the headers size of all segments
3162 */
3163 if (shinfo->gso_size) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003164 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003165 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003166
Eric Dumazet757b8b12013-01-15 21:14:21 -08003167 /* mac layer + network layer */
3168 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3169
3170 /* + transport layer */
Eric Dumazeta44d9112018-01-18 19:59:19 -08003171 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3172 const struct tcphdr *th;
3173 struct tcphdr _tcphdr;
3174
3175 th = skb_header_pointer(skb, skb_transport_offset(skb),
3176 sizeof(_tcphdr), &_tcphdr);
3177 if (likely(th))
3178 hdr_len += __tcp_hdrlen(th);
3179 } else {
3180 struct udphdr _udphdr;
3181
3182 if (skb_header_pointer(skb, skb_transport_offset(skb),
3183 sizeof(_udphdr), &_udphdr))
3184 hdr_len += sizeof(struct udphdr);
3185 }
Jason Wang15e5a032013-03-25 20:19:59 +00003186
3187 if (shinfo->gso_type & SKB_GSO_DODGY)
3188 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3189 shinfo->gso_size);
3190
3191 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003192 }
3193}
3194
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003195static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3196 struct net_device *dev,
3197 struct netdev_queue *txq)
3198{
3199 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003200 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003201 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003202 int rc;
3203
Eric Dumazeta2da5702011-01-20 03:48:19 +00003204 qdisc_calculate_pkt_len(skb, q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003205 /*
3206 * Heuristic to force contended enqueues to serialize on a
3207 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003208 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003209 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003210 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003211 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003212 if (unlikely(contended))
3213 spin_lock(&q->busylock);
3214
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003215 spin_lock(root_lock);
3216 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003217 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003218 rc = NET_XMIT_DROP;
3219 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003220 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003221 /*
3222 * This is a work-conserving queue; there are no old skbs
3223 * waiting to be sent out; and the qdisc is not running -
3224 * xmit the skb directly.
3225 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003226
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003227 qdisc_bstats_update(q, skb);
3228
Eric Dumazet55a93b32014-10-03 15:31:07 -07003229 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003230 if (unlikely(contended)) {
3231 spin_unlock(&q->busylock);
3232 contended = false;
3233 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003234 __qdisc_run(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003235 } else
Eric Dumazetbc135b22010-06-02 03:23:51 -07003236 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003237
3238 rc = NET_XMIT_SUCCESS;
3239 } else {
Eric Dumazet520ac302016-06-21 23:16:49 -07003240 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003241 if (qdisc_run_begin(q)) {
3242 if (unlikely(contended)) {
3243 spin_unlock(&q->busylock);
3244 contended = false;
3245 }
3246 __qdisc_run(q);
3247 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003248 }
3249 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003250 if (unlikely(to_free))
3251 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003252 if (unlikely(contended))
3253 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003254 return rc;
3255}
3256
Daniel Borkmann86f85152013-12-29 17:27:11 +01003257#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003258static void skb_update_prio(struct sk_buff *skb)
3259{
Eric Dumazet28984ba02018-03-14 09:04:16 -07003260 const struct netprio_map *map;
3261 const struct sock *sk;
3262 unsigned int prioidx;
Neil Horman5bc14212011-11-22 05:10:51 +00003263
Eric Dumazet28984ba02018-03-14 09:04:16 -07003264 if (skb->priority)
3265 return;
3266 map = rcu_dereference_bh(skb->dev->priomap);
3267 if (!map)
3268 return;
3269 sk = skb_to_full_sk(skb);
3270 if (!sk)
3271 return;
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003272
Eric Dumazet28984ba02018-03-14 09:04:16 -07003273 prioidx = sock_cgroup_prioidx(&sk->sk_cgrp_data);
3274
3275 if (prioidx < map->priomap_len)
3276 skb->priority = map->priomap[prioidx];
Neil Horman5bc14212011-11-22 05:10:51 +00003277}
3278#else
3279#define skb_update_prio(skb)
3280#endif
3281
hannes@stressinduktion.orgf60e5992015-04-01 17:07:44 +02003282DEFINE_PER_CPU(int, xmit_recursion);
3283EXPORT_SYMBOL(xmit_recursion);
3284
Dave Jonesd29f7492008-07-22 14:09:06 -07003285/**
Michel Machado95603e22012-06-12 10:16:35 +00003286 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003287 * @net: network namespace this loopback is happening in
3288 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003289 * @skb: buffer to transmit
3290 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003291int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003292{
3293 skb_reset_mac_header(skb);
3294 __skb_pull(skb, skb_network_offset(skb));
3295 skb->pkt_type = PACKET_LOOPBACK;
3296 skb->ip_summed = CHECKSUM_UNNECESSARY;
3297 WARN_ON(!skb_dst(skb));
3298 skb_dst_force(skb);
3299 netif_rx_ni(skb);
3300 return 0;
3301}
3302EXPORT_SYMBOL(dev_loopback_xmit);
3303
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003304#ifdef CONFIG_NET_EGRESS
3305static struct sk_buff *
3306sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3307{
3308 struct tcf_proto *cl = rcu_dereference_bh(dev->egress_cl_list);
3309 struct tcf_result cl_res;
3310
3311 if (!cl)
3312 return skb;
3313
3314 /* skb->tc_verd and qdisc_skb_cb(skb)->pkt_len were already set
3315 * earlier by the caller.
3316 */
3317 qdisc_bstats_cpu_update(cl->q, skb);
3318
3319 switch (tc_classify(skb, cl, &cl_res, false)) {
3320 case TC_ACT_OK:
3321 case TC_ACT_RECLASSIFY:
3322 skb->tc_index = TC_H_MIN(cl_res.classid);
3323 break;
3324 case TC_ACT_SHOT:
3325 qdisc_qstats_cpu_drop(cl->q);
3326 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003327 kfree_skb(skb);
3328 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003329 case TC_ACT_STOLEN:
3330 case TC_ACT_QUEUED:
3331 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003332 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003333 return NULL;
3334 case TC_ACT_REDIRECT:
3335 /* No need to push/pop skb's mac_header here on egress! */
3336 skb_do_redirect(skb);
3337 *ret = NET_XMIT_SUCCESS;
3338 return NULL;
3339 default:
3340 break;
3341 }
3342
3343 return skb;
3344}
3345#endif /* CONFIG_NET_EGRESS */
3346
Jiri Pirko638b2a62015-05-12 14:56:13 +02003347static inline int get_xps_queue(struct net_device *dev, struct sk_buff *skb)
3348{
3349#ifdef CONFIG_XPS
3350 struct xps_dev_maps *dev_maps;
3351 struct xps_map *map;
3352 int queue_index = -1;
3353
3354 rcu_read_lock();
3355 dev_maps = rcu_dereference(dev->xps_maps);
3356 if (dev_maps) {
3357 map = rcu_dereference(
3358 dev_maps->cpu_map[skb->sender_cpu - 1]);
3359 if (map) {
3360 if (map->len == 1)
3361 queue_index = map->queues[0];
3362 else
3363 queue_index = map->queues[reciprocal_scale(skb_get_hash(skb),
3364 map->len)];
3365 if (unlikely(queue_index >= dev->real_num_tx_queues))
3366 queue_index = -1;
3367 }
3368 }
3369 rcu_read_unlock();
3370
3371 return queue_index;
3372#else
3373 return -1;
3374#endif
3375}
3376
3377static u16 __netdev_pick_tx(struct net_device *dev, struct sk_buff *skb)
3378{
3379 struct sock *sk = skb->sk;
3380 int queue_index = sk_tx_queue_get(sk);
3381
3382 if (queue_index < 0 || skb->ooo_okay ||
3383 queue_index >= dev->real_num_tx_queues) {
3384 int new_index = get_xps_queue(dev, skb);
3385 if (new_index < 0)
3386 new_index = skb_tx_hash(dev, skb);
3387
3388 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003389 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02003390 rcu_access_pointer(sk->sk_dst_cache))
3391 sk_tx_queue_set(sk, new_index);
3392
3393 queue_index = new_index;
3394 }
3395
3396 return queue_index;
3397}
3398
3399struct netdev_queue *netdev_pick_tx(struct net_device *dev,
3400 struct sk_buff *skb,
3401 void *accel_priv)
3402{
3403 int queue_index = 0;
3404
3405#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08003406 u32 sender_cpu = skb->sender_cpu - 1;
3407
3408 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003409 skb->sender_cpu = raw_smp_processor_id() + 1;
3410#endif
3411
3412 if (dev->real_num_tx_queues != 1) {
3413 const struct net_device_ops *ops = dev->netdev_ops;
3414 if (ops->ndo_select_queue)
3415 queue_index = ops->ndo_select_queue(dev, skb, accel_priv,
3416 __netdev_pick_tx);
3417 else
3418 queue_index = __netdev_pick_tx(dev, skb);
3419
3420 if (!accel_priv)
3421 queue_index = netdev_cap_txqueue(dev, queue_index);
3422 }
3423
3424 skb_set_queue_mapping(skb, queue_index);
3425 return netdev_get_tx_queue(dev, queue_index);
3426}
3427
Michel Machado95603e22012-06-12 10:16:35 +00003428/**
Jason Wang9d08dd32014-01-20 11:25:13 +08003429 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07003430 * @skb: buffer to transmit
Jason Wang9d08dd32014-01-20 11:25:13 +08003431 * @accel_priv: private data used for L2 forwarding offload
Mohammed Javid7ea99462015-10-23 17:27:00 +05303432 * @skb_list: Boolean used for skb list processing.
Dave Jonesd29f7492008-07-22 14:09:06 -07003433 *
3434 * Queue a buffer for transmission to a network device. The caller must
3435 * have set the device and priority and built the buffer before calling
3436 * this function. The function can be called from an interrupt.
3437 *
3438 * A negative errno code is returned on a failure. A success does not
3439 * guarantee the frame will be transmitted as it may be dropped due
3440 * to congestion or traffic shaping.
3441 *
3442 * -----------------------------------------------------------------------------------
3443 * I notice this method can also return errors from the queue disciplines,
3444 * including NET_XMIT_DROP, which is a positive value. So, errors can also
3445 * be positive.
3446 *
3447 * Regardless of the return value, the skb is consumed, so it is currently
3448 * difficult to retry a send to this method. (You can bump the ref count
3449 * before sending to hold a reference for retry if you are careful.)
3450 *
3451 * When calling this method, interrupts MUST be enabled. This is because
3452 * the BH enable code must have IRQs enabled so that it will not deadlock.
3453 * --BLG
3454 */
Mohammed Javid7ea99462015-10-23 17:27:00 +05303455static int __dev_queue_xmit(struct sk_buff *skb, void *accel_priv,
3456 bool skb_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003457{
3458 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07003459 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 struct Qdisc *q;
3461 int rc = -ENOMEM;
3462
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00003463 skb_reset_mac_header(skb);
3464
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003465 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
3466 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
3467
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003468 /* Disable soft irqs for various locks below. Also
3469 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003471 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
Neil Horman5bc14212011-11-22 05:10:51 +00003473 skb_update_prio(skb);
3474
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003475 qdisc_pkt_len_init(skb);
3476#ifdef CONFIG_NET_CLS_ACT
3477 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
3478# ifdef CONFIG_NET_EGRESS
3479 if (static_key_false(&egress_needed)) {
3480 skb = sch_handle_egress(skb, &rc, dev);
3481 if (!skb)
3482 goto out;
3483 }
3484# endif
3485#endif
Eric Dumazet02875872014-10-05 18:38:35 -07003486 /* If device/qdisc don't need skb->dst, release it right now while
3487 * its hot in this cpu cache.
3488 */
3489 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
3490 skb_dst_drop(skb);
3491 else
3492 skb_dst_force(skb);
3493
Jason Wangf663dd92014-01-10 16:18:26 +08003494 txq = netdev_pick_tx(dev, skb, accel_priv);
Paul E. McKenneya898def2010-02-22 17:04:49 -08003495 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07003496
Koki Sanagicf66ba52010-08-23 18:45:02 +09003497 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003499 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07003500 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501 }
3502
3503 /* The device has no queue. Common case for software devices:
3504 loopback, all the sorts of tunnels...
3505
Herbert Xu932ff272006-06-09 12:20:56 -07003506 Really, it is unlikely that netif_tx_lock protection is necessary
3507 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 counters.)
3509 However, it is possible, that they rely on protection
3510 made by us here.
3511
3512 Check this and shot the lock. It is not prone from deadlocks.
3513 Either shot noqueue qdisc, it is even simpler 8)
3514 */
3515 if (dev->flags & IFF_UP) {
3516 int cpu = smp_processor_id(); /* ok because BHs are off */
3517
David S. Millerc773e842008-07-08 23:13:53 -07003518 if (txq->xmit_lock_owner != cpu) {
Daniel Borkmanna70b5062016-06-10 21:19:06 +02003519 if (unlikely(__this_cpu_read(xmit_recursion) >
3520 XMIT_RECURSION_LIMIT))
Eric Dumazet745e20f2010-09-29 13:23:09 -07003521 goto recursion_alert;
3522
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003523 skb = validate_xmit_skb(skb, dev);
3524 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07003525 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003526
David S. Millerc773e842008-07-08 23:13:53 -07003527 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
Tom Herbert734664982011-11-28 16:32:44 +00003529 if (!netif_xmit_stopped(txq)) {
Eric Dumazet745e20f2010-09-29 13:23:09 -07003530 __this_cpu_inc(xmit_recursion);
Mohammed Javid7ea99462015-10-23 17:27:00 +05303531 if (likely(!skb_list))
3532 skb = dev_hard_start_xmit(skb, dev,
3533 txq, &rc);
3534 else
3535 skb = dev_hard_start_xmit_list(skb,
3536 dev,
3537 txq,
3538 &rc);
Eric Dumazet745e20f2010-09-29 13:23:09 -07003539 __this_cpu_dec(xmit_recursion);
Patrick McHardy572a9d72009-11-10 06:14:14 +00003540 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07003541 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 goto out;
3543 }
3544 }
David S. Millerc773e842008-07-08 23:13:53 -07003545 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00003546 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
3547 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 } else {
3549 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07003550 * unfortunately
3551 */
3552recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00003553 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
3554 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 }
3556 }
3557
3558 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07003559 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
Eric Dumazet015f0682014-03-27 08:45:56 -07003561 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003562 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 return rc;
3564out:
Herbert Xud4828d82006-06-22 02:28:18 -07003565 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 return rc;
3567}
Jason Wangf663dd92014-01-10 16:18:26 +08003568
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003569int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08003570{
Mohammed Javid7ea99462015-10-23 17:27:00 +05303571 return __dev_queue_xmit(skb, NULL, false);
Jason Wangf663dd92014-01-10 16:18:26 +08003572}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003573EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
Jason Wangf663dd92014-01-10 16:18:26 +08003575int dev_queue_xmit_accel(struct sk_buff *skb, void *accel_priv)
3576{
Mohammed Javid7ea99462015-10-23 17:27:00 +05303577 return __dev_queue_xmit(skb, accel_priv, false);
Jason Wangf663dd92014-01-10 16:18:26 +08003578}
3579EXPORT_SYMBOL(dev_queue_xmit_accel);
3580
Mohammed Javid7ea99462015-10-23 17:27:00 +05303581int dev_queue_xmit_list(struct sk_buff *skb)
3582{
3583 return __dev_queue_xmit(skb, NULL, true);
3584}
3585EXPORT_SYMBOL(dev_queue_xmit_list);
3586
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587
3588/*=======================================================================
3589 Receiver routines
3590 =======================================================================*/
3591
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003592int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00003593EXPORT_SYMBOL(netdev_max_backlog);
3594
Eric Dumazet3b098e22010-05-15 23:57:10 -07003595int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003596int netdev_budget __read_mostly = 300;
3597int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003599/* Called with irq disabled */
3600static inline void ____napi_schedule(struct softnet_data *sd,
3601 struct napi_struct *napi)
3602{
3603 list_add_tail(&napi->poll_list, &sd->poll_list);
3604 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3605}
3606
Eric Dumazetdf334542010-03-24 19:13:54 +00003607#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07003608
3609/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003610struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07003611EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003612u32 rps_cpu_mask __read_mostly;
3613EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07003614
Ingo Molnarc5905af2012-02-24 08:31:31 +01003615struct static_key rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04003616EXPORT_SYMBOL(rps_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00003617
Ben Hutchingsc4454772011-01-19 11:03:53 +00003618static struct rps_dev_flow *
3619set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3620 struct rps_dev_flow *rflow, u16 next_cpu)
3621{
Eric Dumazeta31196b2015-04-25 09:35:24 -07003622 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00003623#ifdef CONFIG_RFS_ACCEL
3624 struct netdev_rx_queue *rxqueue;
3625 struct rps_dev_flow_table *flow_table;
3626 struct rps_dev_flow *old_rflow;
3627 u32 flow_id;
3628 u16 rxq_index;
3629 int rc;
3630
3631 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00003632 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
3633 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00003634 goto out;
3635 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
3636 if (rxq_index == skb_get_rx_queue(skb))
3637 goto out;
3638
3639 rxqueue = dev->_rx + rxq_index;
3640 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3641 if (!flow_table)
3642 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07003643 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003644 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
3645 rxq_index, flow_id);
3646 if (rc < 0)
3647 goto out;
3648 old_rflow = rflow;
3649 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00003650 rflow->filter = rc;
3651 if (old_rflow->filter == rflow->filter)
3652 old_rflow->filter = RPS_NO_FILTER;
3653 out:
3654#endif
3655 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00003656 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003657 }
3658
Ben Hutchings09994d12011-10-03 04:42:46 +00003659 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003660 return rflow;
3661}
3662
Tom Herbert0a9627f2010-03-16 08:03:29 +00003663/*
3664 * get_rps_cpu is called from netif_receive_skb and returns the target
3665 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003666 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00003667 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003668static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3669 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003670{
Eric Dumazet567e4b72015-02-06 12:59:01 -08003671 const struct rps_sock_flow_table *sock_flow_table;
3672 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07003673 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003674 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003675 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003676 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07003677 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003678
Tom Herbert0a9627f2010-03-16 08:03:29 +00003679 if (skb_rx_queue_recorded(skb)) {
3680 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003681
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003682 if (unlikely(index >= dev->real_num_rx_queues)) {
3683 WARN_ONCE(dev->real_num_rx_queues > 1,
3684 "%s received packet on queue %u, but number "
3685 "of RX queues is %u\n",
3686 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003687 goto done;
3688 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08003689 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003690 }
3691
Eric Dumazet567e4b72015-02-06 12:59:01 -08003692 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
3693
3694 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3695 map = rcu_dereference(rxqueue->rps_map);
3696 if (!flow_table && !map)
3697 goto done;
3698
Changli Gao2d47b452010-08-17 19:00:56 +00003699 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07003700 hash = skb_get_hash(skb);
3701 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003702 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003703
Tom Herbertfec5e652010-04-16 16:01:27 -07003704 sock_flow_table = rcu_dereference(rps_sock_flow_table);
3705 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003706 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003707 u32 next_cpu;
3708 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07003709
Eric Dumazet567e4b72015-02-06 12:59:01 -08003710 /* First check into global flow table if there is a match */
3711 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
3712 if ((ident ^ hash) & ~rps_cpu_mask)
3713 goto try_rps;
3714
3715 next_cpu = ident & rps_cpu_mask;
3716
3717 /* OK, now we know there is a match,
3718 * we can look at the local (per receive queue) flow table
3719 */
Tom Herbert61b905d2014-03-24 15:34:47 -07003720 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07003721 tcpu = rflow->cpu;
3722
Tom Herbertfec5e652010-04-16 16:01:27 -07003723 /*
3724 * If the desired CPU (where last recvmsg was done) is
3725 * different from current CPU (one in the rx-queue flow
3726 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07003727 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07003728 * - Current CPU is offline.
3729 * - The current CPU's queue tail has advanced beyond the
3730 * last packet that was enqueued using this table entry.
3731 * This guarantees that all previous packets for the flow
3732 * have been dequeued, thus preserving in order delivery.
3733 */
3734 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07003735 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07003736 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00003737 rflow->last_qtail)) >= 0)) {
3738 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003739 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00003740 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00003741
Eric Dumazeta31196b2015-04-25 09:35:24 -07003742 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003743 *rflowp = rflow;
3744 cpu = tcpu;
3745 goto done;
3746 }
3747 }
3748
Eric Dumazet567e4b72015-02-06 12:59:01 -08003749try_rps:
3750
Tom Herbert0a9627f2010-03-16 08:03:29 +00003751 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02003752 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00003753 if (cpu_online(tcpu)) {
3754 cpu = tcpu;
3755 goto done;
3756 }
3757 }
3758
3759done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00003760 return cpu;
3761}
3762
Ben Hutchingsc4454772011-01-19 11:03:53 +00003763#ifdef CONFIG_RFS_ACCEL
3764
3765/**
3766 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
3767 * @dev: Device on which the filter was set
3768 * @rxq_index: RX queue index
3769 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
3770 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
3771 *
3772 * Drivers that implement ndo_rx_flow_steer() should periodically call
3773 * this function for each installed filter and remove the filters for
3774 * which it returns %true.
3775 */
3776bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
3777 u32 flow_id, u16 filter_id)
3778{
3779 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
3780 struct rps_dev_flow_table *flow_table;
3781 struct rps_dev_flow *rflow;
3782 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07003783 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003784
3785 rcu_read_lock();
3786 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3787 if (flow_table && flow_id <= flow_table->mask) {
3788 rflow = &flow_table->flows[flow_id];
3789 cpu = ACCESS_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07003790 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00003791 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
3792 rflow->last_qtail) <
3793 (int)(10 * flow_table->mask)))
3794 expire = false;
3795 }
3796 rcu_read_unlock();
3797 return expire;
3798}
3799EXPORT_SYMBOL(rps_may_expire_flow);
3800
3801#endif /* CONFIG_RFS_ACCEL */
3802
Tom Herbert0a9627f2010-03-16 08:03:29 +00003803/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003804static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003805{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003806 struct softnet_data *sd = data;
3807
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003808 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00003809 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003810}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003811
Tom Herbertfec5e652010-04-16 16:01:27 -07003812#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00003813
3814/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003815 * Check if this softnet_data structure is another cpu one
3816 * If yes, queue it to our IPI list and return 1
3817 * If no, return 0
3818 */
3819static int rps_ipi_queued(struct softnet_data *sd)
3820{
3821#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05003822 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003823
3824 if (sd != mysd) {
3825 sd->rps_ipi_next = mysd->rps_ipi_list;
3826 mysd->rps_ipi_list = sd;
3827
3828 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3829 return 1;
3830 }
3831#endif /* CONFIG_RPS */
3832 return 0;
3833}
3834
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003835#ifdef CONFIG_NET_FLOW_LIMIT
3836int netdev_flow_limit_table_len __read_mostly = (1 << 12);
3837#endif
3838
3839static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
3840{
3841#ifdef CONFIG_NET_FLOW_LIMIT
3842 struct sd_flow_limit *fl;
3843 struct softnet_data *sd;
3844 unsigned int old_flow, new_flow;
3845
3846 if (qlen < (netdev_max_backlog >> 1))
3847 return false;
3848
Christoph Lameter903ceff2014-08-17 12:30:35 -05003849 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003850
3851 rcu_read_lock();
3852 fl = rcu_dereference(sd->flow_limit);
3853 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08003854 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003855 old_flow = fl->history[fl->history_head];
3856 fl->history[fl->history_head] = new_flow;
3857
3858 fl->history_head++;
3859 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
3860
3861 if (likely(fl->buckets[old_flow]))
3862 fl->buckets[old_flow]--;
3863
3864 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
3865 fl->count++;
3866 rcu_read_unlock();
3867 return true;
3868 }
3869 }
3870 rcu_read_unlock();
3871#endif
3872 return false;
3873}
3874
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003875/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00003876 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
3877 * queue (may be a remote CPU queue).
3878 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003879static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
3880 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003881{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003882 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003883 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003884 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003885
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003886 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003887
3888 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003889
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003890 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03003891 if (!netif_running(skb->dev))
3892 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003893 qlen = skb_queue_len(&sd->input_pkt_queue);
3894 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08003895 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00003896enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003897 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003898 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003899 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00003900 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003901 return NET_RX_SUCCESS;
3902 }
3903
Eric Dumazetebda37c22010-05-06 23:51:21 +00003904 /* Schedule NAPI for backlog device
3905 * We can use non atomic operation since we own the queue lock
3906 */
3907 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003908 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003909 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003910 }
3911 goto enqueue;
3912 }
3913
Julian Anastasove9e4dd32015-07-09 09:59:09 +03003914drop:
Changli Gaodee42872010-05-02 05:42:16 +00003915 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003916 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003917
Tom Herbert0a9627f2010-03-16 08:03:29 +00003918 local_irq_restore(flags);
3919
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003920 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003921 kfree_skb(skb);
3922 return NET_RX_DROP;
3923}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003925static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003927 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928
Eric Dumazet588f0332011-11-15 04:12:55 +00003929 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
Koki Sanagicf66ba52010-08-23 18:45:02 +09003931 trace_netif_rx(skb);
Eric Dumazetdf334542010-03-24 19:13:54 +00003932#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003933 if (static_key_false(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003934 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003935 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936
Changli Gaocece1942010-08-07 20:35:43 -07003937 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003938 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003939
3940 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003941 if (cpu < 0)
3942 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07003943
3944 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3945
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003946 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07003947 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00003948 } else
3949#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07003950 {
3951 unsigned int qtail;
3952 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
3953 put_cpu();
3954 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003955 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003957
3958/**
3959 * netif_rx - post buffer to the network code
3960 * @skb: buffer to post
3961 *
3962 * This function receives a packet from a device driver and queues it for
3963 * the upper (protocol) levels to process. It always succeeds. The buffer
3964 * may be dropped during processing for congestion control or by the
3965 * protocol layers.
3966 *
3967 * return values:
3968 * NET_RX_SUCCESS (no congestion)
3969 * NET_RX_DROP (packet was dropped)
3970 *
3971 */
3972
3973int netif_rx(struct sk_buff *skb)
3974{
3975 trace_netif_rx_entry(skb);
3976
3977 return netif_rx_internal(skb);
3978}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003979EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980
3981int netif_rx_ni(struct sk_buff *skb)
3982{
3983 int err;
3984
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003985 trace_netif_rx_ni_entry(skb);
3986
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003988 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 if (local_softirq_pending())
3990 do_softirq();
3991 preempt_enable();
3992
3993 return err;
3994}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995EXPORT_SYMBOL(netif_rx_ni);
3996
Emese Revfy0766f782016-06-20 20:42:34 +02003997static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998{
Christoph Lameter903ceff2014-08-17 12:30:35 -05003999 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000
4001 if (sd->completion_queue) {
4002 struct sk_buff *clist;
4003
4004 local_irq_disable();
4005 clist = sd->completion_queue;
4006 sd->completion_queue = NULL;
4007 local_irq_enable();
4008
4009 while (clist) {
4010 struct sk_buff *skb = clist;
4011 clist = clist->next;
4012
Ilpo Järvinen547b7922008-07-25 21:43:18 -07004013 WARN_ON(atomic_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08004014 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
4015 trace_consume_skb(skb);
4016 else
4017 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004018
4019 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
4020 __kfree_skb(skb);
4021 else
4022 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01004024
4025 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 }
4027
4028 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07004029 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030
4031 local_irq_disable();
4032 head = sd->output_queue;
4033 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00004034 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 local_irq_enable();
4036
4037 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07004038 struct Qdisc *q = head;
4039 spinlock_t *root_lock;
4040
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 head = head->next_sched;
4042
David S. Miller5fb66222008-08-02 20:02:43 -07004043 root_lock = qdisc_lock(q);
Eric Dumazet3bcb8462016-06-04 20:02:28 -07004044 spin_lock(root_lock);
4045 /* We need to make sure head->next_sched is read
4046 * before clearing __QDISC_STATE_SCHED
4047 */
4048 smp_mb__before_atomic();
4049 clear_bit(__QDISC_STATE_SCHED, &q->state);
4050 qdisc_run(q);
4051 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 }
4053 }
4054}
4055
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04004056#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00004057/* This hook is defined here for ATM LANE */
4058int (*br_fdb_test_addr_hook)(struct net_device *dev,
4059 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07004060EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00004061#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004063static inline struct sk_buff *
4064sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
4065 struct net_device *orig_dev)
Herbert Xuf697c3e2007-10-14 00:38:47 -07004066{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004067#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004068 struct tcf_proto *cl = rcu_dereference_bh(skb->dev->ingress_cl_list);
4069 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00004070
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004071 /* If there's at least one ingress present somewhere (so
4072 * we get here via enabled static key), remaining devices
4073 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004074 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004075 */
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004076 if (!cl)
Daniel Borkmann45771392015-04-10 23:07:54 +02004077 return skb;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004078 if (*pt_prev) {
4079 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4080 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004081 }
4082
Florian Westphal33654952015-05-14 00:36:28 +02004083 qdisc_skb_cb(skb)->pkt_len = skb->len;
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004084 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
Eric Dumazet24ea5912015-07-06 05:18:03 -07004085 qdisc_bstats_cpu_update(cl->q, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004086
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02004087 switch (tc_classify(skb, cl, &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004088 case TC_ACT_OK:
4089 case TC_ACT_RECLASSIFY:
4090 skb->tc_index = TC_H_MIN(cl_res.classid);
4091 break;
4092 case TC_ACT_SHOT:
Eric Dumazet24ea5912015-07-06 05:18:03 -07004093 qdisc_qstats_cpu_drop(cl->q);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004094 kfree_skb(skb);
4095 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004096 case TC_ACT_STOLEN:
4097 case TC_ACT_QUEUED:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004098 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004099 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004100 case TC_ACT_REDIRECT:
4101 /* skb_mac_header check was done by cls/act_bpf, so
4102 * we can safely push the L2 header back before
4103 * redirecting to another netdev
4104 */
4105 __skb_push(skb, skb->mac_len);
4106 skb_do_redirect(skb);
4107 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004108 default:
4109 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004110 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004111#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07004112 return skb;
4113}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004115/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07004116 * netdev_is_rx_handler_busy - check if receive handler is registered
4117 * @dev: device to check
4118 *
4119 * Check if a receive handler is already registered for a given device.
4120 * Return true if there one.
4121 *
4122 * The caller must hold the rtnl_mutex.
4123 */
4124bool netdev_is_rx_handler_busy(struct net_device *dev)
4125{
4126 ASSERT_RTNL();
4127 return dev && rtnl_dereference(dev->rx_handler);
4128}
4129EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
4130
4131/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004132 * netdev_rx_handler_register - register receive handler
4133 * @dev: device to register a handler for
4134 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00004135 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004136 *
Masanari Iidae2278672014-02-18 22:54:36 +09004137 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004138 * called from __netif_receive_skb. A negative errno code is returned
4139 * on a failure.
4140 *
4141 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004142 *
4143 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004144 */
4145int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00004146 rx_handler_func_t *rx_handler,
4147 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004148{
4149 ASSERT_RTNL();
4150
4151 if (dev->rx_handler)
4152 return -EBUSY;
4153
Eric Dumazet00cfec32013-03-29 03:01:22 +00004154 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00004155 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004156 rcu_assign_pointer(dev->rx_handler, rx_handler);
4157
4158 return 0;
4159}
4160EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
4161
4162/**
4163 * netdev_rx_handler_unregister - unregister receive handler
4164 * @dev: device to unregister a handler from
4165 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00004166 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004167 *
4168 * The caller must hold the rtnl_mutex.
4169 */
4170void netdev_rx_handler_unregister(struct net_device *dev)
4171{
4172
4173 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004174 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00004175 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
4176 * section has a guarantee to see a non NULL rx_handler_data
4177 * as well.
4178 */
4179 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004180 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004181}
4182EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
4183
Mel Gormanb4b9e352012-07-31 16:44:26 -07004184/*
4185 * Limit the use of PFMEMALLOC reserves to those protocols that implement
4186 * the special handling of PFMEMALLOC skbs.
4187 */
4188static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
4189{
4190 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07004191 case htons(ETH_P_ARP):
4192 case htons(ETH_P_IP):
4193 case htons(ETH_P_IPV6):
4194 case htons(ETH_P_8021Q):
4195 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07004196 return true;
4197 default:
4198 return false;
4199 }
4200}
4201
Pablo Neirae687ad62015-05-13 18:19:38 +02004202static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
4203 int *ret, struct net_device *orig_dev)
4204{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004205#ifdef CONFIG_NETFILTER_INGRESS
Pablo Neirae687ad62015-05-13 18:19:38 +02004206 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04004207 int ingress_retval;
4208
Pablo Neirae687ad62015-05-13 18:19:38 +02004209 if (*pt_prev) {
4210 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4211 *pt_prev = NULL;
4212 }
4213
Aaron Conole2c1e2702016-09-21 11:35:03 -04004214 rcu_read_lock();
4215 ingress_retval = nf_hook_ingress(skb);
4216 rcu_read_unlock();
4217 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02004218 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004219#endif /* CONFIG_NETFILTER_INGRESS */
Pablo Neirae687ad62015-05-13 18:19:38 +02004220 return 0;
4221}
Pablo Neirae687ad62015-05-13 18:19:38 +02004222
Justin Tee7c888a12017-12-20 08:42:31 -08004223int (*gsb_nw_stack_recv)(struct sk_buff *skb) __rcu __read_mostly;
4224EXPORT_SYMBOL(gsb_nw_stack_recv);
4225
Utkarsh Saxenaa1ef66e2017-02-15 21:46:17 +05304226int (*athrs_fast_nat_recv)(struct sk_buff *skb,
4227 struct packet_type *pt_temp) __rcu __read_mostly;
Mohammed Javid9c843412015-07-16 22:43:04 +05304228EXPORT_SYMBOL(athrs_fast_nat_recv);
4229
Ravinder Konka94266eb2015-10-15 19:55:24 +05304230int (*embms_tm_multicast_recv)(struct sk_buff *skb) __rcu __read_mostly;
4231EXPORT_SYMBOL(embms_tm_multicast_recv);
4232
David S. Miller9754e292013-02-14 15:57:38 -05004233static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234{
4235 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004236 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07004237 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004238 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239 int ret = NET_RX_DROP;
Al Viro252e3342006-11-14 20:48:11 -08004240 __be16 type;
Justin Tee7c888a12017-12-20 08:42:31 -08004241 int (*gsb_ns_recv)(struct sk_buff *skb);
Utkarsh Saxenaa1ef66e2017-02-15 21:46:17 +05304242 int (*fast_recv)(struct sk_buff *skb, struct packet_type *pt_temp);
Ravinder Konka94266eb2015-10-15 19:55:24 +05304243 int (*embms_recv)(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244
Eric Dumazet588f0332011-11-15 04:12:55 +00004245 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07004246
Koki Sanagicf66ba52010-08-23 18:45:02 +09004247 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08004248
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07004249 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00004250
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07004251 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00004252 if (!skb_transport_header_was_set(skb))
4253 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00004254 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255
4256 pt_prev = NULL;
4257
David S. Miller63d8ea72011-02-28 10:48:59 -08004258another_round:
David S. Millerb6858172012-07-23 16:27:54 -07004259 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08004260
4261 __this_cpu_inc(softnet_data.processed);
4262
Patrick McHardy8ad227f2013-04-19 02:04:31 +00004263 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
4264 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004265 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004266 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004267 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004268 }
4269
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270#ifdef CONFIG_NET_CLS_ACT
4271 if (skb->tc_verd & TC_NCLS) {
4272 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
4273 goto ncls;
4274 }
4275#endif
4276
David S. Miller9754e292013-02-14 15:57:38 -05004277 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07004278 goto skip_taps;
4279
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08004281 if (pt_prev)
4282 ret = deliver_skb(skb, pt_prev, orig_dev);
4283 pt_prev = ptype;
4284 }
4285
4286 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
4287 if (pt_prev)
4288 ret = deliver_skb(skb, pt_prev, orig_dev);
4289 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290 }
4291
Mel Gormanb4b9e352012-07-31 16:44:26 -07004292skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02004293#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +02004294 if (static_key_false(&ingress_needed)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004295 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev);
Daniel Borkmann45771392015-04-10 23:07:54 +02004296 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004297 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02004298
4299 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004300 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02004301 }
Pablo Neira1cf519002015-05-13 18:19:37 +02004302#endif
Justin Tee7c888a12017-12-20 08:42:31 -08004303 gsb_ns_recv = rcu_dereference(gsb_nw_stack_recv);
4304 if (gsb_ns_recv) {
4305 if (gsb_ns_recv(skb)) {
4306 ret = NET_RX_SUCCESS;
4307 goto out;
4308 }
4309 }
Mohammed Javid9c843412015-07-16 22:43:04 +05304310 fast_recv = rcu_dereference(athrs_fast_nat_recv);
4311 if (fast_recv) {
Utkarsh Saxenaa1ef66e2017-02-15 21:46:17 +05304312 if (fast_recv(skb, pt_prev)) {
Mohammed Javid9c843412015-07-16 22:43:04 +05304313 ret = NET_RX_SUCCESS;
4314 goto out;
4315 }
4316 }
4317
Ravinder Konka94266eb2015-10-15 19:55:24 +05304318 embms_recv = rcu_dereference(embms_tm_multicast_recv);
4319 if (embms_recv)
4320 embms_recv(skb);
4321
Pablo Neira1cf519002015-05-13 18:19:37 +02004322#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmann45771392015-04-10 23:07:54 +02004323 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324ncls:
4325#endif
David S. Miller9754e292013-02-14 15:57:38 -05004326 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07004327 goto drop;
4328
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004329 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00004330 if (pt_prev) {
4331 ret = deliver_skb(skb, pt_prev, orig_dev);
4332 pt_prev = NULL;
4333 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004334 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00004335 goto another_round;
4336 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004337 goto out;
John Fastabend24257172011-10-10 09:16:41 +00004338 }
4339
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004340 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004341 if (rx_handler) {
4342 if (pt_prev) {
4343 ret = deliver_skb(skb, pt_prev, orig_dev);
4344 pt_prev = NULL;
4345 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004346 switch (rx_handler(&skb)) {
4347 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00004348 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004349 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004350 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08004351 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004352 case RX_HANDLER_EXACT:
4353 deliver_exact = true;
4354 case RX_HANDLER_PASS:
4355 break;
4356 default:
4357 BUG();
4358 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004361 if (unlikely(skb_vlan_tag_present(skb))) {
4362 if (skb_vlan_tag_get_id(skb))
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004363 skb->pkt_type = PACKET_OTHERHOST;
4364 /* Note: we might in the future use prio bits
4365 * and set skb->priority like in vlan_do_receive()
4366 * For the time being, just ignore Priority Code Point
4367 */
4368 skb->vlan_tci = 0;
4369 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004370
Linus Torvalds1da177e2005-04-16 15:20:36 -07004371 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08004372
4373 /* deliver only exact match when indicated */
4374 if (likely(!deliver_exact)) {
4375 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4376 &ptype_base[ntohs(type) &
4377 PTYPE_HASH_MASK]);
4378 }
4379
4380 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4381 &orig_dev->ptype_specific);
4382
4383 if (unlikely(skb->dev != orig_dev)) {
4384 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4385 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004386 }
4387
4388 if (pt_prev) {
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00004389 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00004390 goto drop;
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00004391 else
4392 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07004394drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05004395 if (!deliver_exact)
4396 atomic_long_inc(&skb->dev->rx_dropped);
4397 else
4398 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399 kfree_skb(skb);
4400 /* Jamal, now you will not able to escape explaining
4401 * me how you were going to use this. :-)
4402 */
4403 ret = NET_RX_DROP;
4404 }
4405
Julian Anastasov2c17d272015-07-09 09:59:10 +03004406out:
David S. Miller9754e292013-02-14 15:57:38 -05004407 return ret;
4408}
4409
4410static int __netif_receive_skb(struct sk_buff *skb)
4411{
4412 int ret;
4413
4414 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
4415 unsigned long pflags = current->flags;
4416
4417 /*
4418 * PFMEMALLOC skbs are special, they should
4419 * - be delivered to SOCK_MEMALLOC sockets only
4420 * - stay away from userspace
4421 * - have bounded memory usage
4422 *
4423 * Use PF_MEMALLOC as this saves us from propagating the allocation
4424 * context down to all allocation sites.
4425 */
4426 current->flags |= PF_MEMALLOC;
4427 ret = __netif_receive_skb_core(skb, true);
4428 tsk_restore_flags(current, pflags, PF_MEMALLOC);
4429 } else
4430 ret = __netif_receive_skb_core(skb, false);
4431
Linus Torvalds1da177e2005-04-16 15:20:36 -07004432 return ret;
4433}
Tom Herbert0a9627f2010-03-16 08:03:29 +00004434
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004435static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004436{
Julian Anastasov2c17d272015-07-09 09:59:10 +03004437 int ret;
4438
Eric Dumazet588f0332011-11-15 04:12:55 +00004439 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07004440
Richard Cochranc1f19b52010-07-17 08:49:36 +00004441 if (skb_defer_rx_timestamp(skb))
4442 return NET_RX_SUCCESS;
4443
Julian Anastasov2c17d272015-07-09 09:59:10 +03004444 rcu_read_lock();
4445
Eric Dumazetdf334542010-03-24 19:13:54 +00004446#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01004447 if (static_key_false(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07004448 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004449 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07004450
Eric Dumazet3b098e22010-05-15 23:57:10 -07004451 if (cpu >= 0) {
4452 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4453 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00004454 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07004455 }
Tom Herbertfec5e652010-04-16 16:01:27 -07004456 }
Tom Herbert1e94d722010-03-18 17:45:44 -07004457#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03004458 ret = __netif_receive_skb(skb);
4459 rcu_read_unlock();
4460 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004461}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004462
4463/**
4464 * netif_receive_skb - process receive buffer from network
4465 * @skb: buffer to process
4466 *
4467 * netif_receive_skb() is the main receive data processing function.
4468 * It always succeeds. The buffer may be dropped during processing
4469 * for congestion control or by the protocol layers.
4470 *
4471 * This function may only be called from softirq context and interrupts
4472 * should be enabled.
4473 *
4474 * Return values (usually ignored):
4475 * NET_RX_SUCCESS: no congestion
4476 * NET_RX_DROP: packet was dropped
4477 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05004478int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004479{
4480 trace_netif_receive_skb_entry(skb);
4481
4482 return netif_receive_skb_internal(skb);
4483}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05004484EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485
Eric Dumazet41852492016-08-26 12:50:39 -07004486DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004487
4488/* Network device is going away, flush any packets still pending */
4489static void flush_backlog(struct work_struct *work)
4490{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004491 struct sk_buff *skb, *tmp;
4492 struct softnet_data *sd;
4493
4494 local_bh_disable();
4495 sd = this_cpu_ptr(&softnet_data);
4496
4497 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004498 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07004499 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07004500 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004501 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004502 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004503 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004504 }
Changli Gao6e7676c2010-04-27 15:07:33 -07004505 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004506 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004507 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004508
4509 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07004510 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07004511 __skb_unlink(skb, &sd->process_queue);
4512 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004513 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07004514 }
4515 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004516 local_bh_enable();
4517}
4518
Eric Dumazet41852492016-08-26 12:50:39 -07004519static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004520{
4521 unsigned int cpu;
4522
4523 get_online_cpus();
4524
Eric Dumazet41852492016-08-26 12:50:39 -07004525 for_each_online_cpu(cpu)
4526 queue_work_on(cpu, system_highpri_wq,
4527 per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004528
4529 for_each_online_cpu(cpu)
Eric Dumazet41852492016-08-26 12:50:39 -07004530 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004531
4532 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004533}
4534
Herbert Xud565b0a2008-12-15 23:38:52 -08004535static int napi_gro_complete(struct sk_buff *skb)
4536{
Vlad Yasevich22061d82012-11-15 08:49:11 +00004537 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08004538 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004539 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08004540 int err = -ENOENT;
4541
Eric Dumazetc3c7c252012-12-06 13:54:59 +00004542 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
4543
Herbert Xufc59f9a2009-04-14 15:11:06 -07004544 if (NAPI_GRO_CB(skb)->count == 1) {
4545 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004546 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07004547 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004548
4549 rcu_read_lock();
4550 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004551 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08004552 continue;
4553
Jerry Chu299603e82013-12-11 20:53:45 -08004554 err = ptype->callbacks.gro_complete(skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08004555 break;
4556 }
4557 rcu_read_unlock();
4558
4559 if (err) {
4560 WARN_ON(&ptype->list == head);
4561 kfree_skb(skb);
4562 return NET_RX_SUCCESS;
4563 }
4564
4565out:
Subash Abhinov Kasiviswanathan27cfd4e2017-06-01 13:43:25 -06004566 __this_cpu_add(softnet_data.gro_coalesced, NAPI_GRO_CB(skb)->count > 1);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004567 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004568}
4569
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004570/* napi->gro_list contains packets ordered by age.
4571 * youngest packets at the head of it.
4572 * Complete skbs in reverse order to reduce latencies.
4573 */
4574void napi_gro_flush(struct napi_struct *napi, bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08004575{
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004576 struct sk_buff *skb, *prev = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004577
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004578 /* scan list and build reverse chain */
4579 for (skb = napi->gro_list; skb != NULL; skb = skb->next) {
4580 skb->prev = prev;
4581 prev = skb;
Herbert Xud565b0a2008-12-15 23:38:52 -08004582 }
4583
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004584 for (skb = prev; skb; skb = prev) {
4585 skb->next = NULL;
4586
4587 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
4588 return;
4589
4590 prev = skb->prev;
4591 napi_gro_complete(skb);
4592 napi->gro_count--;
4593 }
4594
Herbert Xud565b0a2008-12-15 23:38:52 -08004595 napi->gro_list = NULL;
4596}
Eric Dumazet86cac582010-08-31 18:25:32 +00004597EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08004598
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004599static void gro_list_prepare(struct napi_struct *napi, struct sk_buff *skb)
4600{
4601 struct sk_buff *p;
4602 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08004603 u32 hash = skb_get_hash_raw(skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004604
4605 for (p = napi->gro_list; p; p = p->next) {
4606 unsigned long diffs;
4607
Tom Herbert0b4cec82014-01-15 08:58:06 -08004608 NAPI_GRO_CB(p)->flush = 0;
Alexander Duyck3f590472018-04-10 18:18:01 -07004609 NAPI_GRO_CB(p)->flush_id = 0;
Tom Herbert0b4cec82014-01-15 08:58:06 -08004610
4611 if (hash != skb_get_hash_raw(p)) {
4612 NAPI_GRO_CB(p)->same_flow = 0;
4613 continue;
4614 }
4615
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004616 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
4617 diffs |= p->vlan_tci ^ skb->vlan_tci;
Jesse Grossce87fc62016-01-20 17:59:49 -08004618 diffs |= skb_metadata_dst_cmp(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004619 if (maclen == ETH_HLEN)
4620 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07004621 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004622 else if (!diffs)
4623 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07004624 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004625 maclen);
4626 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004627 }
4628}
4629
Jerry Chu299603e82013-12-11 20:53:45 -08004630static void skb_gro_reset_offset(struct sk_buff *skb)
4631{
4632 const struct skb_shared_info *pinfo = skb_shinfo(skb);
4633 const skb_frag_t *frag0 = &pinfo->frags[0];
4634
4635 NAPI_GRO_CB(skb)->data_offset = 0;
4636 NAPI_GRO_CB(skb)->frag0 = NULL;
4637 NAPI_GRO_CB(skb)->frag0_len = 0;
4638
4639 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
4640 pinfo->nr_frags &&
4641 !PageHighMem(skb_frag_page(frag0))) {
4642 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet934ca012017-01-10 19:52:43 -08004643 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
4644 skb_frag_size(frag0),
4645 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08004646 }
4647}
4648
Eric Dumazeta50e2332014-03-29 21:28:21 -07004649static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
4650{
4651 struct skb_shared_info *pinfo = skb_shinfo(skb);
4652
4653 BUG_ON(skb->end - skb->tail < grow);
4654
4655 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
4656
4657 skb->data_len -= grow;
4658 skb->tail += grow;
4659
4660 pinfo->frags[0].page_offset += grow;
4661 skb_frag_size_sub(&pinfo->frags[0], grow);
4662
4663 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
4664 skb_frag_unref(skb, 0);
4665 memmove(pinfo->frags, pinfo->frags + 1,
4666 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
4667 }
4668}
4669
Rami Rosenbb728822012-11-28 21:55:25 +00004670static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08004671{
4672 struct sk_buff **pp = NULL;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004673 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08004674 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004675 struct list_head *head = &offload_base;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004676 int same_flow;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004677 enum gro_result ret;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004678 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08004679
Eric W. Biederman9c62a682014-03-14 20:51:52 -07004680 if (!(skb->dev->features & NETIF_F_GRO))
Herbert Xud565b0a2008-12-15 23:38:52 -08004681 goto normal;
4682
Tom Herbert5a212322014-08-31 15:12:41 -07004683 if (skb_is_gso(skb) || skb_has_frag_list(skb) || skb->csum_bad)
Herbert Xuf17f5c92009-01-14 14:36:12 -08004684 goto normal;
4685
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004686 gro_list_prepare(napi, skb);
4687
Herbert Xud565b0a2008-12-15 23:38:52 -08004688 rcu_read_lock();
4689 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004690 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08004691 continue;
4692
Herbert Xu86911732009-01-29 14:19:50 +00004693 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00004694 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004695 NAPI_GRO_CB(skb)->same_flow = 0;
4696 NAPI_GRO_CB(skb)->flush = 0;
Herbert Xu5d38a072009-01-04 16:13:40 -08004697 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07004698 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02004699 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07004700 NAPI_GRO_CB(skb)->is_fou = 0;
Tom Herbert15e23962015-02-10 16:30:31 -08004701 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004702
Tom Herbert662880f2014-08-27 21:26:56 -07004703 /* Setup for GRO checksum validation */
4704 switch (skb->ip_summed) {
4705 case CHECKSUM_COMPLETE:
4706 NAPI_GRO_CB(skb)->csum = skb->csum;
4707 NAPI_GRO_CB(skb)->csum_valid = 1;
4708 NAPI_GRO_CB(skb)->csum_cnt = 0;
4709 break;
4710 case CHECKSUM_UNNECESSARY:
4711 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
4712 NAPI_GRO_CB(skb)->csum_valid = 0;
4713 break;
4714 default:
4715 NAPI_GRO_CB(skb)->csum_cnt = 0;
4716 NAPI_GRO_CB(skb)->csum_valid = 0;
4717 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004718
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004719 pp = ptype->callbacks.gro_receive(&napi->gro_list, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004720 break;
4721 }
4722 rcu_read_unlock();
4723
4724 if (&ptype->list == head)
4725 goto normal;
4726
Herbert Xu0da2afd52008-12-26 14:57:42 -08004727 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004728 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004729
Herbert Xud565b0a2008-12-15 23:38:52 -08004730 if (pp) {
4731 struct sk_buff *nskb = *pp;
4732
4733 *pp = nskb->next;
4734 nskb->next = NULL;
4735 napi_gro_complete(nskb);
Herbert Xu4ae55442009-02-08 18:00:36 +00004736 napi->gro_count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08004737 }
4738
Herbert Xu0da2afd52008-12-26 14:57:42 -08004739 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08004740 goto ok;
4741
Eric Dumazet600adc12014-01-09 14:12:19 -08004742 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08004743 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08004744
Eric Dumazet600adc12014-01-09 14:12:19 -08004745 if (unlikely(napi->gro_count >= MAX_GRO_SKBS)) {
4746 struct sk_buff *nskb = napi->gro_list;
4747
4748 /* locate the end of the list to select the 'oldest' flow */
4749 while (nskb->next) {
4750 pp = &nskb->next;
4751 nskb = *pp;
4752 }
4753 *pp = NULL;
4754 nskb->next = NULL;
4755 napi_gro_complete(nskb);
4756 } else {
4757 napi->gro_count++;
4758 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004759 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004760 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07004761 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00004762 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004763 skb->next = napi->gro_list;
4764 napi->gro_list = skb;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004765 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08004766
Herbert Xuad0f9902009-02-01 01:24:55 -08004767pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004768 grow = skb_gro_offset(skb) - skb_headlen(skb);
4769 if (grow > 0)
4770 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08004771ok:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004772 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08004773
4774normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08004775 ret = GRO_NORMAL;
4776 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08004777}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004778
Jerry Chubf5a7552014-01-07 10:23:19 -08004779struct packet_offload *gro_find_receive_by_type(__be16 type)
4780{
4781 struct list_head *offload_head = &offload_base;
4782 struct packet_offload *ptype;
4783
4784 list_for_each_entry_rcu(ptype, offload_head, list) {
4785 if (ptype->type != type || !ptype->callbacks.gro_receive)
4786 continue;
4787 return ptype;
4788 }
4789 return NULL;
4790}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004791EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08004792
4793struct packet_offload *gro_find_complete_by_type(__be16 type)
4794{
4795 struct list_head *offload_head = &offload_base;
4796 struct packet_offload *ptype;
4797
4798 list_for_each_entry_rcu(ptype, offload_head, list) {
4799 if (ptype->type != type || !ptype->callbacks.gro_complete)
4800 continue;
4801 return ptype;
4802 }
4803 return NULL;
4804}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004805EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004806
Michal Kubeček06732802017-06-29 11:13:36 +02004807static void napi_skb_free_stolen_head(struct sk_buff *skb)
4808{
4809 skb_dst_drop(skb);
4810 kmem_cache_free(skbuff_head_cache, skb);
4811}
4812
Rami Rosenbb728822012-11-28 21:55:25 +00004813static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08004814{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004815 switch (ret) {
4816 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004817 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004818 ret = GRO_DROP;
4819 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004820
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004821 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08004822 kfree_skb(skb);
4823 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004824
Eric Dumazetdaa86542012-04-19 07:07:40 +00004825 case GRO_MERGED_FREE:
Michal Kubeček06732802017-06-29 11:13:36 +02004826 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4827 napi_skb_free_stolen_head(skb);
4828 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00004829 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00004830 break;
4831
Ben Hutchings5b252f02009-10-29 07:17:09 +00004832 case GRO_HELD:
4833 case GRO_MERGED:
4834 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004835 }
4836
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004837 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004838}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004839
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004840gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004841{
Eric Dumazet93f93a42015-11-18 06:30:59 -08004842 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004843 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00004844
Eric Dumazeta50e2332014-03-29 21:28:21 -07004845 skb_gro_reset_offset(skb);
4846
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004847 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004848}
4849EXPORT_SYMBOL(napi_gro_receive);
4850
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00004851static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004852{
Eric Dumazet93a35f52014-10-23 06:30:30 -07004853 if (unlikely(skb->pfmemalloc)) {
4854 consume_skb(skb);
4855 return;
4856 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004857 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00004858 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
4859 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Jesse Gross3701e512010-10-20 13:56:06 +00004860 skb->vlan_tci = 0;
Herbert Xu66c46d72011-01-29 20:44:54 -08004861 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08004862 skb->skb_iif = 0;
Eric Dumazet4a80b1f2018-11-17 21:57:02 -08004863
4864 /* eth_type_trans() assumes pkt_type is PACKET_HOST */
4865 skb->pkt_type = PACKET_HOST;
4866
Jerry Chuc3caf112014-07-14 15:54:46 -07004867 skb->encapsulation = 0;
4868 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07004869 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Herbert Xu96e93ea2009-01-06 10:49:34 -08004870
4871 napi->skb = skb;
4872}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004873
Herbert Xu76620aa2009-04-16 02:02:07 -07004874struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08004875{
Herbert Xu5d38a072009-01-04 16:13:40 -08004876 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004877
4878 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08004879 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08004880 if (skb) {
4881 napi->skb = skb;
4882 skb_mark_napi_id(skb, napi);
4883 }
Herbert Xu5d38a072009-01-04 16:13:40 -08004884 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004885 return skb;
4886}
Herbert Xu76620aa2009-04-16 02:02:07 -07004887EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004888
Eric Dumazeta50e2332014-03-29 21:28:21 -07004889static gro_result_t napi_frags_finish(struct napi_struct *napi,
4890 struct sk_buff *skb,
4891 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004892{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004893 switch (ret) {
4894 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004895 case GRO_HELD:
4896 __skb_push(skb, ETH_HLEN);
4897 skb->protocol = eth_type_trans(skb, skb->dev);
4898 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004899 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00004900 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004901
4902 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004903 napi_reuse_skb(napi, skb);
4904 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004905
Michal Kubeček06732802017-06-29 11:13:36 +02004906 case GRO_MERGED_FREE:
4907 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4908 napi_skb_free_stolen_head(skb);
4909 else
4910 napi_reuse_skb(napi, skb);
4911 break;
4912
Ben Hutchings5b252f02009-10-29 07:17:09 +00004913 case GRO_MERGED:
4914 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004915 }
4916
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004917 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004918}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004919
Eric Dumazeta50e2332014-03-29 21:28:21 -07004920/* Upper GRO stack assumes network header starts at gro_offset=0
4921 * Drivers could call both napi_gro_frags() and napi_gro_receive()
4922 * We copy ethernet header into skb->data to have a common layout.
4923 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00004924static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004925{
Herbert Xu76620aa2009-04-16 02:02:07 -07004926 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004927 const struct ethhdr *eth;
4928 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07004929
4930 napi->skb = NULL;
4931
Eric Dumazeta50e2332014-03-29 21:28:21 -07004932 skb_reset_mac_header(skb);
4933 skb_gro_reset_offset(skb);
4934
Eric Dumazeta50e2332014-03-29 21:28:21 -07004935 if (unlikely(skb_gro_header_hard(skb, hlen))) {
4936 eth = skb_gro_header_slow(skb, hlen, 0);
4937 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04004938 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
4939 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07004940 napi_reuse_skb(napi, skb);
4941 return NULL;
4942 }
4943 } else {
Eric Dumazet12855df2019-05-29 15:36:10 -07004944 eth = (const struct ethhdr *)skb->data;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004945 gro_pull_from_frag0(skb, hlen);
4946 NAPI_GRO_CB(skb)->frag0 += hlen;
4947 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07004948 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07004949 __skb_pull(skb, hlen);
4950
4951 /*
4952 * This works because the only protocols we care about don't require
4953 * special handling.
4954 * We'll fix it up properly in napi_frags_finish()
4955 */
4956 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07004957
Herbert Xu76620aa2009-04-16 02:02:07 -07004958 return skb;
4959}
Herbert Xu76620aa2009-04-16 02:02:07 -07004960
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004961gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07004962{
4963 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004964
4965 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004966 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08004967
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004968 trace_napi_gro_frags_entry(skb);
4969
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004970 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08004971}
4972EXPORT_SYMBOL(napi_gro_frags);
4973
Tom Herbert573e8fc2014-08-22 13:33:47 -07004974/* Compute the checksum from gro_offset and return the folded value
4975 * after adding in any pseudo checksum.
4976 */
4977__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
4978{
4979 __wsum wsum;
4980 __sum16 sum;
4981
4982 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
4983
4984 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
4985 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
4986 if (likely(!sum)) {
4987 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
4988 !skb->csum_complete_sw)
4989 netdev_rx_csum_fault(skb->dev);
4990 }
4991
4992 NAPI_GRO_CB(skb)->csum = wsum;
4993 NAPI_GRO_CB(skb)->csum_valid = 1;
4994
4995 return sum;
4996}
4997EXPORT_SYMBOL(__skb_gro_checksum_complete);
4998
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05304999static void net_rps_send_ipi(struct softnet_data *remsd)
5000{
5001#ifdef CONFIG_RPS
5002 while (remsd) {
5003 struct softnet_data *next = remsd->rps_ipi_next;
5004
Ashwanth Goli9a044862017-07-07 13:15:13 +05305005 if (cpu_online(remsd->cpu)) {
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05305006 smp_call_function_single_async(remsd->cpu, &remsd->csd);
Ashwanth Goli9a044862017-07-07 13:15:13 +05305007 } else {
5008 rps_lock(remsd);
5009 remsd->backlog.state = 0;
5010 rps_unlock(remsd);
5011 }
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05305012 remsd = next;
5013 }
5014#endif
5015}
5016
Eric Dumazete326bed2010-04-22 00:22:45 -07005017/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08005018 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07005019 * Note: called with local irq disabled, but exits with local irq enabled.
5020 */
5021static void net_rps_action_and_irq_enable(struct softnet_data *sd)
5022{
5023#ifdef CONFIG_RPS
5024 struct softnet_data *remsd = sd->rps_ipi_list;
5025
5026 if (remsd) {
5027 sd->rps_ipi_list = NULL;
5028
5029 local_irq_enable();
5030
5031 /* Send pending IPI's to kick RPS processing on remote cpus. */
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05305032 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07005033 } else
5034#endif
5035 local_irq_enable();
5036}
5037
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005038static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
5039{
5040#ifdef CONFIG_RPS
5041 return sd->rps_ipi_list != NULL;
5042#else
5043 return false;
5044#endif
5045}
5046
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005047static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005048{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005049 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005050 bool again = true;
5051 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052
Eric Dumazete326bed2010-04-22 00:22:45 -07005053 /* Check if we have pending ipi, its better to send them now,
5054 * not waiting net_rx_action() end.
5055 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005056 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07005057 local_irq_disable();
5058 net_rps_action_and_irq_enable(sd);
5059 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005060
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005061 napi->weight = weight_p;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005062 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005063 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005064
Changli Gao6e7676c2010-04-27 15:07:33 -07005065 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03005066 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07005067 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03005068 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00005069 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005070 if (++work >= quota)
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005071 goto state_changed;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005073
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005074 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005075 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07005076 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005077 /*
5078 * Inline a custom version of __napi_complete().
5079 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07005080 * and NAPI_STATE_SCHED is the only possible flag set
5081 * on backlog.
5082 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005083 * and we dont need an smp_mb() memory barrier.
5084 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005085 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005086 again = false;
5087 } else {
5088 skb_queue_splice_tail_init(&sd->input_pkt_queue,
5089 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07005090 }
5091 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005092 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005093 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005094
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005095state_changed:
5096 napi_gro_flush(napi, false);
5097 sd->current_napi = NULL;
5098
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005099 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005100}
5101
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005102/**
5103 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005104 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005105 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005106 * The entry's receive function will be scheduled to run.
5107 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005108 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08005109void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005110{
5111 unsigned long flags;
5112
5113 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05005114 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005115 local_irq_restore(flags);
5116}
5117EXPORT_SYMBOL(__napi_schedule);
5118
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005119/**
5120 * __napi_schedule_irqoff - schedule for receive
5121 * @n: entry to schedule
5122 *
5123 * Variant of __napi_schedule() assuming hard irqs are masked
5124 */
5125void __napi_schedule_irqoff(struct napi_struct *n)
5126{
5127 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
5128}
5129EXPORT_SYMBOL(__napi_schedule_irqoff);
5130
Herbert Xud565b0a2008-12-15 23:38:52 -08005131void __napi_complete(struct napi_struct *n)
5132{
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005133 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5134
Herbert Xud565b0a2008-12-15 23:38:52 -08005135 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
Herbert Xud565b0a2008-12-15 23:38:52 -08005136
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005137 list_del_init(&n->poll_list);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005138 smp_mb__before_atomic();
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005139 sd->current_napi = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08005140 clear_bit(NAPI_STATE_SCHED, &n->state);
5141}
5142EXPORT_SYMBOL(__napi_complete);
5143
Eric Dumazet3b47d302014-11-06 21:09:44 -08005144void napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08005145{
5146 unsigned long flags;
5147
5148 /*
5149 * don't let napi dequeue from the cpu poll list
5150 * just in case its running on a different cpu
5151 */
5152 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
5153 return;
5154
Eric Dumazet3b47d302014-11-06 21:09:44 -08005155 if (n->gro_list) {
5156 unsigned long timeout = 0;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005157
Eric Dumazet3b47d302014-11-06 21:09:44 -08005158 if (work_done)
5159 timeout = n->dev->gro_flush_timeout;
5160
5161 if (timeout)
5162 hrtimer_start(&n->timer, ns_to_ktime(timeout),
5163 HRTIMER_MODE_REL_PINNED);
5164 else
5165 napi_gro_flush(n, false);
5166 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005167 if (likely(list_empty(&n->poll_list))) {
5168 WARN_ON_ONCE(!test_and_clear_bit(NAPI_STATE_SCHED, &n->state));
5169 } else {
5170 /* If n->poll_list is not empty, we need to mask irqs */
5171 local_irq_save(flags);
5172 __napi_complete(n);
5173 local_irq_restore(flags);
5174 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005175}
Eric Dumazet3b47d302014-11-06 21:09:44 -08005176EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08005177
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005178/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08005179static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005180{
5181 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
5182 struct napi_struct *napi;
5183
5184 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
5185 if (napi->napi_id == napi_id)
5186 return napi;
5187
5188 return NULL;
5189}
Eric Dumazet02d62e82015-11-18 06:30:52 -08005190
5191#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazetce6aea92015-11-18 06:30:54 -08005192#define BUSY_POLL_BUDGET 8
Eric Dumazet02d62e82015-11-18 06:30:52 -08005193bool sk_busy_loop(struct sock *sk, int nonblock)
5194{
5195 unsigned long end_time = !nonblock ? sk_busy_loop_end_time(sk) : 0;
Eric Dumazetce6aea92015-11-18 06:30:54 -08005196 int (*busy_poll)(struct napi_struct *dev);
Eric Dumazet02d62e82015-11-18 06:30:52 -08005197 struct napi_struct *napi;
5198 int rc = false;
5199
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005200 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005201
5202 napi = napi_by_id(sk->sk_napi_id);
5203 if (!napi)
5204 goto out;
5205
Eric Dumazetce6aea92015-11-18 06:30:54 -08005206 /* Note: ndo_busy_poll method is optional in linux-4.5 */
Josh Elsasserd76e8742019-07-01 16:41:43 -07005207 if (napi->dev->netdev_ops)
5208 busy_poll = napi->dev->netdev_ops->ndo_busy_poll;
5209 else
5210 busy_poll = NULL;
Eric Dumazet02d62e82015-11-18 06:30:52 -08005211
5212 do {
Eric Dumazetce6aea92015-11-18 06:30:54 -08005213 rc = 0;
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005214 local_bh_disable();
Eric Dumazetce6aea92015-11-18 06:30:54 -08005215 if (busy_poll) {
5216 rc = busy_poll(napi);
5217 } else if (napi_schedule_prep(napi)) {
5218 void *have = netpoll_poll_lock(napi);
5219
5220 if (test_bit(NAPI_STATE_SCHED, &napi->state)) {
5221 rc = napi->poll(napi, BUSY_POLL_BUDGET);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02005222 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
Eric Dumazetce6aea92015-11-18 06:30:54 -08005223 if (rc == BUSY_POLL_BUDGET) {
5224 napi_complete_done(napi, rc);
5225 napi_schedule(napi);
5226 }
5227 }
5228 netpoll_poll_unlock(have);
5229 }
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005230 if (rc > 0)
Eric Dumazet02a1d6e2016-04-27 16:44:39 -07005231 __NET_ADD_STATS(sock_net(sk),
5232 LINUX_MIB_BUSYPOLLRXPACKETS, rc);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005233 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005234
5235 if (rc == LL_FLUSH_FAILED)
5236 break; /* permanent failure */
5237
Eric Dumazet02d62e82015-11-18 06:30:52 -08005238 cpu_relax();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005239 } while (!nonblock && skb_queue_empty(&sk->sk_receive_queue) &&
5240 !need_resched() && !busy_loop_timeout(end_time));
5241
5242 rc = !skb_queue_empty(&sk->sk_receive_queue);
5243out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005244 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005245 return rc;
5246}
5247EXPORT_SYMBOL(sk_busy_loop);
5248
5249#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005250
5251void napi_hash_add(struct napi_struct *napi)
5252{
Eric Dumazetd64b5e82015-11-18 06:31:00 -08005253 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state) ||
5254 test_and_set_bit(NAPI_STATE_HASHED, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005255 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005256
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005257 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005258
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005259 /* 0..NR_CPUS+1 range is reserved for sender_cpu use */
5260 do {
5261 if (unlikely(++napi_gen_id < NR_CPUS + 1))
5262 napi_gen_id = NR_CPUS + 1;
5263 } while (napi_by_id(napi_gen_id));
5264 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005265
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005266 hlist_add_head_rcu(&napi->napi_hash_node,
5267 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005268
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005269 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005270}
5271EXPORT_SYMBOL_GPL(napi_hash_add);
5272
5273/* Warning : caller is responsible to make sure rcu grace period
5274 * is respected before freeing memory containing @napi
5275 */
Eric Dumazet34cbe272015-11-18 06:31:02 -08005276bool napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005277{
Eric Dumazet34cbe272015-11-18 06:31:02 -08005278 bool rcu_sync_needed = false;
5279
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005280 spin_lock(&napi_hash_lock);
5281
Eric Dumazet34cbe272015-11-18 06:31:02 -08005282 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state)) {
5283 rcu_sync_needed = true;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005284 hlist_del_rcu(&napi->napi_hash_node);
Eric Dumazet34cbe272015-11-18 06:31:02 -08005285 }
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005286 spin_unlock(&napi_hash_lock);
Eric Dumazet34cbe272015-11-18 06:31:02 -08005287 return rcu_sync_needed;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005288}
5289EXPORT_SYMBOL_GPL(napi_hash_del);
5290
Eric Dumazet3b47d302014-11-06 21:09:44 -08005291static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
5292{
5293 struct napi_struct *napi;
5294
5295 napi = container_of(timer, struct napi_struct, timer);
5296 if (napi->gro_list)
5297 napi_schedule(napi);
5298
5299 return HRTIMER_NORESTART;
5300}
5301
Herbert Xud565b0a2008-12-15 23:38:52 -08005302void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
5303 int (*poll)(struct napi_struct *, int), int weight)
5304{
5305 INIT_LIST_HEAD(&napi->poll_list);
Eric Dumazet3b47d302014-11-06 21:09:44 -08005306 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
5307 napi->timer.function = napi_watchdog;
Herbert Xu4ae55442009-02-08 18:00:36 +00005308 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005309 napi->gro_list = NULL;
Herbert Xu5d38a072009-01-04 16:13:40 -08005310 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08005311 napi->poll = poll;
Eric Dumazet82dc3c62013-03-05 15:57:22 +00005312 if (weight > NAPI_POLL_WEIGHT)
5313 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
5314 weight, dev->name);
Herbert Xud565b0a2008-12-15 23:38:52 -08005315 napi->weight = weight;
5316 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08005317 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08005318#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08005319 spin_lock_init(&napi->poll_lock);
5320 napi->poll_owner = -1;
5321#endif
5322 set_bit(NAPI_STATE_SCHED, &napi->state);
Eric Dumazet93d05d42015-11-18 06:31:03 -08005323 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08005324}
5325EXPORT_SYMBOL(netif_napi_add);
5326
Eric Dumazet3b47d302014-11-06 21:09:44 -08005327void napi_disable(struct napi_struct *n)
5328{
5329 might_sleep();
5330 set_bit(NAPI_STATE_DISABLE, &n->state);
5331
5332 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
5333 msleep(1);
Neil Horman2d8bff12015-09-23 14:57:58 -04005334 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
5335 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08005336
5337 hrtimer_cancel(&n->timer);
5338
5339 clear_bit(NAPI_STATE_DISABLE, &n->state);
5340}
5341EXPORT_SYMBOL(napi_disable);
5342
Eric Dumazet93d05d42015-11-18 06:31:03 -08005343/* Must be called in process context */
Herbert Xud565b0a2008-12-15 23:38:52 -08005344void netif_napi_del(struct napi_struct *napi)
5345{
Eric Dumazet93d05d42015-11-18 06:31:03 -08005346 might_sleep();
5347 if (napi_hash_del(napi))
5348 synchronize_net();
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08005349 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07005350 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08005351
Eric Dumazet289dccb2013-12-20 14:29:08 -08005352 kfree_skb_list(napi->gro_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08005353 napi->gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00005354 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005355}
5356EXPORT_SYMBOL(netif_napi_del);
5357
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005358struct napi_struct *get_current_napi_context(void)
5359{
5360 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5361
5362 return sd->current_napi;
5363}
5364EXPORT_SYMBOL(get_current_napi_context);
5365
Herbert Xu726ce702014-12-21 07:16:21 +11005366static int napi_poll(struct napi_struct *n, struct list_head *repoll)
5367{
5368 void *have;
5369 int work, weight;
5370
5371 list_del_init(&n->poll_list);
5372
5373 have = netpoll_poll_lock(n);
5374
5375 weight = n->weight;
5376
5377 /* This NAPI_STATE_SCHED test is for avoiding a race
5378 * with netpoll's poll_napi(). Only the entity which
5379 * obtains the lock and sees NAPI_STATE_SCHED set will
5380 * actually make the ->poll() call. Therefore we avoid
5381 * accidentally calling ->poll() when NAPI is not scheduled.
5382 */
5383 work = 0;
5384 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005385 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5386
5387 sd->current_napi = n;
Herbert Xu726ce702014-12-21 07:16:21 +11005388 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02005389 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11005390 }
5391
5392 WARN_ON_ONCE(work > weight);
5393
5394 if (likely(work < weight))
5395 goto out_unlock;
5396
5397 /* Drivers must not modify the NAPI state if they
5398 * consume the entire weight. In such cases this code
5399 * still "owns" the NAPI instance and therefore can
5400 * move the instance around on the list at-will.
5401 */
5402 if (unlikely(napi_disable_pending(n))) {
5403 napi_complete(n);
5404 goto out_unlock;
5405 }
5406
5407 if (n->gro_list) {
5408 /* flush too old packets
5409 * If HZ < 1000, flush all packets.
5410 */
5411 napi_gro_flush(n, HZ >= 1000);
5412 }
5413
Herbert Xu001ce542014-12-21 07:16:22 +11005414 /* Some drivers may have called napi_schedule
5415 * prior to exhausting their budget.
5416 */
5417 if (unlikely(!list_empty(&n->poll_list))) {
5418 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
5419 n->dev ? n->dev->name : "backlog");
5420 goto out_unlock;
5421 }
5422
Herbert Xu726ce702014-12-21 07:16:21 +11005423 list_add_tail(&n->poll_list, repoll);
5424
5425out_unlock:
5426 netpoll_poll_unlock(have);
5427
5428 return work;
5429}
5430
Emese Revfy0766f782016-06-20 20:42:34 +02005431static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005432{
Christoph Lameter903ceff2014-08-17 12:30:35 -05005433 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Stephen Hemminger24f8b232008-11-03 17:14:38 -08005434 unsigned long time_limit = jiffies + 2;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07005435 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005436 LIST_HEAD(list);
5437 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07005438
Linus Torvalds1da177e2005-04-16 15:20:36 -07005439 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005440 list_splice_init(&sd->poll_list, &list);
5441 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005442
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005443 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005444 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005446 if (list_empty(&list)) {
5447 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
5448 return;
5449 break;
5450 }
5451
Herbert Xu6bd373e2014-12-21 07:16:24 +11005452 n = list_first_entry(&list, struct napi_struct, poll_list);
5453 budget -= napi_poll(n, &repoll);
5454
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005455 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08005456 * Allow this to run for 2 jiffies since which will allow
5457 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005458 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005459 if (unlikely(budget <= 0 ||
5460 time_after_eq(jiffies, time_limit))) {
5461 sd->time_squeeze++;
5462 break;
5463 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005464 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005465
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +01005466 __kfree_skb_flush();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005467 local_irq_disable();
5468
5469 list_splice_tail_init(&sd->poll_list, &list);
5470 list_splice_tail(&repoll, &list);
5471 list_splice(&list, &sd->poll_list);
5472 if (!list_empty(&sd->poll_list))
5473 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
5474
Eric Dumazete326bed2010-04-22 00:22:45 -07005475 net_rps_action_and_irq_enable(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476}
5477
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005478struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005479 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005480
5481 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005482 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005483
Veaceslav Falico5d261912013-08-28 23:25:05 +02005484 /* counter for the number of times this device was added to us */
5485 u16 ref_nr;
5486
Veaceslav Falico402dae92013-09-25 09:20:09 +02005487 /* private field for the users */
5488 void *private;
5489
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005490 struct list_head list;
5491 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005492};
5493
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005494static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005495 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005496{
Veaceslav Falico5d261912013-08-28 23:25:05 +02005497 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005498
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005499 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005500 if (adj->dev == adj_dev)
5501 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005502 }
5503 return NULL;
5504}
5505
5506/**
5507 * netdev_has_upper_dev - Check if device is linked to an upper device
5508 * @dev: device
5509 * @upper_dev: upper device to check
5510 *
5511 * Find out if a device is linked to specified upper device and return true
5512 * in case it is. Note that this checks only immediate upper device,
5513 * not through a complete stack of devices. The caller must hold the RTNL lock.
5514 */
5515bool netdev_has_upper_dev(struct net_device *dev,
5516 struct net_device *upper_dev)
5517{
5518 ASSERT_RTNL();
5519
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005520 return __netdev_find_adj(upper_dev, &dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005521}
5522EXPORT_SYMBOL(netdev_has_upper_dev);
5523
5524/**
5525 * netdev_has_any_upper_dev - Check if device is linked to some device
5526 * @dev: device
5527 *
5528 * Find out if a device is linked to an upper device and return true in case
5529 * it is. The caller must hold the RTNL lock.
5530 */
Ido Schimmel73ee5a732017-09-01 10:52:31 +02005531bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005532{
5533 ASSERT_RTNL();
5534
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005535 return !list_empty(&dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005536}
Ido Schimmel73ee5a732017-09-01 10:52:31 +02005537EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005538
5539/**
5540 * netdev_master_upper_dev_get - Get master upper device
5541 * @dev: device
5542 *
5543 * Find a master upper device and return pointer to it or NULL in case
5544 * it's not there. The caller must hold the RTNL lock.
5545 */
5546struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
5547{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005548 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005549
5550 ASSERT_RTNL();
5551
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005552 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005553 return NULL;
5554
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005555 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005556 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005557 if (likely(upper->master))
5558 return upper->dev;
5559 return NULL;
5560}
5561EXPORT_SYMBOL(netdev_master_upper_dev_get);
5562
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02005563void *netdev_adjacent_get_private(struct list_head *adj_list)
5564{
5565 struct netdev_adjacent *adj;
5566
5567 adj = list_entry(adj_list, struct netdev_adjacent, list);
5568
5569 return adj->private;
5570}
5571EXPORT_SYMBOL(netdev_adjacent_get_private);
5572
Veaceslav Falico31088a12013-09-25 09:20:12 +02005573/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04005574 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
5575 * @dev: device
5576 * @iter: list_head ** of the current position
5577 *
5578 * Gets the next device from the dev's upper list, starting from iter
5579 * position. The caller must hold RCU read lock.
5580 */
5581struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
5582 struct list_head **iter)
5583{
5584 struct netdev_adjacent *upper;
5585
5586 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
5587
5588 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5589
5590 if (&upper->list == &dev->adj_list.upper)
5591 return NULL;
5592
5593 *iter = &upper->list;
5594
5595 return upper->dev;
5596}
5597EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
5598
5599/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02005600 * netdev_all_upper_get_next_dev_rcu - Get the next dev from upper list
Veaceslav Falico48311f42013-08-28 23:25:07 +02005601 * @dev: device
5602 * @iter: list_head ** of the current position
5603 *
5604 * Gets the next device from the dev's upper list, starting from iter
5605 * position. The caller must hold RCU read lock.
5606 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005607struct net_device *netdev_all_upper_get_next_dev_rcu(struct net_device *dev,
5608 struct list_head **iter)
Veaceslav Falico48311f42013-08-28 23:25:07 +02005609{
5610 struct netdev_adjacent *upper;
5611
John Fastabend85328242013-11-26 06:33:52 +00005612 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
Veaceslav Falico48311f42013-08-28 23:25:07 +02005613
5614 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5615
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005616 if (&upper->list == &dev->all_adj_list.upper)
Veaceslav Falico48311f42013-08-28 23:25:07 +02005617 return NULL;
5618
5619 *iter = &upper->list;
5620
5621 return upper->dev;
5622}
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005623EXPORT_SYMBOL(netdev_all_upper_get_next_dev_rcu);
Veaceslav Falico48311f42013-08-28 23:25:07 +02005624
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005625/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02005626 * netdev_lower_get_next_private - Get the next ->private from the
5627 * lower neighbour list
5628 * @dev: device
5629 * @iter: list_head ** of the current position
5630 *
5631 * Gets the next netdev_adjacent->private from the dev's lower neighbour
5632 * list, starting from iter position. The caller must hold either hold the
5633 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00005634 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02005635 */
5636void *netdev_lower_get_next_private(struct net_device *dev,
5637 struct list_head **iter)
5638{
5639 struct netdev_adjacent *lower;
5640
5641 lower = list_entry(*iter, struct netdev_adjacent, list);
5642
5643 if (&lower->list == &dev->adj_list.lower)
5644 return NULL;
5645
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02005646 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02005647
5648 return lower->private;
5649}
5650EXPORT_SYMBOL(netdev_lower_get_next_private);
5651
5652/**
5653 * netdev_lower_get_next_private_rcu - Get the next ->private from the
5654 * lower neighbour list, RCU
5655 * variant
5656 * @dev: device
5657 * @iter: list_head ** of the current position
5658 *
5659 * Gets the next netdev_adjacent->private from the dev's lower neighbour
5660 * list, starting from iter position. The caller must hold RCU read lock.
5661 */
5662void *netdev_lower_get_next_private_rcu(struct net_device *dev,
5663 struct list_head **iter)
5664{
5665 struct netdev_adjacent *lower;
5666
5667 WARN_ON_ONCE(!rcu_read_lock_held());
5668
5669 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5670
5671 if (&lower->list == &dev->adj_list.lower)
5672 return NULL;
5673
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02005674 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02005675
5676 return lower->private;
5677}
5678EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
5679
5680/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005681 * netdev_lower_get_next - Get the next device from the lower neighbour
5682 * list
5683 * @dev: device
5684 * @iter: list_head ** of the current position
5685 *
5686 * Gets the next netdev_adjacent from the dev's lower neighbour
5687 * list, starting from iter position. The caller must hold RTNL lock or
5688 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00005689 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005690 */
5691void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
5692{
5693 struct netdev_adjacent *lower;
5694
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01005695 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005696
5697 if (&lower->list == &dev->adj_list.lower)
5698 return NULL;
5699
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01005700 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005701
5702 return lower->dev;
5703}
5704EXPORT_SYMBOL(netdev_lower_get_next);
5705
5706/**
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005707 * netdev_all_lower_get_next - Get the next device from all lower neighbour list
5708 * @dev: device
5709 * @iter: list_head ** of the current position
5710 *
5711 * Gets the next netdev_adjacent from the dev's all lower neighbour
5712 * list, starting from iter position. The caller must hold RTNL lock or
5713 * its own locking that guarantees that the neighbour all lower
5714 * list will remain unchanged.
5715 */
5716struct net_device *netdev_all_lower_get_next(struct net_device *dev, struct list_head **iter)
5717{
5718 struct netdev_adjacent *lower;
5719
5720 lower = list_entry(*iter, struct netdev_adjacent, list);
5721
5722 if (&lower->list == &dev->all_adj_list.lower)
5723 return NULL;
5724
5725 *iter = lower->list.next;
5726
5727 return lower->dev;
5728}
5729EXPORT_SYMBOL(netdev_all_lower_get_next);
5730
5731/**
5732 * netdev_all_lower_get_next_rcu - Get the next device from all
5733 * lower neighbour list, RCU variant
5734 * @dev: device
5735 * @iter: list_head ** of the current position
5736 *
5737 * Gets the next netdev_adjacent from the dev's all lower neighbour
5738 * list, starting from iter position. The caller must hold RCU read lock.
5739 */
5740struct net_device *netdev_all_lower_get_next_rcu(struct net_device *dev,
5741 struct list_head **iter)
5742{
5743 struct netdev_adjacent *lower;
5744
Ido Schimmele4961b02016-10-19 16:57:08 +03005745 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005746
Ido Schimmele4961b02016-10-19 16:57:08 +03005747 if (&lower->list == &dev->all_adj_list.lower)
5748 return NULL;
5749
5750 *iter = &lower->list;
5751
5752 return lower->dev;
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005753}
5754EXPORT_SYMBOL(netdev_all_lower_get_next_rcu);
5755
5756/**
dingtianhonge001bfa2013-12-13 10:19:55 +08005757 * netdev_lower_get_first_private_rcu - Get the first ->private from the
5758 * lower neighbour list, RCU
5759 * variant
5760 * @dev: device
5761 *
5762 * Gets the first netdev_adjacent->private from the dev's lower neighbour
5763 * list. The caller must hold RCU read lock.
5764 */
5765void *netdev_lower_get_first_private_rcu(struct net_device *dev)
5766{
5767 struct netdev_adjacent *lower;
5768
5769 lower = list_first_or_null_rcu(&dev->adj_list.lower,
5770 struct netdev_adjacent, list);
5771 if (lower)
5772 return lower->private;
5773 return NULL;
5774}
5775EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
5776
5777/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005778 * netdev_master_upper_dev_get_rcu - Get master upper device
5779 * @dev: device
5780 *
5781 * Find a master upper device and return pointer to it or NULL in case
5782 * it's not there. The caller must hold the RCU read lock.
5783 */
5784struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
5785{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005786 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005787
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005788 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005789 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005790 if (upper && likely(upper->master))
5791 return upper->dev;
5792 return NULL;
5793}
5794EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
5795
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05305796static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005797 struct net_device *adj_dev,
5798 struct list_head *dev_list)
5799{
5800 char linkname[IFNAMSIZ+7];
5801 sprintf(linkname, dev_list == &dev->adj_list.upper ?
5802 "upper_%s" : "lower_%s", adj_dev->name);
5803 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
5804 linkname);
5805}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05305806static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005807 char *name,
5808 struct list_head *dev_list)
5809{
5810 char linkname[IFNAMSIZ+7];
5811 sprintf(linkname, dev_list == &dev->adj_list.upper ?
5812 "upper_%s" : "lower_%s", name);
5813 sysfs_remove_link(&(dev->dev.kobj), linkname);
5814}
5815
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005816static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
5817 struct net_device *adj_dev,
5818 struct list_head *dev_list)
5819{
5820 return (dev_list == &dev->adj_list.upper ||
5821 dev_list == &dev->adj_list.lower) &&
5822 net_eq(dev_net(dev), dev_net(adj_dev));
5823}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005824
Veaceslav Falico5d261912013-08-28 23:25:05 +02005825static int __netdev_adjacent_dev_insert(struct net_device *dev,
5826 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005827 u16 ref_nr,
Veaceslav Falico7863c052013-09-25 09:20:06 +02005828 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005829 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005830{
5831 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005832 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005833
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005834 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005835
5836 if (adj) {
Andrew Collins93409032016-10-03 13:43:02 -06005837 adj->ref_nr += ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005838 return 0;
5839 }
5840
5841 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
5842 if (!adj)
5843 return -ENOMEM;
5844
5845 adj->dev = adj_dev;
5846 adj->master = master;
Andrew Collins93409032016-10-03 13:43:02 -06005847 adj->ref_nr = ref_nr;
Veaceslav Falico402dae92013-09-25 09:20:09 +02005848 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005849 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005850
5851 pr_debug("dev_hold for %s, because of link added from %s to %s\n",
5852 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005853
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005854 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005855 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005856 if (ret)
5857 goto free_adj;
5858 }
5859
Veaceslav Falico7863c052013-09-25 09:20:06 +02005860 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005861 if (master) {
5862 ret = sysfs_create_link(&(dev->dev.kobj),
5863 &(adj_dev->dev.kobj), "master");
5864 if (ret)
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005865 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005866
Veaceslav Falico7863c052013-09-25 09:20:06 +02005867 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005868 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02005869 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005870 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02005871
5872 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005873
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005874remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005875 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005876 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005877free_adj:
5878 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02005879 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005880
5881 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005882}
5883
stephen hemminger1d143d92013-12-29 14:01:29 -08005884static void __netdev_adjacent_dev_remove(struct net_device *dev,
5885 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005886 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005887 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005888{
5889 struct netdev_adjacent *adj;
5890
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005891 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005892
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005893 if (!adj) {
5894 pr_err("tried to remove device %s from %s\n",
5895 dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005896 BUG();
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005897 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02005898
Andrew Collins93409032016-10-03 13:43:02 -06005899 if (adj->ref_nr > ref_nr) {
5900 pr_debug("%s to %s ref_nr-%d = %d\n", dev->name, adj_dev->name,
5901 ref_nr, adj->ref_nr-ref_nr);
5902 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005903 return;
5904 }
5905
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005906 if (adj->master)
5907 sysfs_remove_link(&(dev->dev.kobj), "master");
5908
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005909 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005910 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005911
Veaceslav Falico5d261912013-08-28 23:25:05 +02005912 list_del_rcu(&adj->list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005913 pr_debug("dev_put for %s, because link removed from %s to %s\n",
5914 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005915 dev_put(adj_dev);
5916 kfree_rcu(adj, rcu);
5917}
5918
stephen hemminger1d143d92013-12-29 14:01:29 -08005919static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
5920 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005921 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005922 struct list_head *up_list,
5923 struct list_head *down_list,
5924 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005925{
5926 int ret;
5927
Andrew Collins93409032016-10-03 13:43:02 -06005928 ret = __netdev_adjacent_dev_insert(dev, upper_dev, ref_nr, up_list,
5929 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005930 if (ret)
5931 return ret;
5932
Andrew Collins93409032016-10-03 13:43:02 -06005933 ret = __netdev_adjacent_dev_insert(upper_dev, dev, ref_nr, down_list,
5934 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005935 if (ret) {
Andrew Collins93409032016-10-03 13:43:02 -06005936 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005937 return ret;
5938 }
5939
5940 return 0;
5941}
5942
stephen hemminger1d143d92013-12-29 14:01:29 -08005943static int __netdev_adjacent_dev_link(struct net_device *dev,
Andrew Collins93409032016-10-03 13:43:02 -06005944 struct net_device *upper_dev,
5945 u16 ref_nr)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005946{
Andrew Collins93409032016-10-03 13:43:02 -06005947 return __netdev_adjacent_dev_link_lists(dev, upper_dev, ref_nr,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005948 &dev->all_adj_list.upper,
5949 &upper_dev->all_adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005950 NULL, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005951}
5952
stephen hemminger1d143d92013-12-29 14:01:29 -08005953static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
5954 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005955 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005956 struct list_head *up_list,
5957 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005958{
Andrew Collins93409032016-10-03 13:43:02 -06005959 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
5960 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005961}
5962
stephen hemminger1d143d92013-12-29 14:01:29 -08005963static void __netdev_adjacent_dev_unlink(struct net_device *dev,
Andrew Collins93409032016-10-03 13:43:02 -06005964 struct net_device *upper_dev,
5965 u16 ref_nr)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005966{
Andrew Collins93409032016-10-03 13:43:02 -06005967 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, ref_nr,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005968 &dev->all_adj_list.upper,
5969 &upper_dev->all_adj_list.lower);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005970}
5971
stephen hemminger1d143d92013-12-29 14:01:29 -08005972static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
5973 struct net_device *upper_dev,
5974 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005975{
Andrew Collins93409032016-10-03 13:43:02 -06005976 int ret = __netdev_adjacent_dev_link(dev, upper_dev, 1);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005977
5978 if (ret)
5979 return ret;
5980
Andrew Collins93409032016-10-03 13:43:02 -06005981 ret = __netdev_adjacent_dev_link_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005982 &dev->adj_list.upper,
5983 &upper_dev->adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005984 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005985 if (ret) {
Andrew Collins93409032016-10-03 13:43:02 -06005986 __netdev_adjacent_dev_unlink(dev, upper_dev, 1);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005987 return ret;
5988 }
5989
5990 return 0;
5991}
5992
stephen hemminger1d143d92013-12-29 14:01:29 -08005993static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
5994 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005995{
Andrew Collins93409032016-10-03 13:43:02 -06005996 __netdev_adjacent_dev_unlink(dev, upper_dev, 1);
5997 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005998 &dev->adj_list.upper,
5999 &upper_dev->adj_list.lower);
6000}
Veaceslav Falico5d261912013-08-28 23:25:05 +02006001
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006002static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02006003 struct net_device *upper_dev, bool master,
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006004 void *upper_priv, void *upper_info)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006005{
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006006 struct netdev_notifier_changeupper_info changeupper_info;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006007 struct netdev_adjacent *i, *j, *to_i, *to_j;
6008 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006009
6010 ASSERT_RTNL();
6011
6012 if (dev == upper_dev)
6013 return -EBUSY;
6014
6015 /* To prevent loops, check if dev is not upper device to upper_dev. */
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006016 if (__netdev_find_adj(dev, &upper_dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006017 return -EBUSY;
6018
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006019 if (__netdev_find_adj(upper_dev, &dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006020 return -EEXIST;
6021
6022 if (master && netdev_master_upper_dev_get(dev))
6023 return -EBUSY;
6024
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006025 changeupper_info.upper_dev = upper_dev;
6026 changeupper_info.master = master;
6027 changeupper_info.linking = true;
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006028 changeupper_info.upper_info = upper_info;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006029
Jiri Pirko573c7ba2015-10-16 14:01:22 +02006030 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER, dev,
6031 &changeupper_info.info);
6032 ret = notifier_to_errno(ret);
6033 if (ret)
6034 return ret;
6035
Jiri Pirko6dffb042015-12-03 12:12:10 +01006036 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02006037 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006038 if (ret)
6039 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006040
Veaceslav Falico5d261912013-08-28 23:25:05 +02006041 /* Now that we linked these devs, make all the upper_dev's
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006042 * all_adj_list.upper visible to every dev's all_adj_list.lower an
Veaceslav Falico5d261912013-08-28 23:25:05 +02006043 * versa, and don't forget the devices itself. All of these
6044 * links are non-neighbours.
6045 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006046 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
6047 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
6048 pr_debug("Interlinking %s with %s, non-neighbour\n",
6049 i->dev->name, j->dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06006050 ret = __netdev_adjacent_dev_link(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006051 if (ret)
6052 goto rollback_mesh;
6053 }
6054 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006055
Veaceslav Falico5d261912013-08-28 23:25:05 +02006056 /* add dev to every upper_dev's upper device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006057 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
6058 pr_debug("linking %s's upper device %s with %s\n",
6059 upper_dev->name, i->dev->name, dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06006060 ret = __netdev_adjacent_dev_link(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006061 if (ret)
6062 goto rollback_upper_mesh;
6063 }
6064
6065 /* add upper_dev to every dev's lower device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006066 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
6067 pr_debug("linking %s's lower device %s with %s\n", dev->name,
6068 i->dev->name, upper_dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06006069 ret = __netdev_adjacent_dev_link(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006070 if (ret)
6071 goto rollback_lower_mesh;
6072 }
6073
Ido Schimmelb03804e2015-12-03 12:12:03 +01006074 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER, dev,
6075 &changeupper_info.info);
6076 ret = notifier_to_errno(ret);
6077 if (ret)
6078 goto rollback_lower_mesh;
6079
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006080 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006081
6082rollback_lower_mesh:
6083 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006084 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006085 if (i == to_i)
6086 break;
Andrew Collins93409032016-10-03 13:43:02 -06006087 __netdev_adjacent_dev_unlink(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006088 }
6089
6090 i = NULL;
6091
6092rollback_upper_mesh:
6093 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006094 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006095 if (i == to_i)
6096 break;
Andrew Collins93409032016-10-03 13:43:02 -06006097 __netdev_adjacent_dev_unlink(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006098 }
6099
6100 i = j = NULL;
6101
6102rollback_mesh:
6103 to_i = i;
6104 to_j = j;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006105 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
6106 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006107 if (i == to_i && j == to_j)
6108 break;
Andrew Collins93409032016-10-03 13:43:02 -06006109 __netdev_adjacent_dev_unlink(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006110 }
6111 if (i == to_i)
6112 break;
6113 }
6114
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006115 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006116
6117 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006118}
6119
6120/**
6121 * netdev_upper_dev_link - Add a link to the upper device
6122 * @dev: device
6123 * @upper_dev: new upper device
6124 *
6125 * Adds a link to device which is upper to this one. The caller must hold
6126 * the RTNL lock. On a failure a negative errno code is returned.
6127 * On success the reference counts are adjusted and the function
6128 * returns zero.
6129 */
6130int netdev_upper_dev_link(struct net_device *dev,
6131 struct net_device *upper_dev)
6132{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006133 return __netdev_upper_dev_link(dev, upper_dev, false, NULL, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006134}
6135EXPORT_SYMBOL(netdev_upper_dev_link);
6136
6137/**
6138 * netdev_master_upper_dev_link - Add a master link to the upper device
6139 * @dev: device
6140 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01006141 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006142 * @upper_info: upper info to be passed down via notifier
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006143 *
6144 * Adds a link to device which is upper to this one. In this case, only
6145 * one master upper device can be linked, although other non-master devices
6146 * might be linked as well. The caller must hold the RTNL lock.
6147 * On a failure a negative errno code is returned. On success the reference
6148 * counts are adjusted and the function returns zero.
6149 */
6150int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01006151 struct net_device *upper_dev,
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006152 void *upper_priv, void *upper_info)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006153{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006154 return __netdev_upper_dev_link(dev, upper_dev, true,
6155 upper_priv, upper_info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006156}
6157EXPORT_SYMBOL(netdev_master_upper_dev_link);
6158
6159/**
6160 * netdev_upper_dev_unlink - Removes a link to upper device
6161 * @dev: device
6162 * @upper_dev: new upper device
6163 *
6164 * Removes a link to device which is upper to this one. The caller must hold
6165 * the RTNL lock.
6166 */
6167void netdev_upper_dev_unlink(struct net_device *dev,
6168 struct net_device *upper_dev)
6169{
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006170 struct netdev_notifier_changeupper_info changeupper_info;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006171 struct netdev_adjacent *i, *j;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006172 ASSERT_RTNL();
6173
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006174 changeupper_info.upper_dev = upper_dev;
6175 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
6176 changeupper_info.linking = false;
6177
Jiri Pirko573c7ba2015-10-16 14:01:22 +02006178 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER, dev,
6179 &changeupper_info.info);
6180
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006181 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006182
6183 /* Here is the tricky part. We must remove all dev's lower
6184 * devices from all upper_dev's upper devices and vice
6185 * versa, to maintain the graph relationship.
6186 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006187 list_for_each_entry(i, &dev->all_adj_list.lower, list)
6188 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list)
Andrew Collins93409032016-10-03 13:43:02 -06006189 __netdev_adjacent_dev_unlink(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006190
6191 /* remove also the devices itself from lower/upper device
6192 * list
6193 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006194 list_for_each_entry(i, &dev->all_adj_list.lower, list)
Andrew Collins93409032016-10-03 13:43:02 -06006195 __netdev_adjacent_dev_unlink(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006196
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006197 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list)
Andrew Collins93409032016-10-03 13:43:02 -06006198 __netdev_adjacent_dev_unlink(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006199
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006200 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER, dev,
6201 &changeupper_info.info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006202}
6203EXPORT_SYMBOL(netdev_upper_dev_unlink);
6204
Moni Shoua61bd3852015-02-03 16:48:29 +02006205/**
6206 * netdev_bonding_info_change - Dispatch event about slave change
6207 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09006208 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02006209 *
6210 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
6211 * The caller must hold the RTNL lock.
6212 */
6213void netdev_bonding_info_change(struct net_device *dev,
6214 struct netdev_bonding_info *bonding_info)
6215{
6216 struct netdev_notifier_bonding_info info;
6217
6218 memcpy(&info.bonding_info, bonding_info,
6219 sizeof(struct netdev_bonding_info));
6220 call_netdevice_notifiers_info(NETDEV_BONDING_INFO, dev,
6221 &info.info);
6222}
6223EXPORT_SYMBOL(netdev_bonding_info_change);
6224
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08006225static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006226{
6227 struct netdev_adjacent *iter;
6228
6229 struct net *net = dev_net(dev);
6230
6231 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006232 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006233 continue;
6234 netdev_adjacent_sysfs_add(iter->dev, dev,
6235 &iter->dev->adj_list.lower);
6236 netdev_adjacent_sysfs_add(dev, iter->dev,
6237 &dev->adj_list.upper);
6238 }
6239
6240 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006241 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006242 continue;
6243 netdev_adjacent_sysfs_add(iter->dev, dev,
6244 &iter->dev->adj_list.upper);
6245 netdev_adjacent_sysfs_add(dev, iter->dev,
6246 &dev->adj_list.lower);
6247 }
6248}
6249
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08006250static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006251{
6252 struct netdev_adjacent *iter;
6253
6254 struct net *net = dev_net(dev);
6255
6256 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006257 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006258 continue;
6259 netdev_adjacent_sysfs_del(iter->dev, dev->name,
6260 &iter->dev->adj_list.lower);
6261 netdev_adjacent_sysfs_del(dev, iter->dev->name,
6262 &dev->adj_list.upper);
6263 }
6264
6265 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006266 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006267 continue;
6268 netdev_adjacent_sysfs_del(iter->dev, dev->name,
6269 &iter->dev->adj_list.upper);
6270 netdev_adjacent_sysfs_del(dev, iter->dev->name,
6271 &dev->adj_list.lower);
6272 }
6273}
6274
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006275void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02006276{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006277 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02006278
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006279 struct net *net = dev_net(dev);
6280
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006281 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006282 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006283 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006284 netdev_adjacent_sysfs_del(iter->dev, oldname,
6285 &iter->dev->adj_list.lower);
6286 netdev_adjacent_sysfs_add(iter->dev, dev,
6287 &iter->dev->adj_list.lower);
6288 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02006289
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006290 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006291 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006292 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006293 netdev_adjacent_sysfs_del(iter->dev, oldname,
6294 &iter->dev->adj_list.upper);
6295 netdev_adjacent_sysfs_add(iter->dev, dev,
6296 &iter->dev->adj_list.upper);
6297 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02006298}
Veaceslav Falico402dae92013-09-25 09:20:09 +02006299
6300void *netdev_lower_dev_get_private(struct net_device *dev,
6301 struct net_device *lower_dev)
6302{
6303 struct netdev_adjacent *lower;
6304
6305 if (!lower_dev)
6306 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006307 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02006308 if (!lower)
6309 return NULL;
6310
6311 return lower->private;
6312}
6313EXPORT_SYMBOL(netdev_lower_dev_get_private);
6314
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006315
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006316int dev_get_nest_level(struct net_device *dev)
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006317{
6318 struct net_device *lower = NULL;
6319 struct list_head *iter;
6320 int max_nest = -1;
6321 int nest;
6322
6323 ASSERT_RTNL();
6324
6325 netdev_for_each_lower_dev(dev, lower, iter) {
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006326 nest = dev_get_nest_level(lower);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006327 if (max_nest < nest)
6328 max_nest = nest;
6329 }
6330
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006331 return max_nest + 1;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006332}
6333EXPORT_SYMBOL(dev_get_nest_level);
6334
Jiri Pirko04d48262015-12-03 12:12:15 +01006335/**
6336 * netdev_lower_change - Dispatch event about lower device state change
6337 * @lower_dev: device
6338 * @lower_state_info: state to dispatch
6339 *
6340 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
6341 * The caller must hold the RTNL lock.
6342 */
6343void netdev_lower_state_changed(struct net_device *lower_dev,
6344 void *lower_state_info)
6345{
6346 struct netdev_notifier_changelowerstate_info changelowerstate_info;
6347
6348 ASSERT_RTNL();
6349 changelowerstate_info.lower_state_info = lower_state_info;
6350 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE, lower_dev,
6351 &changelowerstate_info.info);
6352}
6353EXPORT_SYMBOL(netdev_lower_state_changed);
6354
Jiri Pirko18bfb922016-07-05 11:27:38 +02006355int netdev_default_l2upper_neigh_construct(struct net_device *dev,
6356 struct neighbour *n)
6357{
6358 struct net_device *lower_dev, *stop_dev;
6359 struct list_head *iter;
6360 int err;
6361
6362 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6363 if (!lower_dev->netdev_ops->ndo_neigh_construct)
6364 continue;
6365 err = lower_dev->netdev_ops->ndo_neigh_construct(lower_dev, n);
6366 if (err) {
6367 stop_dev = lower_dev;
6368 goto rollback;
6369 }
6370 }
6371 return 0;
6372
6373rollback:
6374 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6375 if (lower_dev == stop_dev)
6376 break;
6377 if (!lower_dev->netdev_ops->ndo_neigh_destroy)
6378 continue;
6379 lower_dev->netdev_ops->ndo_neigh_destroy(lower_dev, n);
6380 }
6381 return err;
6382}
6383EXPORT_SYMBOL_GPL(netdev_default_l2upper_neigh_construct);
6384
6385void netdev_default_l2upper_neigh_destroy(struct net_device *dev,
6386 struct neighbour *n)
6387{
6388 struct net_device *lower_dev;
6389 struct list_head *iter;
6390
6391 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6392 if (!lower_dev->netdev_ops->ndo_neigh_destroy)
6393 continue;
6394 lower_dev->netdev_ops->ndo_neigh_destroy(lower_dev, n);
6395 }
6396}
6397EXPORT_SYMBOL_GPL(netdev_default_l2upper_neigh_destroy);
6398
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006399static void dev_change_rx_flags(struct net_device *dev, int flags)
6400{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006401 const struct net_device_ops *ops = dev->netdev_ops;
6402
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05006403 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006404 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006405}
6406
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006407static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07006408{
Eric Dumazetb536db92011-11-30 21:42:26 +00006409 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06006410 kuid_t uid;
6411 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07006412
Patrick McHardy24023452007-07-14 18:51:31 -07006413 ASSERT_RTNL();
6414
Wang Chendad9b332008-06-18 01:48:28 -07006415 dev->flags |= IFF_PROMISC;
6416 dev->promiscuity += inc;
6417 if (dev->promiscuity == 0) {
6418 /*
6419 * Avoid overflow.
6420 * If inc causes overflow, untouch promisc and return error.
6421 */
6422 if (inc < 0)
6423 dev->flags &= ~IFF_PROMISC;
6424 else {
6425 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006426 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
6427 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07006428 return -EOVERFLOW;
6429 }
6430 }
Patrick McHardy4417da62007-06-27 01:28:10 -07006431 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006432 pr_info("device %s %s promiscuous mode\n",
6433 dev->name,
6434 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11006435 if (audit_enabled) {
6436 current_uid_gid(&uid, &gid);
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05006437 audit_log(current->audit_context, GFP_ATOMIC,
6438 AUDIT_ANOM_PROMISCUOUS,
6439 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
6440 dev->name, (dev->flags & IFF_PROMISC),
6441 (old_flags & IFF_PROMISC),
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07006442 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06006443 from_kuid(&init_user_ns, uid),
6444 from_kgid(&init_user_ns, gid),
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05006445 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11006446 }
Patrick McHardy24023452007-07-14 18:51:31 -07006447
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006448 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07006449 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006450 if (notify)
6451 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07006452 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07006453}
6454
Linus Torvalds1da177e2005-04-16 15:20:36 -07006455/**
6456 * dev_set_promiscuity - update promiscuity count on a device
6457 * @dev: device
6458 * @inc: modifier
6459 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07006460 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461 * remains above zero the interface remains promiscuous. Once it hits zero
6462 * the device reverts back to normal filtering operation. A negative inc
6463 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07006464 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465 */
Wang Chendad9b332008-06-18 01:48:28 -07006466int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006467{
Eric Dumazetb536db92011-11-30 21:42:26 +00006468 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07006469 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006471 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07006472 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07006473 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07006474 if (dev->flags != old_flags)
6475 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07006476 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006478EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006479
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006480static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006481{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006482 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006483
Patrick McHardy24023452007-07-14 18:51:31 -07006484 ASSERT_RTNL();
6485
Linus Torvalds1da177e2005-04-16 15:20:36 -07006486 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07006487 dev->allmulti += inc;
6488 if (dev->allmulti == 0) {
6489 /*
6490 * Avoid overflow.
6491 * If inc causes overflow, untouch allmulti and return error.
6492 */
6493 if (inc < 0)
6494 dev->flags &= ~IFF_ALLMULTI;
6495 else {
6496 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006497 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
6498 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07006499 return -EOVERFLOW;
6500 }
6501 }
Patrick McHardy24023452007-07-14 18:51:31 -07006502 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006503 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07006504 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006505 if (notify)
6506 __dev_notify_flags(dev, old_flags,
6507 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07006508 }
Wang Chendad9b332008-06-18 01:48:28 -07006509 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07006510}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006511
6512/**
6513 * dev_set_allmulti - update allmulti count on a device
6514 * @dev: device
6515 * @inc: modifier
6516 *
6517 * Add or remove reception of all multicast frames to a device. While the
6518 * count in the device remains above zero the interface remains listening
6519 * to all interfaces. Once it hits zero the device reverts back to normal
6520 * filtering operation. A negative @inc value is used to drop the counter
6521 * when releasing a resource needing all multicasts.
6522 * Return 0 if successful or a negative errno code on error.
6523 */
6524
6525int dev_set_allmulti(struct net_device *dev, int inc)
6526{
6527 return __dev_set_allmulti(dev, inc, true);
6528}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006529EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07006530
6531/*
6532 * Upload unicast and multicast address lists to device and
6533 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08006534 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07006535 * are present.
6536 */
6537void __dev_set_rx_mode(struct net_device *dev)
6538{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006539 const struct net_device_ops *ops = dev->netdev_ops;
6540
Patrick McHardy4417da62007-06-27 01:28:10 -07006541 /* dev_open will call this function so the list will stay sane. */
6542 if (!(dev->flags&IFF_UP))
6543 return;
6544
6545 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09006546 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07006547
Jiri Pirko01789342011-08-16 06:29:00 +00006548 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07006549 /* Unicast addresses changes may only happen under the rtnl,
6550 * therefore calling __dev_set_promiscuity here is safe.
6551 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08006552 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006553 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07006554 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08006555 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006556 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07006557 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07006558 }
Patrick McHardy4417da62007-06-27 01:28:10 -07006559 }
Jiri Pirko01789342011-08-16 06:29:00 +00006560
6561 if (ops->ndo_set_rx_mode)
6562 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07006563}
6564
6565void dev_set_rx_mode(struct net_device *dev)
6566{
David S. Millerb9e40852008-07-15 00:15:08 -07006567 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07006568 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07006569 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570}
6571
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006572/**
6573 * dev_get_flags - get flags reported to userspace
6574 * @dev: device
6575 *
6576 * Get the combination of flag bits exported through APIs to userspace.
6577 */
Eric Dumazet95c96172012-04-15 05:58:06 +00006578unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006579{
Eric Dumazet95c96172012-04-15 05:58:06 +00006580 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006581
6582 flags = (dev->flags & ~(IFF_PROMISC |
6583 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08006584 IFF_RUNNING |
6585 IFF_LOWER_UP |
6586 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07006587 (dev->gflags & (IFF_PROMISC |
6588 IFF_ALLMULTI));
6589
Stefan Rompfb00055a2006-03-20 17:09:11 -08006590 if (netif_running(dev)) {
6591 if (netif_oper_up(dev))
6592 flags |= IFF_RUNNING;
6593 if (netif_carrier_ok(dev))
6594 flags |= IFF_LOWER_UP;
6595 if (netif_dormant(dev))
6596 flags |= IFF_DORMANT;
6597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598
6599 return flags;
6600}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006601EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006602
Patrick McHardybd380812010-02-26 06:34:53 +00006603int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604{
Eric Dumazetb536db92011-11-30 21:42:26 +00006605 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00006606 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006607
Patrick McHardy24023452007-07-14 18:51:31 -07006608 ASSERT_RTNL();
6609
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610 /*
6611 * Set the flags on our device.
6612 */
6613
6614 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
6615 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
6616 IFF_AUTOMEDIA)) |
6617 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
6618 IFF_ALLMULTI));
6619
6620 /*
6621 * Load in the correct multicast list now the flags have changed.
6622 */
6623
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006624 if ((old_flags ^ flags) & IFF_MULTICAST)
6625 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07006626
Patrick McHardy4417da62007-06-27 01:28:10 -07006627 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006628
6629 /*
6630 * Have we downed the interface. We handle IFF_UP ourselves
6631 * according to user attempts to set it, rather than blindly
6632 * setting it.
6633 */
6634
6635 ret = 0;
Peter Pan(潘卫平)d215d102014-06-16 21:57:22 +08006636 if ((old_flags ^ flags) & IFF_UP)
Patrick McHardybd380812010-02-26 06:34:53 +00006637 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006640 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006641 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006642
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006644
6645 if (__dev_set_promiscuity(dev, inc, false) >= 0)
6646 if (dev->flags != old_flags)
6647 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648 }
6649
6650 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
6651 is important. Some (broken) drivers set IFF_PROMISC, when
6652 IFF_ALLMULTI is requested not asking us and not reporting.
6653 */
6654 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006655 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
6656
Linus Torvalds1da177e2005-04-16 15:20:36 -07006657 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006658 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659 }
6660
Patrick McHardybd380812010-02-26 06:34:53 +00006661 return ret;
6662}
6663
Nicolas Dichtela528c212013-09-25 12:02:44 +02006664void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
6665 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00006666{
6667 unsigned int changes = dev->flags ^ old_flags;
6668
Nicolas Dichtela528c212013-09-25 12:02:44 +02006669 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006670 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02006671
Patrick McHardybd380812010-02-26 06:34:53 +00006672 if (changes & IFF_UP) {
6673 if (dev->flags & IFF_UP)
6674 call_netdevice_notifiers(NETDEV_UP, dev);
6675 else
6676 call_netdevice_notifiers(NETDEV_DOWN, dev);
6677 }
6678
6679 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00006680 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
6681 struct netdev_notifier_change_info change_info;
6682
6683 change_info.flags_changed = changes;
6684 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
6685 &change_info.info);
6686 }
Patrick McHardybd380812010-02-26 06:34:53 +00006687}
6688
6689/**
6690 * dev_change_flags - change device settings
6691 * @dev: device
6692 * @flags: device state flags
6693 *
6694 * Change settings on device based state flags. The flags are
6695 * in the userspace exported format.
6696 */
Eric Dumazetb536db92011-11-30 21:42:26 +00006697int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00006698{
Eric Dumazetb536db92011-11-30 21:42:26 +00006699 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006700 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00006701
6702 ret = __dev_change_flags(dev, flags);
6703 if (ret < 0)
6704 return ret;
6705
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006706 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02006707 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006708 return ret;
6709}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006710EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006711
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006712static int __dev_set_mtu(struct net_device *dev, int new_mtu)
6713{
6714 const struct net_device_ops *ops = dev->netdev_ops;
6715
6716 if (ops->ndo_change_mtu)
6717 return ops->ndo_change_mtu(dev, new_mtu);
6718
6719 dev->mtu = new_mtu;
6720 return 0;
6721}
6722
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006723/**
6724 * dev_set_mtu - Change maximum transfer unit
6725 * @dev: device
6726 * @new_mtu: new transfer unit
6727 *
6728 * Change the maximum transfer size of the network device.
6729 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006730int dev_set_mtu(struct net_device *dev, int new_mtu)
6731{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006732 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006733
6734 if (new_mtu == dev->mtu)
6735 return 0;
6736
6737 /* MTU must be positive. */
6738 if (new_mtu < 0)
6739 return -EINVAL;
6740
6741 if (!netif_device_present(dev))
6742 return -ENODEV;
6743
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01006744 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
6745 err = notifier_to_errno(err);
6746 if (err)
6747 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006748
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006749 orig_mtu = dev->mtu;
6750 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006751
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006752 if (!err) {
Sabrina Dubroca8d59c3a2018-10-09 17:48:14 +02006753 err = call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
6754 orig_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006755 err = notifier_to_errno(err);
6756 if (err) {
6757 /* setting mtu back and notifying everyone again,
6758 * so that they have a chance to revert changes.
6759 */
6760 __dev_set_mtu(dev, orig_mtu);
Sabrina Dubroca8d59c3a2018-10-09 17:48:14 +02006761 call_netdevice_notifiers_mtu(NETDEV_CHANGEMTU, dev,
6762 new_mtu);
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006763 }
6764 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006765 return err;
6766}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006767EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006768
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006769/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00006770 * dev_set_group - Change group this device belongs to
6771 * @dev: device
6772 * @new_group: group this device should belong to
6773 */
6774void dev_set_group(struct net_device *dev, int new_group)
6775{
6776 dev->group = new_group;
6777}
6778EXPORT_SYMBOL(dev_set_group);
6779
6780/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006781 * dev_set_mac_address - Change Media Access Control Address
6782 * @dev: device
6783 * @sa: new address
6784 *
6785 * Change the hardware (MAC) address of the device
6786 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006787int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
6788{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006789 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006790 int err;
6791
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006792 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006793 return -EOPNOTSUPP;
6794 if (sa->sa_family != dev->type)
6795 return -EINVAL;
6796 if (!netif_device_present(dev))
6797 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006798 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00006799 if (err)
6800 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00006801 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00006802 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04006803 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00006804 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006805}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006806EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006807
Jiri Pirko4bf84c32012-12-27 23:49:37 +00006808/**
6809 * dev_change_carrier - Change device carrier
6810 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00006811 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00006812 *
6813 * Change device carrier
6814 */
6815int dev_change_carrier(struct net_device *dev, bool new_carrier)
6816{
6817 const struct net_device_ops *ops = dev->netdev_ops;
6818
6819 if (!ops->ndo_change_carrier)
6820 return -EOPNOTSUPP;
6821 if (!netif_device_present(dev))
6822 return -ENODEV;
6823 return ops->ndo_change_carrier(dev, new_carrier);
6824}
6825EXPORT_SYMBOL(dev_change_carrier);
6826
Linus Torvalds1da177e2005-04-16 15:20:36 -07006827/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02006828 * dev_get_phys_port_id - Get device physical port ID
6829 * @dev: device
6830 * @ppid: port ID
6831 *
6832 * Get device physical port ID
6833 */
6834int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01006835 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02006836{
6837 const struct net_device_ops *ops = dev->netdev_ops;
6838
6839 if (!ops->ndo_get_phys_port_id)
6840 return -EOPNOTSUPP;
6841 return ops->ndo_get_phys_port_id(dev, ppid);
6842}
6843EXPORT_SYMBOL(dev_get_phys_port_id);
6844
6845/**
David Aherndb24a902015-03-17 20:23:15 -06006846 * dev_get_phys_port_name - Get device physical port name
6847 * @dev: device
6848 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00006849 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06006850 *
6851 * Get device physical port name
6852 */
6853int dev_get_phys_port_name(struct net_device *dev,
6854 char *name, size_t len)
6855{
6856 const struct net_device_ops *ops = dev->netdev_ops;
6857
6858 if (!ops->ndo_get_phys_port_name)
6859 return -EOPNOTSUPP;
6860 return ops->ndo_get_phys_port_name(dev, name, len);
6861}
6862EXPORT_SYMBOL(dev_get_phys_port_name);
6863
6864/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07006865 * dev_change_proto_down - update protocol port state information
6866 * @dev: device
6867 * @proto_down: new value
6868 *
6869 * This info can be used by switch drivers to set the phys state of the
6870 * port.
6871 */
6872int dev_change_proto_down(struct net_device *dev, bool proto_down)
6873{
6874 const struct net_device_ops *ops = dev->netdev_ops;
6875
6876 if (!ops->ndo_change_proto_down)
6877 return -EOPNOTSUPP;
6878 if (!netif_device_present(dev))
6879 return -ENODEV;
6880 return ops->ndo_change_proto_down(dev, proto_down);
6881}
6882EXPORT_SYMBOL(dev_change_proto_down);
6883
6884/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07006885 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
6886 * @dev: device
6887 * @fd: new program fd or negative value to clear
6888 *
6889 * Set or clear a bpf program for a device
6890 */
6891int dev_change_xdp_fd(struct net_device *dev, int fd)
6892{
6893 const struct net_device_ops *ops = dev->netdev_ops;
6894 struct bpf_prog *prog = NULL;
6895 struct netdev_xdp xdp = {};
6896 int err;
6897
6898 if (!ops->ndo_xdp)
6899 return -EOPNOTSUPP;
6900 if (fd >= 0) {
6901 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_XDP);
6902 if (IS_ERR(prog))
6903 return PTR_ERR(prog);
6904 }
6905
6906 xdp.command = XDP_SETUP_PROG;
6907 xdp.prog = prog;
6908 err = ops->ndo_xdp(dev, &xdp);
6909 if (err < 0 && prog)
6910 bpf_prog_put(prog);
6911
6912 return err;
6913}
6914EXPORT_SYMBOL(dev_change_xdp_fd);
6915
6916/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006917 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07006918 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07006919 *
6920 * Returns a suitable unique value for a new device interface
6921 * number. The caller must hold the rtnl semaphore or the
6922 * dev_base_lock to be sure it remains unique.
6923 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07006924static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006925{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00006926 int ifindex = net->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006927 for (;;) {
6928 if (++ifindex <= 0)
6929 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006930 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00006931 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932 }
6933}
6934
Linus Torvalds1da177e2005-04-16 15:20:36 -07006935/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08006936static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07006937DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938
Stephen Hemminger6f05f622007-03-08 20:46:03 -08006939static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006941 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07006942 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006943}
6944
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006945static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006946{
Krishna Kumare93737b2009-12-08 22:26:02 +00006947 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006948 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006949
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006950 BUG_ON(dev_boot_phase);
6951 ASSERT_RTNL();
6952
Krishna Kumare93737b2009-12-08 22:26:02 +00006953 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006954 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00006955 * for initialization unwind. Remove those
6956 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006957 */
6958 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006959 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
6960 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006961
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006962 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00006963 list_del(&dev->unreg_list);
6964 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006965 }
Eric Dumazet449f4542011-05-19 12:24:16 +00006966 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006967 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00006968 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006969
Octavian Purdila44345722010-12-13 12:44:07 +00006970 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006971 list_for_each_entry(dev, head, unreg_list)
6972 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04006973 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006974
Octavian Purdila44345722010-12-13 12:44:07 +00006975 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006976 /* And unlink it from device chain. */
6977 unlist_netdevice(dev);
6978
6979 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006980 }
Eric Dumazet41852492016-08-26 12:50:39 -07006981 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006982
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006983 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006984
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006985 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006986 struct sk_buff *skb = NULL;
6987
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006988 /* Shutdown queueing discipline. */
6989 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006990
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006991
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006992 /* Notify protocols, that we are about to destroy
6993 this device. They should clean all the things.
6994 */
6995 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
6996
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006997 if (!dev->rtnl_link_ops ||
6998 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
6999 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U,
7000 GFP_KERNEL);
7001
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007002 /*
7003 * Flush the unicast and multicast chains
7004 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00007005 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00007006 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007007
7008 if (dev->netdev_ops->ndo_uninit)
7009 dev->netdev_ops->ndo_uninit(dev);
7010
Mahesh Bandewar395eea62014-12-03 13:46:24 -08007011 if (skb)
7012 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07007013
Jiri Pirko9ff162a2013-01-03 22:48:49 +00007014 /* Notifier chain MUST detach us all upper devices. */
7015 WARN_ON(netdev_has_any_upper_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007016
7017 /* Remove entries from kobject tree */
7018 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00007019#ifdef CONFIG_XPS
7020 /* Remove XPS queueing entries */
7021 netif_reset_xps_queues_gt(dev, 0);
7022#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007023 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007024
Eric W. Biederman850a5452011-10-13 22:25:23 +00007025 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007026
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00007027 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007028 dev_put(dev);
7029}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007030
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007031static void rollback_registered(struct net_device *dev)
7032{
7033 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007034
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007035 list_add(&dev->unreg_list, &single);
7036 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00007037 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007038}
7039
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007040static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
7041 struct net_device *upper, netdev_features_t features)
7042{
7043 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
7044 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007045 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007046
Hauke Mehrtens47dc74c2019-02-15 17:58:54 +01007047 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007048 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007049 if (!(upper->wanted_features & feature)
7050 && (features & feature)) {
7051 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
7052 &feature, upper->name);
7053 features &= ~feature;
7054 }
7055 }
7056
7057 return features;
7058}
7059
7060static void netdev_sync_lower_features(struct net_device *upper,
7061 struct net_device *lower, netdev_features_t features)
7062{
7063 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
7064 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007065 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007066
Hauke Mehrtens47dc74c2019-02-15 17:58:54 +01007067 for_each_netdev_feature(upper_disables, feature_bit) {
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007068 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007069 if (!(features & feature) && (lower->features & feature)) {
7070 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
7071 &feature, lower->name);
7072 lower->wanted_features &= ~feature;
7073 netdev_update_features(lower);
7074
7075 if (unlikely(lower->features & feature))
7076 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
7077 &feature, lower->name);
7078 }
7079 }
7080}
7081
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007082static netdev_features_t netdev_fix_features(struct net_device *dev,
7083 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07007084{
Michał Mirosław57422dc2011-01-22 12:14:12 +00007085 /* Fix illegal checksum combinations */
7086 if ((features & NETIF_F_HW_CSUM) &&
7087 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007088 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00007089 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
7090 }
7091
Herbert Xub63365a2008-10-23 01:11:29 -07007092 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00007093 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007094 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00007095 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07007096 }
7097
Pravin B Shelarec5f0612013-03-07 09:28:01 +00007098 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
7099 !(features & NETIF_F_IP_CSUM)) {
7100 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
7101 features &= ~NETIF_F_TSO;
7102 features &= ~NETIF_F_TSO_ECN;
7103 }
7104
7105 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
7106 !(features & NETIF_F_IPV6_CSUM)) {
7107 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
7108 features &= ~NETIF_F_TSO6;
7109 }
7110
Alexander Duyckb1dc4972016-05-02 09:38:24 -07007111 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
7112 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
7113 features &= ~NETIF_F_TSO_MANGLEID;
7114
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00007115 /* TSO ECN requires that TSO is present as well. */
7116 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
7117 features &= ~NETIF_F_TSO_ECN;
7118
Michał Mirosław212b5732011-02-15 16:59:16 +00007119 /* Software GSO depends on SG. */
7120 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007121 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00007122 features &= ~NETIF_F_GSO;
7123 }
7124
Michał Mirosławacd11302011-01-24 15:45:15 -08007125 /* UFO needs SG and checksumming */
Herbert Xub63365a2008-10-23 01:11:29 -07007126 if (features & NETIF_F_UFO) {
Michał Mirosław79032642010-11-30 06:38:00 +00007127 /* maybe split UFO into V4 and V6? */
Tom Herbertc8cd0982015-12-14 11:19:44 -08007128 if (!(features & NETIF_F_HW_CSUM) &&
7129 ((features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) !=
7130 (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007131 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08007132 "Dropping NETIF_F_UFO since no checksum offload features.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07007133 features &= ~NETIF_F_UFO;
7134 }
7135
7136 if (!(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007137 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08007138 "Dropping NETIF_F_UFO since no NETIF_F_SG feature.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07007139 features &= ~NETIF_F_UFO;
7140 }
7141 }
7142
Alexander Duyck802ab552016-04-10 21:45:03 -04007143 /* GSO partial features require GSO partial be set */
7144 if ((features & dev->gso_partial_features) &&
7145 !(features & NETIF_F_GSO_PARTIAL)) {
7146 netdev_dbg(dev,
7147 "Dropping partially supported GSO features since no GSO partial.\n");
7148 features &= ~dev->gso_partial_features;
7149 }
7150
Jiri Pirkod0290212014-04-02 23:09:31 +02007151#ifdef CONFIG_NET_RX_BUSY_POLL
7152 if (dev->netdev_ops->ndo_busy_poll)
7153 features |= NETIF_F_BUSY_POLL;
7154 else
7155#endif
7156 features &= ~NETIF_F_BUSY_POLL;
7157
Herbert Xub63365a2008-10-23 01:11:29 -07007158 return features;
7159}
Herbert Xub63365a2008-10-23 01:11:29 -07007160
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007161int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00007162{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007163 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007164 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007165 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05007166 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00007167
Michał Mirosław87267482011-04-12 09:56:38 +00007168 ASSERT_RTNL();
7169
Michał Mirosław5455c692011-02-15 16:59:17 +00007170 features = netdev_get_wanted_features(dev);
7171
7172 if (dev->netdev_ops->ndo_fix_features)
7173 features = dev->netdev_ops->ndo_fix_features(dev, features);
7174
7175 /* driver might be less strict about feature dependencies */
7176 features = netdev_fix_features(dev, features);
7177
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007178 /* some features can't be enabled if they're off an an upper device */
7179 netdev_for_each_upper_dev_rcu(dev, upper, iter)
7180 features = netdev_sync_upper_features(dev, upper, features);
7181
Michał Mirosław5455c692011-02-15 16:59:17 +00007182 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05007183 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00007184
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007185 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
7186 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00007187
7188 if (dev->netdev_ops->ndo_set_features)
7189 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01007190 else
7191 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00007192
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007193 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00007194 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007195 "set_features() failed (%d); wanted %pNF, left %pNF\n",
7196 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01007197 /* return non-0 since some features might have changed and
7198 * it's better to fire a spurious notification than miss it
7199 */
7200 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007201 }
7202
Jarod Wilsone7868a82015-11-03 23:09:32 -05007203sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007204 /* some features must be disabled on lower devices when disabled
7205 * on an upper device (think: bonding master or bridge)
7206 */
7207 netdev_for_each_lower_dev(dev, lower, iter)
7208 netdev_sync_lower_features(dev, lower, features);
7209
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007210 if (!err)
7211 dev->features = features;
7212
Jarod Wilsone7868a82015-11-03 23:09:32 -05007213 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007214}
7215
Michał Mirosławafe12cc2011-05-07 03:22:17 +00007216/**
7217 * netdev_update_features - recalculate device features
7218 * @dev: the device to check
7219 *
7220 * Recalculate dev->features set and send notifications if it
7221 * has changed. Should be called after driver or hardware dependent
7222 * conditions might have changed that influence the features.
7223 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007224void netdev_update_features(struct net_device *dev)
7225{
7226 if (__netdev_update_features(dev))
7227 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00007228}
7229EXPORT_SYMBOL(netdev_update_features);
7230
Linus Torvalds1da177e2005-04-16 15:20:36 -07007231/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00007232 * netdev_change_features - recalculate device features
7233 * @dev: the device to check
7234 *
7235 * Recalculate dev->features set and send notifications even
7236 * if they have not changed. Should be called instead of
7237 * netdev_update_features() if also dev->vlan_features might
7238 * have changed to allow the changes to be propagated to stacked
7239 * VLAN devices.
7240 */
7241void netdev_change_features(struct net_device *dev)
7242{
7243 __netdev_update_features(dev);
7244 netdev_features_change(dev);
7245}
7246EXPORT_SYMBOL(netdev_change_features);
7247
7248/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08007249 * netif_stacked_transfer_operstate - transfer operstate
7250 * @rootdev: the root or lower level device to transfer state from
7251 * @dev: the device to transfer operstate to
7252 *
7253 * Transfer operational state from root to device. This is normally
7254 * called when a stacking relationship exists between the root
7255 * device and the device(a leaf device).
7256 */
7257void netif_stacked_transfer_operstate(const struct net_device *rootdev,
7258 struct net_device *dev)
7259{
7260 if (rootdev->operstate == IF_OPER_DORMANT)
7261 netif_dormant_on(dev);
7262 else
7263 netif_dormant_off(dev);
7264
7265 if (netif_carrier_ok(rootdev)) {
7266 if (!netif_carrier_ok(dev))
7267 netif_carrier_on(dev);
7268 } else {
7269 if (netif_carrier_ok(dev))
7270 netif_carrier_off(dev);
7271 }
7272}
7273EXPORT_SYMBOL(netif_stacked_transfer_operstate);
7274
Michael Daltona953be52014-01-16 22:23:28 -08007275#ifdef CONFIG_SYSFS
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007276static int netif_alloc_rx_queues(struct net_device *dev)
7277{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007278 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00007279 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05307280 size_t sz = count * sizeof(*rx);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007281
Tom Herbertbd25fa72010-10-18 18:00:16 +00007282 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007283
Pankaj Gupta10595902015-01-12 11:41:28 +05307284 rx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7285 if (!rx) {
7286 rx = vzalloc(sz);
7287 if (!rx)
7288 return -ENOMEM;
7289 }
Tom Herbertbd25fa72010-10-18 18:00:16 +00007290 dev->_rx = rx;
7291
Tom Herbertbd25fa72010-10-18 18:00:16 +00007292 for (i = 0; i < count; i++)
Tom Herbertfe822242010-11-09 10:47:38 +00007293 rx[i].dev = dev;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007294 return 0;
7295}
Tom Herbertbf264142010-11-26 08:36:09 +00007296#endif
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007297
Changli Gaoaa942102010-12-04 02:31:41 +00007298static void netdev_init_one_queue(struct net_device *dev,
7299 struct netdev_queue *queue, void *_unused)
7300{
7301 /* Initialize queue lock */
7302 spin_lock_init(&queue->_xmit_lock);
7303 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
7304 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00007305 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00007306 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00007307#ifdef CONFIG_BQL
7308 dql_init(&queue->dql, HZ);
7309#endif
Changli Gaoaa942102010-12-04 02:31:41 +00007310}
7311
Eric Dumazet60877a32013-06-20 01:15:51 -07007312static void netif_free_tx_queues(struct net_device *dev)
7313{
WANG Cong4cb28972014-06-02 15:55:22 -07007314 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07007315}
7316
Tom Herberte6484932010-10-18 18:04:39 +00007317static int netif_alloc_netdev_queues(struct net_device *dev)
7318{
7319 unsigned int count = dev->num_tx_queues;
7320 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07007321 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00007322
Eric Dumazetd3397272015-07-06 17:13:26 +02007323 if (count < 1 || count > 0xffff)
7324 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00007325
Eric Dumazet60877a32013-06-20 01:15:51 -07007326 tx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7327 if (!tx) {
7328 tx = vzalloc(sz);
7329 if (!tx)
7330 return -ENOMEM;
7331 }
Tom Herberte6484932010-10-18 18:04:39 +00007332 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00007333
Tom Herberte6484932010-10-18 18:04:39 +00007334 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
7335 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00007336
7337 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00007338}
7339
Denys Vlasenkoa2029242015-05-11 21:17:53 +02007340void netif_tx_stop_all_queues(struct net_device *dev)
7341{
7342 unsigned int i;
7343
7344 for (i = 0; i < dev->num_tx_queues; i++) {
7345 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
7346 netif_tx_stop_queue(txq);
7347 }
7348}
7349EXPORT_SYMBOL(netif_tx_stop_all_queues);
7350
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08007351/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007352 * register_netdevice - register a network device
7353 * @dev: device to register
7354 *
7355 * Take a completed network device structure and add it to the kernel
7356 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
7357 * chain. 0 is returned on success. A negative errno code is returned
7358 * on a failure to set up the device, or if the name is a duplicate.
7359 *
7360 * Callers must hold the rtnl semaphore. You may want
7361 * register_netdev() instead of this.
7362 *
7363 * BUGS:
7364 * The locking appears insufficient to guarantee two parallel registers
7365 * will not get the same name.
7366 */
7367
7368int register_netdevice(struct net_device *dev)
7369{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007370 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007371 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007372
7373 BUG_ON(dev_boot_phase);
7374 ASSERT_RTNL();
7375
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007376 might_sleep();
7377
Linus Torvalds1da177e2005-04-16 15:20:36 -07007378 /* When net_device's are persistent, this will be fatal. */
7379 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007380 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007381
David S. Millerf1f28aa2008-07-15 00:08:33 -07007382 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07007383 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007384
Gao feng828de4f2012-09-13 20:58:27 +00007385 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00007386 if (ret < 0)
7387 goto out;
7388
Linus Torvalds1da177e2005-04-16 15:20:36 -07007389 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007390 if (dev->netdev_ops->ndo_init) {
7391 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007392 if (ret) {
7393 if (ret > 0)
7394 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08007395 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007396 }
7397 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007398
Patrick McHardyf6469682013-04-19 02:04:27 +00007399 if (((dev->hw_features | dev->features) &
7400 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00007401 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
7402 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
7403 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
7404 ret = -EINVAL;
7405 goto err_uninit;
7406 }
7407
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00007408 ret = -EBUSY;
7409 if (!dev->ifindex)
7410 dev->ifindex = dev_new_index(net);
7411 else if (__dev_get_by_index(net, dev->ifindex))
7412 goto err_uninit;
7413
Michał Mirosław5455c692011-02-15 16:59:17 +00007414 /* Transfer changeable features to wanted_features and enable
7415 * software offloads (GSO and GRO).
7416 */
7417 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00007418 dev->features |= NETIF_F_SOFT_FEATURES;
7419 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007420
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007421 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00007422 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007423
Alexander Duyck7f348a62016-04-20 16:51:00 -04007424 /* If IPv4 TCP segmentation offload is supported we should also
7425 * allow the device to enable segmenting the frame with the option
7426 * of ignoring a static IP ID value. This doesn't enable the
7427 * feature itself but allows the user to enable it later.
7428 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007429 if (dev->hw_features & NETIF_F_TSO)
7430 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04007431 if (dev->vlan_features & NETIF_F_TSO)
7432 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
7433 if (dev->mpls_features & NETIF_F_TSO)
7434 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
7435 if (dev->hw_enc_features & NETIF_F_TSO)
7436 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07007437
Michał Mirosław1180e7d2011-07-14 14:41:11 -07007438 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00007439 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07007440 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00007441
Pravin B Shelaree579672013-03-07 09:28:08 +00007442 /* Make NETIF_F_SG inheritable to tunnel devices.
7443 */
Alexander Duyck802ab552016-04-10 21:45:03 -04007444 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +00007445
Simon Horman0d89d202013-05-23 21:02:52 +00007446 /* Make NETIF_F_SG inheritable to MPLS.
7447 */
7448 dev->mpls_features |= NETIF_F_SG;
7449
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00007450 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
7451 ret = notifier_to_errno(ret);
7452 if (ret)
7453 goto err_uninit;
7454
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007455 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007456 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007457 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007458 dev->reg_state = NETREG_REGISTERED;
7459
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007460 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00007461
Linus Torvalds1da177e2005-04-16 15:20:36 -07007462 /*
7463 * Default initial state at registry is that the
7464 * device is present.
7465 */
7466
7467 set_bit(__LINK_STATE_PRESENT, &dev->state);
7468
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01007469 linkwatch_init_dev(dev);
7470
Linus Torvalds1da177e2005-04-16 15:20:36 -07007471 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007472 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007473 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04007474 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007475
Jiri Pirko948b3372013-01-08 01:38:25 +00007476 /* If the device has permanent device address, driver should
7477 * set dev_addr and also addr_assign_type should be set to
7478 * NET_ADDR_PERM (default value).
7479 */
7480 if (dev->addr_assign_type == NET_ADDR_PERM)
7481 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
7482
Linus Torvalds1da177e2005-04-16 15:20:36 -07007483 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07007484 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07007485 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007486 if (ret) {
7487 rollback_registered(dev);
Subash Abhinov Kasiviswanathan905bf352019-09-10 14:02:57 -06007488 rcu_barrier();
7489
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007490 dev->reg_state = NETREG_UNREGISTERED;
7491 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00007492 /*
7493 * Prevent userspace races by waiting until the network
7494 * device is fully setup before sending notifications.
7495 */
Patrick McHardya2835762010-02-26 06:34:51 +00007496 if (!dev->rtnl_link_ops ||
7497 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007498 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007499
7500out:
7501 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007502
7503err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007504 if (dev->netdev_ops->ndo_uninit)
7505 dev->netdev_ops->ndo_uninit(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007506 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007507}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007508EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007509
7510/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007511 * init_dummy_netdev - init a dummy network device for NAPI
7512 * @dev: device to init
7513 *
7514 * This takes a network device structure and initialize the minimum
7515 * amount of fields so it can be used to schedule NAPI polls without
7516 * registering a full blown interface. This is to be used by drivers
7517 * that need to tie several hardware interfaces to a single NAPI
7518 * poll scheduler due to HW limitations.
7519 */
7520int init_dummy_netdev(struct net_device *dev)
7521{
7522 /* Clear everything. Note we don't initialize spinlocks
7523 * are they aren't supposed to be taken by any of the
7524 * NAPI code and this dummy netdev is supposed to be
7525 * only ever used for NAPI polls
7526 */
7527 memset(dev, 0, sizeof(struct net_device));
7528
7529 /* make sure we BUG if trying to hit standard
7530 * register/unregister code path
7531 */
7532 dev->reg_state = NETREG_DUMMY;
7533
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007534 /* NAPI wants this */
7535 INIT_LIST_HEAD(&dev->napi_list);
7536
7537 /* a dummy interface is started by default */
7538 set_bit(__LINK_STATE_PRESENT, &dev->state);
7539 set_bit(__LINK_STATE_START, &dev->state);
7540
Eric Dumazet29b44332010-10-11 10:22:12 +00007541 /* Note : We dont allocate pcpu_refcnt for dummy devices,
7542 * because users of this 'device' dont need to change
7543 * its refcount.
7544 */
7545
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007546 return 0;
7547}
7548EXPORT_SYMBOL_GPL(init_dummy_netdev);
7549
7550
7551/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007552 * register_netdev - register a network device
7553 * @dev: device to register
7554 *
7555 * Take a completed network device structure and add it to the kernel
7556 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
7557 * chain. 0 is returned on success. A negative errno code is returned
7558 * on a failure to set up the device, or if the name is a duplicate.
7559 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07007560 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561 * and expands the device name if you passed a format string to
7562 * alloc_netdev.
7563 */
7564int register_netdev(struct net_device *dev)
7565{
7566 int err;
7567
7568 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007570 rtnl_unlock();
7571 return err;
7572}
7573EXPORT_SYMBOL(register_netdev);
7574
Eric Dumazet29b44332010-10-11 10:22:12 +00007575int netdev_refcnt_read(const struct net_device *dev)
7576{
7577 int i, refcnt = 0;
7578
7579 for_each_possible_cpu(i)
7580 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
7581 return refcnt;
7582}
7583EXPORT_SYMBOL(netdev_refcnt_read);
7584
Ben Hutchings2c530402012-07-10 10:55:09 +00007585/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007586 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00007587 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07007588 *
7589 * This is called when unregistering network devices.
7590 *
7591 * Any protocol or device that holds a reference should register
7592 * for netdevice notification, and cleanup and put back the
7593 * reference if they receive an UNREGISTER event.
7594 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007595 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007596 */
7597static void netdev_wait_allrefs(struct net_device *dev)
7598{
7599 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00007600 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007601
Eric Dumazete014deb2009-11-17 05:59:21 +00007602 linkwatch_forget_dev(dev);
7603
Linus Torvalds1da177e2005-04-16 15:20:36 -07007604 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00007605 refcnt = netdev_refcnt_read(dev);
7606
7607 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007608 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08007609 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007610
7611 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07007612 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613
Eric Dumazet748e2d92012-08-22 21:50:59 +00007614 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007615 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00007616 rtnl_lock();
7617
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007618 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007619 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
7620 &dev->state)) {
7621 /* We must not have linkwatch events
7622 * pending on unregister. If this
7623 * happens, we simply run the queue
7624 * unscheduled, resulting in a noop
7625 * for this device.
7626 */
7627 linkwatch_run_queue();
7628 }
7629
Stephen Hemminger6756ae42006-03-20 22:23:58 -08007630 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007631
7632 rebroadcast_time = jiffies;
7633 }
7634
7635 msleep(250);
7636
Eric Dumazet29b44332010-10-11 10:22:12 +00007637 refcnt = netdev_refcnt_read(dev);
7638
Eric Dumazet350d6592019-05-16 08:09:57 -07007639 if (refcnt && time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007640 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
7641 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007642 warning_time = jiffies;
7643 }
7644 }
7645}
7646
7647/* The sequence is:
7648 *
7649 * rtnl_lock();
7650 * ...
7651 * register_netdevice(x1);
7652 * register_netdevice(x2);
7653 * ...
7654 * unregister_netdevice(y1);
7655 * unregister_netdevice(y2);
7656 * ...
7657 * rtnl_unlock();
7658 * free_netdev(y1);
7659 * free_netdev(y2);
7660 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07007661 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07007662 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007663 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07007664 * without deadlocking with linkwatch via keventd.
7665 * 2) Since we run with the RTNL semaphore not held, we can sleep
7666 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07007667 *
7668 * We must not return until all unregister events added during
7669 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007670 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007671void netdev_run_todo(void)
7672{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007673 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007674
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007676 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07007677
7678 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007679
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007680
7681 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00007682 if (!list_empty(&list))
7683 rcu_barrier();
7684
Linus Torvalds1da177e2005-04-16 15:20:36 -07007685 while (!list_empty(&list)) {
7686 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00007687 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007688 list_del(&dev->todo_list);
7689
Eric Dumazet748e2d92012-08-22 21:50:59 +00007690 rtnl_lock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007691 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Eric Dumazet748e2d92012-08-22 21:50:59 +00007692 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007693
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007694 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007695 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07007696 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007697 dump_stack();
7698 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007699 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007700
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007701 dev->reg_state = NETREG_UNREGISTERED;
7702
7703 netdev_wait_allrefs(dev);
7704
7705 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00007706 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -08007707 BUG_ON(!list_empty(&dev->ptype_all));
7708 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +00007709 WARN_ON(rcu_access_pointer(dev->ip_ptr));
7710 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
Ilpo Järvinen547b7922008-07-25 21:43:18 -07007711 WARN_ON(dev->dn_ptr);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007712
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007713 if (dev->destructor)
7714 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07007715
Eric W. Biederman50624c92013-09-23 21:19:49 -07007716 /* Report a network device has been unregistered */
7717 rtnl_lock();
7718 dev_net(dev)->dev_unreg_count--;
7719 __rtnl_unlock();
7720 wake_up(&netdev_unregistering_wq);
7721
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07007722 /* Free network device */
7723 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007724 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007725}
7726
Jarod Wilson92566452016-02-01 18:51:04 -05007727/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
7728 * all the same fields in the same order as net_device_stats, with only
7729 * the type differing, but rtnl_link_stats64 may have additional fields
7730 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +00007731 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00007732void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
7733 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00007734{
7735#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -05007736 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys05e165e2017-07-03 03:20:13 +02007737 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -05007738 /* zero out counters that only exist in rtnl_link_stats64 */
7739 memset((char *)stats64 + sizeof(*netdev_stats), 0,
7740 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007741#else
Jarod Wilson92566452016-02-01 18:51:04 -05007742 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +00007743 const unsigned long *src = (const unsigned long *)netdev_stats;
7744 u64 *dst = (u64 *)stats64;
7745
Jarod Wilson92566452016-02-01 18:51:04 -05007746 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007747 for (i = 0; i < n; i++)
7748 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -05007749 /* zero out counters that only exist in rtnl_link_stats64 */
7750 memset((char *)stats64 + n * sizeof(u64), 0,
7751 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007752#endif
7753}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00007754EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00007755
Eric Dumazetd83345a2009-11-16 03:36:51 +00007756/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007757 * dev_get_stats - get network device statistics
7758 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07007759 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007760 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00007761 * Get network statistics from device. Return @storage.
7762 * The device driver may provide its own method by setting
7763 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
7764 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007765 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00007766struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
7767 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00007768{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007769 const struct net_device_ops *ops = dev->netdev_ops;
7770
Eric Dumazet28172732010-07-07 14:58:56 -07007771 if (ops->ndo_get_stats64) {
7772 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00007773 ops->ndo_get_stats64(dev, storage);
7774 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00007775 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00007776 } else {
7777 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07007778 }
Eric Dumazet3f04c322017-06-27 07:02:20 -07007779 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
7780 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
7781 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -07007782 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07007783}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007784EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07007785
Eric Dumazet24824a02010-10-02 06:11:55 +00007786struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07007787{
Eric Dumazet24824a02010-10-02 06:11:55 +00007788 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07007789
Eric Dumazet24824a02010-10-02 06:11:55 +00007790#ifdef CONFIG_NET_CLS_ACT
7791 if (queue)
7792 return queue;
7793 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
7794 if (!queue)
7795 return NULL;
7796 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007797 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +00007798 queue->qdisc_sleeping = &noop_qdisc;
7799 rcu_assign_pointer(dev->ingress_queue, queue);
7800#endif
7801 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07007802}
7803
Eric Dumazet2c60db02012-09-16 09:17:26 +00007804static const struct ethtool_ops default_ethtool_ops;
7805
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00007806void netdev_set_default_ethtool_ops(struct net_device *dev,
7807 const struct ethtool_ops *ops)
7808{
7809 if (dev->ethtool_ops == &default_ethtool_ops)
7810 dev->ethtool_ops = ops;
7811}
7812EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
7813
Eric Dumazet74d332c2013-10-30 13:10:44 -07007814void netdev_freemem(struct net_device *dev)
7815{
7816 char *addr = (char *)dev - dev->padded;
7817
WANG Cong4cb28972014-06-02 15:55:22 -07007818 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07007819}
7820
Linus Torvalds1da177e2005-04-16 15:20:36 -07007821/**
Tom Herbert36909ea2011-01-09 19:36:31 +00007822 * alloc_netdev_mqs - allocate network device
Tom Gundersenc835a672014-07-14 16:37:24 +02007823 * @sizeof_priv: size of private data to allocate space for
7824 * @name: device name format string
7825 * @name_assign_type: origin of device name
7826 * @setup: callback to initialize device
7827 * @txqs: the number of TX subqueues to allocate
7828 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07007829 *
7830 * Allocates a struct net_device with private data area for driver use
Li Zhong90e51ad2013-11-22 15:04:46 +08007831 * and performs basic initialization. Also allocates subqueue structs
Tom Herbert36909ea2011-01-09 19:36:31 +00007832 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007833 */
Tom Herbert36909ea2011-01-09 19:36:31 +00007834struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02007835 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00007836 void (*setup)(struct net_device *),
7837 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007838{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007839 struct net_device *dev;
Stephen Hemminger79439862008-07-21 13:28:44 -07007840 size_t alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007841 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007842
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07007843 BUG_ON(strlen(name) >= sizeof(dev->name));
7844
Tom Herbert36909ea2011-01-09 19:36:31 +00007845 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007846 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00007847 return NULL;
7848 }
7849
Michael Daltona953be52014-01-16 22:23:28 -08007850#ifdef CONFIG_SYSFS
Tom Herbert36909ea2011-01-09 19:36:31 +00007851 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007852 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00007853 return NULL;
7854 }
7855#endif
7856
David S. Millerfd2ea0a2008-07-17 01:56:23 -07007857 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07007858 if (sizeof_priv) {
7859 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007860 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07007861 alloc_size += sizeof_priv;
7862 }
7863 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007864 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007865
Eric Dumazet74d332c2013-10-30 13:10:44 -07007866 p = kzalloc(alloc_size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7867 if (!p)
7868 p = vzalloc(alloc_size);
Joe Perches62b59422013-02-04 16:48:16 +00007869 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007870 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007871
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007872 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007873 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007874
Eric Dumazet29b44332010-10-11 10:22:12 +00007875 dev->pcpu_refcnt = alloc_percpu(int);
7876 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07007877 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007878
Linus Torvalds1da177e2005-04-16 15:20:36 -07007879 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00007880 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007881
Jiri Pirko22bedad32010-04-01 21:22:57 +00007882 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00007883 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00007884
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09007885 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007886
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07007887 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00007888 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007889
Herbert Xud565b0a2008-12-15 23:38:52 -08007890 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00007891 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07007892 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00007893 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007894 INIT_LIST_HEAD(&dev->adj_list.upper);
7895 INIT_LIST_HEAD(&dev->adj_list.lower);
7896 INIT_LIST_HEAD(&dev->all_adj_list.upper);
7897 INIT_LIST_HEAD(&dev->all_adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -08007898 INIT_LIST_HEAD(&dev->ptype_all);
7899 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Kosina59cc1f62016-08-10 11:05:15 +02007900#ifdef CONFIG_NET_SCHED
7901 hash_init(dev->qdisc_hash);
7902#endif
Eric Dumazet02875872014-10-05 18:38:35 -07007903 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007904 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007905
Phil Suttera8131042016-02-17 15:37:43 +01007906 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +02007907 dev->priv_flags |= IFF_NO_QUEUE;
Phil Suttera8131042016-02-17 15:37:43 +01007908 dev->tx_queue_len = 1;
7909 }
Phil Sutter906470c2015-08-18 10:30:48 +02007910
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007911 dev->num_tx_queues = txqs;
7912 dev->real_num_tx_queues = txqs;
7913 if (netif_alloc_netdev_queues(dev))
7914 goto free_all;
7915
Michael Daltona953be52014-01-16 22:23:28 -08007916#ifdef CONFIG_SYSFS
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007917 dev->num_rx_queues = rxqs;
7918 dev->real_num_rx_queues = rxqs;
7919 if (netif_alloc_rx_queues(dev))
7920 goto free_all;
7921#endif
7922
Linus Torvalds1da177e2005-04-16 15:20:36 -07007923 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02007924 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00007925 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00007926 if (!dev->ethtool_ops)
7927 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +02007928
7929 nf_hook_ingress_init(dev);
7930
Linus Torvalds1da177e2005-04-16 15:20:36 -07007931 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007932
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007933free_all:
7934 free_netdev(dev);
7935 return NULL;
7936
Eric Dumazet29b44332010-10-11 10:22:12 +00007937free_pcpu:
7938 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07007939free_dev:
7940 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007941 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007942}
Tom Herbert36909ea2011-01-09 19:36:31 +00007943EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007944
7945/**
7946 * free_netdev - free network device
7947 * @dev: device
7948 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007949 * This function does the last stage of destroying an allocated device
7950 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007951 * If this is the last reference then it will be freed.
Eric Dumazet93d05d42015-11-18 06:31:03 -08007952 * Must be called in process context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953 */
7954void free_netdev(struct net_device *dev)
7955{
Herbert Xud565b0a2008-12-15 23:38:52 -08007956 struct napi_struct *p, *n;
7957
Eric Dumazet93d05d42015-11-18 06:31:03 -08007958 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -07007959 netif_free_tx_queues(dev);
Michael Daltona953be52014-01-16 22:23:28 -08007960#ifdef CONFIG_SYSFS
Pankaj Gupta10595902015-01-12 11:41:28 +05307961 kvfree(dev->_rx);
Tom Herbertfe822242010-11-09 10:47:38 +00007962#endif
David S. Millere8a04642008-07-17 00:34:19 -07007963
Eric Dumazet33d480c2011-08-11 19:30:52 +00007964 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00007965
Jiri Pirkof001fde2009-05-05 02:48:28 +00007966 /* Flush device addresses */
7967 dev_addr_flush(dev);
7968
Herbert Xud565b0a2008-12-15 23:38:52 -08007969 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
7970 netif_napi_del(p);
7971
Eric Dumazet29b44332010-10-11 10:22:12 +00007972 free_percpu(dev->pcpu_refcnt);
7973 dev->pcpu_refcnt = NULL;
7974
Stephen Hemminger3041a062006-05-26 13:25:24 -07007975 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007976 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07007977 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007978 return;
7979 }
7980
7981 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
7982 dev->reg_state = NETREG_RELEASED;
7983
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07007984 /* will free via device release */
7985 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007986}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007987EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007988
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007989/**
7990 * synchronize_net - Synchronize with packet receive processing
7991 *
7992 * Wait for packets currently being received to be done.
7993 * Does not block later packets from starting.
7994 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007995void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007996{
7997 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00007998 if (rtnl_is_locked())
7999 synchronize_rcu_expedited();
8000 else
8001 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008002}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07008003EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008004
8005/**
Eric Dumazet44a08732009-10-27 07:03:04 +00008006 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07008007 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00008008 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08008009 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07008010 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08008011 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00008012 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008013 *
8014 * Callers must hold the rtnl semaphore. You may want
8015 * unregister_netdev() instead of this.
8016 */
8017
Eric Dumazet44a08732009-10-27 07:03:04 +00008018void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008019{
Herbert Xua6620712007-12-12 19:21:56 -08008020 ASSERT_RTNL();
8021
Eric Dumazet44a08732009-10-27 07:03:04 +00008022 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00008023 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00008024 } else {
8025 rollback_registered(dev);
8026 /* Finish processing unregister after unlock */
8027 net_set_todo(dev);
8028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008029}
Eric Dumazet44a08732009-10-27 07:03:04 +00008030EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008031
8032/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008033 * unregister_netdevice_many - unregister many devices
8034 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07008035 *
8036 * Note: As most callers use a stack allocated list_head,
8037 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008038 */
8039void unregister_netdevice_many(struct list_head *head)
8040{
8041 struct net_device *dev;
8042
8043 if (!list_empty(head)) {
8044 rollback_registered_many(head);
8045 list_for_each_entry(dev, head, unreg_list)
8046 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07008047 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008048 }
8049}
Eric Dumazet63c80992009-10-27 07:06:49 +00008050EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008051
8052/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008053 * unregister_netdev - remove device from the kernel
8054 * @dev: device
8055 *
8056 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08008057 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008058 *
8059 * This is just a wrapper for unregister_netdevice that takes
8060 * the rtnl semaphore. In general you want to use this and not
8061 * unregister_netdevice.
8062 */
8063void unregister_netdev(struct net_device *dev)
8064{
8065 rtnl_lock();
8066 unregister_netdevice(dev);
8067 rtnl_unlock();
8068}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008069EXPORT_SYMBOL(unregister_netdev);
8070
Eric W. Biedermance286d32007-09-12 13:53:49 +02008071/**
8072 * dev_change_net_namespace - move device to different nethost namespace
8073 * @dev: device
8074 * @net: network namespace
8075 * @pat: If not NULL name pattern to try if the current device name
8076 * is already taken in the destination network namespace.
8077 *
8078 * This function shuts down a device interface and moves it
8079 * to a new network namespace. On success 0 is returned, on
8080 * a failure a netagive errno code is returned.
8081 *
8082 * Callers must hold the rtnl semaphore.
8083 */
8084
8085int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
8086{
Eric W. Biedermance286d32007-09-12 13:53:49 +02008087 int err;
8088
8089 ASSERT_RTNL();
8090
8091 /* Don't allow namespace local devices to be moved. */
8092 err = -EINVAL;
8093 if (dev->features & NETIF_F_NETNS_LOCAL)
8094 goto out;
8095
8096 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02008097 if (dev->reg_state != NETREG_REGISTERED)
8098 goto out;
8099
8100 /* Get out if there is nothing todo */
8101 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09008102 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02008103 goto out;
8104
8105 /* Pick the destination device name, and ensure
8106 * we can use it in the destination network namespace.
8107 */
8108 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00008109 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008110 /* We get here if we can't use the current device name */
8111 if (!pat)
8112 goto out;
Li RongQing53adf732018-06-19 17:23:17 +08008113 err = dev_get_valid_name(net, dev, pat);
8114 if (err < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02008115 goto out;
8116 }
8117
8118 /*
8119 * And now a mini version of register_netdevice unregister_netdevice.
8120 */
8121
8122 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07008123 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008124
8125 /* And unlink it from device chain */
Eric W. Biedermance286d32007-09-12 13:53:49 +02008126 unlist_netdevice(dev);
8127
8128 synchronize_net();
8129
8130 /* Shutdown queueing discipline. */
8131 dev_shutdown(dev);
8132
8133 /* Notify protocols, that we are about to destroy
8134 this device. They should clean all the things.
David Lamparter3b27e102010-09-17 03:22:19 +00008135
8136 Note that dev->reg_state stays at NETREG_REGISTERED.
8137 This is wanted because this way 8021q and macvlan know
8138 the device is just moving and can keep their slaves up.
Eric W. Biedermance286d32007-09-12 13:53:49 +02008139 */
8140 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00008141 rcu_barrier();
8142 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008143 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008144
8145 /*
8146 * Flush the unicast and multicast chains
8147 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00008148 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00008149 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008150
Serge Hallyn4e66ae22012-12-03 16:17:12 +00008151 /* Send a netdev-removed uevent to the old namespace */
8152 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008153 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00008154
Eric W. Biedermance286d32007-09-12 13:53:49 +02008155 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09008156 dev_net_set(dev, net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008157
Eric W. Biedermance286d32007-09-12 13:53:49 +02008158 /* If there is an ifindex conflict assign a new one */
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +02008159 if (__dev_get_by_index(net, dev->ifindex))
Eric W. Biedermance286d32007-09-12 13:53:49 +02008160 dev->ifindex = dev_new_index(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008161
Serge Hallyn4e66ae22012-12-03 16:17:12 +00008162 /* Send a netdev-add uevent to the new namespace */
8163 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008164 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00008165
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008166 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07008167 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008168 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008169
8170 /* Add the device back in the hashes */
8171 list_netdevice(dev);
8172
8173 /* Notify protocols, that a new device appeared. */
8174 call_netdevice_notifiers(NETDEV_REGISTER, dev);
8175
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008176 /*
8177 * Prevent userspace races by waiting until the network
8178 * device is fully setup before sending notifications.
8179 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008180 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008181
Eric W. Biedermance286d32007-09-12 13:53:49 +02008182 synchronize_net();
8183 err = 0;
8184out:
8185 return err;
8186}
Johannes Berg463d0182009-07-14 00:33:35 +02008187EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008188
Linus Torvalds1da177e2005-04-16 15:20:36 -07008189static int dev_cpu_callback(struct notifier_block *nfb,
8190 unsigned long action,
8191 void *ocpu)
8192{
8193 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008194 struct sk_buff *skb;
8195 unsigned int cpu, oldcpu = (unsigned long)ocpu;
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05308196 struct softnet_data *sd, *oldsd, *remsd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008197
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008198 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008199 return NOTIFY_OK;
8200
8201 local_irq_disable();
8202 cpu = smp_processor_id();
8203 sd = &per_cpu(softnet_data, cpu);
8204 oldsd = &per_cpu(softnet_data, oldcpu);
8205
8206 /* Find end of our completion_queue. */
8207 list_skb = &sd->completion_queue;
8208 while (*list_skb)
8209 list_skb = &(*list_skb)->next;
8210 /* Append completion queue from offline CPU. */
8211 *list_skb = oldsd->completion_queue;
8212 oldsd->completion_queue = NULL;
8213
Linus Torvalds1da177e2005-04-16 15:20:36 -07008214 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00008215 if (oldsd->output_queue) {
8216 *sd->output_queue_tailp = oldsd->output_queue;
8217 sd->output_queue_tailp = oldsd->output_queue_tailp;
8218 oldsd->output_queue = NULL;
8219 oldsd->output_queue_tailp = &oldsd->output_queue;
8220 }
Eric Dumazetac64da02015-01-15 17:04:22 -08008221 /* Append NAPI poll list from offline CPU, with one exception :
8222 * process_backlog() must be called by cpu owning percpu backlog.
8223 * We properly handle process_queue & input_pkt_queue later.
8224 */
8225 while (!list_empty(&oldsd->poll_list)) {
8226 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
8227 struct napi_struct,
8228 poll_list);
8229
8230 list_del_init(&napi->poll_list);
8231 if (napi->poll == process_backlog)
8232 napi->state = 0;
8233 else
8234 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +00008235 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008236
8237 raise_softirq_irqoff(NET_TX_SOFTIRQ);
8238 local_irq_enable();
8239
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05308240#ifdef CONFIG_RPS
8241 remsd = oldsd->rps_ipi_list;
8242 oldsd->rps_ipi_list = NULL;
8243#endif
8244 /* send out pending IPI's on offline CPU */
8245 net_rps_send_ipi(remsd);
8246
Linus Torvalds1da177e2005-04-16 15:20:36 -07008247 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00008248 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08008249 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00008250 input_queue_head_incr(oldsd);
8251 }
Eric Dumazetac64da02015-01-15 17:04:22 -08008252 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08008253 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00008254 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07008255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008256
8257 return NOTIFY_OK;
8258}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008259
8260
Herbert Xu7f353bf2007-08-10 15:47:58 -07008261/**
Herbert Xub63365a2008-10-23 01:11:29 -07008262 * netdev_increment_features - increment feature set by one
8263 * @all: current feature set
8264 * @one: new feature set
8265 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07008266 *
8267 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07008268 * @one to the master device with current feature set @all. Will not
8269 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07008270 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008271netdev_features_t netdev_increment_features(netdev_features_t all,
8272 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07008273{
Tom Herbertc8cd0982015-12-14 11:19:44 -08008274 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -08008275 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +00008276 mask |= NETIF_F_VLAN_CHALLENGED;
8277
Tom Herberta1882222015-12-14 11:19:43 -08008278 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +00008279 all &= one | ~NETIF_F_ALL_FOR_ALL;
8280
Michał Mirosław1742f182011-04-22 06:31:16 +00008281 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -08008282 if (all & NETIF_F_HW_CSUM)
8283 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07008284
8285 return all;
8286}
Herbert Xub63365a2008-10-23 01:11:29 -07008287EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07008288
Baruch Siach430f03c2013-06-02 20:43:55 +00008289static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008290{
8291 int i;
8292 struct hlist_head *hash;
8293
8294 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
8295 if (hash != NULL)
8296 for (i = 0; i < NETDEV_HASHENTRIES; i++)
8297 INIT_HLIST_HEAD(&hash[i]);
8298
8299 return hash;
8300}
8301
Eric W. Biederman881d9662007-09-17 11:56:21 -07008302/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07008303static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07008304{
Rustad, Mark D734b6542012-07-18 09:06:07 +00008305 if (net != &init_net)
8306 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07008307
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008308 net->dev_name_head = netdev_create_hash();
8309 if (net->dev_name_head == NULL)
8310 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008311
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008312 net->dev_index_head = netdev_create_hash();
8313 if (net->dev_index_head == NULL)
8314 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008315
8316 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008317
8318err_idx:
8319 kfree(net->dev_name_head);
8320err_name:
8321 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008322}
8323
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008324/**
8325 * netdev_drivername - network driver for the device
8326 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008327 *
8328 * Determine network driver for device.
8329 */
David S. Miller3019de12011-06-06 16:41:33 -07008330const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07008331{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07008332 const struct device_driver *driver;
8333 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07008334 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07008335
8336 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008337 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07008338 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008339
8340 driver = parent->driver;
8341 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07008342 return driver->name;
8343 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008344}
8345
Joe Perches6ea754e2014-09-22 11:10:50 -07008346static void __netdev_printk(const char *level, const struct net_device *dev,
8347 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +00008348{
Joe Perchesb004ff42012-09-12 20:12:19 -07008349 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -07008350 dev_printk_emit(level[1] - '0',
8351 dev->dev.parent,
8352 "%s %s %s%s: %pV",
8353 dev_driver_string(dev->dev.parent),
8354 dev_name(dev->dev.parent),
8355 netdev_name(dev), netdev_reg_state(dev),
8356 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008357 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -07008358 printk("%s%s%s: %pV",
8359 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008360 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -07008361 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008362 }
Joe Perches256df2f2010-06-27 01:02:35 +00008363}
8364
Joe Perches6ea754e2014-09-22 11:10:50 -07008365void netdev_printk(const char *level, const struct net_device *dev,
8366 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +00008367{
8368 struct va_format vaf;
8369 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +00008370
8371 va_start(args, format);
8372
8373 vaf.fmt = format;
8374 vaf.va = &args;
8375
Joe Perches6ea754e2014-09-22 11:10:50 -07008376 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008377
Joe Perches256df2f2010-06-27 01:02:35 +00008378 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +00008379}
8380EXPORT_SYMBOL(netdev_printk);
8381
8382#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -07008383void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +00008384{ \
Joe Perches256df2f2010-06-27 01:02:35 +00008385 struct va_format vaf; \
8386 va_list args; \
8387 \
8388 va_start(args, fmt); \
8389 \
8390 vaf.fmt = fmt; \
8391 vaf.va = &args; \
8392 \
Joe Perches6ea754e2014-09-22 11:10:50 -07008393 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07008394 \
Joe Perches256df2f2010-06-27 01:02:35 +00008395 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +00008396} \
8397EXPORT_SYMBOL(func);
8398
8399define_netdev_printk_level(netdev_emerg, KERN_EMERG);
8400define_netdev_printk_level(netdev_alert, KERN_ALERT);
8401define_netdev_printk_level(netdev_crit, KERN_CRIT);
8402define_netdev_printk_level(netdev_err, KERN_ERR);
8403define_netdev_printk_level(netdev_warn, KERN_WARNING);
8404define_netdev_printk_level(netdev_notice, KERN_NOTICE);
8405define_netdev_printk_level(netdev_info, KERN_INFO);
8406
Pavel Emelyanov46650792007-10-08 20:38:39 -07008407static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07008408{
8409 kfree(net->dev_name_head);
8410 kfree(net->dev_index_head);
8411}
8412
Denis V. Lunev022cbae2007-11-13 03:23:50 -08008413static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07008414 .init = netdev_init,
8415 .exit = netdev_exit,
8416};
8417
Pavel Emelyanov46650792007-10-08 20:38:39 -07008418static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02008419{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008420 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02008421 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008422 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02008423 * initial network namespace
8424 */
8425 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008426 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008427 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008428 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02008429
8430 /* Ignore unmoveable devices (i.e. loopback) */
8431 if (dev->features & NETIF_F_NETNS_LOCAL)
8432 continue;
8433
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008434 /* Leave virtual devices for the generic cleanup */
8435 if (dev->rtnl_link_ops)
8436 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08008437
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008438 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008439 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
Jiri Pirko78922ae2019-07-28 14:56:36 +02008440 if (__dev_get_by_name(&init_net, fb_name))
8441 snprintf(fb_name, IFNAMSIZ, "dev%%d");
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008442 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008443 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008444 pr_emerg("%s: failed to move %s to init_net: %d\n",
8445 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008446 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02008447 }
8448 }
8449 rtnl_unlock();
8450}
8451
Eric W. Biederman50624c92013-09-23 21:19:49 -07008452static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
8453{
8454 /* Return with the rtnl_lock held when there are no network
8455 * devices unregistering in any network namespace in net_list.
8456 */
8457 struct net *net;
8458 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +01008459 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008460
Peter Zijlstraff960a72014-10-29 17:04:56 +01008461 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008462 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -07008463 unregistering = false;
8464 rtnl_lock();
8465 list_for_each_entry(net, net_list, exit_list) {
8466 if (net->dev_unreg_count > 0) {
8467 unregistering = true;
8468 break;
8469 }
8470 }
8471 if (!unregistering)
8472 break;
8473 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +01008474
8475 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008476 }
Peter Zijlstraff960a72014-10-29 17:04:56 +01008477 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008478}
8479
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008480static void __net_exit default_device_exit_batch(struct list_head *net_list)
8481{
8482 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04008483 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008484 * Do this across as many network namespaces as possible to
8485 * improve batching efficiency.
8486 */
8487 struct net_device *dev;
8488 struct net *net;
8489 LIST_HEAD(dev_kill_list);
8490
Eric W. Biederman50624c92013-09-23 21:19:49 -07008491 /* To prevent network device cleanup code from dereferencing
8492 * loopback devices or network devices that have been freed
8493 * wait here for all pending unregistrations to complete,
8494 * before unregistring the loopback device and allowing the
8495 * network namespace be freed.
8496 *
8497 * The netdev todo list containing all network devices
8498 * unregistrations that happen in default_device_exit_batch
8499 * will run in the rtnl_unlock() at the end of
8500 * default_device_exit_batch.
8501 */
8502 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008503 list_for_each_entry(net, net_list, exit_list) {
8504 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02008505 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008506 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
8507 else
8508 unregister_netdevice_queue(dev, &dev_kill_list);
8509 }
8510 }
8511 unregister_netdevice_many(&dev_kill_list);
8512 rtnl_unlock();
8513}
8514
Denis V. Lunev022cbae2007-11-13 03:23:50 -08008515static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008516 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008517 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02008518};
8519
Linus Torvalds1da177e2005-04-16 15:20:36 -07008520/*
8521 * Initialize the DEV module. At boot time this walks the device list and
8522 * unhooks any devices that fail to initialise (normally hardware not
8523 * present) and leaves us with a valid list of present and active devices.
8524 *
8525 */
8526
8527/*
8528 * This is called single threaded during boot, so no need
8529 * to take the rtnl semaphore.
8530 */
8531static int __init net_dev_init(void)
8532{
8533 int i, rc = -ENOMEM;
8534
8535 BUG_ON(!dev_boot_phase);
8536
Linus Torvalds1da177e2005-04-16 15:20:36 -07008537 if (dev_proc_init())
8538 goto out;
8539
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008540 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07008541 goto out;
8542
8543 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08008544 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008545 INIT_LIST_HEAD(&ptype_base[i]);
8546
Vlad Yasevich62532da2012-11-15 08:49:10 +00008547 INIT_LIST_HEAD(&offload_base);
8548
Eric W. Biederman881d9662007-09-17 11:56:21 -07008549 if (register_pernet_subsys(&netdev_net_ops))
8550 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008551
8552 /*
8553 * Initialise the packet receive queues.
8554 */
8555
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07008556 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -07008557 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008558 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008559
Eric Dumazet41852492016-08-26 12:50:39 -07008560 INIT_WORK(flush, flush_backlog);
8561
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008562 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07008563 skb_queue_head_init(&sd->process_queue);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008564 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00008565 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00008566#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008567 sd->csd.func = rps_trigger_softirq;
8568 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008569 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07008570#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00008571
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008572 sd->backlog.poll = process_backlog;
8573 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008574 }
8575
Linus Torvalds1da177e2005-04-16 15:20:36 -07008576 dev_boot_phase = 0;
8577
Eric W. Biederman505d4f72008-11-07 22:54:20 -08008578 /* The loopback device is special if any other network devices
8579 * is present in a network namespace the loopback device must
8580 * be present. Since we now dynamically allocate and free the
8581 * loopback device ensure this invariant is maintained by
8582 * keeping the loopback device as the first device on the
8583 * list of network devices. Ensuring the loopback devices
8584 * is the first device that appears and the last network device
8585 * that disappears.
8586 */
8587 if (register_pernet_device(&loopback_net_ops))
8588 goto out;
8589
8590 if (register_pernet_device(&default_device_ops))
8591 goto out;
8592
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008593 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
8594 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008595
8596 hotcpu_notifier(dev_cpu_callback, 0);
Thomas Graff38a9eb2015-07-21 10:43:56 +02008597 dst_subsys_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008598 rc = 0;
8599out:
8600 return rc;
8601}
8602
8603subsys_initcall(net_dev_init);