blob: ca40d8e63b860d097e47937dd74b959e0eba2f7e [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * NET3 Protocol independent device support routines.
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; either version
7 * 2 of the License, or (at your option) any later version.
8 *
9 * Derived from the non IP parts of dev.c 1.0.19
Jesper Juhl02c30a82005-05-05 16:16:16 -070010 * Authors: Ross Biro
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG>
12 * Mark Evans, <evansmp@uhura.aston.ac.uk>
13 *
14 * Additional Authors:
15 * Florian la Roche <rzsfl@rz.uni-sb.de>
16 * Alan Cox <gw4pts@gw4pts.ampr.org>
17 * David Hinds <dahinds@users.sourceforge.net>
18 * Alexey Kuznetsov <kuznet@ms2.inr.ac.ru>
19 * Adam Sulmicki <adam@cfar.umd.edu>
20 * Pekka Riikonen <priikone@poesidon.pspt.fi>
21 *
22 * Changes:
23 * D.J. Barrow : Fixed bug where dev->refcnt gets set
24 * to 2 if register_netdev gets called
25 * before net_dev_init & also removed a
26 * few lines of code in the process.
27 * Alan Cox : device private ioctl copies fields back.
28 * Alan Cox : Transmit queue code does relevant
29 * stunts to keep the queue safe.
30 * Alan Cox : Fixed double lock.
31 * Alan Cox : Fixed promisc NULL pointer trap
32 * ???????? : Support the full private ioctl range
33 * Alan Cox : Moved ioctl permission check into
34 * drivers
35 * Tim Kordas : SIOCADDMULTI/SIOCDELMULTI
36 * Alan Cox : 100 backlog just doesn't cut it when
37 * you start doing multicast video 8)
38 * Alan Cox : Rewrote net_bh and list manager.
39 * Alan Cox : Fix ETH_P_ALL echoback lengths.
40 * Alan Cox : Took out transmit every packet pass
41 * Saved a few bytes in the ioctl handler
42 * Alan Cox : Network driver sets packet type before
43 * calling netif_rx. Saves a function
44 * call a packet.
45 * Alan Cox : Hashed net_bh()
46 * Richard Kooijman: Timestamp fixes.
47 * Alan Cox : Wrong field in SIOCGIFDSTADDR
48 * Alan Cox : Device lock protection.
49 * Alan Cox : Fixed nasty side effect of device close
50 * changes.
51 * Rudi Cilibrasi : Pass the right thing to
52 * set_mac_address()
53 * Dave Miller : 32bit quantity for the device lock to
54 * make it work out on a Sparc.
55 * Bjorn Ekwall : Added KERNELD hack.
56 * Alan Cox : Cleaned up the backlog initialise.
57 * Craig Metz : SIOCGIFCONF fix if space for under
58 * 1 device.
59 * Thomas Bogendoerfer : Return ENODEV for dev_open, if there
60 * is no device open function.
61 * Andi Kleen : Fix error reporting for SIOCGIFCONF
62 * Michael Chastain : Fix signed/unsigned for SIOCGIFCONF
63 * Cyrus Durgin : Cleaned for KMOD
64 * Adam Sulmicki : Bug Fix : Network Device Unload
65 * A network device unload needs to purge
66 * the backlog queue.
67 * Paul Rusty Russell : SIOCSIFNAME
68 * Pekka Riikonen : Netdev boot-time settings code
69 * Andrew Morton : Make unregister_netdevice wait
70 * indefinitely on dev->refcnt
71 * J Hadi Salim : - Backlog queue sampling
72 * - netif_rx() feedback
73 */
74
75#include <asm/uaccess.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#include <linux/bitops.h>
Randy Dunlap4fc268d2006-01-11 12:17:47 -080077#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#include <linux/cpu.h>
79#include <linux/types.h>
80#include <linux/kernel.h>
stephen hemminger08e98972009-11-10 07:20:34 +000081#include <linux/hash.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090082#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/sched.h>
Arjan van de Ven4a3e2f72006-03-20 22:33:17 -080084#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#include <linux/string.h>
86#include <linux/mm.h>
87#include <linux/socket.h>
88#include <linux/sockios.h>
89#include <linux/errno.h>
90#include <linux/interrupt.h>
91#include <linux/if_ether.h>
92#include <linux/netdevice.h>
93#include <linux/etherdevice.h>
Ben Hutchings0187bdf2008-06-19 16:15:47 -070094#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095#include <linux/notifier.h>
96#include <linux/skbuff.h>
Brenden Blancoa7862b42016-07-19 12:16:48 -070097#include <linux/bpf.h>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020098#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#include <net/sock.h>
Eric Dumazet02d62e82015-11-18 06:30:52 -0800100#include <net/busy_poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103#include <net/dst.h>
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700104#include <net/dst_metadata.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#include <net/pkt_sched.h>
106#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000107#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#include <linux/highmem.h>
109#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#include <linux/netpoll.h>
112#include <linux/rcupdate.h>
113#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500116#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700117#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700118#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700119#include <linux/ctype.h>
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700120#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700121#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700122#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700123#include <net/ip.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -0700124#include <net/mpls.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700125#include <linux/ipv6.h>
126#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700127#include <linux/jhash.h>
128#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700129#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900130#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900131#include <trace/events/skb.h>
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +0000132#include <linux/pci.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700133#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000134#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100135#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300136#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700137#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100138#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400139#include <linux/errqueue.h>
Eric Dumazet3b47d302014-11-06 21:09:44 -0800140#include <linux/hrtimer.h>
Pablo Neirae687ad62015-05-13 18:19:38 +0200141#include <linux/netfilter_ingress.h>
Tom Herbert6ae23ad2015-12-14 11:19:46 -0800142#include <linux/sctp.h>
Hariprasad Shenai40e4e712016-06-08 18:09:08 +0530143#include <linux/crash_dump.h>
Subash Abhinov Kasiviswanathan717d3392017-06-26 18:46:50 -0600144#include <linux/tcp.h>
145#include <net/tcp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700147#include "net-sysfs.h"
148
Herbert Xud565b0a2008-12-15 23:38:52 -0800149/* Instead of increasing this, you should create a hash table. */
150#define MAX_GRO_SKBS 8
151
Herbert Xu5d38a072009-01-04 16:13:40 -0800152/* This should be increased if a protocol with a bigger head is added. */
153#define GRO_MAX_HEAD (MAX_HEADER + 128)
154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000156static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000157struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
158struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000159static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000161static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli5495119462014-07-01 21:39:43 -0700162static int call_netdevice_notifiers_info(unsigned long val,
163 struct net_device *dev,
164 struct netdev_notifier_info *info);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700167 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168 * semaphore.
169 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800170 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 *
172 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700173 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 * actual updates. This allows pure readers to access the list even
175 * while a writer is preparing to update it.
176 *
177 * To put it another way, dev_base_lock is held for writing only to
178 * protect against pure readers; the rtnl semaphore provides the
179 * protection against other writers.
180 *
181 * See, for example usages, register_netdevice() and
182 * unregister_netdevice(), which must be called with the rtnl
183 * semaphore held.
184 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186EXPORT_SYMBOL(dev_base_lock);
187
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300188/* protects napi_hash addition/deletion and napi_gen_id */
189static DEFINE_SPINLOCK(napi_hash_lock);
190
Eric Dumazet52bd2d62015-11-18 06:30:50 -0800191static unsigned int napi_gen_id = NR_CPUS;
Eric Dumazet6180d9d2015-11-18 06:31:01 -0800192static DEFINE_READ_MOSTLY_HASHTABLE(napi_hash, 8);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300193
Thomas Gleixner18afa4b2013-07-23 16:13:17 +0200194static seqcount_t devnet_rename_seq;
Brian Haleyc91f6df2012-11-26 05:21:08 +0000195
Thomas Graf4e985ad2011-06-21 03:11:20 +0000196static inline void dev_base_seq_inc(struct net *net)
197{
198 while (++net->dev_base_seq == 0);
199}
200
Eric W. Biederman881d9662007-09-17 11:56:21 -0700201static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Linus Torvalds8387ff22016-06-10 07:51:30 -0700203 unsigned int hash = full_name_hash(net, name, strnlen(name, IFNAMSIZ));
Eric Dumazet95c96172012-04-15 05:58:06 +0000204
stephen hemminger08e98972009-11-10 07:20:34 +0000205 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206}
207
Eric W. Biederman881d9662007-09-17 11:56:21 -0700208static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700210 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
212
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000213static inline void rps_lock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000214{
215#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000216 spin_lock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000217#endif
218}
219
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000220static inline void rps_unlock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000221{
222#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000223 spin_unlock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000224#endif
225}
226
Eric W. Biedermance286d32007-09-12 13:53:49 +0200227/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000228static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200229{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900230 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200231
232 ASSERT_RTNL();
233
234 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800235 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Eric Dumazet72c95282009-10-30 07:11:27 +0000236 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000237 hlist_add_head_rcu(&dev->index_hlist,
238 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200239 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000240
241 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200242}
243
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000244/* Device list removal
245 * caller must respect a RCU grace period before freeing/reusing dev
246 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200247static void unlist_netdevice(struct net_device *dev)
248{
249 ASSERT_RTNL();
250
251 /* Unlink dev from the device chain */
252 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800253 list_del_rcu(&dev->dev_list);
Eric Dumazet72c95282009-10-30 07:11:27 +0000254 hlist_del_rcu(&dev->name_hlist);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000255 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200256 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000257
258 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200259}
260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/*
262 * Our notifier list
263 */
264
Alan Sternf07d5b92006-05-09 15:23:03 -0700265static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266
267/*
268 * Device drivers call our routines to queue packets here. We empty the
269 * queue in the local softnet handler.
270 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700271
Eric Dumazet9958da02010-04-17 04:17:02 +0000272DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700273EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274
David S. Millercf508b12008-07-22 14:16:42 -0700275#ifdef CONFIG_LOCKDEP
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700276/*
David S. Millerc773e842008-07-08 23:13:53 -0700277 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700278 * according to dev->type
279 */
280static const unsigned short netdev_lock_type[] =
281 {ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
282 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
283 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
284 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
285 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
286 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
287 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
288 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
289 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
290 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
291 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
292 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
Paul Gortmaker211ed862012-05-10 17:14:35 -0400293 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
294 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
295 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700296
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700297static const char *const netdev_lock_name[] =
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700298 {"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
299 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
300 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
301 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
302 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
303 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
304 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
305 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
306 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
307 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
308 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
309 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
Paul Gortmaker211ed862012-05-10 17:14:35 -0400310 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
311 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
312 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700313
314static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
David S. Millercf508b12008-07-22 14:16:42 -0700315static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700316
317static inline unsigned short netdev_lock_pos(unsigned short dev_type)
318{
319 int i;
320
321 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
322 if (netdev_lock_type[i] == dev_type)
323 return i;
324 /* the last key is used by default */
325 return ARRAY_SIZE(netdev_lock_type) - 1;
326}
327
David S. Millercf508b12008-07-22 14:16:42 -0700328static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
329 unsigned short dev_type)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700330{
331 int i;
332
333 i = netdev_lock_pos(dev_type);
334 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
335 netdev_lock_name[i]);
336}
David S. Millercf508b12008-07-22 14:16:42 -0700337
338static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
339{
340 int i;
341
342 i = netdev_lock_pos(dev->type);
343 lockdep_set_class_and_name(&dev->addr_list_lock,
344 &netdev_addr_lock_key[i],
345 netdev_lock_name[i]);
346}
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700347#else
David S. Millercf508b12008-07-22 14:16:42 -0700348static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
349 unsigned short dev_type)
350{
351}
352static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700353{
354}
355#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
357/*******************************************************************************
358
359 Protocol management and registration routines
360
361*******************************************************************************/
362
363/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 * Add a protocol ID to the list. Now that the input handler is
365 * smarter we can dispense with all the messy stuff that used to be
366 * here.
367 *
368 * BEWARE!!! Protocol handlers, mangling input packets,
369 * MUST BE last in hash buckets and checking protocol handlers
370 * MUST start from promiscuous ptype_all chain in net_bh.
371 * It is true now, do not change it.
372 * Explanation follows: if protocol handler, mangling packet, will
373 * be the first on list, it is not able to sense, that packet
374 * is cloned and should be copied-on-write, so that it will
375 * change it and subsequent readers will get broken packet.
376 * --ANK (980803)
377 */
378
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000379static inline struct list_head *ptype_head(const struct packet_type *pt)
380{
381 if (pt->type == htons(ETH_P_ALL))
Salam Noureddine7866a622015-01-27 11:35:48 -0800382 return pt->dev ? &pt->dev->ptype_all : &ptype_all;
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000383 else
Salam Noureddine7866a622015-01-27 11:35:48 -0800384 return pt->dev ? &pt->dev->ptype_specific :
385 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000386}
387
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388/**
389 * dev_add_pack - add packet handler
390 * @pt: packet type declaration
391 *
392 * Add a protocol handler to the networking stack. The passed &packet_type
393 * is linked into kernel lists and may not be freed until it has been
394 * removed from the kernel lists.
395 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900396 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 * guarantee all CPU's that are in middle of receiving packets
398 * will see the new packet type (until the next received packet).
399 */
400
401void dev_add_pack(struct packet_type *pt)
402{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000403 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000405 spin_lock(&ptype_lock);
406 list_add_rcu(&pt->list, head);
407 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700409EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411/**
412 * __dev_remove_pack - remove packet handler
413 * @pt: packet type declaration
414 *
415 * Remove a protocol handler that was previously added to the kernel
416 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
417 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900418 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 *
420 * The packet type might still be in use by receivers
421 * and must not be freed until after all the CPU's have gone
422 * through a quiescent state.
423 */
424void __dev_remove_pack(struct packet_type *pt)
425{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000426 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 struct packet_type *pt1;
428
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000429 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430
431 list_for_each_entry(pt1, head, list) {
432 if (pt == pt1) {
433 list_del_rcu(&pt->list);
434 goto out;
435 }
436 }
437
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000438 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000440 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700442EXPORT_SYMBOL(__dev_remove_pack);
443
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444/**
445 * dev_remove_pack - remove packet handler
446 * @pt: packet type declaration
447 *
448 * Remove a protocol handler that was previously added to the kernel
449 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
450 * from the kernel lists and can be freed or reused once this function
451 * returns.
452 *
453 * This call sleeps to guarantee that no CPU is looking at the packet
454 * type after return.
455 */
456void dev_remove_pack(struct packet_type *pt)
457{
458 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900459
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 synchronize_net();
461}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700462EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
Vlad Yasevich62532da2012-11-15 08:49:10 +0000464
465/**
466 * dev_add_offload - register offload handlers
467 * @po: protocol offload declaration
468 *
469 * Add protocol offload handlers to the networking stack. The passed
470 * &proto_offload is linked into kernel lists and may not be freed until
471 * it has been removed from the kernel lists.
472 *
473 * This call does not sleep therefore it can not
474 * guarantee all CPU's that are in middle of receiving packets
475 * will see the new offload handlers (until the next received packet).
476 */
477void dev_add_offload(struct packet_offload *po)
478{
David S. Millerbdef7de2015-06-01 14:56:09 -0700479 struct packet_offload *elem;
Vlad Yasevich62532da2012-11-15 08:49:10 +0000480
481 spin_lock(&offload_lock);
David S. Millerbdef7de2015-06-01 14:56:09 -0700482 list_for_each_entry(elem, &offload_base, list) {
483 if (po->priority < elem->priority)
484 break;
485 }
486 list_add_rcu(&po->list, elem->list.prev);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000487 spin_unlock(&offload_lock);
488}
489EXPORT_SYMBOL(dev_add_offload);
490
491/**
492 * __dev_remove_offload - remove offload handler
493 * @po: packet offload declaration
494 *
495 * Remove a protocol offload handler that was previously added to the
496 * kernel offload handlers by dev_add_offload(). The passed &offload_type
497 * is removed from the kernel lists and can be freed or reused once this
498 * function returns.
499 *
500 * The packet type might still be in use by receivers
501 * and must not be freed until after all the CPU's have gone
502 * through a quiescent state.
503 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800504static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000505{
506 struct list_head *head = &offload_base;
507 struct packet_offload *po1;
508
Eric Dumazetc53aa502012-11-16 08:08:23 +0000509 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000510
511 list_for_each_entry(po1, head, list) {
512 if (po == po1) {
513 list_del_rcu(&po->list);
514 goto out;
515 }
516 }
517
518 pr_warn("dev_remove_offload: %p not found\n", po);
519out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000520 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000521}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000522
523/**
524 * dev_remove_offload - remove packet offload handler
525 * @po: packet offload declaration
526 *
527 * Remove a packet offload handler that was previously added to the kernel
528 * offload handlers by dev_add_offload(). The passed &offload_type is
529 * removed from the kernel lists and can be freed or reused once this
530 * function returns.
531 *
532 * This call sleeps to guarantee that no CPU is looking at the packet
533 * type after return.
534 */
535void dev_remove_offload(struct packet_offload *po)
536{
537 __dev_remove_offload(po);
538
539 synchronize_net();
540}
541EXPORT_SYMBOL(dev_remove_offload);
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/******************************************************************************
544
545 Device Boot-time Settings Routines
546
547*******************************************************************************/
548
549/* Boot time configuration table */
550static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
551
552/**
553 * netdev_boot_setup_add - add new setup entry
554 * @name: name of the device
555 * @map: configured settings for the device
556 *
557 * Adds new setup entry to the dev_boot_setup list. The function
558 * returns 0 on error and 1 on success. This is a generic routine to
559 * all netdevices.
560 */
561static int netdev_boot_setup_add(char *name, struct ifmap *map)
562{
563 struct netdev_boot_setup *s;
564 int i;
565
566 s = dev_boot_setup;
567 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
568 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
569 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff2008-07-01 19:57:19 -0700570 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 memcpy(&s[i].map, map, sizeof(s[i].map));
572 break;
573 }
574 }
575
576 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
577}
578
579/**
580 * netdev_boot_setup_check - check boot time settings
581 * @dev: the netdevice
582 *
583 * Check boot time settings for the device.
584 * The found settings are set for the device to be used
585 * later in the device probing.
586 * Returns 0 if no settings found, 1 if they are.
587 */
588int netdev_boot_setup_check(struct net_device *dev)
589{
590 struct netdev_boot_setup *s = dev_boot_setup;
591 int i;
592
593 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
594 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff2008-07-01 19:57:19 -0700595 !strcmp(dev->name, s[i].name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 dev->irq = s[i].map.irq;
597 dev->base_addr = s[i].map.base_addr;
598 dev->mem_start = s[i].map.mem_start;
599 dev->mem_end = s[i].map.mem_end;
600 return 1;
601 }
602 }
603 return 0;
604}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700605EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606
607
608/**
609 * netdev_boot_base - get address from boot time settings
610 * @prefix: prefix for network device
611 * @unit: id for network device
612 *
613 * Check boot time settings for the base address of device.
614 * The found settings are set for the device to be used
615 * later in the device probing.
616 * Returns 0 if no settings found.
617 */
618unsigned long netdev_boot_base(const char *prefix, int unit)
619{
620 const struct netdev_boot_setup *s = dev_boot_setup;
621 char name[IFNAMSIZ];
622 int i;
623
624 sprintf(name, "%s%d", prefix, unit);
625
626 /*
627 * If device already registered then return base of 1
628 * to indicate not to probe for this interface
629 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700630 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return 1;
632
633 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
634 if (!strcmp(name, s[i].name))
635 return s[i].map.base_addr;
636 return 0;
637}
638
639/*
640 * Saves at boot time configured settings for any netdevice.
641 */
642int __init netdev_boot_setup(char *str)
643{
644 int ints[5];
645 struct ifmap map;
646
647 str = get_options(str, ARRAY_SIZE(ints), ints);
648 if (!str || !*str)
649 return 0;
650
651 /* Save settings */
652 memset(&map, 0, sizeof(map));
653 if (ints[0] > 0)
654 map.irq = ints[1];
655 if (ints[0] > 1)
656 map.base_addr = ints[2];
657 if (ints[0] > 2)
658 map.mem_start = ints[3];
659 if (ints[0] > 3)
660 map.mem_end = ints[4];
661
662 /* Add new entry to the list */
663 return netdev_boot_setup_add(str, &map);
664}
665
666__setup("netdev=", netdev_boot_setup);
667
668/*******************************************************************************
669
670 Device Interface Subroutines
671
672*******************************************************************************/
673
674/**
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200675 * dev_get_iflink - get 'iflink' value of a interface
676 * @dev: targeted interface
677 *
678 * Indicates the ifindex the interface is linked to.
679 * Physical interfaces have the same 'ifindex' and 'iflink' values.
680 */
681
682int dev_get_iflink(const struct net_device *dev)
683{
684 if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
685 return dev->netdev_ops->ndo_get_iflink(dev);
686
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +0200687 return dev->ifindex;
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200688}
689EXPORT_SYMBOL(dev_get_iflink);
690
691/**
Pravin B Shelarfc4099f2015-10-22 18:17:16 -0700692 * dev_fill_metadata_dst - Retrieve tunnel egress information.
693 * @dev: targeted interface
694 * @skb: The packet.
695 *
696 * For better visibility of tunnel traffic OVS needs to retrieve
697 * egress tunnel information for a packet. Following API allows
698 * user to get this info.
699 */
700int dev_fill_metadata_dst(struct net_device *dev, struct sk_buff *skb)
701{
702 struct ip_tunnel_info *info;
703
704 if (!dev->netdev_ops || !dev->netdev_ops->ndo_fill_metadata_dst)
705 return -EINVAL;
706
707 info = skb_tunnel_info_unclone(skb);
708 if (!info)
709 return -ENOMEM;
710 if (unlikely(!(info->mode & IP_TUNNEL_INFO_TX)))
711 return -EINVAL;
712
713 return dev->netdev_ops->ndo_fill_metadata_dst(dev, skb);
714}
715EXPORT_SYMBOL_GPL(dev_fill_metadata_dst);
716
717/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700719 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 * @name: name to find
721 *
722 * Find an interface by name. Must be called under RTNL semaphore
723 * or @dev_base_lock. If the name is found a pointer to the device
724 * is returned. If the name is not found then %NULL is returned. The
725 * reference counters are not incremented so the caller must be
726 * careful with locks.
727 */
728
Eric W. Biederman881d9662007-09-17 11:56:21 -0700729struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700731 struct net_device *dev;
732 struct hlist_head *head = dev_name_hash(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Sasha Levinb67bfe02013-02-27 17:06:00 -0800734 hlist_for_each_entry(dev, head, name_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 if (!strncmp(dev->name, name, IFNAMSIZ))
736 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700737
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 return NULL;
739}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700740EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
742/**
Eric Dumazet72c95282009-10-30 07:11:27 +0000743 * dev_get_by_name_rcu - find a device by its name
744 * @net: the applicable net namespace
745 * @name: name to find
746 *
747 * Find an interface by name.
748 * If the name is found a pointer to the device is returned.
749 * If the name is not found then %NULL is returned.
750 * The reference counters are not incremented so the caller must be
751 * careful with locks. The caller must hold RCU lock.
752 */
753
754struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
755{
Eric Dumazet72c95282009-10-30 07:11:27 +0000756 struct net_device *dev;
757 struct hlist_head *head = dev_name_hash(net, name);
758
Sasha Levinb67bfe02013-02-27 17:06:00 -0800759 hlist_for_each_entry_rcu(dev, head, name_hlist)
Eric Dumazet72c95282009-10-30 07:11:27 +0000760 if (!strncmp(dev->name, name, IFNAMSIZ))
761 return dev;
762
763 return NULL;
764}
765EXPORT_SYMBOL(dev_get_by_name_rcu);
766
767/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700769 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 * @name: name to find
771 *
772 * Find an interface by name. This can be called from any
773 * context and does its own locking. The returned handle has
774 * the usage count incremented and the caller must use dev_put() to
775 * release it when it is no longer needed. %NULL is returned if no
776 * matching device is found.
777 */
778
Eric W. Biederman881d9662007-09-17 11:56:21 -0700779struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
781 struct net_device *dev;
782
Eric Dumazet72c95282009-10-30 07:11:27 +0000783 rcu_read_lock();
784 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785 if (dev)
786 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000787 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 return dev;
789}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700790EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
792/**
793 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700794 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 * @ifindex: index of device
796 *
797 * Search for an interface by index. Returns %NULL if the device
798 * is not found or a pointer to the device. The device has not
799 * had its reference counter increased so the caller must be careful
800 * about locking. The caller must hold either the RTNL semaphore
801 * or @dev_base_lock.
802 */
803
Eric W. Biederman881d9662007-09-17 11:56:21 -0700804struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700806 struct net_device *dev;
807 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808
Sasha Levinb67bfe02013-02-27 17:06:00 -0800809 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810 if (dev->ifindex == ifindex)
811 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700812
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 return NULL;
814}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700815EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000817/**
818 * dev_get_by_index_rcu - find a device by its ifindex
819 * @net: the applicable net namespace
820 * @ifindex: index of device
821 *
822 * Search for an interface by index. Returns %NULL if the device
823 * is not found or a pointer to the device. The device has not
824 * had its reference counter increased so the caller must be careful
825 * about locking. The caller must hold RCU lock.
826 */
827
828struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
829{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000830 struct net_device *dev;
831 struct hlist_head *head = dev_index_hash(net, ifindex);
832
Sasha Levinb67bfe02013-02-27 17:06:00 -0800833 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000834 if (dev->ifindex == ifindex)
835 return dev;
836
837 return NULL;
838}
839EXPORT_SYMBOL(dev_get_by_index_rcu);
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842/**
843 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700844 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 * @ifindex: index of device
846 *
847 * Search for an interface by index. Returns NULL if the device
848 * is not found or a pointer to the device. The device returned has
849 * had a reference added and the pointer is safe until the user calls
850 * dev_put to indicate they have finished with it.
851 */
852
Eric W. Biederman881d9662007-09-17 11:56:21 -0700853struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854{
855 struct net_device *dev;
856
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000857 rcu_read_lock();
858 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 if (dev)
860 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000861 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 return dev;
863}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700864EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
866/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200867 * netdev_get_name - get a netdevice name, knowing its ifindex.
868 * @net: network namespace
869 * @name: a pointer to the buffer where the name will be stored.
870 * @ifindex: the ifindex of the interface to get the name from.
871 *
872 * The use of raw_seqcount_begin() and cond_resched() before
873 * retrying is required as we want to give the writers a chance
874 * to complete when CONFIG_PREEMPT is not set.
875 */
876int netdev_get_name(struct net *net, char *name, int ifindex)
877{
878 struct net_device *dev;
879 unsigned int seq;
880
881retry:
882 seq = raw_seqcount_begin(&devnet_rename_seq);
883 rcu_read_lock();
884 dev = dev_get_by_index_rcu(net, ifindex);
885 if (!dev) {
886 rcu_read_unlock();
887 return -ENODEV;
888 }
889
890 strcpy(name, dev->name);
891 rcu_read_unlock();
892 if (read_seqcount_retry(&devnet_rename_seq, seq)) {
893 cond_resched();
894 goto retry;
895 }
896
897 return 0;
898}
899
900/**
Eric Dumazet941666c2010-12-05 01:23:53 +0000901 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700902 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 * @type: media type of device
904 * @ha: hardware address
905 *
906 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -0800907 * is not found or a pointer to the device.
908 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +0000909 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910 * and the caller must therefore be careful about locking
911 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 */
913
Eric Dumazet941666c2010-12-05 01:23:53 +0000914struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
915 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916{
917 struct net_device *dev;
918
Eric Dumazet941666c2010-12-05 01:23:53 +0000919 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 if (dev->type == type &&
921 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700922 return dev;
923
924 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
Eric Dumazet941666c2010-12-05 01:23:53 +0000926EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -0300927
Eric W. Biederman881d9662007-09-17 11:56:21 -0700928struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700929{
930 struct net_device *dev;
931
932 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700933 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700934 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700935 return dev;
936
937 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700938}
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700939EXPORT_SYMBOL(__dev_getfirstbyhwtype);
940
Eric W. Biederman881d9662007-09-17 11:56:21 -0700941struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942{
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000943 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000945 rcu_read_lock();
946 for_each_netdev_rcu(net, dev)
947 if (dev->type == type) {
948 dev_hold(dev);
949 ret = dev;
950 break;
951 }
952 rcu_read_unlock();
953 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955EXPORT_SYMBOL(dev_getfirstbyhwtype);
956
957/**
WANG Cong6c555492014-09-11 15:35:09 -0700958 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700959 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960 * @if_flags: IFF_* values
961 * @mask: bitmask of bits in if_flags to check
962 *
963 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +0000964 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -0700965 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 */
967
WANG Cong6c555492014-09-11 15:35:09 -0700968struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
969 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Pavel Emelianov7562f872007-05-03 15:13:45 -0700971 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
WANG Cong6c555492014-09-11 15:35:09 -0700973 ASSERT_RTNL();
974
Pavel Emelianov7562f872007-05-03 15:13:45 -0700975 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -0700976 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -0700978 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979 break;
980 }
981 }
Pavel Emelianov7562f872007-05-03 15:13:45 -0700982 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983}
WANG Cong6c555492014-09-11 15:35:09 -0700984EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985
986/**
987 * dev_valid_name - check if name is okay for network device
988 * @name: name string
989 *
990 * Network device names need to be valid file names to
David S. Millerc7fa9d12006-08-15 16:34:13 -0700991 * to allow sysfs to work. We also disallow any kind of
992 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 */
David S. Miller95f050b2012-03-06 16:12:15 -0500994bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995{
David S. Millerc7fa9d12006-08-15 16:34:13 -0700996 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -0500997 return false;
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -0700998 if (strlen(name) >= IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -0500999 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001000 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -05001001 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001002
1003 while (*name) {
Matthew Thodea4176a92015-02-17 18:31:57 -06001004 if (*name == '/' || *name == ':' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -05001005 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -07001006 name++;
1007 }
David S. Miller95f050b2012-03-06 16:12:15 -05001008 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001010EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011
1012/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001013 * __dev_alloc_name - allocate a name for a device
1014 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001016 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 *
1018 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -07001019 * id. It scans list of devices to build up a free map, then chooses
1020 * the first empty slot. The caller must hold the dev_base or rtnl lock
1021 * while allocating the name and adding the device in order to avoid
1022 * duplicates.
1023 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1024 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 */
1026
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001027static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028{
1029 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 const char *p;
1031 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001032 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033 struct net_device *d;
1034
1035 p = strnchr(name, IFNAMSIZ-1, '%');
1036 if (p) {
1037 /*
1038 * Verify the string as this thing may have come from
1039 * the user. There must be either one "%d" and no other "%"
1040 * characters.
1041 */
1042 if (p[1] != 'd' || strchr(p + 2, '%'))
1043 return -EINVAL;
1044
1045 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001046 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 if (!inuse)
1048 return -ENOMEM;
1049
Eric W. Biederman881d9662007-09-17 11:56:21 -07001050 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 if (!sscanf(d->name, name, &i))
1052 continue;
1053 if (i < 0 || i >= max_netdevices)
1054 continue;
1055
1056 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001057 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058 if (!strncmp(buf, d->name, IFNAMSIZ))
1059 set_bit(i, inuse);
1060 }
1061
1062 i = find_first_zero_bit(inuse, max_netdevices);
1063 free_page((unsigned long) inuse);
1064 }
1065
Octavian Purdilad9031022009-11-18 02:36:59 +00001066 if (buf != name)
1067 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001068 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001069 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
1071 /* It is possible to run out of possible slots
1072 * when the name is long and there isn't enough space left
1073 * for the digits, or if all bits are used.
1074 */
1075 return -ENFILE;
1076}
1077
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001078/**
1079 * dev_alloc_name - allocate a name for a device
1080 * @dev: device
1081 * @name: name format string
1082 *
1083 * Passed a format string - eg "lt%d" it will try and find a suitable
1084 * id. It scans list of devices to build up a free map, then chooses
1085 * the first empty slot. The caller must hold the dev_base or rtnl lock
1086 * while allocating the name and adding the device in order to avoid
1087 * duplicates.
1088 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1089 * Returns the number of the unit assigned or a negative errno code.
1090 */
1091
1092int dev_alloc_name(struct net_device *dev, const char *name)
1093{
1094 char buf[IFNAMSIZ];
1095 struct net *net;
1096 int ret;
1097
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001098 BUG_ON(!dev_net(dev));
1099 net = dev_net(dev);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001100 ret = __dev_alloc_name(net, name, buf);
1101 if (ret >= 0)
1102 strlcpy(dev->name, buf, IFNAMSIZ);
1103 return ret;
1104}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001105EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001106
Gao feng828de4f2012-09-13 20:58:27 +00001107static int dev_alloc_name_ns(struct net *net,
1108 struct net_device *dev,
1109 const char *name)
Octavian Purdilad9031022009-11-18 02:36:59 +00001110{
Gao feng828de4f2012-09-13 20:58:27 +00001111 char buf[IFNAMSIZ];
1112 int ret;
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001113
Gao feng828de4f2012-09-13 20:58:27 +00001114 ret = __dev_alloc_name(net, name, buf);
1115 if (ret >= 0)
1116 strlcpy(dev->name, buf, IFNAMSIZ);
1117 return ret;
1118}
1119
Cong Wang3e2ab0c2017-10-13 11:58:53 -07001120int dev_get_valid_name(struct net *net, struct net_device *dev,
1121 const char *name)
Gao feng828de4f2012-09-13 20:58:27 +00001122{
1123 BUG_ON(!net);
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001124
Octavian Purdilad9031022009-11-18 02:36:59 +00001125 if (!dev_valid_name(name))
1126 return -EINVAL;
1127
Jiri Pirko1c5cae82011-04-30 01:21:32 +00001128 if (strchr(name, '%'))
Gao feng828de4f2012-09-13 20:58:27 +00001129 return dev_alloc_name_ns(net, dev, name);
Octavian Purdilad9031022009-11-18 02:36:59 +00001130 else if (__dev_get_by_name(net, name))
1131 return -EEXIST;
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001132 else if (dev->name != name)
1133 strlcpy(dev->name, name, IFNAMSIZ);
Octavian Purdilad9031022009-11-18 02:36:59 +00001134
1135 return 0;
1136}
Cong Wang3e2ab0c2017-10-13 11:58:53 -07001137EXPORT_SYMBOL(dev_get_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001138
1139/**
1140 * dev_change_name - change name of a device
1141 * @dev: device
1142 * @newname: name (or format string) must be at least IFNAMSIZ
1143 *
1144 * Change name of a device, can pass format strings "eth%d".
1145 * for wildcarding.
1146 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001147int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148{
Tom Gundersen238fa362014-07-14 16:37:23 +02001149 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001150 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001152 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001153 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
1155 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001156 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001158 net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 if (dev->flags & IFF_UP)
1160 return -EBUSY;
1161
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001162 write_seqcount_begin(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001163
1164 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001165 write_seqcount_end(&devnet_rename_seq);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001166 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001167 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001168
Herbert Xufcc5a032007-07-30 17:03:38 -07001169 memcpy(oldname, dev->name, IFNAMSIZ);
1170
Gao feng828de4f2012-09-13 20:58:27 +00001171 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001172 if (err < 0) {
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001173 write_seqcount_end(&devnet_rename_seq);
Octavian Purdilad9031022009-11-18 02:36:59 +00001174 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001177 if (oldname[0] && !strchr(oldname, '%'))
1178 netdev_info(dev, "renamed from %s\n", oldname);
1179
Tom Gundersen238fa362014-07-14 16:37:23 +02001180 old_assign_type = dev->name_assign_type;
1181 dev->name_assign_type = NET_NAME_RENAMED;
1182
Herbert Xufcc5a032007-07-30 17:03:38 -07001183rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001184 ret = device_rename(&dev->dev, dev->name);
1185 if (ret) {
1186 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001187 dev->name_assign_type = old_assign_type;
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001188 write_seqcount_end(&devnet_rename_seq);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001189 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001190 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001191
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001192 write_seqcount_end(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001193
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001194 netdev_adjacent_rename_links(dev, oldname);
1195
Herbert Xu7f988ea2007-07-30 16:35:46 -07001196 write_lock_bh(&dev_base_lock);
Eric Dumazet372b2312011-05-17 13:56:59 -04001197 hlist_del_rcu(&dev->name_hlist);
Eric Dumazet72c95282009-10-30 07:11:27 +00001198 write_unlock_bh(&dev_base_lock);
1199
1200 synchronize_rcu();
1201
1202 write_lock_bh(&dev_base_lock);
1203 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -07001204 write_unlock_bh(&dev_base_lock);
1205
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001206 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001207 ret = notifier_to_errno(ret);
1208
1209 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001210 /* err >= 0 after dev_alloc_name() or stores the first errno */
1211 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001212 err = ret;
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001213 write_seqcount_begin(&devnet_rename_seq);
Herbert Xufcc5a032007-07-30 17:03:38 -07001214 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001215 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001216 dev->name_assign_type = old_assign_type;
1217 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001218 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001219 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001220 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001221 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001222 }
1223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 return err;
1226}
1227
1228/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001229 * dev_set_alias - change ifalias of a device
1230 * @dev: device
1231 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001232 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001233 *
1234 * Set ifalias for a device,
1235 */
1236int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1237{
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001238 char *new_ifalias;
1239
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001240 ASSERT_RTNL();
1241
1242 if (len >= IFALIASZ)
1243 return -EINVAL;
1244
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001245 if (!len) {
Sachin Kamat388dfc22012-11-20 00:57:04 +00001246 kfree(dev->ifalias);
1247 dev->ifalias = NULL;
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001248 return 0;
1249 }
1250
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001251 new_ifalias = krealloc(dev->ifalias, len + 1, GFP_KERNEL);
1252 if (!new_ifalias)
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001253 return -ENOMEM;
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001254 dev->ifalias = new_ifalias;
Alexander Potapenkod2f459e2017-06-06 15:56:54 +02001255 memcpy(dev->ifalias, alias, len);
1256 dev->ifalias[len] = 0;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001257
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001258 return len;
1259}
1260
1261
1262/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001263 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001264 * @dev: device to cause notification
1265 *
1266 * Called to indicate a device has changed features.
1267 */
1268void netdev_features_change(struct net_device *dev)
1269{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001270 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001271}
1272EXPORT_SYMBOL(netdev_features_change);
1273
1274/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 * netdev_state_change - device changes state
1276 * @dev: device to cause notification
1277 *
1278 * Called to indicate a device has changed state. This function calls
1279 * the notifier chains for netdev_chain and sends a NEWLINK message
1280 * to the routing socket.
1281 */
1282void netdev_state_change(struct net_device *dev)
1283{
1284 if (dev->flags & IFF_UP) {
Loic Prylli5495119462014-07-01 21:39:43 -07001285 struct netdev_notifier_change_info change_info;
1286
1287 change_info.flags_changed = 0;
1288 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
1289 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001290 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 }
1292}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001293EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
Amerigo Wangee89bab2012-08-09 22:14:56 +00001295/**
1296 * netdev_notify_peers - notify network peers about existence of @dev
1297 * @dev: network device
1298 *
1299 * Generate traffic such that interested network peers are aware of
1300 * @dev, such as by generating a gratuitous ARP. This may be used when
1301 * a device wants to inform the rest of the network about some sort of
1302 * reconfiguration such as a failover event or virtual machine
1303 * migration.
1304 */
1305void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001306{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001307 rtnl_lock();
1308 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
Vlad Yasevich6c548e92017-03-14 08:58:08 -04001309 call_netdevice_notifiers(NETDEV_RESEND_IGMP, dev);
Amerigo Wangee89bab2012-08-09 22:14:56 +00001310 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001311}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001312EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001313
Patrick McHardybd380812010-02-26 06:34:53 +00001314static int __dev_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001316 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001317 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001319 ASSERT_RTNL();
1320
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 if (!netif_device_present(dev))
1322 return -ENODEV;
1323
Neil Hormanca99ca12013-02-05 08:05:43 +00001324 /* Block netpoll from trying to do any rx path servicing.
1325 * If we don't do this there is a chance ndo_poll_controller
1326 * or ndo_poll may be running while we open the device
1327 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001328 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001329
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001330 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1331 ret = notifier_to_errno(ret);
1332 if (ret)
1333 return ret;
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001336
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001337 if (ops->ndo_validate_addr)
1338 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001339
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001340 if (!ret && ops->ndo_open)
1341 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Eric W. Biederman66b55522014-03-27 15:39:03 -07001343 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001344
Jeff Garzikbada3392007-10-23 20:19:37 -07001345 if (ret)
1346 clear_bit(__LINK_STATE_START, &dev->state);
1347 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001349 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001351 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 return ret;
1355}
Patrick McHardybd380812010-02-26 06:34:53 +00001356
1357/**
1358 * dev_open - prepare an interface for use.
1359 * @dev: device to open
1360 *
1361 * Takes a device from down to up state. The device's private open
1362 * function is invoked and then the multicast lists are loaded. Finally
1363 * the device is moved into the up state and a %NETDEV_UP message is
1364 * sent to the netdev notifier chain.
1365 *
1366 * Calling this function on an active interface is a nop. On a failure
1367 * a negative errno code is returned.
1368 */
1369int dev_open(struct net_device *dev)
1370{
1371 int ret;
1372
Patrick McHardybd380812010-02-26 06:34:53 +00001373 if (dev->flags & IFF_UP)
1374 return 0;
1375
Patrick McHardybd380812010-02-26 06:34:53 +00001376 ret = __dev_open(dev);
1377 if (ret < 0)
1378 return ret;
1379
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001380 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001381 call_netdevice_notifiers(NETDEV_UP, dev);
1382
1383 return ret;
1384}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001385EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386
Octavian Purdila44345722010-12-13 12:44:07 +00001387static int __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
Octavian Purdila44345722010-12-13 12:44:07 +00001389 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001390
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001391 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001392 might_sleep();
1393
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001394 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001395 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001396 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001397
Octavian Purdila44345722010-12-13 12:44:07 +00001398 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Octavian Purdila44345722010-12-13 12:44:07 +00001400 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Octavian Purdila44345722010-12-13 12:44:07 +00001402 /* Synchronize to scheduled poll. We cannot touch poll list, it
1403 * can be even on different cpu. So just clear netif_running().
1404 *
1405 * dev->stop() will invoke napi_disable() on all of it's
1406 * napi_struct instances on this device.
1407 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001408 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001409 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410
Octavian Purdila44345722010-12-13 12:44:07 +00001411 dev_deactivate_many(head);
1412
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001413 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001414 const struct net_device_ops *ops = dev->netdev_ops;
1415
1416 /*
1417 * Call the device specific close. This cannot fail.
1418 * Only if device is UP
1419 *
1420 * We allow it to be called even after a DETACH hot-plug
1421 * event.
1422 */
1423 if (ops->ndo_stop)
1424 ops->ndo_stop(dev);
1425
Octavian Purdila44345722010-12-13 12:44:07 +00001426 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001427 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001428 }
1429
1430 return 0;
1431}
1432
1433static int __dev_close(struct net_device *dev)
1434{
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001435 int retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001436 LIST_HEAD(single);
1437
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001438 list_add(&dev->close_list, &single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001439 retval = __dev_close_many(&single);
1440 list_del(&single);
Neil Hormanca99ca12013-02-05 08:05:43 +00001441
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001442 return retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001443}
1444
David S. Miller99c4a262015-03-18 22:52:33 -04001445int dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001446{
1447 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001448
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001449 /* Remove the devices that don't need to be closed */
1450 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001451 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001452 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001453
1454 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001455
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001456 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001457 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001458 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001459 if (unlink)
1460 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 return 0;
1464}
David S. Miller99c4a262015-03-18 22:52:33 -04001465EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001466
1467/**
1468 * dev_close - shutdown an interface.
1469 * @dev: device to shutdown
1470 *
1471 * This function moves an active device into down state. A
1472 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1473 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1474 * chain.
1475 */
1476int dev_close(struct net_device *dev)
1477{
Eric Dumazete14a5992011-05-10 12:26:06 -07001478 if (dev->flags & IFF_UP) {
1479 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001480
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001481 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001482 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001483 list_del(&single);
1484 }
dingtianhongda6e3782013-05-27 19:53:31 +00001485 return 0;
Patrick McHardybd380812010-02-26 06:34:53 +00001486}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001487EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488
1489
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001490/**
1491 * dev_disable_lro - disable Large Receive Offload on a device
1492 * @dev: device
1493 *
1494 * Disable Large Receive Offload (LRO) on a net device. Must be
1495 * called under RTNL. This is needed if received packets may be
1496 * forwarded to another interface.
1497 */
1498void dev_disable_lro(struct net_device *dev)
1499{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001500 struct net_device *lower_dev;
1501 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001502
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001503 dev->wanted_features &= ~NETIF_F_LRO;
1504 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001505
Michał Mirosław22d59692011-04-21 12:42:15 +00001506 if (unlikely(dev->features & NETIF_F_LRO))
1507 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001508
1509 netdev_for_each_lower_dev(dev, lower_dev, iter)
1510 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001511}
1512EXPORT_SYMBOL(dev_disable_lro);
1513
Jiri Pirko351638e2013-05-28 01:30:21 +00001514static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1515 struct net_device *dev)
1516{
1517 struct netdev_notifier_info info;
1518
1519 netdev_notifier_info_init(&info, dev);
1520 return nb->notifier_call(nb, val, &info);
1521}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001522
Eric W. Biederman881d9662007-09-17 11:56:21 -07001523static int dev_boot_phase = 1;
1524
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525/**
1526 * register_netdevice_notifier - register a network notifier block
1527 * @nb: notifier
1528 *
1529 * Register a notifier to be called when network device events occur.
1530 * The notifier passed is linked into the kernel structures and must
1531 * not be reused until it has been unregistered. A negative errno code
1532 * is returned on a failure.
1533 *
1534 * When registered all registration and up events are replayed
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001535 * to the new notifier to allow device to have a race free
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 * view of the network device list.
1537 */
1538
1539int register_netdevice_notifier(struct notifier_block *nb)
1540{
1541 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001542 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001543 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 int err;
1545
1546 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001547 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001548 if (err)
1549 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001550 if (dev_boot_phase)
1551 goto unlock;
1552 for_each_net(net) {
1553 for_each_netdev(net, dev) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001554 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001555 err = notifier_to_errno(err);
1556 if (err)
1557 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Eric W. Biederman881d9662007-09-17 11:56:21 -07001559 if (!(dev->flags & IFF_UP))
1560 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001561
Jiri Pirko351638e2013-05-28 01:30:21 +00001562 call_netdevice_notifier(nb, NETDEV_UP, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001565
1566unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 rtnl_unlock();
1568 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001569
1570rollback:
1571 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001572 for_each_net(net) {
1573 for_each_netdev(net, dev) {
1574 if (dev == last)
RongQing.Li8f891482011-11-30 23:43:07 -05001575 goto outroll;
Herbert Xufcc5a032007-07-30 17:03:38 -07001576
Eric W. Biederman881d9662007-09-17 11:56:21 -07001577 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001578 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1579 dev);
1580 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001581 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001582 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001583 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001584 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001585
RongQing.Li8f891482011-11-30 23:43:07 -05001586outroll:
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001587 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001588 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001590EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
1592/**
1593 * unregister_netdevice_notifier - unregister a network notifier block
1594 * @nb: notifier
1595 *
1596 * Unregister a notifier previously registered by
1597 * register_netdevice_notifier(). The notifier is unlinked into the
1598 * kernel structures and may then be reused. A negative errno code
1599 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001600 *
1601 * After unregistering unregister and down device events are synthesized
1602 * for all devices on the device list to the removed notifier to remove
1603 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 */
1605
1606int unregister_netdevice_notifier(struct notifier_block *nb)
1607{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001608 struct net_device *dev;
1609 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001610 int err;
1611
1612 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001613 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001614 if (err)
1615 goto unlock;
1616
1617 for_each_net(net) {
1618 for_each_netdev(net, dev) {
1619 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001620 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1621 dev);
1622 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001623 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001624 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001625 }
1626 }
1627unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001628 rtnl_unlock();
1629 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001631EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
1633/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001634 * call_netdevice_notifiers_info - call all network notifier blocks
1635 * @val: value passed unmodified to notifier function
1636 * @dev: net_device pointer passed unmodified to notifier function
1637 * @info: notifier information data
1638 *
1639 * Call all network notifier blocks. Parameters and return value
1640 * are as for raw_notifier_call_chain().
1641 */
1642
stephen hemminger1d143d92013-12-29 14:01:29 -08001643static int call_netdevice_notifiers_info(unsigned long val,
1644 struct net_device *dev,
1645 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00001646{
1647 ASSERT_RTNL();
1648 netdev_notifier_info_init(info, dev);
1649 return raw_notifier_call_chain(&netdev_chain, val, info);
1650}
Jiri Pirko351638e2013-05-28 01:30:21 +00001651
1652/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 * call_netdevice_notifiers - call all network notifier blocks
1654 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001655 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 *
1657 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001658 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 */
1660
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001661int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662{
Jiri Pirko351638e2013-05-28 01:30:21 +00001663 struct netdev_notifier_info info;
1664
1665 return call_netdevice_notifiers_info(val, dev, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
stephen hemmingeredf947f2011-03-24 13:24:01 +00001667EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668
Pablo Neira1cf519002015-05-13 18:19:37 +02001669#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +02001670static struct static_key ingress_needed __read_mostly;
1671
1672void net_inc_ingress_queue(void)
1673{
1674 static_key_slow_inc(&ingress_needed);
1675}
1676EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
1677
1678void net_dec_ingress_queue(void)
1679{
1680 static_key_slow_dec(&ingress_needed);
1681}
1682EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
1683#endif
1684
Daniel Borkmann1f211a12016-01-07 22:29:47 +01001685#ifdef CONFIG_NET_EGRESS
1686static struct static_key egress_needed __read_mostly;
1687
1688void net_inc_egress_queue(void)
1689{
1690 static_key_slow_inc(&egress_needed);
1691}
1692EXPORT_SYMBOL_GPL(net_inc_egress_queue);
1693
1694void net_dec_egress_queue(void)
1695{
1696 static_key_slow_dec(&egress_needed);
1697}
1698EXPORT_SYMBOL_GPL(net_dec_egress_queue);
1699#endif
1700
Ingo Molnarc5905af2012-02-24 08:31:31 +01001701static struct static_key netstamp_needed __read_mostly;
Eric Dumazetb90e5792011-11-28 11:16:50 +00001702#ifdef HAVE_JUMP_LABEL
Eric Dumazetb90e5792011-11-28 11:16:50 +00001703static atomic_t netstamp_needed_deferred;
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001704static atomic_t netstamp_wanted;
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001705static void netstamp_clear(struct work_struct *work)
1706{
1707 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001708 int wanted;
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001709
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001710 wanted = atomic_add_return(deferred, &netstamp_wanted);
1711 if (wanted > 0)
1712 static_key_enable(&netstamp_needed);
1713 else
1714 static_key_disable(&netstamp_needed);
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001715}
1716static DECLARE_WORK(netstamp_work, netstamp_clear);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001717#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719void net_enable_timestamp(void)
1720{
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001721#ifdef HAVE_JUMP_LABEL
1722 int wanted;
1723
1724 while (1) {
1725 wanted = atomic_read(&netstamp_wanted);
1726 if (wanted <= 0)
1727 break;
1728 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted + 1) == wanted)
1729 return;
1730 }
1731 atomic_inc(&netstamp_needed_deferred);
1732 schedule_work(&netstamp_work);
1733#else
Ingo Molnarc5905af2012-02-24 08:31:31 +01001734 static_key_slow_inc(&netstamp_needed);
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001735#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001737EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738
1739void net_disable_timestamp(void)
1740{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001741#ifdef HAVE_JUMP_LABEL
Eric Dumazet3d87dce2017-03-01 14:28:39 -08001742 int wanted;
1743
1744 while (1) {
1745 wanted = atomic_read(&netstamp_wanted);
1746 if (wanted <= 1)
1747 break;
1748 if (atomic_cmpxchg(&netstamp_wanted, wanted, wanted - 1) == wanted)
1749 return;
1750 }
1751 atomic_dec(&netstamp_needed_deferred);
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001752 schedule_work(&netstamp_work);
1753#else
Ingo Molnarc5905af2012-02-24 08:31:31 +01001754 static_key_slow_dec(&netstamp_needed);
Eric Dumazetd5b6fd72017-02-02 10:31:35 -08001755#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001757EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758
Eric Dumazet3b098e22010-05-15 23:57:10 -07001759static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760{
Eric Dumazet588f0332011-11-15 04:12:55 +00001761 skb->tstamp.tv64 = 0;
Ingo Molnarc5905af2012-02-24 08:31:31 +01001762 if (static_key_false(&netstamp_needed))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001763 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765
Eric Dumazet588f0332011-11-15 04:12:55 +00001766#define net_timestamp_check(COND, SKB) \
Ingo Molnarc5905af2012-02-24 08:31:31 +01001767 if (static_key_false(&netstamp_needed)) { \
Eric Dumazet588f0332011-11-15 04:12:55 +00001768 if ((COND) && !(SKB)->tstamp.tv64) \
1769 __net_timestamp(SKB); \
1770 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07001771
Nikolay Aleksandrovf4b05d22016-04-28 17:59:28 +02001772bool is_skb_forwardable(const struct net_device *dev, const struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001773{
1774 unsigned int len;
1775
1776 if (!(dev->flags & IFF_UP))
1777 return false;
1778
1779 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1780 if (skb->len <= len)
1781 return true;
1782
1783 /* if TSO is enabled, we don't care about the length as the packet
1784 * could be forwarded without being segmented before
1785 */
1786 if (skb_is_gso(skb))
1787 return true;
1788
1789 return false;
1790}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001791EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001792
Herbert Xua0265d22014-04-17 13:45:03 +08001793int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1794{
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001795 int ret = ____dev_forward_skb(dev, skb);
1796
1797 if (likely(!ret)) {
1798 skb->protocol = eth_type_trans(skb, dev);
1799 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08001800 }
1801
Martin KaFai Lau4e3264d2016-11-09 15:36:33 -08001802 return ret;
Herbert Xua0265d22014-04-17 13:45:03 +08001803}
1804EXPORT_SYMBOL_GPL(__dev_forward_skb);
1805
Arnd Bergmann44540962009-11-26 06:07:08 +00001806/**
1807 * dev_forward_skb - loopback an skb to another netif
1808 *
1809 * @dev: destination network device
1810 * @skb: buffer to forward
1811 *
1812 * return values:
1813 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07001814 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00001815 *
1816 * dev_forward_skb can be used for injecting an skb from the
1817 * start_xmit function of one device into the receive queue
1818 * of another device.
1819 *
1820 * The receiving device may be in another namespace, so
1821 * we have to clear all information in the skb that could
1822 * impact namespace isolation.
1823 */
1824int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1825{
Herbert Xua0265d22014-04-17 13:45:03 +08001826 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00001827}
1828EXPORT_SYMBOL_GPL(dev_forward_skb);
1829
Changli Gao71d9dec2010-12-15 19:57:25 +00001830static inline int deliver_skb(struct sk_buff *skb,
1831 struct packet_type *pt_prev,
1832 struct net_device *orig_dev)
1833{
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00001834 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
1835 return -ENOMEM;
Changli Gao71d9dec2010-12-15 19:57:25 +00001836 atomic_inc(&skb->users);
1837 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1838}
1839
Salam Noureddine7866a622015-01-27 11:35:48 -08001840static inline void deliver_ptype_list_skb(struct sk_buff *skb,
1841 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001842 struct net_device *orig_dev,
1843 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08001844 struct list_head *ptype_list)
1845{
1846 struct packet_type *ptype, *pt_prev = *pt;
1847
1848 list_for_each_entry_rcu(ptype, ptype_list, list) {
1849 if (ptype->type != type)
1850 continue;
1851 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001852 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08001853 pt_prev = ptype;
1854 }
1855 *pt = pt_prev;
1856}
1857
Eric Leblondc0de08d2012-08-16 22:02:58 +00001858static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1859{
Eric Leblonda3d744e2012-11-06 02:10:10 +00001860 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001861 return false;
1862
1863 if (ptype->id_match)
1864 return ptype->id_match(ptype, skb->sk);
1865 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
1866 return true;
1867
1868 return false;
1869}
1870
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871/*
1872 * Support routine. Sends outgoing frames to any network
1873 * taps currently in use.
1874 */
1875
David Ahern74b20582016-05-10 11:19:50 -07001876void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877{
1878 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00001879 struct sk_buff *skb2 = NULL;
1880 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08001881 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001882
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08001884again:
1885 list_for_each_entry_rcu(ptype, ptype_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 /* Never send packets back to the socket
1887 * they originated from - MvS (miquels@drinkel.ow.org)
1888 */
Salam Noureddine7866a622015-01-27 11:35:48 -08001889 if (skb_loop_sk(ptype, skb))
1890 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00001891
Salam Noureddine7866a622015-01-27 11:35:48 -08001892 if (pt_prev) {
1893 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00001894 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08001895 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 }
Salam Noureddine7866a622015-01-27 11:35:48 -08001897
1898 /* need to clone skb, done only once */
1899 skb2 = skb_clone(skb, GFP_ATOMIC);
1900 if (!skb2)
1901 goto out_unlock;
1902
1903 net_timestamp_set(skb2);
1904
1905 /* skb->nh should be correctly
1906 * set by sender, so that the second statement is
1907 * just protection against buggy protocols.
1908 */
1909 skb_reset_mac_header(skb2);
1910
1911 if (skb_network_header(skb2) < skb2->data ||
1912 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
1913 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
1914 ntohs(skb2->protocol),
1915 dev->name);
1916 skb_reset_network_header(skb2);
1917 }
1918
1919 skb2->transport_header = skb2->network_header;
1920 skb2->pkt_type = PACKET_OUTGOING;
1921 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
Salam Noureddine7866a622015-01-27 11:35:48 -08001923
1924 if (ptype_list == &ptype_all) {
1925 ptype_list = &dev->ptype_all;
1926 goto again;
1927 }
1928out_unlock:
Changli Gao71d9dec2010-12-15 19:57:25 +00001929 if (pt_prev)
1930 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 rcu_read_unlock();
1932}
David Ahern74b20582016-05-10 11:19:50 -07001933EXPORT_SYMBOL_GPL(dev_queue_xmit_nit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
Ben Hutchings2c530402012-07-10 10:55:09 +00001935/**
1936 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00001937 * @dev: Network device
1938 * @txq: number of queues available
1939 *
1940 * If real_num_tx_queues is changed the tc mappings may no longer be
1941 * valid. To resolve this verify the tc mapping remains valid and if
1942 * not NULL the mapping. With no priorities mapping to this
1943 * offset/count pair it will no longer be used. In the worst case TC0
1944 * is invalid nothing can be done so disable priority mappings. If is
1945 * expected that drivers will fix this mapping if they can before
1946 * calling netif_set_real_num_tx_queues.
1947 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00001948static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00001949{
1950 int i;
1951 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
1952
1953 /* If TC0 is invalidated disable TC mapping */
1954 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001955 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00001956 dev->num_tc = 0;
1957 return;
1958 }
1959
1960 /* Invalidated prio to tc mappings set to TC0 */
1961 for (i = 1; i < TC_BITMASK + 1; i++) {
1962 int q = netdev_get_prio_tc_map(dev, i);
1963
1964 tc = &dev->tc_to_txq[q];
1965 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001966 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
1967 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00001968 netdev_set_prio_tc_map(dev, i, 0);
1969 }
1970 }
1971}
1972
Alexander Duyck537c00d2013-01-10 08:57:02 +00001973#ifdef CONFIG_XPS
1974static DEFINE_MUTEX(xps_map_mutex);
1975#define xmap_dereference(P) \
1976 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
1977
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001978static struct xps_map *remove_xps_queue(struct xps_dev_maps *dev_maps,
1979 int cpu, u16 index)
1980{
1981 struct xps_map *map = NULL;
1982 int pos;
1983
1984 if (dev_maps)
1985 map = xmap_dereference(dev_maps->cpu_map[cpu]);
1986
1987 for (pos = 0; map && pos < map->len; pos++) {
1988 if (map->queues[pos] == index) {
1989 if (map->len > 1) {
1990 map->queues[pos] = map->queues[--map->len];
1991 } else {
1992 RCU_INIT_POINTER(dev_maps->cpu_map[cpu], NULL);
1993 kfree_rcu(map, rcu);
1994 map = NULL;
1995 }
1996 break;
1997 }
1998 }
1999
2000 return map;
2001}
2002
Alexander Duyck024e9672013-01-10 08:57:46 +00002003static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002004{
2005 struct xps_dev_maps *dev_maps;
Alexander Duyck024e9672013-01-10 08:57:46 +00002006 int cpu, i;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002007 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002008
2009 mutex_lock(&xps_map_mutex);
2010 dev_maps = xmap_dereference(dev->xps_maps);
2011
2012 if (!dev_maps)
2013 goto out_no_maps;
2014
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002015 for_each_possible_cpu(cpu) {
Alexander Duyck024e9672013-01-10 08:57:46 +00002016 for (i = index; i < dev->num_tx_queues; i++) {
2017 if (!remove_xps_queue(dev_maps, cpu, i))
2018 break;
2019 }
2020 if (i == dev->num_tx_queues)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002021 active = true;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002022 }
2023
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00002024 if (!active) {
Alexander Duyck537c00d2013-01-10 08:57:02 +00002025 RCU_INIT_POINTER(dev->xps_maps, NULL);
2026 kfree_rcu(dev_maps, rcu);
2027 }
2028
Alexander Duyck024e9672013-01-10 08:57:46 +00002029 for (i = index; i < dev->num_tx_queues; i++)
2030 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, i),
2031 NUMA_NO_NODE);
2032
Alexander Duyck537c00d2013-01-10 08:57:02 +00002033out_no_maps:
2034 mutex_unlock(&xps_map_mutex);
2035}
2036
Alexander Duyck01c5f862013-01-10 08:57:35 +00002037static struct xps_map *expand_xps_map(struct xps_map *map,
2038 int cpu, u16 index)
2039{
2040 struct xps_map *new_map;
2041 int alloc_len = XPS_MIN_MAP_ALLOC;
2042 int i, pos;
2043
2044 for (pos = 0; map && pos < map->len; pos++) {
2045 if (map->queues[pos] != index)
2046 continue;
2047 return map;
2048 }
2049
2050 /* Need to add queue to this CPU's existing map */
2051 if (map) {
2052 if (pos < map->alloc_len)
2053 return map;
2054
2055 alloc_len = map->alloc_len * 2;
2056 }
2057
2058 /* Need to allocate new map to store queue on this CPU's map */
2059 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
2060 cpu_to_node(cpu));
2061 if (!new_map)
2062 return NULL;
2063
2064 for (i = 0; i < pos; i++)
2065 new_map->queues[i] = map->queues[i];
2066 new_map->alloc_len = alloc_len;
2067 new_map->len = pos;
2068
2069 return new_map;
2070}
2071
Michael S. Tsirkin35735402013-10-02 09:14:06 +03002072int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2073 u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002074{
Alexander Duyck01c5f862013-01-10 08:57:35 +00002075 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002076 struct xps_map *map, *new_map;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002077 int maps_sz = max_t(unsigned int, XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002078 int cpu, numa_node_id = -2;
2079 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002080
2081 mutex_lock(&xps_map_mutex);
2082
2083 dev_maps = xmap_dereference(dev->xps_maps);
2084
Alexander Duyck01c5f862013-01-10 08:57:35 +00002085 /* allocate memory for queue storage */
2086 for_each_online_cpu(cpu) {
2087 if (!cpumask_test_cpu(cpu, mask))
2088 continue;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002089
Alexander Duyck01c5f862013-01-10 08:57:35 +00002090 if (!new_dev_maps)
2091 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002092 if (!new_dev_maps) {
2093 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002094 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002095 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002096
2097 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2098 NULL;
2099
2100 map = expand_xps_map(map, cpu, index);
2101 if (!map)
2102 goto error;
2103
2104 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
2105 }
2106
2107 if (!new_dev_maps)
2108 goto out_no_new_maps;
2109
2110 for_each_possible_cpu(cpu) {
2111 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu)) {
2112 /* add queue to CPU maps */
2113 int pos = 0;
2114
2115 map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2116 while ((pos < map->len) && (map->queues[pos] != index))
2117 pos++;
2118
2119 if (pos == map->len)
2120 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002121#ifdef CONFIG_NUMA
Alexander Duyck537c00d2013-01-10 08:57:02 +00002122 if (numa_node_id == -2)
2123 numa_node_id = cpu_to_node(cpu);
2124 else if (numa_node_id != cpu_to_node(cpu))
2125 numa_node_id = -1;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002126#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002127 } else if (dev_maps) {
2128 /* fill in the new device map from the old device map */
2129 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2130 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002131 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002132
Alexander Duyck537c00d2013-01-10 08:57:02 +00002133 }
2134
Alexander Duyck01c5f862013-01-10 08:57:35 +00002135 rcu_assign_pointer(dev->xps_maps, new_dev_maps);
2136
Alexander Duyck537c00d2013-01-10 08:57:02 +00002137 /* Cleanup old maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002138 if (dev_maps) {
2139 for_each_possible_cpu(cpu) {
2140 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2141 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2142 if (map && map != new_map)
2143 kfree_rcu(map, rcu);
2144 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002145
Alexander Duyck537c00d2013-01-10 08:57:02 +00002146 kfree_rcu(dev_maps, rcu);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002147 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002148
Alexander Duyck01c5f862013-01-10 08:57:35 +00002149 dev_maps = new_dev_maps;
2150 active = true;
2151
2152out_no_new_maps:
2153 /* update Tx queue numa node */
Alexander Duyck537c00d2013-01-10 08:57:02 +00002154 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2155 (numa_node_id >= 0) ? numa_node_id :
2156 NUMA_NO_NODE);
2157
Alexander Duyck01c5f862013-01-10 08:57:35 +00002158 if (!dev_maps)
2159 goto out_no_maps;
2160
2161 /* removes queue from unused CPUs */
2162 for_each_possible_cpu(cpu) {
2163 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu))
2164 continue;
2165
2166 if (remove_xps_queue(dev_maps, cpu, index))
2167 active = true;
2168 }
2169
2170 /* free map if not active */
2171 if (!active) {
2172 RCU_INIT_POINTER(dev->xps_maps, NULL);
2173 kfree_rcu(dev_maps, rcu);
2174 }
2175
2176out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002177 mutex_unlock(&xps_map_mutex);
2178
2179 return 0;
2180error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002181 /* remove any maps that we added */
2182 for_each_possible_cpu(cpu) {
2183 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2184 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2185 NULL;
2186 if (new_map && new_map != map)
2187 kfree(new_map);
2188 }
2189
Alexander Duyck537c00d2013-01-10 08:57:02 +00002190 mutex_unlock(&xps_map_mutex);
2191
Alexander Duyck537c00d2013-01-10 08:57:02 +00002192 kfree(new_dev_maps);
2193 return -ENOMEM;
2194}
2195EXPORT_SYMBOL(netif_set_xps_queue);
2196
2197#endif
John Fastabendf0796d52010-07-01 13:21:57 +00002198/*
2199 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
2200 * greater then real_num_tx_queues stale skbs on the qdisc must be flushed.
2201 */
Tom Herberte6484932010-10-18 18:04:39 +00002202int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002203{
Tom Herbert1d24eb42010-11-21 13:17:27 +00002204 int rc;
2205
Tom Herberte6484932010-10-18 18:04:39 +00002206 if (txq < 1 || txq > dev->num_tx_queues)
2207 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002208
Ben Hutchings5c565802011-02-15 19:39:21 +00002209 if (dev->reg_state == NETREG_REGISTERED ||
2210 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002211 ASSERT_RTNL();
2212
Tom Herbert1d24eb42010-11-21 13:17:27 +00002213 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2214 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002215 if (rc)
2216 return rc;
2217
John Fastabend4f57c082011-01-17 08:06:04 +00002218 if (dev->num_tc)
2219 netif_setup_tc(dev, txq);
2220
Alexander Duyck024e9672013-01-10 08:57:46 +00002221 if (txq < dev->real_num_tx_queues) {
Tom Herberte6484932010-10-18 18:04:39 +00002222 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002223#ifdef CONFIG_XPS
2224 netif_reset_xps_queues_gt(dev, txq);
2225#endif
2226 }
John Fastabendf0796d52010-07-01 13:21:57 +00002227 }
Tom Herberte6484932010-10-18 18:04:39 +00002228
2229 dev->real_num_tx_queues = txq;
2230 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002231}
2232EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002233
Michael Daltona953be52014-01-16 22:23:28 -08002234#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002235/**
2236 * netif_set_real_num_rx_queues - set actual number of RX queues used
2237 * @dev: Network device
2238 * @rxq: Actual number of RX queues
2239 *
2240 * This must be called either with the rtnl_lock held or before
2241 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002242 * negative error code. If called before registration, it always
2243 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002244 */
2245int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2246{
2247 int rc;
2248
Tom Herbertbd25fa72010-10-18 18:00:16 +00002249 if (rxq < 1 || rxq > dev->num_rx_queues)
2250 return -EINVAL;
2251
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002252 if (dev->reg_state == NETREG_REGISTERED) {
2253 ASSERT_RTNL();
2254
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002255 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2256 rxq);
2257 if (rc)
2258 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002259 }
2260
2261 dev->real_num_rx_queues = rxq;
2262 return 0;
2263}
2264EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2265#endif
2266
Ben Hutchings2c530402012-07-10 10:55:09 +00002267/**
2268 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002269 *
2270 * This routine should set an upper limit on the number of RSS queues
2271 * used by default by multiqueue devices.
2272 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002273int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002274{
Hariprasad Shenai40e4e712016-06-08 18:09:08 +05302275 return is_kdump_kernel() ?
2276 1 : min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
Yuval Mintz16917b82012-07-01 03:18:50 +00002277}
2278EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2279
Eric Dumazet3bcb8462016-06-04 20:02:28 -07002280static void __netif_reschedule(struct Qdisc *q)
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002281{
2282 struct softnet_data *sd;
2283 unsigned long flags;
2284
2285 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05002286 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002287 q->next_sched = NULL;
2288 *sd->output_queue_tailp = q;
2289 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002290 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2291 local_irq_restore(flags);
2292}
2293
David S. Miller37437bb2008-07-16 02:15:04 -07002294void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002295{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002296 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2297 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002298}
2299EXPORT_SYMBOL(__netif_schedule);
2300
Eric Dumazete6247022013-12-05 04:45:08 -08002301struct dev_kfree_skb_cb {
2302 enum skb_free_reason reason;
2303};
2304
2305static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002306{
Eric Dumazete6247022013-12-05 04:45:08 -08002307 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002308}
Denis Vlasenko56079432006-03-29 15:57:29 -08002309
John Fastabend46e5da42014-09-12 20:04:52 -07002310void netif_schedule_queue(struct netdev_queue *txq)
2311{
2312 rcu_read_lock();
2313 if (!(txq->state & QUEUE_STATE_ANY_XOFF)) {
2314 struct Qdisc *q = rcu_dereference(txq->qdisc);
2315
2316 __netif_schedule(q);
2317 }
2318 rcu_read_unlock();
2319}
2320EXPORT_SYMBOL(netif_schedule_queue);
2321
2322/**
2323 * netif_wake_subqueue - allow sending packets on subqueue
2324 * @dev: network device
2325 * @queue_index: sub queue index
2326 *
2327 * Resume individual transmit queue of a device with multiple transmit queues.
2328 */
2329void netif_wake_subqueue(struct net_device *dev, u16 queue_index)
2330{
2331 struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
2332
2333 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &txq->state)) {
2334 struct Qdisc *q;
2335
2336 rcu_read_lock();
2337 q = rcu_dereference(txq->qdisc);
2338 __netif_schedule(q);
2339 rcu_read_unlock();
2340 }
2341}
2342EXPORT_SYMBOL(netif_wake_subqueue);
2343
2344void netif_tx_wake_queue(struct netdev_queue *dev_queue)
2345{
2346 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
2347 struct Qdisc *q;
2348
2349 rcu_read_lock();
2350 q = rcu_dereference(dev_queue->qdisc);
2351 __netif_schedule(q);
2352 rcu_read_unlock();
2353 }
2354}
2355EXPORT_SYMBOL(netif_tx_wake_queue);
2356
Eric Dumazete6247022013-12-05 04:45:08 -08002357void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2358{
2359 unsigned long flags;
2360
Myungho Jung1dee03a2017-04-25 11:58:15 -07002361 if (unlikely(!skb))
2362 return;
2363
Eric Dumazete6247022013-12-05 04:45:08 -08002364 if (likely(atomic_read(&skb->users) == 1)) {
2365 smp_rmb();
2366 atomic_set(&skb->users, 0);
2367 } else if (likely(!atomic_dec_and_test(&skb->users))) {
2368 return;
2369 }
2370 get_kfree_skb_cb(skb)->reason = reason;
2371 local_irq_save(flags);
2372 skb->next = __this_cpu_read(softnet_data.completion_queue);
2373 __this_cpu_write(softnet_data.completion_queue, skb);
2374 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2375 local_irq_restore(flags);
2376}
2377EXPORT_SYMBOL(__dev_kfree_skb_irq);
2378
2379void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002380{
2381 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002382 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002383 else
2384 dev_kfree_skb(skb);
2385}
Eric Dumazete6247022013-12-05 04:45:08 -08002386EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002387
2388
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002389/**
2390 * netif_device_detach - mark device as removed
2391 * @dev: network device
2392 *
2393 * Mark device as removed from system and therefore no longer available.
2394 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002395void netif_device_detach(struct net_device *dev)
2396{
2397 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2398 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002399 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002400 }
2401}
2402EXPORT_SYMBOL(netif_device_detach);
2403
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002404/**
2405 * netif_device_attach - mark device as attached
2406 * @dev: network device
2407 *
2408 * Mark device as attached from system and restart if needed.
2409 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002410void netif_device_attach(struct net_device *dev)
2411{
2412 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2413 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002414 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002415 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002416 }
2417}
2418EXPORT_SYMBOL(netif_device_attach);
2419
Jiri Pirko5605c762015-05-12 14:56:12 +02002420/*
2421 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
2422 * to be used as a distribution range.
2423 */
2424u16 __skb_tx_hash(const struct net_device *dev, struct sk_buff *skb,
2425 unsigned int num_tx_queues)
2426{
2427 u32 hash;
2428 u16 qoffset = 0;
2429 u16 qcount = num_tx_queues;
2430
2431 if (skb_rx_queue_recorded(skb)) {
2432 hash = skb_get_rx_queue(skb);
2433 while (unlikely(hash >= num_tx_queues))
2434 hash -= num_tx_queues;
2435 return hash;
2436 }
2437
2438 if (dev->num_tc) {
2439 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
2440 qoffset = dev->tc_to_txq[tc].offset;
2441 qcount = dev->tc_to_txq[tc].count;
2442 }
2443
2444 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
2445}
2446EXPORT_SYMBOL(__skb_tx_hash);
2447
Ben Hutchings36c92472012-01-17 07:57:56 +00002448static void skb_warn_bad_offload(const struct sk_buff *skb)
2449{
Wei Tang84d15ae2016-06-16 21:17:49 +08002450 static const netdev_features_t null_features;
Ben Hutchings36c92472012-01-17 07:57:56 +00002451 struct net_device *dev = skb->dev;
Bjørn Mork88ad4172015-11-16 19:16:40 +01002452 const char *name = "";
Ben Hutchings36c92472012-01-17 07:57:56 +00002453
Ben Greearc846ad92013-04-19 10:45:52 +00002454 if (!net_ratelimit())
2455 return;
2456
Bjørn Mork88ad4172015-11-16 19:16:40 +01002457 if (dev) {
2458 if (dev->dev.parent)
2459 name = dev_driver_string(dev->dev.parent);
2460 else
2461 name = netdev_name(dev);
2462 }
Ben Hutchings36c92472012-01-17 07:57:56 +00002463 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2464 "gso_type=%d ip_summed=%d\n",
Bjørn Mork88ad4172015-11-16 19:16:40 +01002465 name, dev ? &dev->features : &null_features,
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002466 skb->sk ? &skb->sk->sk_route_caps : &null_features,
Ben Hutchings36c92472012-01-17 07:57:56 +00002467 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2468 skb_shinfo(skb)->gso_type, skb->ip_summed);
2469}
2470
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471/*
2472 * Invalidate hardware checksum when packet is to be mangled, and
2473 * complete checksum manually on outgoing path.
2474 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002475int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476{
Al Virod3bc23e2006-11-14 21:24:49 -08002477 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002478 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Patrick McHardy84fa7932006-08-29 16:44:56 -07002480 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002481 goto out_set_summed;
2482
2483 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002484 skb_warn_bad_offload(skb);
2485 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 }
2487
Eric Dumazetcef401d2013-01-25 20:34:37 +00002488 /* Before computing a checksum, we should make sure no frag could
2489 * be modified by an external entity : checksum could be wrong.
2490 */
2491 if (skb_has_shared_frag(skb)) {
2492 ret = __skb_linearize(skb);
2493 if (ret)
2494 goto out;
2495 }
2496
Michał Mirosław55508d62010-12-14 15:24:08 +00002497 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002498 BUG_ON(offset >= skb_headlen(skb));
2499 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2500
2501 offset += skb->csum_offset;
2502 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2503
2504 if (skb_cloned(skb) &&
2505 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2507 if (ret)
2508 goto out;
2509 }
2510
Eric Dumazet4f2e4ad2016-10-29 11:02:36 -07002511 *(__sum16 *)(skb->data + offset) = csum_fold(csum) ?: CSUM_MANGLED_0;
Herbert Xua430a432006-07-08 13:34:56 -07002512out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002514out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 return ret;
2516}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002517EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Tom Herbert6ae23ad2015-12-14 11:19:46 -08002519/* skb_csum_offload_check - Driver helper function to determine if a device
2520 * with limited checksum offload capabilities is able to offload the checksum
2521 * for a given packet.
2522 *
2523 * Arguments:
2524 * skb - sk_buff for the packet in question
2525 * spec - contains the description of what device can offload
2526 * csum_encapped - returns true if the checksum being offloaded is
2527 * encpasulated. That is it is checksum for the transport header
2528 * in the inner headers.
2529 * checksum_help - when set indicates that helper function should
2530 * call skb_checksum_help if offload checks fail
2531 *
2532 * Returns:
2533 * true: Packet has passed the checksum checks and should be offloadable to
2534 * the device (a driver may still need to check for additional
2535 * restrictions of its device)
2536 * false: Checksum is not offloadable. If checksum_help was set then
2537 * skb_checksum_help was called to resolve checksum for non-GSO
2538 * packets and when IP protocol is not SCTP
2539 */
2540bool __skb_csum_offload_chk(struct sk_buff *skb,
2541 const struct skb_csum_offl_spec *spec,
2542 bool *csum_encapped,
2543 bool csum_help)
2544{
2545 struct iphdr *iph;
2546 struct ipv6hdr *ipv6;
2547 void *nhdr;
2548 int protocol;
2549 u8 ip_proto;
2550
2551 if (skb->protocol == htons(ETH_P_8021Q) ||
2552 skb->protocol == htons(ETH_P_8021AD)) {
2553 if (!spec->vlan_okay)
2554 goto need_help;
2555 }
2556
2557 /* We check whether the checksum refers to a transport layer checksum in
2558 * the outermost header or an encapsulated transport layer checksum that
2559 * corresponds to the inner headers of the skb. If the checksum is for
2560 * something else in the packet we need help.
2561 */
2562 if (skb_checksum_start_offset(skb) == skb_transport_offset(skb)) {
2563 /* Non-encapsulated checksum */
2564 protocol = eproto_to_ipproto(vlan_get_protocol(skb));
2565 nhdr = skb_network_header(skb);
2566 *csum_encapped = false;
2567 if (spec->no_not_encapped)
2568 goto need_help;
2569 } else if (skb->encapsulation && spec->encap_okay &&
2570 skb_checksum_start_offset(skb) ==
2571 skb_inner_transport_offset(skb)) {
2572 /* Encapsulated checksum */
2573 *csum_encapped = true;
2574 switch (skb->inner_protocol_type) {
2575 case ENCAP_TYPE_ETHER:
2576 protocol = eproto_to_ipproto(skb->inner_protocol);
2577 break;
2578 case ENCAP_TYPE_IPPROTO:
2579 protocol = skb->inner_protocol;
2580 break;
2581 }
2582 nhdr = skb_inner_network_header(skb);
2583 } else {
2584 goto need_help;
2585 }
2586
2587 switch (protocol) {
2588 case IPPROTO_IP:
2589 if (!spec->ipv4_okay)
2590 goto need_help;
2591 iph = nhdr;
2592 ip_proto = iph->protocol;
2593 if (iph->ihl != 5 && !spec->ip_options_okay)
2594 goto need_help;
2595 break;
2596 case IPPROTO_IPV6:
2597 if (!spec->ipv6_okay)
2598 goto need_help;
2599 if (spec->no_encapped_ipv6 && *csum_encapped)
2600 goto need_help;
2601 ipv6 = nhdr;
2602 nhdr += sizeof(*ipv6);
2603 ip_proto = ipv6->nexthdr;
2604 break;
2605 default:
2606 goto need_help;
2607 }
2608
2609ip_proto_again:
2610 switch (ip_proto) {
2611 case IPPROTO_TCP:
2612 if (!spec->tcp_okay ||
2613 skb->csum_offset != offsetof(struct tcphdr, check))
2614 goto need_help;
2615 break;
2616 case IPPROTO_UDP:
2617 if (!spec->udp_okay ||
2618 skb->csum_offset != offsetof(struct udphdr, check))
2619 goto need_help;
2620 break;
2621 case IPPROTO_SCTP:
2622 if (!spec->sctp_okay ||
2623 skb->csum_offset != offsetof(struct sctphdr, checksum))
2624 goto cant_help;
2625 break;
2626 case NEXTHDR_HOP:
2627 case NEXTHDR_ROUTING:
2628 case NEXTHDR_DEST: {
2629 u8 *opthdr = nhdr;
2630
2631 if (protocol != IPPROTO_IPV6 || !spec->ext_hdrs_okay)
2632 goto need_help;
2633
2634 ip_proto = opthdr[0];
2635 nhdr += (opthdr[1] + 1) << 3;
2636
2637 goto ip_proto_again;
2638 }
2639 default:
2640 goto need_help;
2641 }
2642
2643 /* Passed the tests for offloading checksum */
2644 return true;
2645
2646need_help:
2647 if (csum_help && !skb_shinfo(skb)->gso_size)
2648 skb_checksum_help(skb);
2649cant_help:
2650 return false;
2651}
2652EXPORT_SYMBOL(__skb_csum_offload_chk);
2653
Vlad Yasevich53d64712014-03-27 17:26:18 -04002654__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002655{
2656 __be16 type = skb->protocol;
2657
Pravin B Shelar19acc322013-05-07 20:41:07 +00002658 /* Tunnel gso handlers can set protocol to ethernet. */
2659 if (type == htons(ETH_P_TEB)) {
2660 struct ethhdr *eth;
2661
2662 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
2663 return 0;
2664
2665 eth = (struct ethhdr *)skb_mac_header(skb);
2666 type = eth->h_proto;
2667 }
2668
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09002669 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002670}
2671
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002672/**
2673 * skb_mac_gso_segment - mac layer segmentation handler.
2674 * @skb: buffer to segment
2675 * @features: features for the output path (see dev->features)
2676 */
2677struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
2678 netdev_features_t features)
2679{
2680 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
2681 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04002682 int vlan_depth = skb->mac_len;
2683 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002684
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002685 if (unlikely(!type))
2686 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002687
Vlad Yasevich53d64712014-03-27 17:26:18 -04002688 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002689
2690 rcu_read_lock();
2691 list_for_each_entry_rcu(ptype, &offload_base, list) {
2692 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002693 segs = ptype->callbacks.gso_segment(skb, features);
2694 break;
2695 }
2696 }
2697 rcu_read_unlock();
2698
2699 __skb_push(skb, skb->data - skb_mac_header(skb));
2700
2701 return segs;
2702}
2703EXPORT_SYMBOL(skb_mac_gso_segment);
2704
2705
Cong Wang12b00042013-02-05 16:36:38 +00002706/* openvswitch calls this on rx path, so we need a different check.
2707 */
2708static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
2709{
2710 if (tx_path)
Eric Dumazet48a70be2017-02-03 14:29:42 -08002711 return skb->ip_summed != CHECKSUM_PARTIAL &&
Willem de Bruijn69ffc962017-08-08 14:22:55 -04002712 skb->ip_summed != CHECKSUM_UNNECESSARY;
Eric Dumazet48a70be2017-02-03 14:29:42 -08002713
2714 return skb->ip_summed == CHECKSUM_NONE;
Cong Wang12b00042013-02-05 16:36:38 +00002715}
2716
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002717/**
Cong Wang12b00042013-02-05 16:36:38 +00002718 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002719 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002720 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00002721 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002722 *
2723 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07002724 *
2725 * It may return NULL if the skb requires no segmentation. This is
2726 * only possible when GSO is used for verifying header integrity.
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03002727 *
2728 * Segmentation preserves SKB_SGO_CB_OFFSET bytes of previous skb cb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002729 */
Cong Wang12b00042013-02-05 16:36:38 +00002730struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
2731 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002732{
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002733 struct sk_buff *segs;
2734
Cong Wang12b00042013-02-05 16:36:38 +00002735 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002736 int err;
2737
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002738 /* We're going to init ->check field in TCP or UDP header */
françois romieua40e0a62014-07-15 23:55:35 +02002739 err = skb_cow_head(skb, 0);
2740 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07002741 return ERR_PTR(err);
2742 }
2743
Alexander Duyck802ab552016-04-10 21:45:03 -04002744 /* Only report GSO partial support if it will enable us to
2745 * support segmentation on this frame without needing additional
2746 * work.
2747 */
2748 if (features & NETIF_F_GSO_PARTIAL) {
2749 netdev_features_t partial_features = NETIF_F_GSO_ROBUST;
2750 struct net_device *dev = skb->dev;
2751
2752 partial_features |= dev->features & dev->gso_partial_features;
2753 if (!skb_gso_ok(skb, features | partial_features))
2754 features &= ~NETIF_F_GSO_PARTIAL;
2755 }
2756
Konstantin Khlebnikov9207f9d2016-01-08 15:21:46 +03002757 BUILD_BUG_ON(SKB_SGO_CB_OFFSET +
2758 sizeof(*SKB_GSO_CB(skb)) > sizeof(skb->cb));
2759
Pravin B Shelar68c33162013-02-14 14:02:41 +00002760 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07002761 SKB_GSO_CB(skb)->encap_level = 0;
2762
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002763 skb_reset_mac_header(skb);
2764 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002765
Eric Dumazet26d01aa2017-01-31 10:20:32 -08002766 segs = skb_mac_gso_segment(skb, features);
2767
2768 if (unlikely(skb_needs_check(skb, tx_path)))
2769 skb_warn_bad_offload(skb);
2770
2771 return segs;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002772}
Cong Wang12b00042013-02-05 16:36:38 +00002773EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002774
Herbert Xufb286bb2005-11-10 13:01:24 -08002775/* Take action when hardware reception checksum errors are detected. */
2776#ifdef CONFIG_BUG
2777void netdev_rx_csum_fault(struct net_device *dev)
2778{
2779 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002780 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08002781 dump_stack();
2782 }
2783}
2784EXPORT_SYMBOL(netdev_rx_csum_fault);
2785#endif
2786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787/* Actually, we should eliminate this check as soon as we know, that:
2788 * 1. IOMMU is present and allows to map all the memory.
2789 * 2. No high memory really exists on this machine.
2790 */
2791
Florian Westphalc1e756b2014-05-05 15:00:44 +02002792static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793{
Herbert Xu3d3a8532006-06-27 13:33:10 -07002794#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 int i;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002796 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002797 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2798 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2799 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002800 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00002801 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002802 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002804 if (PCI_DMA_BUS_IS_PHYS) {
2805 struct device *pdev = dev->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
Eric Dumazet9092c652010-04-02 13:34:49 -07002807 if (!pdev)
2808 return 0;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002809 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002810 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2811 dma_addr_t addr = page_to_phys(skb_frag_page(frag));
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002812 if (!pdev->dma_mask || addr + PAGE_SIZE - 1 > *pdev->dma_mask)
2813 return 1;
2814 }
2815 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07002816#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 return 0;
2818}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
Simon Horman3b392dd2014-06-04 08:53:17 +09002820/* If MPLS offload request, verify we are testing hardware MPLS features
2821 * instead of standard features for the netdev.
2822 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08002823#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09002824static netdev_features_t net_mpls_features(struct sk_buff *skb,
2825 netdev_features_t features,
2826 __be16 type)
2827{
Simon Horman25cd9ba2014-10-06 05:05:13 -07002828 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09002829 features &= skb->dev->mpls_features;
2830
2831 return features;
2832}
2833#else
2834static netdev_features_t net_mpls_features(struct sk_buff *skb,
2835 netdev_features_t features,
2836 __be16 type)
2837{
2838 return features;
2839}
2840#endif
2841
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002842static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02002843 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00002844{
Vlad Yasevich53d64712014-03-27 17:26:18 -04002845 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09002846 __be16 type;
2847
2848 type = skb_network_protocol(skb, &tmp);
2849 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04002850
Ed Cashinc0d680e2012-09-19 15:49:00 +00002851 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09002852 !can_checksum_protocol(features, type)) {
Alexander Duyck996e8022016-05-02 09:25:10 -07002853 features &= ~(NETIF_F_CSUM_MASK | NETIF_F_GSO_MASK);
Jesse Grossf01a5232011-01-09 06:23:31 +00002854 }
Eric Dumazet948e1372017-01-18 12:12:17 -08002855 if (illegal_highdma(skb->dev, skb))
2856 features &= ~NETIF_F_SG;
Jesse Grossf01a5232011-01-09 06:23:31 +00002857
2858 return features;
2859}
2860
Toshiaki Makitae38f3022015-03-27 14:31:13 +09002861netdev_features_t passthru_features_check(struct sk_buff *skb,
2862 struct net_device *dev,
2863 netdev_features_t features)
2864{
2865 return features;
2866}
2867EXPORT_SYMBOL(passthru_features_check);
2868
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09002869static netdev_features_t dflt_features_check(const struct sk_buff *skb,
2870 struct net_device *dev,
2871 netdev_features_t features)
2872{
2873 return vlan_features_check(skb, features);
2874}
2875
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002876static netdev_features_t gso_features_check(const struct sk_buff *skb,
2877 struct net_device *dev,
2878 netdev_features_t features)
2879{
2880 u16 gso_segs = skb_shinfo(skb)->gso_segs;
2881
2882 if (gso_segs > dev->gso_max_segs)
2883 return features & ~NETIF_F_GSO_MASK;
2884
Alexander Duyck802ab552016-04-10 21:45:03 -04002885 /* Support for GSO partial features requires software
2886 * intervention before we can actually process the packets
2887 * so we need to strip support for any partial features now
2888 * and we can pull them back in after we have partially
2889 * segmented the frame.
2890 */
2891 if (!(skb_shinfo(skb)->gso_type & SKB_GSO_PARTIAL))
2892 features &= ~dev->gso_partial_features;
2893
2894 /* Make sure to clear the IPv4 ID mangling feature if the
2895 * IPv4 header has the potential to be fragmented.
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002896 */
2897 if (skb_shinfo(skb)->gso_type & SKB_GSO_TCPV4) {
2898 struct iphdr *iph = skb->encapsulation ?
2899 inner_ip_hdr(skb) : ip_hdr(skb);
2900
2901 if (!(iph->frag_off & htons(IP_DF)))
2902 features &= ~NETIF_F_TSO_MANGLEID;
2903 }
2904
2905 return features;
2906}
2907
Florian Westphalc1e756b2014-05-05 15:00:44 +02002908netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00002909{
Jesse Gross5f352272014-12-23 22:37:26 -08002910 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07002911 netdev_features_t features = dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00002912
Alexander Duyckcbc53e02016-04-10 21:44:51 -04002913 if (skb_is_gso(skb))
2914 features = gso_features_check(skb, dev, features);
Ben Hutchings30b678d2012-07-30 15:57:00 +00002915
Jesse Gross5f352272014-12-23 22:37:26 -08002916 /* If encapsulation offload request, verify we are testing
2917 * hardware encapsulation features instead of standard
2918 * features for the netdev
2919 */
2920 if (skb->encapsulation)
2921 features &= dev->hw_enc_features;
2922
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09002923 if (skb_vlan_tagged(skb))
2924 features = netdev_intersect_features(features,
2925 dev->vlan_features |
2926 NETIF_F_HW_VLAN_CTAG_TX |
2927 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00002928
Jesse Gross5f352272014-12-23 22:37:26 -08002929 if (dev->netdev_ops->ndo_features_check)
2930 features &= dev->netdev_ops->ndo_features_check(skb, dev,
2931 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09002932 else
2933 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08002934
Florian Westphalc1e756b2014-05-05 15:00:44 +02002935 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002936}
Florian Westphalc1e756b2014-05-05 15:00:44 +02002937EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002938
David S. Miller2ea25512014-08-29 21:10:01 -07002939static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07002940 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002941{
David S. Miller2ea25512014-08-29 21:10:01 -07002942 unsigned int len;
2943 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08002944
Salam Noureddine7866a622015-01-27 11:35:48 -08002945 if (!list_empty(&ptype_all) || !list_empty(&dev->ptype_all))
David S. Miller2ea25512014-08-29 21:10:01 -07002946 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00002947
David S. Miller2ea25512014-08-29 21:10:01 -07002948 len = skb->len;
2949 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07002950 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07002951 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00002952
Patrick McHardy572a9d72009-11-10 06:14:14 +00002953 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002954}
David S. Miller2ea25512014-08-29 21:10:01 -07002955
Mohammed Javid7ea99462015-10-23 17:27:00 +05302956static int xmit_list(struct sk_buff *list, struct net_device *dev,
2957 struct netdev_queue *txq)
2958{
2959 unsigned int len;
2960 int rc;
2961 struct sk_buff *skb = list, *head = list;
2962
2963 /* Call the taps for individual skb's in the list. */
2964 if (!list_empty(&ptype_all)) {
2965 while (skb) {
2966 struct sk_buff *next = skb->next;
2967
2968 skb->next = NULL;
2969
2970 dev_queue_xmit_nit(skb, dev);
2971
2972 skb = next;
2973 /* Keep the original list intact. */
2974 head->next = skb;
2975 head = head->next;
2976 }
2977 }
2978
2979 len = list->len;
2980 trace_net_dev_start_xmit(list, dev);
2981 rc = netdev_start_xmit(list, dev, txq, false);
2982 trace_net_dev_xmit(list, rc, dev, len);
2983
2984 return rc;
2985}
2986
David S. Miller8dcda222014-09-01 15:06:40 -07002987struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
2988 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07002989{
2990 struct sk_buff *skb = first;
2991 int rc = NETDEV_TX_OK;
2992
2993 while (skb) {
2994 struct sk_buff *next = skb->next;
2995
2996 skb->next = NULL;
David S. Miller95f6b3d2014-08-29 21:57:30 -07002997 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07002998 if (unlikely(!dev_xmit_complete(rc))) {
2999 skb->next = next;
3000 goto out;
3001 }
3002
3003 skb = next;
3004 if (netif_xmit_stopped(txq) && skb) {
3005 rc = NETDEV_TX_BUSY;
3006 break;
3007 }
3008 }
3009
3010out:
3011 *ret = rc;
3012 return skb;
3013}
3014
Mohammed Javid7ea99462015-10-23 17:27:00 +05303015struct sk_buff *dev_hard_start_xmit_list(struct sk_buff *first,
3016 struct net_device *dev,
3017 struct netdev_queue *txq, int *ret)
3018{
3019 struct sk_buff *skb = first;
3020 int rc = NETDEV_TX_OK;
3021
3022 if (skb) {
3023 rc = xmit_list(skb, dev, txq);
3024 if (unlikely(!dev_xmit_complete(rc)))
3025 goto out;
3026 skb = NULL;
3027 }
3028
3029out:
3030 *ret = rc;
3031 return skb;
3032}
3033
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07003034static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
3035 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07003036{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003037 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01003038 !vlan_hw_offload_capable(features, skb->vlan_proto))
3039 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07003040 return skb;
3041}
3042
Eric Dumazet55a93b32014-10-03 15:31:07 -07003043static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev)
David S. Millereae3f882014-08-30 15:17:13 -07003044{
3045 netdev_features_t features;
3046
David S. Millereae3f882014-08-30 15:17:13 -07003047 features = netif_skb_features(skb);
3048 skb = validate_xmit_vlan(skb, features);
3049 if (unlikely(!skb))
3050 goto out_null;
3051
Johannes Berg8b86a612015-04-17 15:45:04 +02003052 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07003053 struct sk_buff *segs;
3054
Subash Abhinov Kasiviswanathan717d3392017-06-26 18:46:50 -06003055 __be16 src_port = tcp_hdr(skb)->source;
3056 __be16 dest_port = tcp_hdr(skb)->dest;
3057
3058 trace_print_skb_gso(skb, src_port, dest_port);
David S. Millerce937182014-08-30 19:22:20 -07003059 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08003060 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08003061 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08003062 } else if (segs) {
3063 consume_skb(skb);
3064 skb = segs;
3065 }
David S. Millereae3f882014-08-30 15:17:13 -07003066 } else {
3067 if (skb_needs_linearize(skb, features) &&
3068 __skb_linearize(skb))
3069 goto out_kfree_skb;
3070
3071 /* If packet is not checksummed and device does not
3072 * support checksumming for this protocol, complete
3073 * checksumming here.
3074 */
3075 if (skb->ip_summed == CHECKSUM_PARTIAL) {
3076 if (skb->encapsulation)
3077 skb_set_inner_transport_header(skb,
3078 skb_checksum_start_offset(skb));
3079 else
3080 skb_set_transport_header(skb,
3081 skb_checksum_start_offset(skb));
Tom Herberta1882222015-12-14 11:19:43 -08003082 if (!(features & NETIF_F_CSUM_MASK) &&
David S. Millereae3f882014-08-30 15:17:13 -07003083 skb_checksum_help(skb))
3084 goto out_kfree_skb;
3085 }
3086 }
3087
3088 return skb;
3089
3090out_kfree_skb:
3091 kfree_skb(skb);
3092out_null:
Eric Dumazetd21fd632016-04-12 21:50:07 -07003093 atomic_long_inc(&dev->tx_dropped);
David S. Millereae3f882014-08-30 15:17:13 -07003094 return NULL;
3095}
3096
Eric Dumazet55a93b32014-10-03 15:31:07 -07003097struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev)
3098{
3099 struct sk_buff *next, *head = NULL, *tail;
3100
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003101 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07003102 next = skb->next;
3103 skb->next = NULL;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003104
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07003105 /* in case skb wont be segmented, point to itself */
3106 skb->prev = skb;
3107
3108 skb = validate_xmit_skb(skb, dev);
3109 if (!skb)
3110 continue;
3111
3112 if (!head)
3113 head = skb;
3114 else
3115 tail->next = skb;
3116 /* If skb was segmented, skb->prev points to
3117 * the last segment. If not, it still contains skb.
3118 */
3119 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07003120 }
3121 return head;
3122}
Willem de Bruijn104ba782016-10-26 11:23:07 -04003123EXPORT_SYMBOL_GPL(validate_xmit_skb_list);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07003124
Eric Dumazet1def9232013-01-10 12:36:42 +00003125static void qdisc_pkt_len_init(struct sk_buff *skb)
3126{
3127 const struct skb_shared_info *shinfo = skb_shinfo(skb);
3128
3129 qdisc_skb_cb(skb)->pkt_len = skb->len;
3130
3131 /* To get more precise estimation of bytes sent on wire,
3132 * we add to pkt_len the headers size of all segments
3133 */
3134 if (shinfo->gso_size) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08003135 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00003136 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00003137
Eric Dumazet757b8b12013-01-15 21:14:21 -08003138 /* mac layer + network layer */
3139 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
3140
3141 /* + transport layer */
Eric Dumazeta44d9112018-01-18 19:59:19 -08003142 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6))) {
3143 const struct tcphdr *th;
3144 struct tcphdr _tcphdr;
3145
3146 th = skb_header_pointer(skb, skb_transport_offset(skb),
3147 sizeof(_tcphdr), &_tcphdr);
3148 if (likely(th))
3149 hdr_len += __tcp_hdrlen(th);
3150 } else {
3151 struct udphdr _udphdr;
3152
3153 if (skb_header_pointer(skb, skb_transport_offset(skb),
3154 sizeof(_udphdr), &_udphdr))
3155 hdr_len += sizeof(struct udphdr);
3156 }
Jason Wang15e5a032013-03-25 20:19:59 +00003157
3158 if (shinfo->gso_type & SKB_GSO_DODGY)
3159 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
3160 shinfo->gso_size);
3161
3162 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00003163 }
3164}
3165
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003166static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
3167 struct net_device *dev,
3168 struct netdev_queue *txq)
3169{
3170 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazet520ac302016-06-21 23:16:49 -07003171 struct sk_buff *to_free = NULL;
Eric Dumazeta2da5702011-01-20 03:48:19 +00003172 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003173 int rc;
3174
Eric Dumazeta2da5702011-01-20 03:48:19 +00003175 qdisc_calculate_pkt_len(skb, q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003176 /*
3177 * Heuristic to force contended enqueues to serialize on a
3178 * separate lock before trying to get qdisc main lock.
Eric Dumazetf9eb8ae2016-06-06 09:37:15 -07003179 * This permits qdisc->running owner to get the lock more
Ying Xue9bf2b8c2014-06-26 15:56:31 +08003180 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07003181 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00003182 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003183 if (unlikely(contended))
3184 spin_lock(&q->busylock);
3185
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003186 spin_lock(root_lock);
3187 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
Eric Dumazet520ac302016-06-21 23:16:49 -07003188 __qdisc_drop(skb, &to_free);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003189 rc = NET_XMIT_DROP;
3190 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07003191 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003192 /*
3193 * This is a work-conserving queue; there are no old skbs
3194 * waiting to be sent out; and the qdisc is not running -
3195 * xmit the skb directly.
3196 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003197
Eric Dumazetbfe0d022011-01-09 08:30:54 +00003198 qdisc_bstats_update(q, skb);
3199
Eric Dumazet55a93b32014-10-03 15:31:07 -07003200 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07003201 if (unlikely(contended)) {
3202 spin_unlock(&q->busylock);
3203 contended = false;
3204 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003205 __qdisc_run(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07003206 } else
Eric Dumazetbc135b22010-06-02 03:23:51 -07003207 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003208
3209 rc = NET_XMIT_SUCCESS;
3210 } else {
Eric Dumazet520ac302016-06-21 23:16:49 -07003211 rc = q->enqueue(skb, q, &to_free) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07003212 if (qdisc_run_begin(q)) {
3213 if (unlikely(contended)) {
3214 spin_unlock(&q->busylock);
3215 contended = false;
3216 }
3217 __qdisc_run(q);
3218 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003219 }
3220 spin_unlock(root_lock);
Eric Dumazet520ac302016-06-21 23:16:49 -07003221 if (unlikely(to_free))
3222 kfree_skb_list(to_free);
Eric Dumazet79640a42010-06-02 05:09:29 -07003223 if (unlikely(contended))
3224 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003225 return rc;
3226}
3227
Daniel Borkmann86f85152013-12-29 17:27:11 +01003228#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00003229static void skb_update_prio(struct sk_buff *skb)
3230{
Igor Maravic6977a792011-11-25 07:44:54 +00003231 struct netprio_map *map = rcu_dereference_bh(skb->dev->priomap);
Neil Horman5bc14212011-11-22 05:10:51 +00003232
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003233 if (!skb->priority && skb->sk && map) {
Tejun Heo2a56a1f2015-12-07 17:38:52 -05003234 unsigned int prioidx =
3235 sock_cgroup_prioidx(&skb->sk->sk_cgrp_data);
Eric Dumazet91c68ce2012-07-08 21:45:10 +00003236
3237 if (prioidx < map->priomap_len)
3238 skb->priority = map->priomap[prioidx];
3239 }
Neil Horman5bc14212011-11-22 05:10:51 +00003240}
3241#else
3242#define skb_update_prio(skb)
3243#endif
3244
hannes@stressinduktion.orgf60e5992015-04-01 17:07:44 +02003245DEFINE_PER_CPU(int, xmit_recursion);
3246EXPORT_SYMBOL(xmit_recursion);
3247
Dave Jonesd29f7492008-07-22 14:09:06 -07003248/**
Michel Machado95603e22012-06-12 10:16:35 +00003249 * dev_loopback_xmit - loop back @skb
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003250 * @net: network namespace this loopback is happening in
3251 * @sk: sk needed to be a netfilter okfn
Michel Machado95603e22012-06-12 10:16:35 +00003252 * @skb: buffer to transmit
3253 */
Eric W. Biederman0c4b51f2015-09-15 20:04:18 -05003254int dev_loopback_xmit(struct net *net, struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00003255{
3256 skb_reset_mac_header(skb);
3257 __skb_pull(skb, skb_network_offset(skb));
3258 skb->pkt_type = PACKET_LOOPBACK;
3259 skb->ip_summed = CHECKSUM_UNNECESSARY;
3260 WARN_ON(!skb_dst(skb));
3261 skb_dst_force(skb);
3262 netif_rx_ni(skb);
3263 return 0;
3264}
3265EXPORT_SYMBOL(dev_loopback_xmit);
3266
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003267#ifdef CONFIG_NET_EGRESS
3268static struct sk_buff *
3269sch_handle_egress(struct sk_buff *skb, int *ret, struct net_device *dev)
3270{
3271 struct tcf_proto *cl = rcu_dereference_bh(dev->egress_cl_list);
3272 struct tcf_result cl_res;
3273
3274 if (!cl)
3275 return skb;
3276
3277 /* skb->tc_verd and qdisc_skb_cb(skb)->pkt_len were already set
3278 * earlier by the caller.
3279 */
3280 qdisc_bstats_cpu_update(cl->q, skb);
3281
3282 switch (tc_classify(skb, cl, &cl_res, false)) {
3283 case TC_ACT_OK:
3284 case TC_ACT_RECLASSIFY:
3285 skb->tc_index = TC_H_MIN(cl_res.classid);
3286 break;
3287 case TC_ACT_SHOT:
3288 qdisc_qstats_cpu_drop(cl->q);
3289 *ret = NET_XMIT_DROP;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003290 kfree_skb(skb);
3291 return NULL;
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003292 case TC_ACT_STOLEN:
3293 case TC_ACT_QUEUED:
3294 *ret = NET_XMIT_SUCCESS;
Daniel Borkmann7e2c3ae2016-05-15 23:28:29 +02003295 consume_skb(skb);
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003296 return NULL;
3297 case TC_ACT_REDIRECT:
3298 /* No need to push/pop skb's mac_header here on egress! */
3299 skb_do_redirect(skb);
3300 *ret = NET_XMIT_SUCCESS;
3301 return NULL;
3302 default:
3303 break;
3304 }
3305
3306 return skb;
3307}
3308#endif /* CONFIG_NET_EGRESS */
3309
Jiri Pirko638b2a62015-05-12 14:56:13 +02003310static inline int get_xps_queue(struct net_device *dev, struct sk_buff *skb)
3311{
3312#ifdef CONFIG_XPS
3313 struct xps_dev_maps *dev_maps;
3314 struct xps_map *map;
3315 int queue_index = -1;
3316
3317 rcu_read_lock();
3318 dev_maps = rcu_dereference(dev->xps_maps);
3319 if (dev_maps) {
3320 map = rcu_dereference(
3321 dev_maps->cpu_map[skb->sender_cpu - 1]);
3322 if (map) {
3323 if (map->len == 1)
3324 queue_index = map->queues[0];
3325 else
3326 queue_index = map->queues[reciprocal_scale(skb_get_hash(skb),
3327 map->len)];
3328 if (unlikely(queue_index >= dev->real_num_tx_queues))
3329 queue_index = -1;
3330 }
3331 }
3332 rcu_read_unlock();
3333
3334 return queue_index;
3335#else
3336 return -1;
3337#endif
3338}
3339
3340static u16 __netdev_pick_tx(struct net_device *dev, struct sk_buff *skb)
3341{
3342 struct sock *sk = skb->sk;
3343 int queue_index = sk_tx_queue_get(sk);
3344
3345 if (queue_index < 0 || skb->ooo_okay ||
3346 queue_index >= dev->real_num_tx_queues) {
3347 int new_index = get_xps_queue(dev, skb);
3348 if (new_index < 0)
3349 new_index = skb_tx_hash(dev, skb);
3350
3351 if (queue_index != new_index && sk &&
Eric Dumazet004a5d02015-10-04 21:08:10 -07003352 sk_fullsock(sk) &&
Jiri Pirko638b2a62015-05-12 14:56:13 +02003353 rcu_access_pointer(sk->sk_dst_cache))
3354 sk_tx_queue_set(sk, new_index);
3355
3356 queue_index = new_index;
3357 }
3358
3359 return queue_index;
3360}
3361
3362struct netdev_queue *netdev_pick_tx(struct net_device *dev,
3363 struct sk_buff *skb,
3364 void *accel_priv)
3365{
3366 int queue_index = 0;
3367
3368#ifdef CONFIG_XPS
Eric Dumazet52bd2d62015-11-18 06:30:50 -08003369 u32 sender_cpu = skb->sender_cpu - 1;
3370
3371 if (sender_cpu >= (u32)NR_CPUS)
Jiri Pirko638b2a62015-05-12 14:56:13 +02003372 skb->sender_cpu = raw_smp_processor_id() + 1;
3373#endif
3374
3375 if (dev->real_num_tx_queues != 1) {
3376 const struct net_device_ops *ops = dev->netdev_ops;
3377 if (ops->ndo_select_queue)
3378 queue_index = ops->ndo_select_queue(dev, skb, accel_priv,
3379 __netdev_pick_tx);
3380 else
3381 queue_index = __netdev_pick_tx(dev, skb);
3382
3383 if (!accel_priv)
3384 queue_index = netdev_cap_txqueue(dev, queue_index);
3385 }
3386
3387 skb_set_queue_mapping(skb, queue_index);
3388 return netdev_get_tx_queue(dev, queue_index);
3389}
3390
Michel Machado95603e22012-06-12 10:16:35 +00003391/**
Jason Wang9d08dd32014-01-20 11:25:13 +08003392 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07003393 * @skb: buffer to transmit
Jason Wang9d08dd32014-01-20 11:25:13 +08003394 * @accel_priv: private data used for L2 forwarding offload
Mohammed Javid7ea99462015-10-23 17:27:00 +05303395 * @skb_list: Boolean used for skb list processing.
Dave Jonesd29f7492008-07-22 14:09:06 -07003396 *
3397 * Queue a buffer for transmission to a network device. The caller must
3398 * have set the device and priority and built the buffer before calling
3399 * this function. The function can be called from an interrupt.
3400 *
3401 * A negative errno code is returned on a failure. A success does not
3402 * guarantee the frame will be transmitted as it may be dropped due
3403 * to congestion or traffic shaping.
3404 *
3405 * -----------------------------------------------------------------------------------
3406 * I notice this method can also return errors from the queue disciplines,
3407 * including NET_XMIT_DROP, which is a positive value. So, errors can also
3408 * be positive.
3409 *
3410 * Regardless of the return value, the skb is consumed, so it is currently
3411 * difficult to retry a send to this method. (You can bump the ref count
3412 * before sending to hold a reference for retry if you are careful.)
3413 *
3414 * When calling this method, interrupts MUST be enabled. This is because
3415 * the BH enable code must have IRQs enabled so that it will not deadlock.
3416 * --BLG
3417 */
Mohammed Javid7ea99462015-10-23 17:27:00 +05303418static int __dev_queue_xmit(struct sk_buff *skb, void *accel_priv,
3419 bool skb_list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420{
3421 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07003422 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 struct Qdisc *q;
3424 int rc = -ENOMEM;
3425
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00003426 skb_reset_mac_header(skb);
3427
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003428 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
3429 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
3430
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003431 /* Disable soft irqs for various locks below. Also
3432 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003434 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Neil Horman5bc14212011-11-22 05:10:51 +00003436 skb_update_prio(skb);
3437
Daniel Borkmann1f211a12016-01-07 22:29:47 +01003438 qdisc_pkt_len_init(skb);
3439#ifdef CONFIG_NET_CLS_ACT
3440 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
3441# ifdef CONFIG_NET_EGRESS
3442 if (static_key_false(&egress_needed)) {
3443 skb = sch_handle_egress(skb, &rc, dev);
3444 if (!skb)
3445 goto out;
3446 }
3447# endif
3448#endif
Eric Dumazet02875872014-10-05 18:38:35 -07003449 /* If device/qdisc don't need skb->dst, release it right now while
3450 * its hot in this cpu cache.
3451 */
3452 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
3453 skb_dst_drop(skb);
3454 else
3455 skb_dst_force(skb);
3456
Jason Wangf663dd92014-01-10 16:18:26 +08003457 txq = netdev_pick_tx(dev, skb, accel_priv);
Paul E. McKenneya898def2010-02-22 17:04:49 -08003458 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07003459
Koki Sanagicf66ba52010-08-23 18:45:02 +09003460 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003462 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07003463 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 }
3465
3466 /* The device has no queue. Common case for software devices:
3467 loopback, all the sorts of tunnels...
3468
Herbert Xu932ff272006-06-09 12:20:56 -07003469 Really, it is unlikely that netif_tx_lock protection is necessary
3470 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 counters.)
3472 However, it is possible, that they rely on protection
3473 made by us here.
3474
3475 Check this and shot the lock. It is not prone from deadlocks.
3476 Either shot noqueue qdisc, it is even simpler 8)
3477 */
3478 if (dev->flags & IFF_UP) {
3479 int cpu = smp_processor_id(); /* ok because BHs are off */
3480
David S. Millerc773e842008-07-08 23:13:53 -07003481 if (txq->xmit_lock_owner != cpu) {
Daniel Borkmanna70b5062016-06-10 21:19:06 +02003482 if (unlikely(__this_cpu_read(xmit_recursion) >
3483 XMIT_RECURSION_LIMIT))
Eric Dumazet745e20f2010-09-29 13:23:09 -07003484 goto recursion_alert;
3485
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003486 skb = validate_xmit_skb(skb, dev);
3487 if (!skb)
Eric Dumazetd21fd632016-04-12 21:50:07 -07003488 goto out;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003489
David S. Millerc773e842008-07-08 23:13:53 -07003490 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
Tom Herbert734664982011-11-28 16:32:44 +00003492 if (!netif_xmit_stopped(txq)) {
Eric Dumazet745e20f2010-09-29 13:23:09 -07003493 __this_cpu_inc(xmit_recursion);
Mohammed Javid7ea99462015-10-23 17:27:00 +05303494 if (likely(!skb_list))
3495 skb = dev_hard_start_xmit(skb, dev,
3496 txq, &rc);
3497 else
3498 skb = dev_hard_start_xmit_list(skb,
3499 dev,
3500 txq,
3501 &rc);
Eric Dumazet745e20f2010-09-29 13:23:09 -07003502 __this_cpu_dec(xmit_recursion);
Patrick McHardy572a9d72009-11-10 06:14:14 +00003503 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07003504 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 goto out;
3506 }
3507 }
David S. Millerc773e842008-07-08 23:13:53 -07003508 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00003509 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
3510 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 } else {
3512 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07003513 * unfortunately
3514 */
3515recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00003516 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
3517 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 }
3519 }
3520
3521 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07003522 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
Eric Dumazet015f0682014-03-27 08:45:56 -07003524 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003525 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 return rc;
3527out:
Herbert Xud4828d82006-06-22 02:28:18 -07003528 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 return rc;
3530}
Jason Wangf663dd92014-01-10 16:18:26 +08003531
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003532int dev_queue_xmit(struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08003533{
Mohammed Javid7ea99462015-10-23 17:27:00 +05303534 return __dev_queue_xmit(skb, NULL, false);
Jason Wangf663dd92014-01-10 16:18:26 +08003535}
Eric W. Biederman2b4aa3c2015-09-15 20:04:07 -05003536EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Jason Wangf663dd92014-01-10 16:18:26 +08003538int dev_queue_xmit_accel(struct sk_buff *skb, void *accel_priv)
3539{
Mohammed Javid7ea99462015-10-23 17:27:00 +05303540 return __dev_queue_xmit(skb, accel_priv, false);
Jason Wangf663dd92014-01-10 16:18:26 +08003541}
3542EXPORT_SYMBOL(dev_queue_xmit_accel);
3543
Mohammed Javid7ea99462015-10-23 17:27:00 +05303544int dev_queue_xmit_list(struct sk_buff *skb)
3545{
3546 return __dev_queue_xmit(skb, NULL, true);
3547}
3548EXPORT_SYMBOL(dev_queue_xmit_list);
3549
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
3551/*=======================================================================
3552 Receiver routines
3553 =======================================================================*/
3554
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003555int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00003556EXPORT_SYMBOL(netdev_max_backlog);
3557
Eric Dumazet3b098e22010-05-15 23:57:10 -07003558int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003559int netdev_budget __read_mostly = 300;
3560int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003562/* Called with irq disabled */
3563static inline void ____napi_schedule(struct softnet_data *sd,
3564 struct napi_struct *napi)
3565{
3566 list_add_tail(&napi->poll_list, &sd->poll_list);
3567 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3568}
3569
Eric Dumazetdf334542010-03-24 19:13:54 +00003570#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07003571
3572/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003573struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07003574EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003575u32 rps_cpu_mask __read_mostly;
3576EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07003577
Ingo Molnarc5905af2012-02-24 08:31:31 +01003578struct static_key rps_needed __read_mostly;
Jason Wang3df97ba2016-04-25 23:13:42 -04003579EXPORT_SYMBOL(rps_needed);
Eric Dumazetadc93002011-11-17 03:13:26 +00003580
Ben Hutchingsc4454772011-01-19 11:03:53 +00003581static struct rps_dev_flow *
3582set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3583 struct rps_dev_flow *rflow, u16 next_cpu)
3584{
Eric Dumazeta31196b2015-04-25 09:35:24 -07003585 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00003586#ifdef CONFIG_RFS_ACCEL
3587 struct netdev_rx_queue *rxqueue;
3588 struct rps_dev_flow_table *flow_table;
3589 struct rps_dev_flow *old_rflow;
3590 u32 flow_id;
3591 u16 rxq_index;
3592 int rc;
3593
3594 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00003595 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
3596 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00003597 goto out;
3598 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
3599 if (rxq_index == skb_get_rx_queue(skb))
3600 goto out;
3601
3602 rxqueue = dev->_rx + rxq_index;
3603 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3604 if (!flow_table)
3605 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07003606 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003607 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
3608 rxq_index, flow_id);
3609 if (rc < 0)
3610 goto out;
3611 old_rflow = rflow;
3612 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00003613 rflow->filter = rc;
3614 if (old_rflow->filter == rflow->filter)
3615 old_rflow->filter = RPS_NO_FILTER;
3616 out:
3617#endif
3618 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00003619 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003620 }
3621
Ben Hutchings09994d12011-10-03 04:42:46 +00003622 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003623 return rflow;
3624}
3625
Tom Herbert0a9627f2010-03-16 08:03:29 +00003626/*
3627 * get_rps_cpu is called from netif_receive_skb and returns the target
3628 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003629 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00003630 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003631static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3632 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003633{
Eric Dumazet567e4b72015-02-06 12:59:01 -08003634 const struct rps_sock_flow_table *sock_flow_table;
3635 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07003636 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003637 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003638 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003639 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07003640 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003641
Tom Herbert0a9627f2010-03-16 08:03:29 +00003642 if (skb_rx_queue_recorded(skb)) {
3643 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003644
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003645 if (unlikely(index >= dev->real_num_rx_queues)) {
3646 WARN_ONCE(dev->real_num_rx_queues > 1,
3647 "%s received packet on queue %u, but number "
3648 "of RX queues is %u\n",
3649 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003650 goto done;
3651 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08003652 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003653 }
3654
Eric Dumazet567e4b72015-02-06 12:59:01 -08003655 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
3656
3657 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3658 map = rcu_dereference(rxqueue->rps_map);
3659 if (!flow_table && !map)
3660 goto done;
3661
Changli Gao2d47b452010-08-17 19:00:56 +00003662 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07003663 hash = skb_get_hash(skb);
3664 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003665 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003666
Tom Herbertfec5e652010-04-16 16:01:27 -07003667 sock_flow_table = rcu_dereference(rps_sock_flow_table);
3668 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003669 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003670 u32 next_cpu;
3671 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07003672
Eric Dumazet567e4b72015-02-06 12:59:01 -08003673 /* First check into global flow table if there is a match */
3674 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
3675 if ((ident ^ hash) & ~rps_cpu_mask)
3676 goto try_rps;
3677
3678 next_cpu = ident & rps_cpu_mask;
3679
3680 /* OK, now we know there is a match,
3681 * we can look at the local (per receive queue) flow table
3682 */
Tom Herbert61b905d2014-03-24 15:34:47 -07003683 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07003684 tcpu = rflow->cpu;
3685
Tom Herbertfec5e652010-04-16 16:01:27 -07003686 /*
3687 * If the desired CPU (where last recvmsg was done) is
3688 * different from current CPU (one in the rx-queue flow
3689 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07003690 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07003691 * - Current CPU is offline.
3692 * - The current CPU's queue tail has advanced beyond the
3693 * last packet that was enqueued using this table entry.
3694 * This guarantees that all previous packets for the flow
3695 * have been dequeued, thus preserving in order delivery.
3696 */
3697 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07003698 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07003699 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00003700 rflow->last_qtail)) >= 0)) {
3701 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003702 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00003703 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00003704
Eric Dumazeta31196b2015-04-25 09:35:24 -07003705 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003706 *rflowp = rflow;
3707 cpu = tcpu;
3708 goto done;
3709 }
3710 }
3711
Eric Dumazet567e4b72015-02-06 12:59:01 -08003712try_rps:
3713
Tom Herbert0a9627f2010-03-16 08:03:29 +00003714 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02003715 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00003716 if (cpu_online(tcpu)) {
3717 cpu = tcpu;
3718 goto done;
3719 }
3720 }
3721
3722done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00003723 return cpu;
3724}
3725
Ben Hutchingsc4454772011-01-19 11:03:53 +00003726#ifdef CONFIG_RFS_ACCEL
3727
3728/**
3729 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
3730 * @dev: Device on which the filter was set
3731 * @rxq_index: RX queue index
3732 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
3733 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
3734 *
3735 * Drivers that implement ndo_rx_flow_steer() should periodically call
3736 * this function for each installed filter and remove the filters for
3737 * which it returns %true.
3738 */
3739bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
3740 u32 flow_id, u16 filter_id)
3741{
3742 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
3743 struct rps_dev_flow_table *flow_table;
3744 struct rps_dev_flow *rflow;
3745 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07003746 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003747
3748 rcu_read_lock();
3749 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3750 if (flow_table && flow_id <= flow_table->mask) {
3751 rflow = &flow_table->flows[flow_id];
3752 cpu = ACCESS_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07003753 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00003754 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
3755 rflow->last_qtail) <
3756 (int)(10 * flow_table->mask)))
3757 expire = false;
3758 }
3759 rcu_read_unlock();
3760 return expire;
3761}
3762EXPORT_SYMBOL(rps_may_expire_flow);
3763
3764#endif /* CONFIG_RFS_ACCEL */
3765
Tom Herbert0a9627f2010-03-16 08:03:29 +00003766/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003767static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003768{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003769 struct softnet_data *sd = data;
3770
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003771 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00003772 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003773}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003774
Tom Herbertfec5e652010-04-16 16:01:27 -07003775#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00003776
3777/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003778 * Check if this softnet_data structure is another cpu one
3779 * If yes, queue it to our IPI list and return 1
3780 * If no, return 0
3781 */
3782static int rps_ipi_queued(struct softnet_data *sd)
3783{
3784#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05003785 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003786
3787 if (sd != mysd) {
3788 sd->rps_ipi_next = mysd->rps_ipi_list;
3789 mysd->rps_ipi_list = sd;
3790
3791 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3792 return 1;
3793 }
3794#endif /* CONFIG_RPS */
3795 return 0;
3796}
3797
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003798#ifdef CONFIG_NET_FLOW_LIMIT
3799int netdev_flow_limit_table_len __read_mostly = (1 << 12);
3800#endif
3801
3802static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
3803{
3804#ifdef CONFIG_NET_FLOW_LIMIT
3805 struct sd_flow_limit *fl;
3806 struct softnet_data *sd;
3807 unsigned int old_flow, new_flow;
3808
3809 if (qlen < (netdev_max_backlog >> 1))
3810 return false;
3811
Christoph Lameter903ceff2014-08-17 12:30:35 -05003812 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003813
3814 rcu_read_lock();
3815 fl = rcu_dereference(sd->flow_limit);
3816 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08003817 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003818 old_flow = fl->history[fl->history_head];
3819 fl->history[fl->history_head] = new_flow;
3820
3821 fl->history_head++;
3822 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
3823
3824 if (likely(fl->buckets[old_flow]))
3825 fl->buckets[old_flow]--;
3826
3827 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
3828 fl->count++;
3829 rcu_read_unlock();
3830 return true;
3831 }
3832 }
3833 rcu_read_unlock();
3834#endif
3835 return false;
3836}
3837
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003838/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00003839 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
3840 * queue (may be a remote CPU queue).
3841 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003842static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
3843 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003844{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003845 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003846 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003847 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003848
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003849 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003850
3851 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003852
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003853 rps_lock(sd);
Julian Anastasove9e4dd32015-07-09 09:59:09 +03003854 if (!netif_running(skb->dev))
3855 goto drop;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003856 qlen = skb_queue_len(&sd->input_pkt_queue);
3857 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08003858 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00003859enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003860 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003861 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003862 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00003863 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003864 return NET_RX_SUCCESS;
3865 }
3866
Eric Dumazetebda37c22010-05-06 23:51:21 +00003867 /* Schedule NAPI for backlog device
3868 * We can use non atomic operation since we own the queue lock
3869 */
3870 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003871 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003872 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003873 }
3874 goto enqueue;
3875 }
3876
Julian Anastasove9e4dd32015-07-09 09:59:09 +03003877drop:
Changli Gaodee42872010-05-02 05:42:16 +00003878 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003879 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003880
Tom Herbert0a9627f2010-03-16 08:03:29 +00003881 local_irq_restore(flags);
3882
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003883 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003884 kfree_skb(skb);
3885 return NET_RX_DROP;
3886}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003888static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003890 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891
Eric Dumazet588f0332011-11-15 04:12:55 +00003892 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893
Koki Sanagicf66ba52010-08-23 18:45:02 +09003894 trace_netif_rx(skb);
Eric Dumazetdf334542010-03-24 19:13:54 +00003895#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003896 if (static_key_false(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003897 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003898 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899
Changli Gaocece1942010-08-07 20:35:43 -07003900 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003901 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003902
3903 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003904 if (cpu < 0)
3905 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07003906
3907 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3908
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003909 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07003910 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00003911 } else
3912#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07003913 {
3914 unsigned int qtail;
3915 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
3916 put_cpu();
3917 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003918 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003920
3921/**
3922 * netif_rx - post buffer to the network code
3923 * @skb: buffer to post
3924 *
3925 * This function receives a packet from a device driver and queues it for
3926 * the upper (protocol) levels to process. It always succeeds. The buffer
3927 * may be dropped during processing for congestion control or by the
3928 * protocol layers.
3929 *
3930 * return values:
3931 * NET_RX_SUCCESS (no congestion)
3932 * NET_RX_DROP (packet was dropped)
3933 *
3934 */
3935
3936int netif_rx(struct sk_buff *skb)
3937{
3938 trace_netif_rx_entry(skb);
3939
3940 return netif_rx_internal(skb);
3941}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003942EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
3944int netif_rx_ni(struct sk_buff *skb)
3945{
3946 int err;
3947
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003948 trace_netif_rx_ni_entry(skb);
3949
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003951 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952 if (local_softirq_pending())
3953 do_softirq();
3954 preempt_enable();
3955
3956 return err;
3957}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958EXPORT_SYMBOL(netif_rx_ni);
3959
Emese Revfy0766f782016-06-20 20:42:34 +02003960static __latent_entropy void net_tx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961{
Christoph Lameter903ceff2014-08-17 12:30:35 -05003962 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
3964 if (sd->completion_queue) {
3965 struct sk_buff *clist;
3966
3967 local_irq_disable();
3968 clist = sd->completion_queue;
3969 sd->completion_queue = NULL;
3970 local_irq_enable();
3971
3972 while (clist) {
3973 struct sk_buff *skb = clist;
3974 clist = clist->next;
3975
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003976 WARN_ON(atomic_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08003977 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
3978 trace_consume_skb(skb);
3979 else
3980 trace_kfree_skb(skb, net_tx_action);
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01003981
3982 if (skb->fclone != SKB_FCLONE_UNAVAILABLE)
3983 __kfree_skb(skb);
3984 else
3985 __kfree_skb_defer(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 }
Jesper Dangaard Brouer15fad712016-02-08 13:15:04 +01003987
3988 __kfree_skb_flush();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 }
3990
3991 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07003992 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
3994 local_irq_disable();
3995 head = sd->output_queue;
3996 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00003997 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998 local_irq_enable();
3999
4000 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07004001 struct Qdisc *q = head;
4002 spinlock_t *root_lock;
4003
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 head = head->next_sched;
4005
David S. Miller5fb66222008-08-02 20:02:43 -07004006 root_lock = qdisc_lock(q);
Eric Dumazet3bcb8462016-06-04 20:02:28 -07004007 spin_lock(root_lock);
4008 /* We need to make sure head->next_sched is read
4009 * before clearing __QDISC_STATE_SCHED
4010 */
4011 smp_mb__before_atomic();
4012 clear_bit(__QDISC_STATE_SCHED, &q->state);
4013 qdisc_run(q);
4014 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015 }
4016 }
4017}
4018
Javier Martinez Canillas181402a2016-09-09 08:43:15 -04004019#if IS_ENABLED(CONFIG_BRIDGE) && IS_ENABLED(CONFIG_ATM_LANE)
Michał Mirosławda678292009-06-05 05:35:28 +00004020/* This hook is defined here for ATM LANE */
4021int (*br_fdb_test_addr_hook)(struct net_device *dev,
4022 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07004023EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00004024#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004026static inline struct sk_buff *
4027sch_handle_ingress(struct sk_buff *skb, struct packet_type **pt_prev, int *ret,
4028 struct net_device *orig_dev)
Herbert Xuf697c3e2007-10-14 00:38:47 -07004029{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004030#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004031 struct tcf_proto *cl = rcu_dereference_bh(skb->dev->ingress_cl_list);
4032 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00004033
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004034 /* If there's at least one ingress present somewhere (so
4035 * we get here via enabled static key), remaining devices
4036 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004037 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004038 */
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004039 if (!cl)
Daniel Borkmann45771392015-04-10 23:07:54 +02004040 return skb;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004041 if (*pt_prev) {
4042 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4043 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004044 }
4045
Florian Westphal33654952015-05-14 00:36:28 +02004046 qdisc_skb_cb(skb)->pkt_len = skb->len;
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004047 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
Eric Dumazet24ea5912015-07-06 05:18:03 -07004048 qdisc_bstats_cpu_update(cl->q, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02004049
Daniel Borkmann3b3ae882015-08-26 23:00:06 +02004050 switch (tc_classify(skb, cl, &cl_res, false)) {
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004051 case TC_ACT_OK:
4052 case TC_ACT_RECLASSIFY:
4053 skb->tc_index = TC_H_MIN(cl_res.classid);
4054 break;
4055 case TC_ACT_SHOT:
Eric Dumazet24ea5912015-07-06 05:18:03 -07004056 qdisc_qstats_cpu_drop(cl->q);
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004057 kfree_skb(skb);
4058 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004059 case TC_ACT_STOLEN:
4060 case TC_ACT_QUEUED:
Eric Dumazet8a3a4c62016-05-06 15:55:50 -07004061 consume_skb(skb);
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004062 return NULL;
Alexei Starovoitov27b29f62015-09-15 23:05:43 -07004063 case TC_ACT_REDIRECT:
4064 /* skb_mac_header check was done by cls/act_bpf, so
4065 * we can safely push the L2 header back before
4066 * redirecting to another netdev
4067 */
4068 __skb_push(skb, skb->mac_len);
4069 skb_do_redirect(skb);
4070 return NULL;
Daniel Borkmannd2788d32015-05-09 22:51:32 +02004071 default:
4072 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07004073 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004074#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07004075 return skb;
4076}
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004078/**
Mahesh Bandewar24b27fc2016-09-01 22:18:34 -07004079 * netdev_is_rx_handler_busy - check if receive handler is registered
4080 * @dev: device to check
4081 *
4082 * Check if a receive handler is already registered for a given device.
4083 * Return true if there one.
4084 *
4085 * The caller must hold the rtnl_mutex.
4086 */
4087bool netdev_is_rx_handler_busy(struct net_device *dev)
4088{
4089 ASSERT_RTNL();
4090 return dev && rtnl_dereference(dev->rx_handler);
4091}
4092EXPORT_SYMBOL_GPL(netdev_is_rx_handler_busy);
4093
4094/**
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004095 * netdev_rx_handler_register - register receive handler
4096 * @dev: device to register a handler for
4097 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00004098 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004099 *
Masanari Iidae2278672014-02-18 22:54:36 +09004100 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004101 * called from __netif_receive_skb. A negative errno code is returned
4102 * on a failure.
4103 *
4104 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004105 *
4106 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004107 */
4108int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00004109 rx_handler_func_t *rx_handler,
4110 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004111{
4112 ASSERT_RTNL();
4113
4114 if (dev->rx_handler)
4115 return -EBUSY;
4116
Eric Dumazet00cfec32013-03-29 03:01:22 +00004117 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00004118 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004119 rcu_assign_pointer(dev->rx_handler, rx_handler);
4120
4121 return 0;
4122}
4123EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
4124
4125/**
4126 * netdev_rx_handler_unregister - unregister receive handler
4127 * @dev: device to unregister a handler from
4128 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00004129 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004130 *
4131 * The caller must hold the rtnl_mutex.
4132 */
4133void netdev_rx_handler_unregister(struct net_device *dev)
4134{
4135
4136 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004137 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00004138 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
4139 * section has a guarantee to see a non NULL rx_handler_data
4140 * as well.
4141 */
4142 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00004143 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004144}
4145EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
4146
Mel Gormanb4b9e352012-07-31 16:44:26 -07004147/*
4148 * Limit the use of PFMEMALLOC reserves to those protocols that implement
4149 * the special handling of PFMEMALLOC skbs.
4150 */
4151static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
4152{
4153 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07004154 case htons(ETH_P_ARP):
4155 case htons(ETH_P_IP):
4156 case htons(ETH_P_IPV6):
4157 case htons(ETH_P_8021Q):
4158 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07004159 return true;
4160 default:
4161 return false;
4162 }
4163}
4164
Pablo Neirae687ad62015-05-13 18:19:38 +02004165static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
4166 int *ret, struct net_device *orig_dev)
4167{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004168#ifdef CONFIG_NETFILTER_INGRESS
Pablo Neirae687ad62015-05-13 18:19:38 +02004169 if (nf_hook_ingress_active(skb)) {
Aaron Conole2c1e2702016-09-21 11:35:03 -04004170 int ingress_retval;
4171
Pablo Neirae687ad62015-05-13 18:19:38 +02004172 if (*pt_prev) {
4173 *ret = deliver_skb(skb, *pt_prev, orig_dev);
4174 *pt_prev = NULL;
4175 }
4176
Aaron Conole2c1e2702016-09-21 11:35:03 -04004177 rcu_read_lock();
4178 ingress_retval = nf_hook_ingress(skb);
4179 rcu_read_unlock();
4180 return ingress_retval;
Pablo Neirae687ad62015-05-13 18:19:38 +02004181 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02004182#endif /* CONFIG_NETFILTER_INGRESS */
Pablo Neirae687ad62015-05-13 18:19:38 +02004183 return 0;
4184}
Pablo Neirae687ad62015-05-13 18:19:38 +02004185
Justin Tee7c888a12017-12-20 08:42:31 -08004186int (*gsb_nw_stack_recv)(struct sk_buff *skb) __rcu __read_mostly;
4187EXPORT_SYMBOL(gsb_nw_stack_recv);
4188
Mohammed Javid9c843412015-07-16 22:43:04 +05304189int (*athrs_fast_nat_recv)(struct sk_buff *skb) __rcu __read_mostly;
4190EXPORT_SYMBOL(athrs_fast_nat_recv);
4191
Ravinder Konka94266eb2015-10-15 19:55:24 +05304192int (*embms_tm_multicast_recv)(struct sk_buff *skb) __rcu __read_mostly;
4193EXPORT_SYMBOL(embms_tm_multicast_recv);
4194
David S. Miller9754e292013-02-14 15:57:38 -05004195static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196{
4197 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004198 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07004199 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004200 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 int ret = NET_RX_DROP;
Al Viro252e3342006-11-14 20:48:11 -08004202 __be16 type;
Justin Tee7c888a12017-12-20 08:42:31 -08004203 int (*gsb_ns_recv)(struct sk_buff *skb);
Mohammed Javid9c843412015-07-16 22:43:04 +05304204 int (*fast_recv)(struct sk_buff *skb);
Ravinder Konka94266eb2015-10-15 19:55:24 +05304205 int (*embms_recv)(struct sk_buff *skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
Eric Dumazet588f0332011-11-15 04:12:55 +00004207 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07004208
Koki Sanagicf66ba52010-08-23 18:45:02 +09004209 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08004210
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07004211 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00004212
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07004213 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00004214 if (!skb_transport_header_was_set(skb))
4215 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00004216 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217
4218 pt_prev = NULL;
4219
David S. Miller63d8ea72011-02-28 10:48:59 -08004220another_round:
David S. Millerb6858172012-07-23 16:27:54 -07004221 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08004222
4223 __this_cpu_inc(softnet_data.processed);
4224
Patrick McHardy8ad227f2013-04-19 02:04:31 +00004225 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
4226 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04004227 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004228 if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004229 goto out;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00004230 }
4231
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232#ifdef CONFIG_NET_CLS_ACT
4233 if (skb->tc_verd & TC_NCLS) {
4234 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
4235 goto ncls;
4236 }
4237#endif
4238
David S. Miller9754e292013-02-14 15:57:38 -05004239 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07004240 goto skip_taps;
4241
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08004243 if (pt_prev)
4244 ret = deliver_skb(skb, pt_prev, orig_dev);
4245 pt_prev = ptype;
4246 }
4247
4248 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
4249 if (pt_prev)
4250 ret = deliver_skb(skb, pt_prev, orig_dev);
4251 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 }
4253
Mel Gormanb4b9e352012-07-31 16:44:26 -07004254skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02004255#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +02004256 if (static_key_false(&ingress_needed)) {
Daniel Borkmann1f211a12016-01-07 22:29:47 +01004257 skb = sch_handle_ingress(skb, &pt_prev, &ret, orig_dev);
Daniel Borkmann45771392015-04-10 23:07:54 +02004258 if (!skb)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004259 goto out;
Pablo Neirae687ad62015-05-13 18:19:38 +02004260
4261 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
Julian Anastasov2c17d272015-07-09 09:59:10 +03004262 goto out;
Daniel Borkmann45771392015-04-10 23:07:54 +02004263 }
Pablo Neira1cf519002015-05-13 18:19:37 +02004264#endif
Justin Tee7c888a12017-12-20 08:42:31 -08004265 gsb_ns_recv = rcu_dereference(gsb_nw_stack_recv);
4266 if (gsb_ns_recv) {
4267 if (gsb_ns_recv(skb)) {
4268 ret = NET_RX_SUCCESS;
4269 goto out;
4270 }
4271 }
Mohammed Javid9c843412015-07-16 22:43:04 +05304272 fast_recv = rcu_dereference(athrs_fast_nat_recv);
4273 if (fast_recv) {
4274 if (fast_recv(skb)) {
4275 ret = NET_RX_SUCCESS;
4276 goto out;
4277 }
4278 }
4279
Ravinder Konka94266eb2015-10-15 19:55:24 +05304280 embms_recv = rcu_dereference(embms_tm_multicast_recv);
4281 if (embms_recv)
4282 embms_recv(skb);
4283
Pablo Neira1cf519002015-05-13 18:19:37 +02004284#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmann45771392015-04-10 23:07:54 +02004285 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004286ncls:
4287#endif
David S. Miller9754e292013-02-14 15:57:38 -05004288 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07004289 goto drop;
4290
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004291 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00004292 if (pt_prev) {
4293 ret = deliver_skb(skb, pt_prev, orig_dev);
4294 pt_prev = NULL;
4295 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004296 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00004297 goto another_round;
4298 else if (unlikely(!skb))
Julian Anastasov2c17d272015-07-09 09:59:10 +03004299 goto out;
John Fastabend24257172011-10-10 09:16:41 +00004300 }
4301
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004302 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004303 if (rx_handler) {
4304 if (pt_prev) {
4305 ret = deliver_skb(skb, pt_prev, orig_dev);
4306 pt_prev = NULL;
4307 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004308 switch (rx_handler(&skb)) {
4309 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00004310 ret = NET_RX_SUCCESS;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004311 goto out;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004312 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08004313 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00004314 case RX_HANDLER_EXACT:
4315 deliver_exact = true;
4316 case RX_HANDLER_PASS:
4317 break;
4318 default:
4319 BUG();
4320 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00004321 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01004323 if (unlikely(skb_vlan_tag_present(skb))) {
4324 if (skb_vlan_tag_get_id(skb))
Eric Dumazetd4b812d2013-07-18 07:19:26 -07004325 skb->pkt_type = PACKET_OTHERHOST;
4326 /* Note: we might in the future use prio bits
4327 * and set skb->priority like in vlan_do_receive()
4328 * For the time being, just ignore Priority Code Point
4329 */
4330 skb->vlan_tci = 0;
4331 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00004332
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08004334
4335 /* deliver only exact match when indicated */
4336 if (likely(!deliver_exact)) {
4337 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4338 &ptype_base[ntohs(type) &
4339 PTYPE_HASH_MASK]);
4340 }
4341
4342 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4343 &orig_dev->ptype_specific);
4344
4345 if (unlikely(skb->dev != orig_dev)) {
4346 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
4347 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 }
4349
4350 if (pt_prev) {
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00004351 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00004352 goto drop;
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00004353 else
4354 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004355 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07004356drop:
Jarod Wilson6e7333d2016-02-01 18:51:05 -05004357 if (!deliver_exact)
4358 atomic_long_inc(&skb->dev->rx_dropped);
4359 else
4360 atomic_long_inc(&skb->dev->rx_nohandler);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 kfree_skb(skb);
4362 /* Jamal, now you will not able to escape explaining
4363 * me how you were going to use this. :-)
4364 */
4365 ret = NET_RX_DROP;
4366 }
4367
Julian Anastasov2c17d272015-07-09 09:59:10 +03004368out:
David S. Miller9754e292013-02-14 15:57:38 -05004369 return ret;
4370}
4371
4372static int __netif_receive_skb(struct sk_buff *skb)
4373{
4374 int ret;
4375
4376 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
4377 unsigned long pflags = current->flags;
4378
4379 /*
4380 * PFMEMALLOC skbs are special, they should
4381 * - be delivered to SOCK_MEMALLOC sockets only
4382 * - stay away from userspace
4383 * - have bounded memory usage
4384 *
4385 * Use PF_MEMALLOC as this saves us from propagating the allocation
4386 * context down to all allocation sites.
4387 */
4388 current->flags |= PF_MEMALLOC;
4389 ret = __netif_receive_skb_core(skb, true);
4390 tsk_restore_flags(current, pflags, PF_MEMALLOC);
4391 } else
4392 ret = __netif_receive_skb_core(skb, false);
4393
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394 return ret;
4395}
Tom Herbert0a9627f2010-03-16 08:03:29 +00004396
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004397static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00004398{
Julian Anastasov2c17d272015-07-09 09:59:10 +03004399 int ret;
4400
Eric Dumazet588f0332011-11-15 04:12:55 +00004401 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07004402
Richard Cochranc1f19b52010-07-17 08:49:36 +00004403 if (skb_defer_rx_timestamp(skb))
4404 return NET_RX_SUCCESS;
4405
Julian Anastasov2c17d272015-07-09 09:59:10 +03004406 rcu_read_lock();
4407
Eric Dumazetdf334542010-03-24 19:13:54 +00004408#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01004409 if (static_key_false(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07004410 struct rps_dev_flow voidflow, *rflow = &voidflow;
Julian Anastasov2c17d272015-07-09 09:59:10 +03004411 int cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07004412
Eric Dumazet3b098e22010-05-15 23:57:10 -07004413 if (cpu >= 0) {
4414 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
4415 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00004416 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07004417 }
Tom Herbertfec5e652010-04-16 16:01:27 -07004418 }
Tom Herbert1e94d722010-03-18 17:45:44 -07004419#endif
Julian Anastasov2c17d272015-07-09 09:59:10 +03004420 ret = __netif_receive_skb(skb);
4421 rcu_read_unlock();
4422 return ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00004423}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004424
4425/**
4426 * netif_receive_skb - process receive buffer from network
4427 * @skb: buffer to process
4428 *
4429 * netif_receive_skb() is the main receive data processing function.
4430 * It always succeeds. The buffer may be dropped during processing
4431 * for congestion control or by the protocol layers.
4432 *
4433 * This function may only be called from softirq context and interrupts
4434 * should be enabled.
4435 *
4436 * Return values (usually ignored):
4437 * NET_RX_SUCCESS: no congestion
4438 * NET_RX_DROP: packet was dropped
4439 */
Eric W. Biederman04eb4482015-09-15 20:04:15 -05004440int netif_receive_skb(struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004441{
4442 trace_netif_receive_skb_entry(skb);
4443
4444 return netif_receive_skb_internal(skb);
4445}
Eric W. Biederman04eb4482015-09-15 20:04:15 -05004446EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447
Eric Dumazet41852492016-08-26 12:50:39 -07004448DEFINE_PER_CPU(struct work_struct, flush_works);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004449
4450/* Network device is going away, flush any packets still pending */
4451static void flush_backlog(struct work_struct *work)
4452{
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004453 struct sk_buff *skb, *tmp;
4454 struct softnet_data *sd;
4455
4456 local_bh_disable();
4457 sd = this_cpu_ptr(&softnet_data);
4458
4459 local_irq_disable();
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004460 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07004461 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07004462 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004463 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004464 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004465 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004466 }
Changli Gao6e7676c2010-04-27 15:07:33 -07004467 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004468 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004469 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004470
4471 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
Eric Dumazet41852492016-08-26 12:50:39 -07004472 if (skb->dev->reg_state == NETREG_UNREGISTERING) {
Changli Gao6e7676c2010-04-27 15:07:33 -07004473 __skb_unlink(skb, &sd->process_queue);
4474 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004475 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07004476 }
4477 }
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004478 local_bh_enable();
4479}
4480
Eric Dumazet41852492016-08-26 12:50:39 -07004481static void flush_all_backlogs(void)
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004482{
4483 unsigned int cpu;
4484
4485 get_online_cpus();
4486
Eric Dumazet41852492016-08-26 12:50:39 -07004487 for_each_online_cpu(cpu)
4488 queue_work_on(cpu, system_highpri_wq,
4489 per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004490
4491 for_each_online_cpu(cpu)
Eric Dumazet41852492016-08-26 12:50:39 -07004492 flush_work(per_cpu_ptr(&flush_works, cpu));
Paolo Abeni145dd5f2016-08-25 15:58:44 +02004493
4494 put_online_cpus();
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004495}
4496
Herbert Xud565b0a2008-12-15 23:38:52 -08004497static int napi_gro_complete(struct sk_buff *skb)
4498{
Vlad Yasevich22061d82012-11-15 08:49:11 +00004499 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08004500 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004501 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08004502 int err = -ENOENT;
4503
Eric Dumazetc3c7c252012-12-06 13:54:59 +00004504 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
4505
Herbert Xufc59f9a2009-04-14 15:11:06 -07004506 if (NAPI_GRO_CB(skb)->count == 1) {
4507 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004508 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07004509 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004510
4511 rcu_read_lock();
4512 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004513 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08004514 continue;
4515
Jerry Chu299603e82013-12-11 20:53:45 -08004516 err = ptype->callbacks.gro_complete(skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08004517 break;
4518 }
4519 rcu_read_unlock();
4520
4521 if (err) {
4522 WARN_ON(&ptype->list == head);
4523 kfree_skb(skb);
4524 return NET_RX_SUCCESS;
4525 }
4526
4527out:
Subash Abhinov Kasiviswanathan27cfd4e2017-06-01 13:43:25 -06004528 __this_cpu_add(softnet_data.gro_coalesced, NAPI_GRO_CB(skb)->count > 1);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004529 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004530}
4531
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004532/* napi->gro_list contains packets ordered by age.
4533 * youngest packets at the head of it.
4534 * Complete skbs in reverse order to reduce latencies.
4535 */
4536void napi_gro_flush(struct napi_struct *napi, bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08004537{
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004538 struct sk_buff *skb, *prev = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004539
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004540 /* scan list and build reverse chain */
4541 for (skb = napi->gro_list; skb != NULL; skb = skb->next) {
4542 skb->prev = prev;
4543 prev = skb;
Herbert Xud565b0a2008-12-15 23:38:52 -08004544 }
4545
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004546 for (skb = prev; skb; skb = prev) {
4547 skb->next = NULL;
4548
4549 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
4550 return;
4551
4552 prev = skb->prev;
4553 napi_gro_complete(skb);
4554 napi->gro_count--;
4555 }
4556
Herbert Xud565b0a2008-12-15 23:38:52 -08004557 napi->gro_list = NULL;
4558}
Eric Dumazet86cac582010-08-31 18:25:32 +00004559EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08004560
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004561static void gro_list_prepare(struct napi_struct *napi, struct sk_buff *skb)
4562{
4563 struct sk_buff *p;
4564 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08004565 u32 hash = skb_get_hash_raw(skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004566
4567 for (p = napi->gro_list; p; p = p->next) {
4568 unsigned long diffs;
4569
Tom Herbert0b4cec82014-01-15 08:58:06 -08004570 NAPI_GRO_CB(p)->flush = 0;
4571
4572 if (hash != skb_get_hash_raw(p)) {
4573 NAPI_GRO_CB(p)->same_flow = 0;
4574 continue;
4575 }
4576
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004577 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
4578 diffs |= p->vlan_tci ^ skb->vlan_tci;
Jesse Grossce87fc62016-01-20 17:59:49 -08004579 diffs |= skb_metadata_dst_cmp(p, skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004580 if (maclen == ETH_HLEN)
4581 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07004582 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004583 else if (!diffs)
4584 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07004585 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004586 maclen);
4587 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004588 }
4589}
4590
Jerry Chu299603e82013-12-11 20:53:45 -08004591static void skb_gro_reset_offset(struct sk_buff *skb)
4592{
4593 const struct skb_shared_info *pinfo = skb_shinfo(skb);
4594 const skb_frag_t *frag0 = &pinfo->frags[0];
4595
4596 NAPI_GRO_CB(skb)->data_offset = 0;
4597 NAPI_GRO_CB(skb)->frag0 = NULL;
4598 NAPI_GRO_CB(skb)->frag0_len = 0;
4599
4600 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
4601 pinfo->nr_frags &&
4602 !PageHighMem(skb_frag_page(frag0))) {
4603 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
Eric Dumazet934ca012017-01-10 19:52:43 -08004604 NAPI_GRO_CB(skb)->frag0_len = min_t(unsigned int,
4605 skb_frag_size(frag0),
4606 skb->end - skb->tail);
Herbert Xud565b0a2008-12-15 23:38:52 -08004607 }
4608}
4609
Eric Dumazeta50e2332014-03-29 21:28:21 -07004610static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
4611{
4612 struct skb_shared_info *pinfo = skb_shinfo(skb);
4613
4614 BUG_ON(skb->end - skb->tail < grow);
4615
4616 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
4617
4618 skb->data_len -= grow;
4619 skb->tail += grow;
4620
4621 pinfo->frags[0].page_offset += grow;
4622 skb_frag_size_sub(&pinfo->frags[0], grow);
4623
4624 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
4625 skb_frag_unref(skb, 0);
4626 memmove(pinfo->frags, pinfo->frags + 1,
4627 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
4628 }
4629}
4630
Rami Rosenbb728822012-11-28 21:55:25 +00004631static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08004632{
4633 struct sk_buff **pp = NULL;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004634 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08004635 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004636 struct list_head *head = &offload_base;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004637 int same_flow;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004638 enum gro_result ret;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004639 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08004640
Eric W. Biederman9c62a682014-03-14 20:51:52 -07004641 if (!(skb->dev->features & NETIF_F_GRO))
Herbert Xud565b0a2008-12-15 23:38:52 -08004642 goto normal;
4643
Tom Herbert5a212322014-08-31 15:12:41 -07004644 if (skb_is_gso(skb) || skb_has_frag_list(skb) || skb->csum_bad)
Herbert Xuf17f5c92009-01-14 14:36:12 -08004645 goto normal;
4646
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004647 gro_list_prepare(napi, skb);
4648
Herbert Xud565b0a2008-12-15 23:38:52 -08004649 rcu_read_lock();
4650 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004651 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08004652 continue;
4653
Herbert Xu86911732009-01-29 14:19:50 +00004654 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00004655 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004656 NAPI_GRO_CB(skb)->same_flow = 0;
4657 NAPI_GRO_CB(skb)->flush = 0;
Herbert Xu5d38a072009-01-04 16:13:40 -08004658 NAPI_GRO_CB(skb)->free = 0;
Jesse Grossfac8e0f2016-03-19 09:32:01 -07004659 NAPI_GRO_CB(skb)->encap_mark = 0;
Sabrina Dubrocafcd91dd2016-10-20 15:58:02 +02004660 NAPI_GRO_CB(skb)->recursion_counter = 0;
Alexander Duycka0ca1532016-04-05 09:13:39 -07004661 NAPI_GRO_CB(skb)->is_fou = 0;
Alexander Duyck15305452016-04-10 21:44:57 -04004662 NAPI_GRO_CB(skb)->is_atomic = 1;
Tom Herbert15e23962015-02-10 16:30:31 -08004663 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004664
Tom Herbert662880f2014-08-27 21:26:56 -07004665 /* Setup for GRO checksum validation */
4666 switch (skb->ip_summed) {
4667 case CHECKSUM_COMPLETE:
4668 NAPI_GRO_CB(skb)->csum = skb->csum;
4669 NAPI_GRO_CB(skb)->csum_valid = 1;
4670 NAPI_GRO_CB(skb)->csum_cnt = 0;
4671 break;
4672 case CHECKSUM_UNNECESSARY:
4673 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
4674 NAPI_GRO_CB(skb)->csum_valid = 0;
4675 break;
4676 default:
4677 NAPI_GRO_CB(skb)->csum_cnt = 0;
4678 NAPI_GRO_CB(skb)->csum_valid = 0;
4679 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004680
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004681 pp = ptype->callbacks.gro_receive(&napi->gro_list, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004682 break;
4683 }
4684 rcu_read_unlock();
4685
4686 if (&ptype->list == head)
4687 goto normal;
4688
Herbert Xu0da2afd52008-12-26 14:57:42 -08004689 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004690 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004691
Herbert Xud565b0a2008-12-15 23:38:52 -08004692 if (pp) {
4693 struct sk_buff *nskb = *pp;
4694
4695 *pp = nskb->next;
4696 nskb->next = NULL;
4697 napi_gro_complete(nskb);
Herbert Xu4ae55442009-02-08 18:00:36 +00004698 napi->gro_count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08004699 }
4700
Herbert Xu0da2afd52008-12-26 14:57:42 -08004701 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08004702 goto ok;
4703
Eric Dumazet600adc12014-01-09 14:12:19 -08004704 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08004705 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08004706
Eric Dumazet600adc12014-01-09 14:12:19 -08004707 if (unlikely(napi->gro_count >= MAX_GRO_SKBS)) {
4708 struct sk_buff *nskb = napi->gro_list;
4709
4710 /* locate the end of the list to select the 'oldest' flow */
4711 while (nskb->next) {
4712 pp = &nskb->next;
4713 nskb = *pp;
4714 }
4715 *pp = NULL;
4716 nskb->next = NULL;
4717 napi_gro_complete(nskb);
4718 } else {
4719 napi->gro_count++;
4720 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004721 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004722 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07004723 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00004724 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004725 skb->next = napi->gro_list;
4726 napi->gro_list = skb;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004727 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08004728
Herbert Xuad0f9902009-02-01 01:24:55 -08004729pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004730 grow = skb_gro_offset(skb) - skb_headlen(skb);
4731 if (grow > 0)
4732 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08004733ok:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004734 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08004735
4736normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08004737 ret = GRO_NORMAL;
4738 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08004739}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004740
Jerry Chubf5a7552014-01-07 10:23:19 -08004741struct packet_offload *gro_find_receive_by_type(__be16 type)
4742{
4743 struct list_head *offload_head = &offload_base;
4744 struct packet_offload *ptype;
4745
4746 list_for_each_entry_rcu(ptype, offload_head, list) {
4747 if (ptype->type != type || !ptype->callbacks.gro_receive)
4748 continue;
4749 return ptype;
4750 }
4751 return NULL;
4752}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004753EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08004754
4755struct packet_offload *gro_find_complete_by_type(__be16 type)
4756{
4757 struct list_head *offload_head = &offload_base;
4758 struct packet_offload *ptype;
4759
4760 list_for_each_entry_rcu(ptype, offload_head, list) {
4761 if (ptype->type != type || !ptype->callbacks.gro_complete)
4762 continue;
4763 return ptype;
4764 }
4765 return NULL;
4766}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004767EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004768
Michal Kubeček06732802017-06-29 11:13:36 +02004769static void napi_skb_free_stolen_head(struct sk_buff *skb)
4770{
4771 skb_dst_drop(skb);
4772 kmem_cache_free(skbuff_head_cache, skb);
4773}
4774
Rami Rosenbb728822012-11-28 21:55:25 +00004775static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08004776{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004777 switch (ret) {
4778 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004779 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004780 ret = GRO_DROP;
4781 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004782
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004783 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08004784 kfree_skb(skb);
4785 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004786
Eric Dumazetdaa86542012-04-19 07:07:40 +00004787 case GRO_MERGED_FREE:
Michal Kubeček06732802017-06-29 11:13:36 +02004788 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4789 napi_skb_free_stolen_head(skb);
4790 else
Eric Dumazetd7e88832012-04-30 08:10:34 +00004791 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00004792 break;
4793
Ben Hutchings5b252f02009-10-29 07:17:09 +00004794 case GRO_HELD:
4795 case GRO_MERGED:
4796 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004797 }
4798
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004799 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004800}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004801
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004802gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004803{
Eric Dumazet93f93a42015-11-18 06:30:59 -08004804 skb_mark_napi_id(skb, napi);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004805 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00004806
Eric Dumazeta50e2332014-03-29 21:28:21 -07004807 skb_gro_reset_offset(skb);
4808
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004809 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004810}
4811EXPORT_SYMBOL(napi_gro_receive);
4812
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00004813static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004814{
Eric Dumazet93a35f52014-10-23 06:30:30 -07004815 if (unlikely(skb->pfmemalloc)) {
4816 consume_skb(skb);
4817 return;
4818 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004819 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00004820 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
4821 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Jesse Gross3701e512010-10-20 13:56:06 +00004822 skb->vlan_tci = 0;
Herbert Xu66c46d72011-01-29 20:44:54 -08004823 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08004824 skb->skb_iif = 0;
Jerry Chuc3caf112014-07-14 15:54:46 -07004825 skb->encapsulation = 0;
4826 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07004827 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Herbert Xu96e93ea2009-01-06 10:49:34 -08004828
4829 napi->skb = skb;
4830}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004831
Herbert Xu76620aa2009-04-16 02:02:07 -07004832struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08004833{
Herbert Xu5d38a072009-01-04 16:13:40 -08004834 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004835
4836 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08004837 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazete2f9dc32015-11-19 12:11:23 -08004838 if (skb) {
4839 napi->skb = skb;
4840 skb_mark_napi_id(skb, napi);
4841 }
Herbert Xu5d38a072009-01-04 16:13:40 -08004842 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004843 return skb;
4844}
Herbert Xu76620aa2009-04-16 02:02:07 -07004845EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004846
Eric Dumazeta50e2332014-03-29 21:28:21 -07004847static gro_result_t napi_frags_finish(struct napi_struct *napi,
4848 struct sk_buff *skb,
4849 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004850{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004851 switch (ret) {
4852 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004853 case GRO_HELD:
4854 __skb_push(skb, ETH_HLEN);
4855 skb->protocol = eth_type_trans(skb, skb->dev);
4856 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004857 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00004858 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004859
4860 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004861 napi_reuse_skb(napi, skb);
4862 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004863
Michal Kubeček06732802017-06-29 11:13:36 +02004864 case GRO_MERGED_FREE:
4865 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4866 napi_skb_free_stolen_head(skb);
4867 else
4868 napi_reuse_skb(napi, skb);
4869 break;
4870
Ben Hutchings5b252f02009-10-29 07:17:09 +00004871 case GRO_MERGED:
4872 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004873 }
4874
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004875 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004876}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004877
Eric Dumazeta50e2332014-03-29 21:28:21 -07004878/* Upper GRO stack assumes network header starts at gro_offset=0
4879 * Drivers could call both napi_gro_frags() and napi_gro_receive()
4880 * We copy ethernet header into skb->data to have a common layout.
4881 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00004882static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004883{
Herbert Xu76620aa2009-04-16 02:02:07 -07004884 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004885 const struct ethhdr *eth;
4886 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07004887
4888 napi->skb = NULL;
4889
Eric Dumazeta50e2332014-03-29 21:28:21 -07004890 skb_reset_mac_header(skb);
4891 skb_gro_reset_offset(skb);
4892
4893 eth = skb_gro_header_fast(skb, 0);
4894 if (unlikely(skb_gro_header_hard(skb, hlen))) {
4895 eth = skb_gro_header_slow(skb, hlen, 0);
4896 if (unlikely(!eth)) {
Aaron Conole4da46ce2016-04-02 15:26:43 -04004897 net_warn_ratelimited("%s: dropping impossible skb from %s\n",
4898 __func__, napi->dev->name);
Eric Dumazeta50e2332014-03-29 21:28:21 -07004899 napi_reuse_skb(napi, skb);
4900 return NULL;
4901 }
4902 } else {
4903 gro_pull_from_frag0(skb, hlen);
4904 NAPI_GRO_CB(skb)->frag0 += hlen;
4905 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07004906 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07004907 __skb_pull(skb, hlen);
4908
4909 /*
4910 * This works because the only protocols we care about don't require
4911 * special handling.
4912 * We'll fix it up properly in napi_frags_finish()
4913 */
4914 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07004915
Herbert Xu76620aa2009-04-16 02:02:07 -07004916 return skb;
4917}
Herbert Xu76620aa2009-04-16 02:02:07 -07004918
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004919gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07004920{
4921 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004922
4923 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004924 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08004925
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004926 trace_napi_gro_frags_entry(skb);
4927
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004928 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08004929}
4930EXPORT_SYMBOL(napi_gro_frags);
4931
Tom Herbert573e8fc2014-08-22 13:33:47 -07004932/* Compute the checksum from gro_offset and return the folded value
4933 * after adding in any pseudo checksum.
4934 */
4935__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
4936{
4937 __wsum wsum;
4938 __sum16 sum;
4939
4940 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
4941
4942 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
4943 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
4944 if (likely(!sum)) {
4945 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
4946 !skb->csum_complete_sw)
4947 netdev_rx_csum_fault(skb->dev);
4948 }
4949
4950 NAPI_GRO_CB(skb)->csum = wsum;
4951 NAPI_GRO_CB(skb)->csum_valid = 1;
4952
4953 return sum;
4954}
4955EXPORT_SYMBOL(__skb_gro_checksum_complete);
4956
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05304957static void net_rps_send_ipi(struct softnet_data *remsd)
4958{
4959#ifdef CONFIG_RPS
4960 while (remsd) {
4961 struct softnet_data *next = remsd->rps_ipi_next;
4962
Ashwanth Goli9a044862017-07-07 13:15:13 +05304963 if (cpu_online(remsd->cpu)) {
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05304964 smp_call_function_single_async(remsd->cpu, &remsd->csd);
Ashwanth Goli9a044862017-07-07 13:15:13 +05304965 } else {
4966 rps_lock(remsd);
4967 remsd->backlog.state = 0;
4968 rps_unlock(remsd);
4969 }
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05304970 remsd = next;
4971 }
4972#endif
4973}
4974
Eric Dumazete326bed2010-04-22 00:22:45 -07004975/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08004976 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07004977 * Note: called with local irq disabled, but exits with local irq enabled.
4978 */
4979static void net_rps_action_and_irq_enable(struct softnet_data *sd)
4980{
4981#ifdef CONFIG_RPS
4982 struct softnet_data *remsd = sd->rps_ipi_list;
4983
4984 if (remsd) {
4985 sd->rps_ipi_list = NULL;
4986
4987 local_irq_enable();
4988
4989 /* Send pending IPI's to kick RPS processing on remote cpus. */
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05304990 net_rps_send_ipi(remsd);
Eric Dumazete326bed2010-04-22 00:22:45 -07004991 } else
4992#endif
4993 local_irq_enable();
4994}
4995
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004996static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
4997{
4998#ifdef CONFIG_RPS
4999 return sd->rps_ipi_list != NULL;
5000#else
5001 return false;
5002#endif
5003}
5004
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005005static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005006{
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005007 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005008 bool again = true;
5009 int work = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005010
Eric Dumazete326bed2010-04-22 00:22:45 -07005011 /* Check if we have pending ipi, its better to send them now,
5012 * not waiting net_rx_action() end.
5013 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005014 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07005015 local_irq_disable();
5016 net_rps_action_and_irq_enable(sd);
5017 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005018
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005019 napi->weight = weight_p;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005020 while (again) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07005021 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005022
Changli Gao6e7676c2010-04-27 15:07:33 -07005023 while ((skb = __skb_dequeue(&sd->process_queue))) {
Julian Anastasov2c17d272015-07-09 09:59:10 +03005024 rcu_read_lock();
Changli Gao6e7676c2010-04-27 15:07:33 -07005025 __netif_receive_skb(skb);
Julian Anastasov2c17d272015-07-09 09:59:10 +03005026 rcu_read_unlock();
Tom Herbert76cc8b12010-05-20 18:37:59 +00005027 input_queue_head_incr(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005028 if (++work >= quota)
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005029 goto state_changed;
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005030 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005031
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005032 local_irq_disable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005033 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07005034 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005035 /*
5036 * Inline a custom version of __napi_complete().
5037 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07005038 * and NAPI_STATE_SCHED is the only possible flag set
5039 * on backlog.
5040 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005041 * and we dont need an smp_mb() memory barrier.
5042 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07005043 napi->state = 0;
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005044 again = false;
5045 } else {
5046 skb_queue_splice_tail_init(&sd->input_pkt_queue,
5047 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07005048 }
5049 rps_unlock(sd);
Paolo Abeni145dd5f2016-08-25 15:58:44 +02005050 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07005051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005052
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005053state_changed:
5054 napi_gro_flush(napi, false);
5055 sd->current_napi = NULL;
5056
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005057 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005058}
5059
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005060/**
5061 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005062 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005063 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005064 * The entry's receive function will be scheduled to run.
5065 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005066 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08005067void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005068{
5069 unsigned long flags;
5070
5071 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05005072 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005073 local_irq_restore(flags);
5074}
5075EXPORT_SYMBOL(__napi_schedule);
5076
Eric Dumazetbc9ad162014-10-28 18:05:13 -07005077/**
5078 * __napi_schedule_irqoff - schedule for receive
5079 * @n: entry to schedule
5080 *
5081 * Variant of __napi_schedule() assuming hard irqs are masked
5082 */
5083void __napi_schedule_irqoff(struct napi_struct *n)
5084{
5085 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
5086}
5087EXPORT_SYMBOL(__napi_schedule_irqoff);
5088
Herbert Xud565b0a2008-12-15 23:38:52 -08005089void __napi_complete(struct napi_struct *n)
5090{
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005091 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5092
Herbert Xud565b0a2008-12-15 23:38:52 -08005093 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
Herbert Xud565b0a2008-12-15 23:38:52 -08005094
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005095 list_del_init(&n->poll_list);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01005096 smp_mb__before_atomic();
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005097 sd->current_napi = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08005098 clear_bit(NAPI_STATE_SCHED, &n->state);
5099}
5100EXPORT_SYMBOL(__napi_complete);
5101
Eric Dumazet3b47d302014-11-06 21:09:44 -08005102void napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08005103{
5104 unsigned long flags;
5105
5106 /*
5107 * don't let napi dequeue from the cpu poll list
5108 * just in case its running on a different cpu
5109 */
5110 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
5111 return;
5112
Eric Dumazet3b47d302014-11-06 21:09:44 -08005113 if (n->gro_list) {
5114 unsigned long timeout = 0;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005115
Eric Dumazet3b47d302014-11-06 21:09:44 -08005116 if (work_done)
5117 timeout = n->dev->gro_flush_timeout;
5118
5119 if (timeout)
5120 hrtimer_start(&n->timer, ns_to_ktime(timeout),
5121 HRTIMER_MODE_REL_PINNED);
5122 else
5123 napi_gro_flush(n, false);
5124 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005125 if (likely(list_empty(&n->poll_list))) {
5126 WARN_ON_ONCE(!test_and_clear_bit(NAPI_STATE_SCHED, &n->state));
5127 } else {
5128 /* If n->poll_list is not empty, we need to mask irqs */
5129 local_irq_save(flags);
5130 __napi_complete(n);
5131 local_irq_restore(flags);
5132 }
Herbert Xud565b0a2008-12-15 23:38:52 -08005133}
Eric Dumazet3b47d302014-11-06 21:09:44 -08005134EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08005135
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005136/* must be called under rcu_read_lock(), as we dont take a reference */
Eric Dumazet02d62e82015-11-18 06:30:52 -08005137static struct napi_struct *napi_by_id(unsigned int napi_id)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005138{
5139 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
5140 struct napi_struct *napi;
5141
5142 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
5143 if (napi->napi_id == napi_id)
5144 return napi;
5145
5146 return NULL;
5147}
Eric Dumazet02d62e82015-11-18 06:30:52 -08005148
5149#if defined(CONFIG_NET_RX_BUSY_POLL)
Eric Dumazetce6aea92015-11-18 06:30:54 -08005150#define BUSY_POLL_BUDGET 8
Eric Dumazet02d62e82015-11-18 06:30:52 -08005151bool sk_busy_loop(struct sock *sk, int nonblock)
5152{
5153 unsigned long end_time = !nonblock ? sk_busy_loop_end_time(sk) : 0;
Eric Dumazetce6aea92015-11-18 06:30:54 -08005154 int (*busy_poll)(struct napi_struct *dev);
Eric Dumazet02d62e82015-11-18 06:30:52 -08005155 struct napi_struct *napi;
5156 int rc = false;
5157
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005158 rcu_read_lock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005159
5160 napi = napi_by_id(sk->sk_napi_id);
5161 if (!napi)
5162 goto out;
5163
Eric Dumazetce6aea92015-11-18 06:30:54 -08005164 /* Note: ndo_busy_poll method is optional in linux-4.5 */
5165 busy_poll = napi->dev->netdev_ops->ndo_busy_poll;
Eric Dumazet02d62e82015-11-18 06:30:52 -08005166
5167 do {
Eric Dumazetce6aea92015-11-18 06:30:54 -08005168 rc = 0;
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005169 local_bh_disable();
Eric Dumazetce6aea92015-11-18 06:30:54 -08005170 if (busy_poll) {
5171 rc = busy_poll(napi);
5172 } else if (napi_schedule_prep(napi)) {
5173 void *have = netpoll_poll_lock(napi);
5174
5175 if (test_bit(NAPI_STATE_SCHED, &napi->state)) {
5176 rc = napi->poll(napi, BUSY_POLL_BUDGET);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02005177 trace_napi_poll(napi, rc, BUSY_POLL_BUDGET);
Eric Dumazetce6aea92015-11-18 06:30:54 -08005178 if (rc == BUSY_POLL_BUDGET) {
5179 napi_complete_done(napi, rc);
5180 napi_schedule(napi);
5181 }
5182 }
5183 netpoll_poll_unlock(have);
5184 }
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005185 if (rc > 0)
Eric Dumazet02a1d6e2016-04-27 16:44:39 -07005186 __NET_ADD_STATS(sock_net(sk),
5187 LINUX_MIB_BUSYPOLLRXPACKETS, rc);
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005188 local_bh_enable();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005189
5190 if (rc == LL_FLUSH_FAILED)
5191 break; /* permanent failure */
5192
Eric Dumazet02d62e82015-11-18 06:30:52 -08005193 cpu_relax();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005194 } while (!nonblock && skb_queue_empty(&sk->sk_receive_queue) &&
5195 !need_resched() && !busy_loop_timeout(end_time));
5196
5197 rc = !skb_queue_empty(&sk->sk_receive_queue);
5198out:
Eric Dumazet2a028ec2015-11-18 06:30:53 -08005199 rcu_read_unlock();
Eric Dumazet02d62e82015-11-18 06:30:52 -08005200 return rc;
5201}
5202EXPORT_SYMBOL(sk_busy_loop);
5203
5204#endif /* CONFIG_NET_RX_BUSY_POLL */
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005205
5206void napi_hash_add(struct napi_struct *napi)
5207{
Eric Dumazetd64b5e82015-11-18 06:31:00 -08005208 if (test_bit(NAPI_STATE_NO_BUSY_POLL, &napi->state) ||
5209 test_and_set_bit(NAPI_STATE_HASHED, &napi->state))
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005210 return;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005211
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005212 spin_lock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005213
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005214 /* 0..NR_CPUS+1 range is reserved for sender_cpu use */
5215 do {
5216 if (unlikely(++napi_gen_id < NR_CPUS + 1))
5217 napi_gen_id = NR_CPUS + 1;
5218 } while (napi_by_id(napi_gen_id));
5219 napi->napi_id = napi_gen_id;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005220
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005221 hlist_add_head_rcu(&napi->napi_hash_node,
5222 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005223
Eric Dumazet52bd2d62015-11-18 06:30:50 -08005224 spin_unlock(&napi_hash_lock);
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005225}
5226EXPORT_SYMBOL_GPL(napi_hash_add);
5227
5228/* Warning : caller is responsible to make sure rcu grace period
5229 * is respected before freeing memory containing @napi
5230 */
Eric Dumazet34cbe272015-11-18 06:31:02 -08005231bool napi_hash_del(struct napi_struct *napi)
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005232{
Eric Dumazet34cbe272015-11-18 06:31:02 -08005233 bool rcu_sync_needed = false;
5234
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005235 spin_lock(&napi_hash_lock);
5236
Eric Dumazet34cbe272015-11-18 06:31:02 -08005237 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state)) {
5238 rcu_sync_needed = true;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005239 hlist_del_rcu(&napi->napi_hash_node);
Eric Dumazet34cbe272015-11-18 06:31:02 -08005240 }
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005241 spin_unlock(&napi_hash_lock);
Eric Dumazet34cbe272015-11-18 06:31:02 -08005242 return rcu_sync_needed;
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03005243}
5244EXPORT_SYMBOL_GPL(napi_hash_del);
5245
Eric Dumazet3b47d302014-11-06 21:09:44 -08005246static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
5247{
5248 struct napi_struct *napi;
5249
5250 napi = container_of(timer, struct napi_struct, timer);
5251 if (napi->gro_list)
5252 napi_schedule(napi);
5253
5254 return HRTIMER_NORESTART;
5255}
5256
Herbert Xud565b0a2008-12-15 23:38:52 -08005257void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
5258 int (*poll)(struct napi_struct *, int), int weight)
5259{
5260 INIT_LIST_HEAD(&napi->poll_list);
Eric Dumazet3b47d302014-11-06 21:09:44 -08005261 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
5262 napi->timer.function = napi_watchdog;
Herbert Xu4ae55442009-02-08 18:00:36 +00005263 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005264 napi->gro_list = NULL;
Herbert Xu5d38a072009-01-04 16:13:40 -08005265 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08005266 napi->poll = poll;
Eric Dumazet82dc3c62013-03-05 15:57:22 +00005267 if (weight > NAPI_POLL_WEIGHT)
5268 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
5269 weight, dev->name);
Herbert Xud565b0a2008-12-15 23:38:52 -08005270 napi->weight = weight;
5271 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08005272 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08005273#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08005274 spin_lock_init(&napi->poll_lock);
5275 napi->poll_owner = -1;
5276#endif
5277 set_bit(NAPI_STATE_SCHED, &napi->state);
Eric Dumazet93d05d42015-11-18 06:31:03 -08005278 napi_hash_add(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08005279}
5280EXPORT_SYMBOL(netif_napi_add);
5281
Eric Dumazet3b47d302014-11-06 21:09:44 -08005282void napi_disable(struct napi_struct *n)
5283{
5284 might_sleep();
5285 set_bit(NAPI_STATE_DISABLE, &n->state);
5286
5287 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
5288 msleep(1);
Neil Horman2d8bff12015-09-23 14:57:58 -04005289 while (test_and_set_bit(NAPI_STATE_NPSVC, &n->state))
5290 msleep(1);
Eric Dumazet3b47d302014-11-06 21:09:44 -08005291
5292 hrtimer_cancel(&n->timer);
5293
5294 clear_bit(NAPI_STATE_DISABLE, &n->state);
5295}
5296EXPORT_SYMBOL(napi_disable);
5297
Eric Dumazet93d05d42015-11-18 06:31:03 -08005298/* Must be called in process context */
Herbert Xud565b0a2008-12-15 23:38:52 -08005299void netif_napi_del(struct napi_struct *napi)
5300{
Eric Dumazet93d05d42015-11-18 06:31:03 -08005301 might_sleep();
5302 if (napi_hash_del(napi))
5303 synchronize_net();
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08005304 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07005305 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08005306
Eric Dumazet289dccb2013-12-20 14:29:08 -08005307 kfree_skb_list(napi->gro_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08005308 napi->gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00005309 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08005310}
5311EXPORT_SYMBOL(netif_napi_del);
5312
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005313struct napi_struct *get_current_napi_context(void)
5314{
5315 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5316
5317 return sd->current_napi;
5318}
5319EXPORT_SYMBOL(get_current_napi_context);
5320
Herbert Xu726ce702014-12-21 07:16:21 +11005321static int napi_poll(struct napi_struct *n, struct list_head *repoll)
5322{
5323 void *have;
5324 int work, weight;
5325
5326 list_del_init(&n->poll_list);
5327
5328 have = netpoll_poll_lock(n);
5329
5330 weight = n->weight;
5331
5332 /* This NAPI_STATE_SCHED test is for avoiding a race
5333 * with netpoll's poll_napi(). Only the entity which
5334 * obtains the lock and sees NAPI_STATE_SCHED set will
5335 * actually make the ->poll() call. Therefore we avoid
5336 * accidentally calling ->poll() when NAPI is not scheduled.
5337 */
5338 work = 0;
5339 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
Subash Abhinov Kasiviswanathan80c888a2016-01-25 18:09:54 -07005340 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
5341
5342 sd->current_napi = n;
Herbert Xu726ce702014-12-21 07:16:21 +11005343 work = n->poll(n, weight);
Jesper Dangaard Brouer1db19db2016-07-07 18:01:32 +02005344 trace_napi_poll(n, work, weight);
Herbert Xu726ce702014-12-21 07:16:21 +11005345 }
5346
5347 WARN_ON_ONCE(work > weight);
5348
5349 if (likely(work < weight))
5350 goto out_unlock;
5351
5352 /* Drivers must not modify the NAPI state if they
5353 * consume the entire weight. In such cases this code
5354 * still "owns" the NAPI instance and therefore can
5355 * move the instance around on the list at-will.
5356 */
5357 if (unlikely(napi_disable_pending(n))) {
5358 napi_complete(n);
5359 goto out_unlock;
5360 }
5361
5362 if (n->gro_list) {
5363 /* flush too old packets
5364 * If HZ < 1000, flush all packets.
5365 */
5366 napi_gro_flush(n, HZ >= 1000);
5367 }
5368
Herbert Xu001ce542014-12-21 07:16:22 +11005369 /* Some drivers may have called napi_schedule
5370 * prior to exhausting their budget.
5371 */
5372 if (unlikely(!list_empty(&n->poll_list))) {
5373 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
5374 n->dev ? n->dev->name : "backlog");
5375 goto out_unlock;
5376 }
5377
Herbert Xu726ce702014-12-21 07:16:21 +11005378 list_add_tail(&n->poll_list, repoll);
5379
5380out_unlock:
5381 netpoll_poll_unlock(have);
5382
5383 return work;
5384}
5385
Emese Revfy0766f782016-06-20 20:42:34 +02005386static __latent_entropy void net_rx_action(struct softirq_action *h)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387{
Christoph Lameter903ceff2014-08-17 12:30:35 -05005388 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Stephen Hemminger24f8b232008-11-03 17:14:38 -08005389 unsigned long time_limit = jiffies + 2;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07005390 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005391 LIST_HEAD(list);
5392 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07005393
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005395 list_splice_init(&sd->poll_list, &list);
5396 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07005397
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005398 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005399 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005400
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005401 if (list_empty(&list)) {
5402 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
5403 return;
5404 break;
5405 }
5406
Herbert Xu6bd373e2014-12-21 07:16:24 +11005407 n = list_first_entry(&list, struct napi_struct, poll_list);
5408 budget -= napi_poll(n, &repoll);
5409
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005410 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08005411 * Allow this to run for 2 jiffies since which will allow
5412 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07005413 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11005414 if (unlikely(budget <= 0 ||
5415 time_after_eq(jiffies, time_limit))) {
5416 sd->time_squeeze++;
5417 break;
5418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005420
Jesper Dangaard Brouer795bb1c2016-02-08 13:14:59 +01005421 __kfree_skb_flush();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08005422 local_irq_disable();
5423
5424 list_splice_tail_init(&sd->poll_list, &list);
5425 list_splice_tail(&repoll, &list);
5426 list_splice(&list, &sd->poll_list);
5427 if (!list_empty(&sd->poll_list))
5428 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
5429
Eric Dumazete326bed2010-04-22 00:22:45 -07005430 net_rps_action_and_irq_enable(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005431}
5432
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005433struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005434 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005435
5436 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005437 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005438
Veaceslav Falico5d261912013-08-28 23:25:05 +02005439 /* counter for the number of times this device was added to us */
5440 u16 ref_nr;
5441
Veaceslav Falico402dae92013-09-25 09:20:09 +02005442 /* private field for the users */
5443 void *private;
5444
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005445 struct list_head list;
5446 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005447};
5448
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005449static struct netdev_adjacent *__netdev_find_adj(struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005450 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005451{
Veaceslav Falico5d261912013-08-28 23:25:05 +02005452 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005453
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005454 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005455 if (adj->dev == adj_dev)
5456 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005457 }
5458 return NULL;
5459}
5460
5461/**
5462 * netdev_has_upper_dev - Check if device is linked to an upper device
5463 * @dev: device
5464 * @upper_dev: upper device to check
5465 *
5466 * Find out if a device is linked to specified upper device and return true
5467 * in case it is. Note that this checks only immediate upper device,
5468 * not through a complete stack of devices. The caller must hold the RTNL lock.
5469 */
5470bool netdev_has_upper_dev(struct net_device *dev,
5471 struct net_device *upper_dev)
5472{
5473 ASSERT_RTNL();
5474
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005475 return __netdev_find_adj(upper_dev, &dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005476}
5477EXPORT_SYMBOL(netdev_has_upper_dev);
5478
5479/**
5480 * netdev_has_any_upper_dev - Check if device is linked to some device
5481 * @dev: device
5482 *
5483 * Find out if a device is linked to an upper device and return true in case
5484 * it is. The caller must hold the RTNL lock.
5485 */
Ido Schimmel73ee5a732017-09-01 10:52:31 +02005486bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005487{
5488 ASSERT_RTNL();
5489
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005490 return !list_empty(&dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005491}
Ido Schimmel73ee5a732017-09-01 10:52:31 +02005492EXPORT_SYMBOL(netdev_has_any_upper_dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005493
5494/**
5495 * netdev_master_upper_dev_get - Get master upper device
5496 * @dev: device
5497 *
5498 * Find a master upper device and return pointer to it or NULL in case
5499 * it's not there. The caller must hold the RTNL lock.
5500 */
5501struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
5502{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005503 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005504
5505 ASSERT_RTNL();
5506
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005507 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005508 return NULL;
5509
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005510 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005511 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005512 if (likely(upper->master))
5513 return upper->dev;
5514 return NULL;
5515}
5516EXPORT_SYMBOL(netdev_master_upper_dev_get);
5517
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02005518void *netdev_adjacent_get_private(struct list_head *adj_list)
5519{
5520 struct netdev_adjacent *adj;
5521
5522 adj = list_entry(adj_list, struct netdev_adjacent, list);
5523
5524 return adj->private;
5525}
5526EXPORT_SYMBOL(netdev_adjacent_get_private);
5527
Veaceslav Falico31088a12013-09-25 09:20:12 +02005528/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04005529 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
5530 * @dev: device
5531 * @iter: list_head ** of the current position
5532 *
5533 * Gets the next device from the dev's upper list, starting from iter
5534 * position. The caller must hold RCU read lock.
5535 */
5536struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
5537 struct list_head **iter)
5538{
5539 struct netdev_adjacent *upper;
5540
5541 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
5542
5543 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5544
5545 if (&upper->list == &dev->adj_list.upper)
5546 return NULL;
5547
5548 *iter = &upper->list;
5549
5550 return upper->dev;
5551}
5552EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
5553
5554/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02005555 * netdev_all_upper_get_next_dev_rcu - Get the next dev from upper list
Veaceslav Falico48311f42013-08-28 23:25:07 +02005556 * @dev: device
5557 * @iter: list_head ** of the current position
5558 *
5559 * Gets the next device from the dev's upper list, starting from iter
5560 * position. The caller must hold RCU read lock.
5561 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005562struct net_device *netdev_all_upper_get_next_dev_rcu(struct net_device *dev,
5563 struct list_head **iter)
Veaceslav Falico48311f42013-08-28 23:25:07 +02005564{
5565 struct netdev_adjacent *upper;
5566
John Fastabend85328242013-11-26 06:33:52 +00005567 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
Veaceslav Falico48311f42013-08-28 23:25:07 +02005568
5569 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5570
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005571 if (&upper->list == &dev->all_adj_list.upper)
Veaceslav Falico48311f42013-08-28 23:25:07 +02005572 return NULL;
5573
5574 *iter = &upper->list;
5575
5576 return upper->dev;
5577}
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005578EXPORT_SYMBOL(netdev_all_upper_get_next_dev_rcu);
Veaceslav Falico48311f42013-08-28 23:25:07 +02005579
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005580/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02005581 * netdev_lower_get_next_private - Get the next ->private from the
5582 * lower neighbour list
5583 * @dev: device
5584 * @iter: list_head ** of the current position
5585 *
5586 * Gets the next netdev_adjacent->private from the dev's lower neighbour
5587 * list, starting from iter position. The caller must hold either hold the
5588 * RTNL lock or its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00005589 * list will remain unchanged.
Veaceslav Falico31088a12013-09-25 09:20:12 +02005590 */
5591void *netdev_lower_get_next_private(struct net_device *dev,
5592 struct list_head **iter)
5593{
5594 struct netdev_adjacent *lower;
5595
5596 lower = list_entry(*iter, struct netdev_adjacent, list);
5597
5598 if (&lower->list == &dev->adj_list.lower)
5599 return NULL;
5600
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02005601 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02005602
5603 return lower->private;
5604}
5605EXPORT_SYMBOL(netdev_lower_get_next_private);
5606
5607/**
5608 * netdev_lower_get_next_private_rcu - Get the next ->private from the
5609 * lower neighbour list, RCU
5610 * variant
5611 * @dev: device
5612 * @iter: list_head ** of the current position
5613 *
5614 * Gets the next netdev_adjacent->private from the dev's lower neighbour
5615 * list, starting from iter position. The caller must hold RCU read lock.
5616 */
5617void *netdev_lower_get_next_private_rcu(struct net_device *dev,
5618 struct list_head **iter)
5619{
5620 struct netdev_adjacent *lower;
5621
5622 WARN_ON_ONCE(!rcu_read_lock_held());
5623
5624 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5625
5626 if (&lower->list == &dev->adj_list.lower)
5627 return NULL;
5628
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02005629 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02005630
5631 return lower->private;
5632}
5633EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
5634
5635/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005636 * netdev_lower_get_next - Get the next device from the lower neighbour
5637 * list
5638 * @dev: device
5639 * @iter: list_head ** of the current position
5640 *
5641 * Gets the next netdev_adjacent from the dev's lower neighbour
5642 * list, starting from iter position. The caller must hold RTNL lock or
5643 * its own locking that guarantees that the neighbour lower
subashab@codeaurora.orgb4691392015-07-24 03:03:29 +00005644 * list will remain unchanged.
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005645 */
5646void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
5647{
5648 struct netdev_adjacent *lower;
5649
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01005650 lower = list_entry(*iter, struct netdev_adjacent, list);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005651
5652 if (&lower->list == &dev->adj_list.lower)
5653 return NULL;
5654
Nikolay Aleksandrovcfdd28b2016-02-17 18:00:31 +01005655 *iter = lower->list.next;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005656
5657 return lower->dev;
5658}
5659EXPORT_SYMBOL(netdev_lower_get_next);
5660
5661/**
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005662 * netdev_all_lower_get_next - Get the next device from all lower neighbour list
5663 * @dev: device
5664 * @iter: list_head ** of the current position
5665 *
5666 * Gets the next netdev_adjacent from the dev's all lower neighbour
5667 * list, starting from iter position. The caller must hold RTNL lock or
5668 * its own locking that guarantees that the neighbour all lower
5669 * list will remain unchanged.
5670 */
5671struct net_device *netdev_all_lower_get_next(struct net_device *dev, struct list_head **iter)
5672{
5673 struct netdev_adjacent *lower;
5674
5675 lower = list_entry(*iter, struct netdev_adjacent, list);
5676
5677 if (&lower->list == &dev->all_adj_list.lower)
5678 return NULL;
5679
5680 *iter = lower->list.next;
5681
5682 return lower->dev;
5683}
5684EXPORT_SYMBOL(netdev_all_lower_get_next);
5685
5686/**
5687 * netdev_all_lower_get_next_rcu - Get the next device from all
5688 * lower neighbour list, RCU variant
5689 * @dev: device
5690 * @iter: list_head ** of the current position
5691 *
5692 * Gets the next netdev_adjacent from the dev's all lower neighbour
5693 * list, starting from iter position. The caller must hold RCU read lock.
5694 */
5695struct net_device *netdev_all_lower_get_next_rcu(struct net_device *dev,
5696 struct list_head **iter)
5697{
5698 struct netdev_adjacent *lower;
5699
Ido Schimmele4961b02016-10-19 16:57:08 +03005700 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005701
Ido Schimmele4961b02016-10-19 16:57:08 +03005702 if (&lower->list == &dev->all_adj_list.lower)
5703 return NULL;
5704
5705 *iter = &lower->list;
5706
5707 return lower->dev;
Jiri Pirko7ce856a2016-07-04 08:23:12 +02005708}
5709EXPORT_SYMBOL(netdev_all_lower_get_next_rcu);
5710
5711/**
dingtianhonge001bfa2013-12-13 10:19:55 +08005712 * netdev_lower_get_first_private_rcu - Get the first ->private from the
5713 * lower neighbour list, RCU
5714 * variant
5715 * @dev: device
5716 *
5717 * Gets the first netdev_adjacent->private from the dev's lower neighbour
5718 * list. The caller must hold RCU read lock.
5719 */
5720void *netdev_lower_get_first_private_rcu(struct net_device *dev)
5721{
5722 struct netdev_adjacent *lower;
5723
5724 lower = list_first_or_null_rcu(&dev->adj_list.lower,
5725 struct netdev_adjacent, list);
5726 if (lower)
5727 return lower->private;
5728 return NULL;
5729}
5730EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
5731
5732/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005733 * netdev_master_upper_dev_get_rcu - Get master upper device
5734 * @dev: device
5735 *
5736 * Find a master upper device and return pointer to it or NULL in case
5737 * it's not there. The caller must hold the RCU read lock.
5738 */
5739struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
5740{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005741 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005742
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005743 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005744 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005745 if (upper && likely(upper->master))
5746 return upper->dev;
5747 return NULL;
5748}
5749EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
5750
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05305751static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005752 struct net_device *adj_dev,
5753 struct list_head *dev_list)
5754{
5755 char linkname[IFNAMSIZ+7];
5756 sprintf(linkname, dev_list == &dev->adj_list.upper ?
5757 "upper_%s" : "lower_%s", adj_dev->name);
5758 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
5759 linkname);
5760}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05305761static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005762 char *name,
5763 struct list_head *dev_list)
5764{
5765 char linkname[IFNAMSIZ+7];
5766 sprintf(linkname, dev_list == &dev->adj_list.upper ?
5767 "upper_%s" : "lower_%s", name);
5768 sysfs_remove_link(&(dev->dev.kobj), linkname);
5769}
5770
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005771static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
5772 struct net_device *adj_dev,
5773 struct list_head *dev_list)
5774{
5775 return (dev_list == &dev->adj_list.upper ||
5776 dev_list == &dev->adj_list.lower) &&
5777 net_eq(dev_net(dev), dev_net(adj_dev));
5778}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005779
Veaceslav Falico5d261912013-08-28 23:25:05 +02005780static int __netdev_adjacent_dev_insert(struct net_device *dev,
5781 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005782 u16 ref_nr,
Veaceslav Falico7863c052013-09-25 09:20:06 +02005783 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005784 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005785{
5786 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005787 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005788
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005789 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005790
5791 if (adj) {
Andrew Collins93409032016-10-03 13:43:02 -06005792 adj->ref_nr += ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005793 return 0;
5794 }
5795
5796 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
5797 if (!adj)
5798 return -ENOMEM;
5799
5800 adj->dev = adj_dev;
5801 adj->master = master;
Andrew Collins93409032016-10-03 13:43:02 -06005802 adj->ref_nr = ref_nr;
Veaceslav Falico402dae92013-09-25 09:20:09 +02005803 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005804 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005805
5806 pr_debug("dev_hold for %s, because of link added from %s to %s\n",
5807 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005808
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005809 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005810 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005811 if (ret)
5812 goto free_adj;
5813 }
5814
Veaceslav Falico7863c052013-09-25 09:20:06 +02005815 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005816 if (master) {
5817 ret = sysfs_create_link(&(dev->dev.kobj),
5818 &(adj_dev->dev.kobj), "master");
5819 if (ret)
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005820 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005821
Veaceslav Falico7863c052013-09-25 09:20:06 +02005822 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005823 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02005824 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005825 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02005826
5827 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005828
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005829remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005830 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005831 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005832free_adj:
5833 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02005834 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005835
5836 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005837}
5838
stephen hemminger1d143d92013-12-29 14:01:29 -08005839static void __netdev_adjacent_dev_remove(struct net_device *dev,
5840 struct net_device *adj_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005841 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005842 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005843{
5844 struct netdev_adjacent *adj;
5845
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005846 adj = __netdev_find_adj(adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005847
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005848 if (!adj) {
5849 pr_err("tried to remove device %s from %s\n",
5850 dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005851 BUG();
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005852 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02005853
Andrew Collins93409032016-10-03 13:43:02 -06005854 if (adj->ref_nr > ref_nr) {
5855 pr_debug("%s to %s ref_nr-%d = %d\n", dev->name, adj_dev->name,
5856 ref_nr, adj->ref_nr-ref_nr);
5857 adj->ref_nr -= ref_nr;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005858 return;
5859 }
5860
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005861 if (adj->master)
5862 sysfs_remove_link(&(dev->dev.kobj), "master");
5863
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005864 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005865 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005866
Veaceslav Falico5d261912013-08-28 23:25:05 +02005867 list_del_rcu(&adj->list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005868 pr_debug("dev_put for %s, because link removed from %s to %s\n",
5869 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005870 dev_put(adj_dev);
5871 kfree_rcu(adj, rcu);
5872}
5873
stephen hemminger1d143d92013-12-29 14:01:29 -08005874static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
5875 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005876 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005877 struct list_head *up_list,
5878 struct list_head *down_list,
5879 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005880{
5881 int ret;
5882
Andrew Collins93409032016-10-03 13:43:02 -06005883 ret = __netdev_adjacent_dev_insert(dev, upper_dev, ref_nr, up_list,
5884 private, master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005885 if (ret)
5886 return ret;
5887
Andrew Collins93409032016-10-03 13:43:02 -06005888 ret = __netdev_adjacent_dev_insert(upper_dev, dev, ref_nr, down_list,
5889 private, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005890 if (ret) {
Andrew Collins93409032016-10-03 13:43:02 -06005891 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005892 return ret;
5893 }
5894
5895 return 0;
5896}
5897
stephen hemminger1d143d92013-12-29 14:01:29 -08005898static int __netdev_adjacent_dev_link(struct net_device *dev,
Andrew Collins93409032016-10-03 13:43:02 -06005899 struct net_device *upper_dev,
5900 u16 ref_nr)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005901{
Andrew Collins93409032016-10-03 13:43:02 -06005902 return __netdev_adjacent_dev_link_lists(dev, upper_dev, ref_nr,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005903 &dev->all_adj_list.upper,
5904 &upper_dev->all_adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005905 NULL, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005906}
5907
stephen hemminger1d143d92013-12-29 14:01:29 -08005908static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
5909 struct net_device *upper_dev,
Andrew Collins93409032016-10-03 13:43:02 -06005910 u16 ref_nr,
stephen hemminger1d143d92013-12-29 14:01:29 -08005911 struct list_head *up_list,
5912 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005913{
Andrew Collins93409032016-10-03 13:43:02 -06005914 __netdev_adjacent_dev_remove(dev, upper_dev, ref_nr, up_list);
5915 __netdev_adjacent_dev_remove(upper_dev, dev, ref_nr, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005916}
5917
stephen hemminger1d143d92013-12-29 14:01:29 -08005918static void __netdev_adjacent_dev_unlink(struct net_device *dev,
Andrew Collins93409032016-10-03 13:43:02 -06005919 struct net_device *upper_dev,
5920 u16 ref_nr)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005921{
Andrew Collins93409032016-10-03 13:43:02 -06005922 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, ref_nr,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005923 &dev->all_adj_list.upper,
5924 &upper_dev->all_adj_list.lower);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005925}
5926
stephen hemminger1d143d92013-12-29 14:01:29 -08005927static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
5928 struct net_device *upper_dev,
5929 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005930{
Andrew Collins93409032016-10-03 13:43:02 -06005931 int ret = __netdev_adjacent_dev_link(dev, upper_dev, 1);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005932
5933 if (ret)
5934 return ret;
5935
Andrew Collins93409032016-10-03 13:43:02 -06005936 ret = __netdev_adjacent_dev_link_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005937 &dev->adj_list.upper,
5938 &upper_dev->adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005939 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005940 if (ret) {
Andrew Collins93409032016-10-03 13:43:02 -06005941 __netdev_adjacent_dev_unlink(dev, upper_dev, 1);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005942 return ret;
5943 }
5944
5945 return 0;
5946}
5947
stephen hemminger1d143d92013-12-29 14:01:29 -08005948static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
5949 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005950{
Andrew Collins93409032016-10-03 13:43:02 -06005951 __netdev_adjacent_dev_unlink(dev, upper_dev, 1);
5952 __netdev_adjacent_dev_unlink_lists(dev, upper_dev, 1,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005953 &dev->adj_list.upper,
5954 &upper_dev->adj_list.lower);
5955}
Veaceslav Falico5d261912013-08-28 23:25:05 +02005956
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005957static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005958 struct net_device *upper_dev, bool master,
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005959 void *upper_priv, void *upper_info)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005960{
Jiri Pirko0e4ead92015-08-27 09:31:18 +02005961 struct netdev_notifier_changeupper_info changeupper_info;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005962 struct netdev_adjacent *i, *j, *to_i, *to_j;
5963 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005964
5965 ASSERT_RTNL();
5966
5967 if (dev == upper_dev)
5968 return -EBUSY;
5969
5970 /* To prevent loops, check if dev is not upper device to upper_dev. */
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005971 if (__netdev_find_adj(dev, &upper_dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005972 return -EBUSY;
5973
Michal Kubeček6ea29da2015-09-24 10:59:05 +02005974 if (__netdev_find_adj(upper_dev, &dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005975 return -EEXIST;
5976
5977 if (master && netdev_master_upper_dev_get(dev))
5978 return -EBUSY;
5979
Jiri Pirko0e4ead92015-08-27 09:31:18 +02005980 changeupper_info.upper_dev = upper_dev;
5981 changeupper_info.master = master;
5982 changeupper_info.linking = true;
Jiri Pirko29bf24a2015-12-03 12:12:11 +01005983 changeupper_info.upper_info = upper_info;
Jiri Pirko0e4ead92015-08-27 09:31:18 +02005984
Jiri Pirko573c7ba2015-10-16 14:01:22 +02005985 ret = call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER, dev,
5986 &changeupper_info.info);
5987 ret = notifier_to_errno(ret);
5988 if (ret)
5989 return ret;
5990
Jiri Pirko6dffb042015-12-03 12:12:10 +01005991 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, upper_priv,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005992 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005993 if (ret)
5994 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005995
Veaceslav Falico5d261912013-08-28 23:25:05 +02005996 /* Now that we linked these devs, make all the upper_dev's
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005997 * all_adj_list.upper visible to every dev's all_adj_list.lower an
Veaceslav Falico5d261912013-08-28 23:25:05 +02005998 * versa, and don't forget the devices itself. All of these
5999 * links are non-neighbours.
6000 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006001 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
6002 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
6003 pr_debug("Interlinking %s with %s, non-neighbour\n",
6004 i->dev->name, j->dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06006005 ret = __netdev_adjacent_dev_link(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006006 if (ret)
6007 goto rollback_mesh;
6008 }
6009 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006010
Veaceslav Falico5d261912013-08-28 23:25:05 +02006011 /* add dev to every upper_dev's upper device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006012 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
6013 pr_debug("linking %s's upper device %s with %s\n",
6014 upper_dev->name, i->dev->name, dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06006015 ret = __netdev_adjacent_dev_link(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006016 if (ret)
6017 goto rollback_upper_mesh;
6018 }
6019
6020 /* add upper_dev to every dev's lower device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006021 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
6022 pr_debug("linking %s's lower device %s with %s\n", dev->name,
6023 i->dev->name, upper_dev->name);
Andrew Collins93409032016-10-03 13:43:02 -06006024 ret = __netdev_adjacent_dev_link(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006025 if (ret)
6026 goto rollback_lower_mesh;
6027 }
6028
Ido Schimmelb03804e2015-12-03 12:12:03 +01006029 ret = call_netdevice_notifiers_info(NETDEV_CHANGEUPPER, dev,
6030 &changeupper_info.info);
6031 ret = notifier_to_errno(ret);
6032 if (ret)
6033 goto rollback_lower_mesh;
6034
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006035 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006036
6037rollback_lower_mesh:
6038 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006039 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006040 if (i == to_i)
6041 break;
Andrew Collins93409032016-10-03 13:43:02 -06006042 __netdev_adjacent_dev_unlink(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006043 }
6044
6045 i = NULL;
6046
6047rollback_upper_mesh:
6048 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006049 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006050 if (i == to_i)
6051 break;
Andrew Collins93409032016-10-03 13:43:02 -06006052 __netdev_adjacent_dev_unlink(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006053 }
6054
6055 i = j = NULL;
6056
6057rollback_mesh:
6058 to_i = i;
6059 to_j = j;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006060 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
6061 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02006062 if (i == to_i && j == to_j)
6063 break;
Andrew Collins93409032016-10-03 13:43:02 -06006064 __netdev_adjacent_dev_unlink(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006065 }
6066 if (i == to_i)
6067 break;
6068 }
6069
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006070 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006071
6072 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006073}
6074
6075/**
6076 * netdev_upper_dev_link - Add a link to the upper device
6077 * @dev: device
6078 * @upper_dev: new upper device
6079 *
6080 * Adds a link to device which is upper to this one. The caller must hold
6081 * the RTNL lock. On a failure a negative errno code is returned.
6082 * On success the reference counts are adjusted and the function
6083 * returns zero.
6084 */
6085int netdev_upper_dev_link(struct net_device *dev,
6086 struct net_device *upper_dev)
6087{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006088 return __netdev_upper_dev_link(dev, upper_dev, false, NULL, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006089}
6090EXPORT_SYMBOL(netdev_upper_dev_link);
6091
6092/**
6093 * netdev_master_upper_dev_link - Add a master link to the upper device
6094 * @dev: device
6095 * @upper_dev: new upper device
Jiri Pirko6dffb042015-12-03 12:12:10 +01006096 * @upper_priv: upper device private
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006097 * @upper_info: upper info to be passed down via notifier
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006098 *
6099 * Adds a link to device which is upper to this one. In this case, only
6100 * one master upper device can be linked, although other non-master devices
6101 * might be linked as well. The caller must hold the RTNL lock.
6102 * On a failure a negative errno code is returned. On success the reference
6103 * counts are adjusted and the function returns zero.
6104 */
6105int netdev_master_upper_dev_link(struct net_device *dev,
Jiri Pirko6dffb042015-12-03 12:12:10 +01006106 struct net_device *upper_dev,
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006107 void *upper_priv, void *upper_info)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006108{
Jiri Pirko29bf24a2015-12-03 12:12:11 +01006109 return __netdev_upper_dev_link(dev, upper_dev, true,
6110 upper_priv, upper_info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006111}
6112EXPORT_SYMBOL(netdev_master_upper_dev_link);
6113
6114/**
6115 * netdev_upper_dev_unlink - Removes a link to upper device
6116 * @dev: device
6117 * @upper_dev: new upper device
6118 *
6119 * Removes a link to device which is upper to this one. The caller must hold
6120 * the RTNL lock.
6121 */
6122void netdev_upper_dev_unlink(struct net_device *dev,
6123 struct net_device *upper_dev)
6124{
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006125 struct netdev_notifier_changeupper_info changeupper_info;
Veaceslav Falico5d261912013-08-28 23:25:05 +02006126 struct netdev_adjacent *i, *j;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006127 ASSERT_RTNL();
6128
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006129 changeupper_info.upper_dev = upper_dev;
6130 changeupper_info.master = netdev_master_upper_dev_get(dev) == upper_dev;
6131 changeupper_info.linking = false;
6132
Jiri Pirko573c7ba2015-10-16 14:01:22 +02006133 call_netdevice_notifiers_info(NETDEV_PRECHANGEUPPER, dev,
6134 &changeupper_info.info);
6135
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006136 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006137
6138 /* Here is the tricky part. We must remove all dev's lower
6139 * devices from all upper_dev's upper devices and vice
6140 * versa, to maintain the graph relationship.
6141 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006142 list_for_each_entry(i, &dev->all_adj_list.lower, list)
6143 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list)
Andrew Collins93409032016-10-03 13:43:02 -06006144 __netdev_adjacent_dev_unlink(i->dev, j->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006145
6146 /* remove also the devices itself from lower/upper device
6147 * list
6148 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006149 list_for_each_entry(i, &dev->all_adj_list.lower, list)
Andrew Collins93409032016-10-03 13:43:02 -06006150 __netdev_adjacent_dev_unlink(i->dev, upper_dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006151
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006152 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list)
Andrew Collins93409032016-10-03 13:43:02 -06006153 __netdev_adjacent_dev_unlink(dev, i->dev, i->ref_nr);
Veaceslav Falico5d261912013-08-28 23:25:05 +02006154
Jiri Pirko0e4ead92015-08-27 09:31:18 +02006155 call_netdevice_notifiers_info(NETDEV_CHANGEUPPER, dev,
6156 &changeupper_info.info);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006157}
6158EXPORT_SYMBOL(netdev_upper_dev_unlink);
6159
Moni Shoua61bd3852015-02-03 16:48:29 +02006160/**
6161 * netdev_bonding_info_change - Dispatch event about slave change
6162 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09006163 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02006164 *
6165 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
6166 * The caller must hold the RTNL lock.
6167 */
6168void netdev_bonding_info_change(struct net_device *dev,
6169 struct netdev_bonding_info *bonding_info)
6170{
6171 struct netdev_notifier_bonding_info info;
6172
6173 memcpy(&info.bonding_info, bonding_info,
6174 sizeof(struct netdev_bonding_info));
6175 call_netdevice_notifiers_info(NETDEV_BONDING_INFO, dev,
6176 &info.info);
6177}
6178EXPORT_SYMBOL(netdev_bonding_info_change);
6179
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08006180static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006181{
6182 struct netdev_adjacent *iter;
6183
6184 struct net *net = dev_net(dev);
6185
6186 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006187 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006188 continue;
6189 netdev_adjacent_sysfs_add(iter->dev, dev,
6190 &iter->dev->adj_list.lower);
6191 netdev_adjacent_sysfs_add(dev, iter->dev,
6192 &dev->adj_list.upper);
6193 }
6194
6195 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006196 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006197 continue;
6198 netdev_adjacent_sysfs_add(iter->dev, dev,
6199 &iter->dev->adj_list.upper);
6200 netdev_adjacent_sysfs_add(dev, iter->dev,
6201 &dev->adj_list.lower);
6202 }
6203}
6204
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08006205static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006206{
6207 struct netdev_adjacent *iter;
6208
6209 struct net *net = dev_net(dev);
6210
6211 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006212 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006213 continue;
6214 netdev_adjacent_sysfs_del(iter->dev, dev->name,
6215 &iter->dev->adj_list.lower);
6216 netdev_adjacent_sysfs_del(dev, iter->dev->name,
6217 &dev->adj_list.upper);
6218 }
6219
6220 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006221 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006222 continue;
6223 netdev_adjacent_sysfs_del(iter->dev, dev->name,
6224 &iter->dev->adj_list.upper);
6225 netdev_adjacent_sysfs_del(dev, iter->dev->name,
6226 &dev->adj_list.lower);
6227 }
6228}
6229
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006230void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02006231{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006232 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02006233
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006234 struct net *net = dev_net(dev);
6235
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006236 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006237 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006238 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006239 netdev_adjacent_sysfs_del(iter->dev, oldname,
6240 &iter->dev->adj_list.lower);
6241 netdev_adjacent_sysfs_add(iter->dev, dev,
6242 &iter->dev->adj_list.lower);
6243 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02006244
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006245 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Wei Tangbe4da0e2016-06-16 21:30:12 +08006246 if (!net_eq(net, dev_net(iter->dev)))
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04006247 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01006248 netdev_adjacent_sysfs_del(iter->dev, oldname,
6249 &iter->dev->adj_list.upper);
6250 netdev_adjacent_sysfs_add(iter->dev, dev,
6251 &iter->dev->adj_list.upper);
6252 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02006253}
Veaceslav Falico402dae92013-09-25 09:20:09 +02006254
6255void *netdev_lower_dev_get_private(struct net_device *dev,
6256 struct net_device *lower_dev)
6257{
6258 struct netdev_adjacent *lower;
6259
6260 if (!lower_dev)
6261 return NULL;
Michal Kubeček6ea29da2015-09-24 10:59:05 +02006262 lower = __netdev_find_adj(lower_dev, &dev->adj_list.lower);
Veaceslav Falico402dae92013-09-25 09:20:09 +02006263 if (!lower)
6264 return NULL;
6265
6266 return lower->private;
6267}
6268EXPORT_SYMBOL(netdev_lower_dev_get_private);
6269
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006270
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006271int dev_get_nest_level(struct net_device *dev)
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006272{
6273 struct net_device *lower = NULL;
6274 struct list_head *iter;
6275 int max_nest = -1;
6276 int nest;
6277
6278 ASSERT_RTNL();
6279
6280 netdev_for_each_lower_dev(dev, lower, iter) {
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006281 nest = dev_get_nest_level(lower);
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006282 if (max_nest < nest)
6283 max_nest = nest;
6284 }
6285
Sabrina Dubroca952fcfd2016-08-12 16:10:33 +02006286 return max_nest + 1;
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04006287}
6288EXPORT_SYMBOL(dev_get_nest_level);
6289
Jiri Pirko04d48262015-12-03 12:12:15 +01006290/**
6291 * netdev_lower_change - Dispatch event about lower device state change
6292 * @lower_dev: device
6293 * @lower_state_info: state to dispatch
6294 *
6295 * Send NETDEV_CHANGELOWERSTATE to netdev notifiers with info.
6296 * The caller must hold the RTNL lock.
6297 */
6298void netdev_lower_state_changed(struct net_device *lower_dev,
6299 void *lower_state_info)
6300{
6301 struct netdev_notifier_changelowerstate_info changelowerstate_info;
6302
6303 ASSERT_RTNL();
6304 changelowerstate_info.lower_state_info = lower_state_info;
6305 call_netdevice_notifiers_info(NETDEV_CHANGELOWERSTATE, lower_dev,
6306 &changelowerstate_info.info);
6307}
6308EXPORT_SYMBOL(netdev_lower_state_changed);
6309
Jiri Pirko18bfb922016-07-05 11:27:38 +02006310int netdev_default_l2upper_neigh_construct(struct net_device *dev,
6311 struct neighbour *n)
6312{
6313 struct net_device *lower_dev, *stop_dev;
6314 struct list_head *iter;
6315 int err;
6316
6317 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6318 if (!lower_dev->netdev_ops->ndo_neigh_construct)
6319 continue;
6320 err = lower_dev->netdev_ops->ndo_neigh_construct(lower_dev, n);
6321 if (err) {
6322 stop_dev = lower_dev;
6323 goto rollback;
6324 }
6325 }
6326 return 0;
6327
6328rollback:
6329 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6330 if (lower_dev == stop_dev)
6331 break;
6332 if (!lower_dev->netdev_ops->ndo_neigh_destroy)
6333 continue;
6334 lower_dev->netdev_ops->ndo_neigh_destroy(lower_dev, n);
6335 }
6336 return err;
6337}
6338EXPORT_SYMBOL_GPL(netdev_default_l2upper_neigh_construct);
6339
6340void netdev_default_l2upper_neigh_destroy(struct net_device *dev,
6341 struct neighbour *n)
6342{
6343 struct net_device *lower_dev;
6344 struct list_head *iter;
6345
6346 netdev_for_each_lower_dev(dev, lower_dev, iter) {
6347 if (!lower_dev->netdev_ops->ndo_neigh_destroy)
6348 continue;
6349 lower_dev->netdev_ops->ndo_neigh_destroy(lower_dev, n);
6350 }
6351}
6352EXPORT_SYMBOL_GPL(netdev_default_l2upper_neigh_destroy);
6353
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006354static void dev_change_rx_flags(struct net_device *dev, int flags)
6355{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006356 const struct net_device_ops *ops = dev->netdev_ops;
6357
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05006358 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006359 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006360}
6361
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006362static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07006363{
Eric Dumazetb536db92011-11-30 21:42:26 +00006364 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06006365 kuid_t uid;
6366 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07006367
Patrick McHardy24023452007-07-14 18:51:31 -07006368 ASSERT_RTNL();
6369
Wang Chendad9b332008-06-18 01:48:28 -07006370 dev->flags |= IFF_PROMISC;
6371 dev->promiscuity += inc;
6372 if (dev->promiscuity == 0) {
6373 /*
6374 * Avoid overflow.
6375 * If inc causes overflow, untouch promisc and return error.
6376 */
6377 if (inc < 0)
6378 dev->flags &= ~IFF_PROMISC;
6379 else {
6380 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006381 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
6382 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07006383 return -EOVERFLOW;
6384 }
6385 }
Patrick McHardy4417da62007-06-27 01:28:10 -07006386 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006387 pr_info("device %s %s promiscuous mode\n",
6388 dev->name,
6389 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11006390 if (audit_enabled) {
6391 current_uid_gid(&uid, &gid);
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05006392 audit_log(current->audit_context, GFP_ATOMIC,
6393 AUDIT_ANOM_PROMISCUOUS,
6394 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
6395 dev->name, (dev->flags & IFF_PROMISC),
6396 (old_flags & IFF_PROMISC),
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07006397 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06006398 from_kuid(&init_user_ns, uid),
6399 from_kgid(&init_user_ns, gid),
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05006400 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11006401 }
Patrick McHardy24023452007-07-14 18:51:31 -07006402
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006403 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07006404 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006405 if (notify)
6406 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07006407 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07006408}
6409
Linus Torvalds1da177e2005-04-16 15:20:36 -07006410/**
6411 * dev_set_promiscuity - update promiscuity count on a device
6412 * @dev: device
6413 * @inc: modifier
6414 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07006415 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07006416 * remains above zero the interface remains promiscuous. Once it hits zero
6417 * the device reverts back to normal filtering operation. A negative inc
6418 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07006419 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006420 */
Wang Chendad9b332008-06-18 01:48:28 -07006421int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006422{
Eric Dumazetb536db92011-11-30 21:42:26 +00006423 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07006424 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006425
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006426 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07006427 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07006428 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07006429 if (dev->flags != old_flags)
6430 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07006431 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006432}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006433EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006434
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006435static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006436{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006437 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006438
Patrick McHardy24023452007-07-14 18:51:31 -07006439 ASSERT_RTNL();
6440
Linus Torvalds1da177e2005-04-16 15:20:36 -07006441 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07006442 dev->allmulti += inc;
6443 if (dev->allmulti == 0) {
6444 /*
6445 * Avoid overflow.
6446 * If inc causes overflow, untouch allmulti and return error.
6447 */
6448 if (inc < 0)
6449 dev->flags &= ~IFF_ALLMULTI;
6450 else {
6451 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006452 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
6453 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07006454 return -EOVERFLOW;
6455 }
6456 }
Patrick McHardy24023452007-07-14 18:51:31 -07006457 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006458 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07006459 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006460 if (notify)
6461 __dev_notify_flags(dev, old_flags,
6462 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07006463 }
Wang Chendad9b332008-06-18 01:48:28 -07006464 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07006465}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006466
6467/**
6468 * dev_set_allmulti - update allmulti count on a device
6469 * @dev: device
6470 * @inc: modifier
6471 *
6472 * Add or remove reception of all multicast frames to a device. While the
6473 * count in the device remains above zero the interface remains listening
6474 * to all interfaces. Once it hits zero the device reverts back to normal
6475 * filtering operation. A negative @inc value is used to drop the counter
6476 * when releasing a resource needing all multicasts.
6477 * Return 0 if successful or a negative errno code on error.
6478 */
6479
6480int dev_set_allmulti(struct net_device *dev, int inc)
6481{
6482 return __dev_set_allmulti(dev, inc, true);
6483}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006484EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07006485
6486/*
6487 * Upload unicast and multicast address lists to device and
6488 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08006489 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07006490 * are present.
6491 */
6492void __dev_set_rx_mode(struct net_device *dev)
6493{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006494 const struct net_device_ops *ops = dev->netdev_ops;
6495
Patrick McHardy4417da62007-06-27 01:28:10 -07006496 /* dev_open will call this function so the list will stay sane. */
6497 if (!(dev->flags&IFF_UP))
6498 return;
6499
6500 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09006501 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07006502
Jiri Pirko01789342011-08-16 06:29:00 +00006503 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07006504 /* Unicast addresses changes may only happen under the rtnl,
6505 * therefore calling __dev_set_promiscuity here is safe.
6506 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08006507 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006508 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07006509 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08006510 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006511 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07006512 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07006513 }
Patrick McHardy4417da62007-06-27 01:28:10 -07006514 }
Jiri Pirko01789342011-08-16 06:29:00 +00006515
6516 if (ops->ndo_set_rx_mode)
6517 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07006518}
6519
6520void dev_set_rx_mode(struct net_device *dev)
6521{
David S. Millerb9e40852008-07-15 00:15:08 -07006522 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07006523 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07006524 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006525}
6526
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006527/**
6528 * dev_get_flags - get flags reported to userspace
6529 * @dev: device
6530 *
6531 * Get the combination of flag bits exported through APIs to userspace.
6532 */
Eric Dumazet95c96172012-04-15 05:58:06 +00006533unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006534{
Eric Dumazet95c96172012-04-15 05:58:06 +00006535 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006536
6537 flags = (dev->flags & ~(IFF_PROMISC |
6538 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08006539 IFF_RUNNING |
6540 IFF_LOWER_UP |
6541 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07006542 (dev->gflags & (IFF_PROMISC |
6543 IFF_ALLMULTI));
6544
Stefan Rompfb00055a2006-03-20 17:09:11 -08006545 if (netif_running(dev)) {
6546 if (netif_oper_up(dev))
6547 flags |= IFF_RUNNING;
6548 if (netif_carrier_ok(dev))
6549 flags |= IFF_LOWER_UP;
6550 if (netif_dormant(dev))
6551 flags |= IFF_DORMANT;
6552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006553
6554 return flags;
6555}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006556EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006557
Patrick McHardybd380812010-02-26 06:34:53 +00006558int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559{
Eric Dumazetb536db92011-11-30 21:42:26 +00006560 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00006561 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006562
Patrick McHardy24023452007-07-14 18:51:31 -07006563 ASSERT_RTNL();
6564
Linus Torvalds1da177e2005-04-16 15:20:36 -07006565 /*
6566 * Set the flags on our device.
6567 */
6568
6569 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
6570 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
6571 IFF_AUTOMEDIA)) |
6572 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
6573 IFF_ALLMULTI));
6574
6575 /*
6576 * Load in the correct multicast list now the flags have changed.
6577 */
6578
Patrick McHardyb6c40d62008-10-07 15:26:48 -07006579 if ((old_flags ^ flags) & IFF_MULTICAST)
6580 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07006581
Patrick McHardy4417da62007-06-27 01:28:10 -07006582 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006583
6584 /*
6585 * Have we downed the interface. We handle IFF_UP ourselves
6586 * according to user attempts to set it, rather than blindly
6587 * setting it.
6588 */
6589
6590 ret = 0;
Peter Pan(潘卫平)d215d102014-06-16 21:57:22 +08006591 if ((old_flags ^ flags) & IFF_UP)
Patrick McHardybd380812010-02-26 06:34:53 +00006592 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006595 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006596 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006597
Linus Torvalds1da177e2005-04-16 15:20:36 -07006598 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006599
6600 if (__dev_set_promiscuity(dev, inc, false) >= 0)
6601 if (dev->flags != old_flags)
6602 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603 }
6604
6605 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
6606 is important. Some (broken) drivers set IFF_PROMISC, when
6607 IFF_ALLMULTI is requested not asking us and not reporting.
6608 */
6609 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006610 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
6611
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006613 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006614 }
6615
Patrick McHardybd380812010-02-26 06:34:53 +00006616 return ret;
6617}
6618
Nicolas Dichtela528c212013-09-25 12:02:44 +02006619void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
6620 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00006621{
6622 unsigned int changes = dev->flags ^ old_flags;
6623
Nicolas Dichtela528c212013-09-25 12:02:44 +02006624 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006625 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02006626
Patrick McHardybd380812010-02-26 06:34:53 +00006627 if (changes & IFF_UP) {
6628 if (dev->flags & IFF_UP)
6629 call_netdevice_notifiers(NETDEV_UP, dev);
6630 else
6631 call_netdevice_notifiers(NETDEV_DOWN, dev);
6632 }
6633
6634 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00006635 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
6636 struct netdev_notifier_change_info change_info;
6637
6638 change_info.flags_changed = changes;
6639 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
6640 &change_info.info);
6641 }
Patrick McHardybd380812010-02-26 06:34:53 +00006642}
6643
6644/**
6645 * dev_change_flags - change device settings
6646 * @dev: device
6647 * @flags: device state flags
6648 *
6649 * Change settings on device based state flags. The flags are
6650 * in the userspace exported format.
6651 */
Eric Dumazetb536db92011-11-30 21:42:26 +00006652int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00006653{
Eric Dumazetb536db92011-11-30 21:42:26 +00006654 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006655 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00006656
6657 ret = __dev_change_flags(dev, flags);
6658 if (ret < 0)
6659 return ret;
6660
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02006661 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02006662 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006663 return ret;
6664}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006665EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006667static int __dev_set_mtu(struct net_device *dev, int new_mtu)
6668{
6669 const struct net_device_ops *ops = dev->netdev_ops;
6670
6671 if (ops->ndo_change_mtu)
6672 return ops->ndo_change_mtu(dev, new_mtu);
6673
6674 dev->mtu = new_mtu;
6675 return 0;
6676}
6677
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006678/**
6679 * dev_set_mtu - Change maximum transfer unit
6680 * @dev: device
6681 * @new_mtu: new transfer unit
6682 *
6683 * Change the maximum transfer size of the network device.
6684 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006685int dev_set_mtu(struct net_device *dev, int new_mtu)
6686{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006687 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006688
6689 if (new_mtu == dev->mtu)
6690 return 0;
6691
6692 /* MTU must be positive. */
6693 if (new_mtu < 0)
6694 return -EINVAL;
6695
6696 if (!netif_device_present(dev))
6697 return -ENODEV;
6698
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01006699 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
6700 err = notifier_to_errno(err);
6701 if (err)
6702 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006703
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006704 orig_mtu = dev->mtu;
6705 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006706
Veaceslav Falico2315dc92014-01-10 16:56:25 +01006707 if (!err) {
6708 err = call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
6709 err = notifier_to_errno(err);
6710 if (err) {
6711 /* setting mtu back and notifying everyone again,
6712 * so that they have a chance to revert changes.
6713 */
6714 __dev_set_mtu(dev, orig_mtu);
6715 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
6716 }
6717 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006718 return err;
6719}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006720EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006721
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006722/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00006723 * dev_set_group - Change group this device belongs to
6724 * @dev: device
6725 * @new_group: group this device should belong to
6726 */
6727void dev_set_group(struct net_device *dev, int new_group)
6728{
6729 dev->group = new_group;
6730}
6731EXPORT_SYMBOL(dev_set_group);
6732
6733/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006734 * dev_set_mac_address - Change Media Access Control Address
6735 * @dev: device
6736 * @sa: new address
6737 *
6738 * Change the hardware (MAC) address of the device
6739 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006740int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
6741{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006742 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006743 int err;
6744
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006745 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006746 return -EOPNOTSUPP;
6747 if (sa->sa_family != dev->type)
6748 return -EINVAL;
6749 if (!netif_device_present(dev))
6750 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006751 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00006752 if (err)
6753 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00006754 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00006755 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04006756 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00006757 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006759EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006760
Jiri Pirko4bf84c32012-12-27 23:49:37 +00006761/**
6762 * dev_change_carrier - Change device carrier
6763 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00006764 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00006765 *
6766 * Change device carrier
6767 */
6768int dev_change_carrier(struct net_device *dev, bool new_carrier)
6769{
6770 const struct net_device_ops *ops = dev->netdev_ops;
6771
6772 if (!ops->ndo_change_carrier)
6773 return -EOPNOTSUPP;
6774 if (!netif_device_present(dev))
6775 return -ENODEV;
6776 return ops->ndo_change_carrier(dev, new_carrier);
6777}
6778EXPORT_SYMBOL(dev_change_carrier);
6779
Linus Torvalds1da177e2005-04-16 15:20:36 -07006780/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02006781 * dev_get_phys_port_id - Get device physical port ID
6782 * @dev: device
6783 * @ppid: port ID
6784 *
6785 * Get device physical port ID
6786 */
6787int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01006788 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02006789{
6790 const struct net_device_ops *ops = dev->netdev_ops;
6791
6792 if (!ops->ndo_get_phys_port_id)
6793 return -EOPNOTSUPP;
6794 return ops->ndo_get_phys_port_id(dev, ppid);
6795}
6796EXPORT_SYMBOL(dev_get_phys_port_id);
6797
6798/**
David Aherndb24a902015-03-17 20:23:15 -06006799 * dev_get_phys_port_name - Get device physical port name
6800 * @dev: device
6801 * @name: port name
Luis de Bethencourted49e652016-03-21 16:31:14 +00006802 * @len: limit of bytes to copy to name
David Aherndb24a902015-03-17 20:23:15 -06006803 *
6804 * Get device physical port name
6805 */
6806int dev_get_phys_port_name(struct net_device *dev,
6807 char *name, size_t len)
6808{
6809 const struct net_device_ops *ops = dev->netdev_ops;
6810
6811 if (!ops->ndo_get_phys_port_name)
6812 return -EOPNOTSUPP;
6813 return ops->ndo_get_phys_port_name(dev, name, len);
6814}
6815EXPORT_SYMBOL(dev_get_phys_port_name);
6816
6817/**
Anuradha Karuppiahd746d702015-07-14 13:43:19 -07006818 * dev_change_proto_down - update protocol port state information
6819 * @dev: device
6820 * @proto_down: new value
6821 *
6822 * This info can be used by switch drivers to set the phys state of the
6823 * port.
6824 */
6825int dev_change_proto_down(struct net_device *dev, bool proto_down)
6826{
6827 const struct net_device_ops *ops = dev->netdev_ops;
6828
6829 if (!ops->ndo_change_proto_down)
6830 return -EOPNOTSUPP;
6831 if (!netif_device_present(dev))
6832 return -ENODEV;
6833 return ops->ndo_change_proto_down(dev, proto_down);
6834}
6835EXPORT_SYMBOL(dev_change_proto_down);
6836
6837/**
Brenden Blancoa7862b42016-07-19 12:16:48 -07006838 * dev_change_xdp_fd - set or clear a bpf program for a device rx path
6839 * @dev: device
6840 * @fd: new program fd or negative value to clear
6841 *
6842 * Set or clear a bpf program for a device
6843 */
6844int dev_change_xdp_fd(struct net_device *dev, int fd)
6845{
6846 const struct net_device_ops *ops = dev->netdev_ops;
6847 struct bpf_prog *prog = NULL;
6848 struct netdev_xdp xdp = {};
6849 int err;
6850
6851 if (!ops->ndo_xdp)
6852 return -EOPNOTSUPP;
6853 if (fd >= 0) {
6854 prog = bpf_prog_get_type(fd, BPF_PROG_TYPE_XDP);
6855 if (IS_ERR(prog))
6856 return PTR_ERR(prog);
6857 }
6858
6859 xdp.command = XDP_SETUP_PROG;
6860 xdp.prog = prog;
6861 err = ops->ndo_xdp(dev, &xdp);
6862 if (err < 0 && prog)
6863 bpf_prog_put(prog);
6864
6865 return err;
6866}
6867EXPORT_SYMBOL(dev_change_xdp_fd);
6868
6869/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006870 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07006871 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07006872 *
6873 * Returns a suitable unique value for a new device interface
6874 * number. The caller must hold the rtnl semaphore or the
6875 * dev_base_lock to be sure it remains unique.
6876 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07006877static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006878{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00006879 int ifindex = net->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006880 for (;;) {
6881 if (++ifindex <= 0)
6882 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006883 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00006884 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006885 }
6886}
6887
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08006889static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07006890DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006891
Stephen Hemminger6f05f622007-03-08 20:46:03 -08006892static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006893{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006894 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07006895 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896}
6897
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006898static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006899{
Krishna Kumare93737b2009-12-08 22:26:02 +00006900 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006901 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006902
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006903 BUG_ON(dev_boot_phase);
6904 ASSERT_RTNL();
6905
Krishna Kumare93737b2009-12-08 22:26:02 +00006906 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006907 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00006908 * for initialization unwind. Remove those
6909 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006910 */
6911 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006912 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
6913 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006914
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006915 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00006916 list_del(&dev->unreg_list);
6917 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006918 }
Eric Dumazet449f4542011-05-19 12:24:16 +00006919 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006920 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00006921 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006922
Octavian Purdila44345722010-12-13 12:44:07 +00006923 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006924 list_for_each_entry(dev, head, unreg_list)
6925 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04006926 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006927
Octavian Purdila44345722010-12-13 12:44:07 +00006928 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006929 /* And unlink it from device chain. */
6930 unlist_netdevice(dev);
6931
6932 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006933 }
Eric Dumazet41852492016-08-26 12:50:39 -07006934 flush_all_backlogs();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006935
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006936 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006937
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006938 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006939 struct sk_buff *skb = NULL;
6940
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006941 /* Shutdown queueing discipline. */
6942 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006943
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006944
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006945 /* Notify protocols, that we are about to destroy
6946 this device. They should clean all the things.
6947 */
6948 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
6949
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006950 if (!dev->rtnl_link_ops ||
6951 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
6952 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U,
6953 GFP_KERNEL);
6954
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006955 /*
6956 * Flush the unicast and multicast chains
6957 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006958 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00006959 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006960
6961 if (dev->netdev_ops->ndo_uninit)
6962 dev->netdev_ops->ndo_uninit(dev);
6963
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006964 if (skb)
6965 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07006966
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006967 /* Notifier chain MUST detach us all upper devices. */
6968 WARN_ON(netdev_has_any_upper_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006969
6970 /* Remove entries from kobject tree */
6971 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00006972#ifdef CONFIG_XPS
6973 /* Remove XPS queueing entries */
6974 netif_reset_xps_queues_gt(dev, 0);
6975#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006976 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006977
Eric W. Biederman850a5452011-10-13 22:25:23 +00006978 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006979
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00006980 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006981 dev_put(dev);
6982}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006983
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006984static void rollback_registered(struct net_device *dev)
6985{
6986 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006987
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006988 list_add(&dev->unreg_list, &single);
6989 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00006990 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006991}
6992
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006993static netdev_features_t netdev_sync_upper_features(struct net_device *lower,
6994 struct net_device *upper, netdev_features_t features)
6995{
6996 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
6997 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05006998 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05006999
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007000 for_each_netdev_feature(&upper_disables, feature_bit) {
7001 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007002 if (!(upper->wanted_features & feature)
7003 && (features & feature)) {
7004 netdev_dbg(lower, "Dropping feature %pNF, upper dev %s has it off.\n",
7005 &feature, upper->name);
7006 features &= ~feature;
7007 }
7008 }
7009
7010 return features;
7011}
7012
7013static void netdev_sync_lower_features(struct net_device *upper,
7014 struct net_device *lower, netdev_features_t features)
7015{
7016 netdev_features_t upper_disables = NETIF_F_UPPER_DISABLES;
7017 netdev_features_t feature;
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007018 int feature_bit;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007019
Jarod Wilson5ba3f7d2015-11-03 10:15:59 -05007020 for_each_netdev_feature(&upper_disables, feature_bit) {
7021 feature = __NETIF_F_BIT(feature_bit);
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007022 if (!(features & feature) && (lower->features & feature)) {
7023 netdev_dbg(upper, "Disabling feature %pNF on lower dev %s.\n",
7024 &feature, lower->name);
7025 lower->wanted_features &= ~feature;
7026 netdev_update_features(lower);
7027
7028 if (unlikely(lower->features & feature))
7029 netdev_WARN(upper, "failed to disable %pNF on %s!\n",
7030 &feature, lower->name);
7031 }
7032 }
7033}
7034
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007035static netdev_features_t netdev_fix_features(struct net_device *dev,
7036 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07007037{
Michał Mirosław57422dc2011-01-22 12:14:12 +00007038 /* Fix illegal checksum combinations */
7039 if ((features & NETIF_F_HW_CSUM) &&
7040 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007041 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00007042 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
7043 }
7044
Herbert Xub63365a2008-10-23 01:11:29 -07007045 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00007046 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007047 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00007048 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07007049 }
7050
Pravin B Shelarec5f0612013-03-07 09:28:01 +00007051 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
7052 !(features & NETIF_F_IP_CSUM)) {
7053 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
7054 features &= ~NETIF_F_TSO;
7055 features &= ~NETIF_F_TSO_ECN;
7056 }
7057
7058 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
7059 !(features & NETIF_F_IPV6_CSUM)) {
7060 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
7061 features &= ~NETIF_F_TSO6;
7062 }
7063
Alexander Duyckb1dc4972016-05-02 09:38:24 -07007064 /* TSO with IPv4 ID mangling requires IPv4 TSO be enabled */
7065 if ((features & NETIF_F_TSO_MANGLEID) && !(features & NETIF_F_TSO))
7066 features &= ~NETIF_F_TSO_MANGLEID;
7067
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00007068 /* TSO ECN requires that TSO is present as well. */
7069 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
7070 features &= ~NETIF_F_TSO_ECN;
7071
Michał Mirosław212b5732011-02-15 16:59:16 +00007072 /* Software GSO depends on SG. */
7073 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007074 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00007075 features &= ~NETIF_F_GSO;
7076 }
7077
Michał Mirosławacd11302011-01-24 15:45:15 -08007078 /* UFO needs SG and checksumming */
Herbert Xub63365a2008-10-23 01:11:29 -07007079 if (features & NETIF_F_UFO) {
Michał Mirosław79032642010-11-30 06:38:00 +00007080 /* maybe split UFO into V4 and V6? */
Tom Herbertc8cd0982015-12-14 11:19:44 -08007081 if (!(features & NETIF_F_HW_CSUM) &&
7082 ((features & (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM)) !=
7083 (NETIF_F_IP_CSUM | NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007084 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08007085 "Dropping NETIF_F_UFO since no checksum offload features.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07007086 features &= ~NETIF_F_UFO;
7087 }
7088
7089 if (!(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04007090 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08007091 "Dropping NETIF_F_UFO since no NETIF_F_SG feature.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07007092 features &= ~NETIF_F_UFO;
7093 }
7094 }
7095
Alexander Duyck802ab552016-04-10 21:45:03 -04007096 /* GSO partial features require GSO partial be set */
7097 if ((features & dev->gso_partial_features) &&
7098 !(features & NETIF_F_GSO_PARTIAL)) {
7099 netdev_dbg(dev,
7100 "Dropping partially supported GSO features since no GSO partial.\n");
7101 features &= ~dev->gso_partial_features;
7102 }
7103
Jiri Pirkod0290212014-04-02 23:09:31 +02007104#ifdef CONFIG_NET_RX_BUSY_POLL
7105 if (dev->netdev_ops->ndo_busy_poll)
7106 features |= NETIF_F_BUSY_POLL;
7107 else
7108#endif
7109 features &= ~NETIF_F_BUSY_POLL;
7110
Herbert Xub63365a2008-10-23 01:11:29 -07007111 return features;
7112}
Herbert Xub63365a2008-10-23 01:11:29 -07007113
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007114int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00007115{
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007116 struct net_device *upper, *lower;
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007117 netdev_features_t features;
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007118 struct list_head *iter;
Jarod Wilsone7868a82015-11-03 23:09:32 -05007119 int err = -1;
Michał Mirosław5455c692011-02-15 16:59:17 +00007120
Michał Mirosław87267482011-04-12 09:56:38 +00007121 ASSERT_RTNL();
7122
Michał Mirosław5455c692011-02-15 16:59:17 +00007123 features = netdev_get_wanted_features(dev);
7124
7125 if (dev->netdev_ops->ndo_fix_features)
7126 features = dev->netdev_ops->ndo_fix_features(dev, features);
7127
7128 /* driver might be less strict about feature dependencies */
7129 features = netdev_fix_features(dev, features);
7130
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007131 /* some features can't be enabled if they're off an an upper device */
7132 netdev_for_each_upper_dev_rcu(dev, upper, iter)
7133 features = netdev_sync_upper_features(dev, upper, features);
7134
Michał Mirosław5455c692011-02-15 16:59:17 +00007135 if (dev->features == features)
Jarod Wilsone7868a82015-11-03 23:09:32 -05007136 goto sync_lower;
Michał Mirosław5455c692011-02-15 16:59:17 +00007137
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007138 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
7139 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00007140
7141 if (dev->netdev_ops->ndo_set_features)
7142 err = dev->netdev_ops->ndo_set_features(dev, features);
Nikolay Aleksandrov5f8dc332015-11-13 14:54:01 +01007143 else
7144 err = 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00007145
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007146 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00007147 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007148 "set_features() failed (%d); wanted %pNF, left %pNF\n",
7149 err, &features, &dev->features);
Nikolay Aleksandrov17b85d22015-11-17 15:49:06 +01007150 /* return non-0 since some features might have changed and
7151 * it's better to fire a spurious notification than miss it
7152 */
7153 return -1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007154 }
7155
Jarod Wilsone7868a82015-11-03 23:09:32 -05007156sync_lower:
Jarod Wilsonfd867d52015-11-02 21:55:59 -05007157 /* some features must be disabled on lower devices when disabled
7158 * on an upper device (think: bonding master or bridge)
7159 */
7160 netdev_for_each_lower_dev(dev, lower, iter)
7161 netdev_sync_lower_features(dev, lower, features);
7162
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007163 if (!err)
7164 dev->features = features;
7165
Jarod Wilsone7868a82015-11-03 23:09:32 -05007166 return err < 0 ? 0 : 1;
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007167}
7168
Michał Mirosławafe12cc2011-05-07 03:22:17 +00007169/**
7170 * netdev_update_features - recalculate device features
7171 * @dev: the device to check
7172 *
7173 * Recalculate dev->features set and send notifications if it
7174 * has changed. Should be called after driver or hardware dependent
7175 * conditions might have changed that influence the features.
7176 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007177void netdev_update_features(struct net_device *dev)
7178{
7179 if (__netdev_update_features(dev))
7180 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00007181}
7182EXPORT_SYMBOL(netdev_update_features);
7183
Linus Torvalds1da177e2005-04-16 15:20:36 -07007184/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00007185 * netdev_change_features - recalculate device features
7186 * @dev: the device to check
7187 *
7188 * Recalculate dev->features set and send notifications even
7189 * if they have not changed. Should be called instead of
7190 * netdev_update_features() if also dev->vlan_features might
7191 * have changed to allow the changes to be propagated to stacked
7192 * VLAN devices.
7193 */
7194void netdev_change_features(struct net_device *dev)
7195{
7196 __netdev_update_features(dev);
7197 netdev_features_change(dev);
7198}
7199EXPORT_SYMBOL(netdev_change_features);
7200
7201/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08007202 * netif_stacked_transfer_operstate - transfer operstate
7203 * @rootdev: the root or lower level device to transfer state from
7204 * @dev: the device to transfer operstate to
7205 *
7206 * Transfer operational state from root to device. This is normally
7207 * called when a stacking relationship exists between the root
7208 * device and the device(a leaf device).
7209 */
7210void netif_stacked_transfer_operstate(const struct net_device *rootdev,
7211 struct net_device *dev)
7212{
7213 if (rootdev->operstate == IF_OPER_DORMANT)
7214 netif_dormant_on(dev);
7215 else
7216 netif_dormant_off(dev);
7217
7218 if (netif_carrier_ok(rootdev)) {
7219 if (!netif_carrier_ok(dev))
7220 netif_carrier_on(dev);
7221 } else {
7222 if (netif_carrier_ok(dev))
7223 netif_carrier_off(dev);
7224 }
7225}
7226EXPORT_SYMBOL(netif_stacked_transfer_operstate);
7227
Michael Daltona953be52014-01-16 22:23:28 -08007228#ifdef CONFIG_SYSFS
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007229static int netif_alloc_rx_queues(struct net_device *dev)
7230{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007231 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00007232 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05307233 size_t sz = count * sizeof(*rx);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007234
Tom Herbertbd25fa72010-10-18 18:00:16 +00007235 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007236
Pankaj Gupta10595902015-01-12 11:41:28 +05307237 rx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7238 if (!rx) {
7239 rx = vzalloc(sz);
7240 if (!rx)
7241 return -ENOMEM;
7242 }
Tom Herbertbd25fa72010-10-18 18:00:16 +00007243 dev->_rx = rx;
7244
Tom Herbertbd25fa72010-10-18 18:00:16 +00007245 for (i = 0; i < count; i++)
Tom Herbertfe822242010-11-09 10:47:38 +00007246 rx[i].dev = dev;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007247 return 0;
7248}
Tom Herbertbf264142010-11-26 08:36:09 +00007249#endif
Eric Dumazet1b4bf462010-09-23 17:26:35 +00007250
Changli Gaoaa942102010-12-04 02:31:41 +00007251static void netdev_init_one_queue(struct net_device *dev,
7252 struct netdev_queue *queue, void *_unused)
7253{
7254 /* Initialize queue lock */
7255 spin_lock_init(&queue->_xmit_lock);
7256 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
7257 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00007258 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00007259 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00007260#ifdef CONFIG_BQL
7261 dql_init(&queue->dql, HZ);
7262#endif
Changli Gaoaa942102010-12-04 02:31:41 +00007263}
7264
Eric Dumazet60877a32013-06-20 01:15:51 -07007265static void netif_free_tx_queues(struct net_device *dev)
7266{
WANG Cong4cb28972014-06-02 15:55:22 -07007267 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07007268}
7269
Tom Herberte6484932010-10-18 18:04:39 +00007270static int netif_alloc_netdev_queues(struct net_device *dev)
7271{
7272 unsigned int count = dev->num_tx_queues;
7273 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07007274 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00007275
Eric Dumazetd3397272015-07-06 17:13:26 +02007276 if (count < 1 || count > 0xffff)
7277 return -EINVAL;
Tom Herberte6484932010-10-18 18:04:39 +00007278
Eric Dumazet60877a32013-06-20 01:15:51 -07007279 tx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7280 if (!tx) {
7281 tx = vzalloc(sz);
7282 if (!tx)
7283 return -ENOMEM;
7284 }
Tom Herberte6484932010-10-18 18:04:39 +00007285 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00007286
Tom Herberte6484932010-10-18 18:04:39 +00007287 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
7288 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00007289
7290 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00007291}
7292
Denys Vlasenkoa2029242015-05-11 21:17:53 +02007293void netif_tx_stop_all_queues(struct net_device *dev)
7294{
7295 unsigned int i;
7296
7297 for (i = 0; i < dev->num_tx_queues; i++) {
7298 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
7299 netif_tx_stop_queue(txq);
7300 }
7301}
7302EXPORT_SYMBOL(netif_tx_stop_all_queues);
7303
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08007304/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007305 * register_netdevice - register a network device
7306 * @dev: device to register
7307 *
7308 * Take a completed network device structure and add it to the kernel
7309 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
7310 * chain. 0 is returned on success. A negative errno code is returned
7311 * on a failure to set up the device, or if the name is a duplicate.
7312 *
7313 * Callers must hold the rtnl semaphore. You may want
7314 * register_netdev() instead of this.
7315 *
7316 * BUGS:
7317 * The locking appears insufficient to guarantee two parallel registers
7318 * will not get the same name.
7319 */
7320
7321int register_netdevice(struct net_device *dev)
7322{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007323 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007324 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007325
7326 BUG_ON(dev_boot_phase);
7327 ASSERT_RTNL();
7328
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007329 might_sleep();
7330
Linus Torvalds1da177e2005-04-16 15:20:36 -07007331 /* When net_device's are persistent, this will be fatal. */
7332 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007333 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007334
David S. Millerf1f28aa2008-07-15 00:08:33 -07007335 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07007336 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007337
Gao feng828de4f2012-09-13 20:58:27 +00007338 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00007339 if (ret < 0)
7340 goto out;
7341
Linus Torvalds1da177e2005-04-16 15:20:36 -07007342 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007343 if (dev->netdev_ops->ndo_init) {
7344 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007345 if (ret) {
7346 if (ret > 0)
7347 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08007348 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007349 }
7350 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007351
Patrick McHardyf6469682013-04-19 02:04:27 +00007352 if (((dev->hw_features | dev->features) &
7353 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00007354 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
7355 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
7356 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
7357 ret = -EINVAL;
7358 goto err_uninit;
7359 }
7360
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00007361 ret = -EBUSY;
7362 if (!dev->ifindex)
7363 dev->ifindex = dev_new_index(net);
7364 else if (__dev_get_by_index(net, dev->ifindex))
7365 goto err_uninit;
7366
Michał Mirosław5455c692011-02-15 16:59:17 +00007367 /* Transfer changeable features to wanted_features and enable
7368 * software offloads (GSO and GRO).
7369 */
7370 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00007371 dev->features |= NETIF_F_SOFT_FEATURES;
7372 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007373
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007374 if (!(dev->flags & IFF_LOOPBACK))
Michał Mirosław34324dc2011-11-15 15:29:55 +00007375 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007376
Alexander Duyck7f348a62016-04-20 16:51:00 -04007377 /* If IPv4 TCP segmentation offload is supported we should also
7378 * allow the device to enable segmenting the frame with the option
7379 * of ignoring a static IP ID value. This doesn't enable the
7380 * feature itself but allows the user to enable it later.
7381 */
Alexander Duyckcbc53e02016-04-10 21:44:51 -04007382 if (dev->hw_features & NETIF_F_TSO)
7383 dev->hw_features |= NETIF_F_TSO_MANGLEID;
Alexander Duyck7f348a62016-04-20 16:51:00 -04007384 if (dev->vlan_features & NETIF_F_TSO)
7385 dev->vlan_features |= NETIF_F_TSO_MANGLEID;
7386 if (dev->mpls_features & NETIF_F_TSO)
7387 dev->mpls_features |= NETIF_F_TSO_MANGLEID;
7388 if (dev->hw_enc_features & NETIF_F_TSO)
7389 dev->hw_enc_features |= NETIF_F_TSO_MANGLEID;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07007390
Michał Mirosław1180e7d2011-07-14 14:41:11 -07007391 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00007392 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07007393 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00007394
Pravin B Shelaree579672013-03-07 09:28:08 +00007395 /* Make NETIF_F_SG inheritable to tunnel devices.
7396 */
Alexander Duyck802ab552016-04-10 21:45:03 -04007397 dev->hw_enc_features |= NETIF_F_SG | NETIF_F_GSO_PARTIAL;
Pravin B Shelaree579672013-03-07 09:28:08 +00007398
Simon Horman0d89d202013-05-23 21:02:52 +00007399 /* Make NETIF_F_SG inheritable to MPLS.
7400 */
7401 dev->mpls_features |= NETIF_F_SG;
7402
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00007403 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
7404 ret = notifier_to_errno(ret);
7405 if (ret)
7406 goto err_uninit;
7407
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007408 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007409 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007410 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007411 dev->reg_state = NETREG_REGISTERED;
7412
Michał Mirosław6cb6a272011-04-02 22:48:47 -07007413 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00007414
Linus Torvalds1da177e2005-04-16 15:20:36 -07007415 /*
7416 * Default initial state at registry is that the
7417 * device is present.
7418 */
7419
7420 set_bit(__LINK_STATE_PRESENT, &dev->state);
7421
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01007422 linkwatch_init_dev(dev);
7423
Linus Torvalds1da177e2005-04-16 15:20:36 -07007424 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007425 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007426 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04007427 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007428
Jiri Pirko948b3372013-01-08 01:38:25 +00007429 /* If the device has permanent device address, driver should
7430 * set dev_addr and also addr_assign_type should be set to
7431 * NET_ADDR_PERM (default value).
7432 */
7433 if (dev->addr_assign_type == NET_ADDR_PERM)
7434 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
7435
Linus Torvalds1da177e2005-04-16 15:20:36 -07007436 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07007437 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07007438 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07007439 if (ret) {
7440 rollback_registered(dev);
7441 dev->reg_state = NETREG_UNREGISTERED;
7442 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00007443 /*
7444 * Prevent userspace races by waiting until the network
7445 * device is fully setup before sending notifications.
7446 */
Patrick McHardya2835762010-02-26 06:34:51 +00007447 if (!dev->rtnl_link_ops ||
7448 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007449 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007450
7451out:
7452 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007453
7454err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08007455 if (dev->netdev_ops->ndo_uninit)
7456 dev->netdev_ops->ndo_uninit(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07007457 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007458}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007459EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007460
7461/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007462 * init_dummy_netdev - init a dummy network device for NAPI
7463 * @dev: device to init
7464 *
7465 * This takes a network device structure and initialize the minimum
7466 * amount of fields so it can be used to schedule NAPI polls without
7467 * registering a full blown interface. This is to be used by drivers
7468 * that need to tie several hardware interfaces to a single NAPI
7469 * poll scheduler due to HW limitations.
7470 */
7471int init_dummy_netdev(struct net_device *dev)
7472{
7473 /* Clear everything. Note we don't initialize spinlocks
7474 * are they aren't supposed to be taken by any of the
7475 * NAPI code and this dummy netdev is supposed to be
7476 * only ever used for NAPI polls
7477 */
7478 memset(dev, 0, sizeof(struct net_device));
7479
7480 /* make sure we BUG if trying to hit standard
7481 * register/unregister code path
7482 */
7483 dev->reg_state = NETREG_DUMMY;
7484
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007485 /* NAPI wants this */
7486 INIT_LIST_HEAD(&dev->napi_list);
7487
7488 /* a dummy interface is started by default */
7489 set_bit(__LINK_STATE_PRESENT, &dev->state);
7490 set_bit(__LINK_STATE_START, &dev->state);
7491
Eric Dumazet29b44332010-10-11 10:22:12 +00007492 /* Note : We dont allocate pcpu_refcnt for dummy devices,
7493 * because users of this 'device' dont need to change
7494 * its refcount.
7495 */
7496
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08007497 return 0;
7498}
7499EXPORT_SYMBOL_GPL(init_dummy_netdev);
7500
7501
7502/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007503 * register_netdev - register a network device
7504 * @dev: device to register
7505 *
7506 * Take a completed network device structure and add it to the kernel
7507 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
7508 * chain. 0 is returned on success. A negative errno code is returned
7509 * on a failure to set up the device, or if the name is a duplicate.
7510 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07007511 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07007512 * and expands the device name if you passed a format string to
7513 * alloc_netdev.
7514 */
7515int register_netdev(struct net_device *dev)
7516{
7517 int err;
7518
7519 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007520 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007521 rtnl_unlock();
7522 return err;
7523}
7524EXPORT_SYMBOL(register_netdev);
7525
Eric Dumazet29b44332010-10-11 10:22:12 +00007526int netdev_refcnt_read(const struct net_device *dev)
7527{
7528 int i, refcnt = 0;
7529
7530 for_each_possible_cpu(i)
7531 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
7532 return refcnt;
7533}
7534EXPORT_SYMBOL(netdev_refcnt_read);
7535
Ben Hutchings2c530402012-07-10 10:55:09 +00007536/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007537 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00007538 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07007539 *
7540 * This is called when unregistering network devices.
7541 *
7542 * Any protocol or device that holds a reference should register
7543 * for netdevice notification, and cleanup and put back the
7544 * reference if they receive an UNREGISTER event.
7545 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007546 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007547 */
7548static void netdev_wait_allrefs(struct net_device *dev)
7549{
7550 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00007551 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007552
Eric Dumazete014deb2009-11-17 05:59:21 +00007553 linkwatch_forget_dev(dev);
7554
Linus Torvalds1da177e2005-04-16 15:20:36 -07007555 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00007556 refcnt = netdev_refcnt_read(dev);
7557
7558 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07007559 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08007560 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007561
7562 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07007563 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007564
Eric Dumazet748e2d92012-08-22 21:50:59 +00007565 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007566 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00007567 rtnl_lock();
7568
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007569 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007570 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
7571 &dev->state)) {
7572 /* We must not have linkwatch events
7573 * pending on unregister. If this
7574 * happens, we simply run the queue
7575 * unscheduled, resulting in a noop
7576 * for this device.
7577 */
7578 linkwatch_run_queue();
7579 }
7580
Stephen Hemminger6756ae42006-03-20 22:23:58 -08007581 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007582
7583 rebroadcast_time = jiffies;
7584 }
7585
7586 msleep(250);
7587
Eric Dumazet29b44332010-10-11 10:22:12 +00007588 refcnt = netdev_refcnt_read(dev);
7589
Linus Torvalds1da177e2005-04-16 15:20:36 -07007590 if (time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007591 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
7592 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007593 warning_time = jiffies;
7594 }
7595 }
7596}
7597
7598/* The sequence is:
7599 *
7600 * rtnl_lock();
7601 * ...
7602 * register_netdevice(x1);
7603 * register_netdevice(x2);
7604 * ...
7605 * unregister_netdevice(y1);
7606 * unregister_netdevice(y2);
7607 * ...
7608 * rtnl_unlock();
7609 * free_netdev(y1);
7610 * free_netdev(y2);
7611 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07007612 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07007613 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007614 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07007615 * without deadlocking with linkwatch via keventd.
7616 * 2) Since we run with the RTNL semaphore not held, we can sleep
7617 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07007618 *
7619 * We must not return until all unregister events added during
7620 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007621 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007622void netdev_run_todo(void)
7623{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007624 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007625
Linus Torvalds1da177e2005-04-16 15:20:36 -07007626 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007627 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07007628
7629 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07007630
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007631
7632 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00007633 if (!list_empty(&list))
7634 rcu_barrier();
7635
Linus Torvalds1da177e2005-04-16 15:20:36 -07007636 while (!list_empty(&list)) {
7637 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00007638 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007639 list_del(&dev->todo_list);
7640
Eric Dumazet748e2d92012-08-22 21:50:59 +00007641 rtnl_lock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007642 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Eric Dumazet748e2d92012-08-22 21:50:59 +00007643 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00007644
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007645 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007646 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07007647 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007648 dump_stack();
7649 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007650 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007651
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007652 dev->reg_state = NETREG_UNREGISTERED;
7653
7654 netdev_wait_allrefs(dev);
7655
7656 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00007657 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -08007658 BUG_ON(!list_empty(&dev->ptype_all));
7659 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +00007660 WARN_ON(rcu_access_pointer(dev->ip_ptr));
7661 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
Ilpo Järvinen547b7922008-07-25 21:43:18 -07007662 WARN_ON(dev->dn_ptr);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007663
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07007664 if (dev->destructor)
7665 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07007666
Eric W. Biederman50624c92013-09-23 21:19:49 -07007667 /* Report a network device has been unregistered */
7668 rtnl_lock();
7669 dev_net(dev)->dev_unreg_count--;
7670 __rtnl_unlock();
7671 wake_up(&netdev_unregistering_wq);
7672
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07007673 /* Free network device */
7674 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007676}
7677
Jarod Wilson92566452016-02-01 18:51:04 -05007678/* Convert net_device_stats to rtnl_link_stats64. rtnl_link_stats64 has
7679 * all the same fields in the same order as net_device_stats, with only
7680 * the type differing, but rtnl_link_stats64 may have additional fields
7681 * at the end for newer counters.
Ben Hutchings3cfde792010-07-09 09:11:52 +00007682 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00007683void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
7684 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00007685{
7686#if BITS_PER_LONG == 64
Jarod Wilson92566452016-02-01 18:51:04 -05007687 BUILD_BUG_ON(sizeof(*stats64) < sizeof(*netdev_stats));
Alban Browaeys05e165e2017-07-03 03:20:13 +02007688 memcpy(stats64, netdev_stats, sizeof(*netdev_stats));
Jarod Wilson92566452016-02-01 18:51:04 -05007689 /* zero out counters that only exist in rtnl_link_stats64 */
7690 memset((char *)stats64 + sizeof(*netdev_stats), 0,
7691 sizeof(*stats64) - sizeof(*netdev_stats));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007692#else
Jarod Wilson92566452016-02-01 18:51:04 -05007693 size_t i, n = sizeof(*netdev_stats) / sizeof(unsigned long);
Ben Hutchings3cfde792010-07-09 09:11:52 +00007694 const unsigned long *src = (const unsigned long *)netdev_stats;
7695 u64 *dst = (u64 *)stats64;
7696
Jarod Wilson92566452016-02-01 18:51:04 -05007697 BUILD_BUG_ON(n > sizeof(*stats64) / sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007698 for (i = 0; i < n; i++)
7699 dst[i] = src[i];
Jarod Wilson92566452016-02-01 18:51:04 -05007700 /* zero out counters that only exist in rtnl_link_stats64 */
7701 memset((char *)stats64 + n * sizeof(u64), 0,
7702 sizeof(*stats64) - n * sizeof(u64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00007703#endif
7704}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00007705EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00007706
Eric Dumazetd83345a2009-11-16 03:36:51 +00007707/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007708 * dev_get_stats - get network device statistics
7709 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07007710 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007711 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00007712 * Get network statistics from device. Return @storage.
7713 * The device driver may provide its own method by setting
7714 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
7715 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007716 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00007717struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
7718 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00007719{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007720 const struct net_device_ops *ops = dev->netdev_ops;
7721
Eric Dumazet28172732010-07-07 14:58:56 -07007722 if (ops->ndo_get_stats64) {
7723 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00007724 ops->ndo_get_stats64(dev, storage);
7725 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00007726 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00007727 } else {
7728 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07007729 }
Eric Dumazet3f04c322017-06-27 07:02:20 -07007730 storage->rx_dropped += (unsigned long)atomic_long_read(&dev->rx_dropped);
7731 storage->tx_dropped += (unsigned long)atomic_long_read(&dev->tx_dropped);
7732 storage->rx_nohandler += (unsigned long)atomic_long_read(&dev->rx_nohandler);
Eric Dumazet28172732010-07-07 14:58:56 -07007733 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07007734}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08007735EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07007736
Eric Dumazet24824a02010-10-02 06:11:55 +00007737struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07007738{
Eric Dumazet24824a02010-10-02 06:11:55 +00007739 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07007740
Eric Dumazet24824a02010-10-02 06:11:55 +00007741#ifdef CONFIG_NET_CLS_ACT
7742 if (queue)
7743 return queue;
7744 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
7745 if (!queue)
7746 return NULL;
7747 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08007748 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +00007749 queue->qdisc_sleeping = &noop_qdisc;
7750 rcu_assign_pointer(dev->ingress_queue, queue);
7751#endif
7752 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07007753}
7754
Eric Dumazet2c60db02012-09-16 09:17:26 +00007755static const struct ethtool_ops default_ethtool_ops;
7756
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00007757void netdev_set_default_ethtool_ops(struct net_device *dev,
7758 const struct ethtool_ops *ops)
7759{
7760 if (dev->ethtool_ops == &default_ethtool_ops)
7761 dev->ethtool_ops = ops;
7762}
7763EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
7764
Eric Dumazet74d332c2013-10-30 13:10:44 -07007765void netdev_freemem(struct net_device *dev)
7766{
7767 char *addr = (char *)dev - dev->padded;
7768
WANG Cong4cb28972014-06-02 15:55:22 -07007769 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07007770}
7771
Linus Torvalds1da177e2005-04-16 15:20:36 -07007772/**
Tom Herbert36909ea2011-01-09 19:36:31 +00007773 * alloc_netdev_mqs - allocate network device
Tom Gundersenc835a672014-07-14 16:37:24 +02007774 * @sizeof_priv: size of private data to allocate space for
7775 * @name: device name format string
7776 * @name_assign_type: origin of device name
7777 * @setup: callback to initialize device
7778 * @txqs: the number of TX subqueues to allocate
7779 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07007780 *
7781 * Allocates a struct net_device with private data area for driver use
Li Zhong90e51ad2013-11-22 15:04:46 +08007782 * and performs basic initialization. Also allocates subqueue structs
Tom Herbert36909ea2011-01-09 19:36:31 +00007783 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007784 */
Tom Herbert36909ea2011-01-09 19:36:31 +00007785struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02007786 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00007787 void (*setup)(struct net_device *),
7788 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007789{
Linus Torvalds1da177e2005-04-16 15:20:36 -07007790 struct net_device *dev;
Stephen Hemminger79439862008-07-21 13:28:44 -07007791 size_t alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007792 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007793
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07007794 BUG_ON(strlen(name) >= sizeof(dev->name));
7795
Tom Herbert36909ea2011-01-09 19:36:31 +00007796 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007797 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00007798 return NULL;
7799 }
7800
Michael Daltona953be52014-01-16 22:23:28 -08007801#ifdef CONFIG_SYSFS
Tom Herbert36909ea2011-01-09 19:36:31 +00007802 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007803 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00007804 return NULL;
7805 }
7806#endif
7807
David S. Millerfd2ea0a2008-07-17 01:56:23 -07007808 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07007809 if (sizeof_priv) {
7810 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007811 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07007812 alloc_size += sizeof_priv;
7813 }
7814 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007815 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007816
Eric Dumazet74d332c2013-10-30 13:10:44 -07007817 p = kzalloc(alloc_size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
7818 if (!p)
7819 p = vzalloc(alloc_size);
Joe Perches62b59422013-02-04 16:48:16 +00007820 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007821 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007822
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00007823 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007824 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007825
Eric Dumazet29b44332010-10-11 10:22:12 +00007826 dev->pcpu_refcnt = alloc_percpu(int);
7827 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07007828 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007829
Linus Torvalds1da177e2005-04-16 15:20:36 -07007830 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00007831 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007832
Jiri Pirko22bedad32010-04-01 21:22:57 +00007833 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00007834 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00007835
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09007836 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007837
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07007838 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00007839 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007840
Herbert Xud565b0a2008-12-15 23:38:52 -08007841 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00007842 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07007843 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00007844 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02007845 INIT_LIST_HEAD(&dev->adj_list.upper);
7846 INIT_LIST_HEAD(&dev->adj_list.lower);
7847 INIT_LIST_HEAD(&dev->all_adj_list.upper);
7848 INIT_LIST_HEAD(&dev->all_adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -08007849 INIT_LIST_HEAD(&dev->ptype_all);
7850 INIT_LIST_HEAD(&dev->ptype_specific);
Jiri Kosina59cc1f62016-08-10 11:05:15 +02007851#ifdef CONFIG_NET_SCHED
7852 hash_init(dev->qdisc_hash);
7853#endif
Eric Dumazet02875872014-10-05 18:38:35 -07007854 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007855 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007856
Phil Suttera8131042016-02-17 15:37:43 +01007857 if (!dev->tx_queue_len) {
Phil Sutterf84bb1e2015-08-27 21:21:36 +02007858 dev->priv_flags |= IFF_NO_QUEUE;
Phil Suttera8131042016-02-17 15:37:43 +01007859 dev->tx_queue_len = 1;
7860 }
Phil Sutter906470c2015-08-18 10:30:48 +02007861
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007862 dev->num_tx_queues = txqs;
7863 dev->real_num_tx_queues = txqs;
7864 if (netif_alloc_netdev_queues(dev))
7865 goto free_all;
7866
Michael Daltona953be52014-01-16 22:23:28 -08007867#ifdef CONFIG_SYSFS
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007868 dev->num_rx_queues = rxqs;
7869 dev->real_num_rx_queues = rxqs;
7870 if (netif_alloc_rx_queues(dev))
7871 goto free_all;
7872#endif
7873
Linus Torvalds1da177e2005-04-16 15:20:36 -07007874 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02007875 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00007876 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00007877 if (!dev->ethtool_ops)
7878 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +02007879
7880 nf_hook_ingress_init(dev);
7881
Linus Torvalds1da177e2005-04-16 15:20:36 -07007882 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007883
David S. Miller8d3bdbd2011-02-08 15:02:50 -08007884free_all:
7885 free_netdev(dev);
7886 return NULL;
7887
Eric Dumazet29b44332010-10-11 10:22:12 +00007888free_pcpu:
7889 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07007890free_dev:
7891 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007892 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007893}
Tom Herbert36909ea2011-01-09 19:36:31 +00007894EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007895
7896/**
7897 * free_netdev - free network device
7898 * @dev: device
7899 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007900 * This function does the last stage of destroying an allocated device
7901 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007902 * If this is the last reference then it will be freed.
Eric Dumazet93d05d42015-11-18 06:31:03 -08007903 * Must be called in process context.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007904 */
7905void free_netdev(struct net_device *dev)
7906{
Herbert Xud565b0a2008-12-15 23:38:52 -08007907 struct napi_struct *p, *n;
7908
Eric Dumazet93d05d42015-11-18 06:31:03 -08007909 might_sleep();
Eric Dumazet60877a32013-06-20 01:15:51 -07007910 netif_free_tx_queues(dev);
Michael Daltona953be52014-01-16 22:23:28 -08007911#ifdef CONFIG_SYSFS
Pankaj Gupta10595902015-01-12 11:41:28 +05307912 kvfree(dev->_rx);
Tom Herbertfe822242010-11-09 10:47:38 +00007913#endif
David S. Millere8a04642008-07-17 00:34:19 -07007914
Eric Dumazet33d480c2011-08-11 19:30:52 +00007915 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00007916
Jiri Pirkof001fde2009-05-05 02:48:28 +00007917 /* Flush device addresses */
7918 dev_addr_flush(dev);
7919
Herbert Xud565b0a2008-12-15 23:38:52 -08007920 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
7921 netif_napi_del(p);
7922
Eric Dumazet29b44332010-10-11 10:22:12 +00007923 free_percpu(dev->pcpu_refcnt);
7924 dev->pcpu_refcnt = NULL;
7925
Stephen Hemminger3041a062006-05-26 13:25:24 -07007926 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007927 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07007928 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007929 return;
7930 }
7931
7932 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
7933 dev->reg_state = NETREG_RELEASED;
7934
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07007935 /* will free via device release */
7936 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007937}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007938EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007939
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007940/**
7941 * synchronize_net - Synchronize with packet receive processing
7942 *
7943 * Wait for packets currently being received to be done.
7944 * Does not block later packets from starting.
7945 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007946void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007947{
7948 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00007949 if (rtnl_is_locked())
7950 synchronize_rcu_expedited();
7951 else
7952 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007953}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007954EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007955
7956/**
Eric Dumazet44a08732009-10-27 07:03:04 +00007957 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07007958 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00007959 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08007960 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007961 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08007962 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00007963 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007964 *
7965 * Callers must hold the rtnl semaphore. You may want
7966 * unregister_netdev() instead of this.
7967 */
7968
Eric Dumazet44a08732009-10-27 07:03:04 +00007969void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007970{
Herbert Xua6620712007-12-12 19:21:56 -08007971 ASSERT_RTNL();
7972
Eric Dumazet44a08732009-10-27 07:03:04 +00007973 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00007974 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00007975 } else {
7976 rollback_registered(dev);
7977 /* Finish processing unregister after unlock */
7978 net_set_todo(dev);
7979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007980}
Eric Dumazet44a08732009-10-27 07:03:04 +00007981EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007982
7983/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007984 * unregister_netdevice_many - unregister many devices
7985 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07007986 *
7987 * Note: As most callers use a stack allocated list_head,
7988 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007989 */
7990void unregister_netdevice_many(struct list_head *head)
7991{
7992 struct net_device *dev;
7993
7994 if (!list_empty(head)) {
7995 rollback_registered_many(head);
7996 list_for_each_entry(dev, head, unreg_list)
7997 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07007998 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007999 }
8000}
Eric Dumazet63c80992009-10-27 07:06:49 +00008001EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00008002
8003/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07008004 * unregister_netdev - remove device from the kernel
8005 * @dev: device
8006 *
8007 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08008008 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07008009 *
8010 * This is just a wrapper for unregister_netdevice that takes
8011 * the rtnl semaphore. In general you want to use this and not
8012 * unregister_netdevice.
8013 */
8014void unregister_netdev(struct net_device *dev)
8015{
8016 rtnl_lock();
8017 unregister_netdevice(dev);
8018 rtnl_unlock();
8019}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008020EXPORT_SYMBOL(unregister_netdev);
8021
Eric W. Biedermance286d32007-09-12 13:53:49 +02008022/**
8023 * dev_change_net_namespace - move device to different nethost namespace
8024 * @dev: device
8025 * @net: network namespace
8026 * @pat: If not NULL name pattern to try if the current device name
8027 * is already taken in the destination network namespace.
8028 *
8029 * This function shuts down a device interface and moves it
8030 * to a new network namespace. On success 0 is returned, on
8031 * a failure a netagive errno code is returned.
8032 *
8033 * Callers must hold the rtnl semaphore.
8034 */
8035
8036int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
8037{
Eric W. Biedermance286d32007-09-12 13:53:49 +02008038 int err;
8039
8040 ASSERT_RTNL();
8041
8042 /* Don't allow namespace local devices to be moved. */
8043 err = -EINVAL;
8044 if (dev->features & NETIF_F_NETNS_LOCAL)
8045 goto out;
8046
8047 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02008048 if (dev->reg_state != NETREG_REGISTERED)
8049 goto out;
8050
8051 /* Get out if there is nothing todo */
8052 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09008053 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02008054 goto out;
8055
8056 /* Pick the destination device name, and ensure
8057 * we can use it in the destination network namespace.
8058 */
8059 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00008060 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008061 /* We get here if we can't use the current device name */
8062 if (!pat)
8063 goto out;
Gao feng828de4f2012-09-13 20:58:27 +00008064 if (dev_get_valid_name(net, dev, pat) < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02008065 goto out;
8066 }
8067
8068 /*
8069 * And now a mini version of register_netdevice unregister_netdevice.
8070 */
8071
8072 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07008073 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008074
8075 /* And unlink it from device chain */
8076 err = -ENODEV;
8077 unlist_netdevice(dev);
8078
8079 synchronize_net();
8080
8081 /* Shutdown queueing discipline. */
8082 dev_shutdown(dev);
8083
8084 /* Notify protocols, that we are about to destroy
8085 this device. They should clean all the things.
David Lamparter3b27e102010-09-17 03:22:19 +00008086
8087 Note that dev->reg_state stays at NETREG_REGISTERED.
8088 This is wanted because this way 8021q and macvlan know
8089 the device is just moving and can keep their slaves up.
Eric W. Biedermance286d32007-09-12 13:53:49 +02008090 */
8091 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00008092 rcu_barrier();
8093 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008094 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008095
8096 /*
8097 * Flush the unicast and multicast chains
8098 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00008099 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00008100 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008101
Serge Hallyn4e66ae22012-12-03 16:17:12 +00008102 /* Send a netdev-removed uevent to the old namespace */
8103 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008104 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00008105
Eric W. Biedermance286d32007-09-12 13:53:49 +02008106 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09008107 dev_net_set(dev, net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008108
Eric W. Biedermance286d32007-09-12 13:53:49 +02008109 /* If there is an ifindex conflict assign a new one */
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +02008110 if (__dev_get_by_index(net, dev->ifindex))
Eric W. Biedermance286d32007-09-12 13:53:49 +02008111 dev->ifindex = dev_new_index(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008112
Serge Hallyn4e66ae22012-12-03 16:17:12 +00008113 /* Send a netdev-add uevent to the new namespace */
8114 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04008115 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00008116
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008117 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07008118 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008119 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008120
8121 /* Add the device back in the hashes */
8122 list_netdevice(dev);
8123
8124 /* Notify protocols, that a new device appeared. */
8125 call_netdevice_notifiers(NETDEV_REGISTER, dev);
8126
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008127 /*
8128 * Prevent userspace races by waiting until the network
8129 * device is fully setup before sending notifications.
8130 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07008131 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00008132
Eric W. Biedermance286d32007-09-12 13:53:49 +02008133 synchronize_net();
8134 err = 0;
8135out:
8136 return err;
8137}
Johannes Berg463d0182009-07-14 00:33:35 +02008138EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008139
Linus Torvalds1da177e2005-04-16 15:20:36 -07008140static int dev_cpu_callback(struct notifier_block *nfb,
8141 unsigned long action,
8142 void *ocpu)
8143{
8144 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008145 struct sk_buff *skb;
8146 unsigned int cpu, oldcpu = (unsigned long)ocpu;
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05308147 struct softnet_data *sd, *oldsd, *remsd;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008148
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07008149 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008150 return NOTIFY_OK;
8151
8152 local_irq_disable();
8153 cpu = smp_processor_id();
8154 sd = &per_cpu(softnet_data, cpu);
8155 oldsd = &per_cpu(softnet_data, oldcpu);
8156
8157 /* Find end of our completion_queue. */
8158 list_skb = &sd->completion_queue;
8159 while (*list_skb)
8160 list_skb = &(*list_skb)->next;
8161 /* Append completion queue from offline CPU. */
8162 *list_skb = oldsd->completion_queue;
8163 oldsd->completion_queue = NULL;
8164
Linus Torvalds1da177e2005-04-16 15:20:36 -07008165 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00008166 if (oldsd->output_queue) {
8167 *sd->output_queue_tailp = oldsd->output_queue;
8168 sd->output_queue_tailp = oldsd->output_queue_tailp;
8169 oldsd->output_queue = NULL;
8170 oldsd->output_queue_tailp = &oldsd->output_queue;
8171 }
Eric Dumazetac64da02015-01-15 17:04:22 -08008172 /* Append NAPI poll list from offline CPU, with one exception :
8173 * process_backlog() must be called by cpu owning percpu backlog.
8174 * We properly handle process_queue & input_pkt_queue later.
8175 */
8176 while (!list_empty(&oldsd->poll_list)) {
8177 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
8178 struct napi_struct,
8179 poll_list);
8180
8181 list_del_init(&napi->poll_list);
8182 if (napi->poll == process_backlog)
8183 napi->state = 0;
8184 else
8185 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +00008186 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008187
8188 raise_softirq_irqoff(NET_TX_SOFTIRQ);
8189 local_irq_enable();
8190
Ashwanth Golid6a8cc02017-06-09 14:24:58 +05308191#ifdef CONFIG_RPS
8192 remsd = oldsd->rps_ipi_list;
8193 oldsd->rps_ipi_list = NULL;
8194#endif
8195 /* send out pending IPI's on offline CPU */
8196 net_rps_send_ipi(remsd);
8197
Linus Torvalds1da177e2005-04-16 15:20:36 -07008198 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00008199 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08008200 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00008201 input_queue_head_incr(oldsd);
8202 }
Eric Dumazetac64da02015-01-15 17:04:22 -08008203 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08008204 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00008205 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07008206 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07008207
8208 return NOTIFY_OK;
8209}
Linus Torvalds1da177e2005-04-16 15:20:36 -07008210
8211
Herbert Xu7f353bf2007-08-10 15:47:58 -07008212/**
Herbert Xub63365a2008-10-23 01:11:29 -07008213 * netdev_increment_features - increment feature set by one
8214 * @all: current feature set
8215 * @one: new feature set
8216 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07008217 *
8218 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07008219 * @one to the master device with current feature set @all. Will not
8220 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07008221 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00008222netdev_features_t netdev_increment_features(netdev_features_t all,
8223 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07008224{
Tom Herbertc8cd0982015-12-14 11:19:44 -08008225 if (mask & NETIF_F_HW_CSUM)
Tom Herberta1882222015-12-14 11:19:43 -08008226 mask |= NETIF_F_CSUM_MASK;
Michał Mirosław1742f182011-04-22 06:31:16 +00008227 mask |= NETIF_F_VLAN_CHALLENGED;
8228
Tom Herberta1882222015-12-14 11:19:43 -08008229 all |= one & (NETIF_F_ONE_FOR_ALL | NETIF_F_CSUM_MASK) & mask;
Michał Mirosław1742f182011-04-22 06:31:16 +00008230 all &= one | ~NETIF_F_ALL_FOR_ALL;
8231
Michał Mirosław1742f182011-04-22 06:31:16 +00008232 /* If one device supports hw checksumming, set for all. */
Tom Herbertc8cd0982015-12-14 11:19:44 -08008233 if (all & NETIF_F_HW_CSUM)
8234 all &= ~(NETIF_F_CSUM_MASK & ~NETIF_F_HW_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07008235
8236 return all;
8237}
Herbert Xub63365a2008-10-23 01:11:29 -07008238EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07008239
Baruch Siach430f03c2013-06-02 20:43:55 +00008240static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008241{
8242 int i;
8243 struct hlist_head *hash;
8244
8245 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
8246 if (hash != NULL)
8247 for (i = 0; i < NETDEV_HASHENTRIES; i++)
8248 INIT_HLIST_HEAD(&hash[i]);
8249
8250 return hash;
8251}
8252
Eric W. Biederman881d9662007-09-17 11:56:21 -07008253/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07008254static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07008255{
Rustad, Mark D734b6542012-07-18 09:06:07 +00008256 if (net != &init_net)
8257 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07008258
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008259 net->dev_name_head = netdev_create_hash();
8260 if (net->dev_name_head == NULL)
8261 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008262
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008263 net->dev_index_head = netdev_create_hash();
8264 if (net->dev_index_head == NULL)
8265 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008266
8267 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07008268
8269err_idx:
8270 kfree(net->dev_name_head);
8271err_name:
8272 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07008273}
8274
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008275/**
8276 * netdev_drivername - network driver for the device
8277 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07008278 *
8279 * Determine network driver for device.
8280 */
David S. Miller3019de12011-06-06 16:41:33 -07008281const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07008282{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07008283 const struct device_driver *driver;
8284 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07008285 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07008286
8287 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008288 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07008289 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008290
8291 driver = parent->driver;
8292 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07008293 return driver->name;
8294 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07008295}
8296
Joe Perches6ea754e2014-09-22 11:10:50 -07008297static void __netdev_printk(const char *level, const struct net_device *dev,
8298 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +00008299{
Joe Perchesb004ff42012-09-12 20:12:19 -07008300 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -07008301 dev_printk_emit(level[1] - '0',
8302 dev->dev.parent,
8303 "%s %s %s%s: %pV",
8304 dev_driver_string(dev->dev.parent),
8305 dev_name(dev->dev.parent),
8306 netdev_name(dev), netdev_reg_state(dev),
8307 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008308 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -07008309 printk("%s%s%s: %pV",
8310 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008311 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -07008312 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008313 }
Joe Perches256df2f2010-06-27 01:02:35 +00008314}
8315
Joe Perches6ea754e2014-09-22 11:10:50 -07008316void netdev_printk(const char *level, const struct net_device *dev,
8317 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +00008318{
8319 struct va_format vaf;
8320 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +00008321
8322 va_start(args, format);
8323
8324 vaf.fmt = format;
8325 vaf.va = &args;
8326
Joe Perches6ea754e2014-09-22 11:10:50 -07008327 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07008328
Joe Perches256df2f2010-06-27 01:02:35 +00008329 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +00008330}
8331EXPORT_SYMBOL(netdev_printk);
8332
8333#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -07008334void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +00008335{ \
Joe Perches256df2f2010-06-27 01:02:35 +00008336 struct va_format vaf; \
8337 va_list args; \
8338 \
8339 va_start(args, fmt); \
8340 \
8341 vaf.fmt = fmt; \
8342 vaf.va = &args; \
8343 \
Joe Perches6ea754e2014-09-22 11:10:50 -07008344 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07008345 \
Joe Perches256df2f2010-06-27 01:02:35 +00008346 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +00008347} \
8348EXPORT_SYMBOL(func);
8349
8350define_netdev_printk_level(netdev_emerg, KERN_EMERG);
8351define_netdev_printk_level(netdev_alert, KERN_ALERT);
8352define_netdev_printk_level(netdev_crit, KERN_CRIT);
8353define_netdev_printk_level(netdev_err, KERN_ERR);
8354define_netdev_printk_level(netdev_warn, KERN_WARNING);
8355define_netdev_printk_level(netdev_notice, KERN_NOTICE);
8356define_netdev_printk_level(netdev_info, KERN_INFO);
8357
Pavel Emelyanov46650792007-10-08 20:38:39 -07008358static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07008359{
8360 kfree(net->dev_name_head);
8361 kfree(net->dev_index_head);
8362}
8363
Denis V. Lunev022cbae2007-11-13 03:23:50 -08008364static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07008365 .init = netdev_init,
8366 .exit = netdev_exit,
8367};
8368
Pavel Emelyanov46650792007-10-08 20:38:39 -07008369static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02008370{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008371 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02008372 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008373 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02008374 * initial network namespace
8375 */
8376 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008377 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008378 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008379 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02008380
8381 /* Ignore unmoveable devices (i.e. loopback) */
8382 if (dev->features & NETIF_F_NETNS_LOCAL)
8383 continue;
8384
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00008385 /* Leave virtual devices for the generic cleanup */
8386 if (dev->rtnl_link_ops)
8387 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08008388
Lucas De Marchi25985ed2011-03-30 22:57:33 -03008389 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008390 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
8391 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02008392 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00008393 pr_emerg("%s: failed to move %s to init_net: %d\n",
8394 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07008395 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02008396 }
8397 }
8398 rtnl_unlock();
8399}
8400
Eric W. Biederman50624c92013-09-23 21:19:49 -07008401static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
8402{
8403 /* Return with the rtnl_lock held when there are no network
8404 * devices unregistering in any network namespace in net_list.
8405 */
8406 struct net *net;
8407 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +01008408 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008409
Peter Zijlstraff960a72014-10-29 17:04:56 +01008410 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008411 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -07008412 unregistering = false;
8413 rtnl_lock();
8414 list_for_each_entry(net, net_list, exit_list) {
8415 if (net->dev_unreg_count > 0) {
8416 unregistering = true;
8417 break;
8418 }
8419 }
8420 if (!unregistering)
8421 break;
8422 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +01008423
8424 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008425 }
Peter Zijlstraff960a72014-10-29 17:04:56 +01008426 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07008427}
8428
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008429static void __net_exit default_device_exit_batch(struct list_head *net_list)
8430{
8431 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04008432 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008433 * Do this across as many network namespaces as possible to
8434 * improve batching efficiency.
8435 */
8436 struct net_device *dev;
8437 struct net *net;
8438 LIST_HEAD(dev_kill_list);
8439
Eric W. Biederman50624c92013-09-23 21:19:49 -07008440 /* To prevent network device cleanup code from dereferencing
8441 * loopback devices or network devices that have been freed
8442 * wait here for all pending unregistrations to complete,
8443 * before unregistring the loopback device and allowing the
8444 * network namespace be freed.
8445 *
8446 * The netdev todo list containing all network devices
8447 * unregistrations that happen in default_device_exit_batch
8448 * will run in the rtnl_unlock() at the end of
8449 * default_device_exit_batch.
8450 */
8451 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008452 list_for_each_entry(net, net_list, exit_list) {
8453 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02008454 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008455 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
8456 else
8457 unregister_netdevice_queue(dev, &dev_kill_list);
8458 }
8459 }
8460 unregister_netdevice_many(&dev_kill_list);
8461 rtnl_unlock();
8462}
8463
Denis V. Lunev022cbae2007-11-13 03:23:50 -08008464static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02008465 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00008466 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02008467};
8468
Linus Torvalds1da177e2005-04-16 15:20:36 -07008469/*
8470 * Initialize the DEV module. At boot time this walks the device list and
8471 * unhooks any devices that fail to initialise (normally hardware not
8472 * present) and leaves us with a valid list of present and active devices.
8473 *
8474 */
8475
8476/*
8477 * This is called single threaded during boot, so no need
8478 * to take the rtnl semaphore.
8479 */
8480static int __init net_dev_init(void)
8481{
8482 int i, rc = -ENOMEM;
8483
8484 BUG_ON(!dev_boot_phase);
8485
Linus Torvalds1da177e2005-04-16 15:20:36 -07008486 if (dev_proc_init())
8487 goto out;
8488
Eric W. Biederman8b41d182007-09-26 22:02:53 -07008489 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07008490 goto out;
8491
8492 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08008493 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07008494 INIT_LIST_HEAD(&ptype_base[i]);
8495
Vlad Yasevich62532da2012-11-15 08:49:10 +00008496 INIT_LIST_HEAD(&offload_base);
8497
Eric W. Biederman881d9662007-09-17 11:56:21 -07008498 if (register_pernet_subsys(&netdev_net_ops))
8499 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008500
8501 /*
8502 * Initialise the packet receive queues.
8503 */
8504
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07008505 for_each_possible_cpu(i) {
Eric Dumazet41852492016-08-26 12:50:39 -07008506 struct work_struct *flush = per_cpu_ptr(&flush_works, i);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008507 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008508
Eric Dumazet41852492016-08-26 12:50:39 -07008509 INIT_WORK(flush, flush_backlog);
8510
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008511 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07008512 skb_queue_head_init(&sd->process_queue);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008513 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00008514 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00008515#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008516 sd->csd.func = rps_trigger_softirq;
8517 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008518 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07008519#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00008520
Eric Dumazete36fa2f2010-04-19 21:17:14 +00008521 sd->backlog.poll = process_backlog;
8522 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07008523 }
8524
Linus Torvalds1da177e2005-04-16 15:20:36 -07008525 dev_boot_phase = 0;
8526
Eric W. Biederman505d4f72008-11-07 22:54:20 -08008527 /* The loopback device is special if any other network devices
8528 * is present in a network namespace the loopback device must
8529 * be present. Since we now dynamically allocate and free the
8530 * loopback device ensure this invariant is maintained by
8531 * keeping the loopback device as the first device on the
8532 * list of network devices. Ensuring the loopback devices
8533 * is the first device that appears and the last network device
8534 * that disappears.
8535 */
8536 if (register_pernet_device(&loopback_net_ops))
8537 goto out;
8538
8539 if (register_pernet_device(&default_device_ops))
8540 goto out;
8541
Carlos R. Mafra962cf362008-05-15 11:15:37 -03008542 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
8543 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07008544
8545 hotcpu_notifier(dev_cpu_callback, 0);
Thomas Graff38a9eb2015-07-21 10:43:56 +02008546 dst_subsys_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07008547 rc = 0;
8548out:
8549 return rc;
8550}
8551
8552subsys_initcall(net_dev_init);