blob: 6778a9999d525307d5bd41a1750a6e96a6e22bf3 [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>
Eric W. Biederman457c4cb2007-09-12 12:01:34 +020097#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include <net/sock.h>
99#include <linux/rtnetlink.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <linux/stat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101#include <net/dst.h>
102#include <net/pkt_sched.h>
103#include <net/checksum.h>
Arnd Bergmann44540962009-11-26 06:07:08 +0000104#include <net/xfrm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105#include <linux/highmem.h>
106#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#include <linux/netpoll.h>
109#include <linux/rcupdate.h>
110#include <linux/delay.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111#include <net/iw_handler.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#include <asm/current.h>
Steve Grubb5bdb9882005-12-03 08:39:35 -0500113#include <linux/audit.h>
Chris Leechdb217332006-06-17 21:24:58 -0700114#include <linux/dmaengine.h>
Herbert Xuf6a78bf2006-06-22 02:57:17 -0700115#include <linux/err.h>
David S. Millerc7fa9d12006-08-15 16:34:13 -0700116#include <linux/ctype.h>
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700117#include <linux/if_arp.h>
Ben Hutchings6de329e2008-06-16 17:02:28 -0700118#include <linux/if_vlan.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700119#include <linux/ip.h>
Alexander Duyckad55dca2008-09-20 22:05:50 -0700120#include <net/ip.h>
Simon Horman25cd9ba2014-10-06 05:05:13 -0700121#include <net/mpls.h>
David S. Miller8f0f2222008-07-15 03:47:03 -0700122#include <linux/ipv6.h>
123#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700124#include <linux/jhash.h>
125#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700126#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900127#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900128#include <trace/events/skb.h>
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +0000129#include <linux/pci.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700130#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000131#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100132#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300133#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700134#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100135#include <linux/if_macvlan.h>
Willem de Bruijne7fd2882014-08-04 22:11:48 -0400136#include <linux/errqueue.h>
Eric Dumazet3b47d302014-11-06 21:09:44 -0800137#include <linux/hrtimer.h>
Pablo Neirae687ad62015-05-13 18:19:38 +0200138#include <linux/netfilter_ingress.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700140#include "net-sysfs.h"
141
Herbert Xud565b0a2008-12-15 23:38:52 -0800142/* Instead of increasing this, you should create a hash table. */
143#define MAX_GRO_SKBS 8
144
Herbert Xu5d38a072009-01-04 16:13:40 -0800145/* This should be increased if a protocol with a bigger head is added. */
146#define GRO_MAX_HEAD (MAX_HEADER + 128)
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000149static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000150struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
151struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000152static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000154static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli5495119462014-07-01 21:39:43 -0700155static int call_netdevice_notifiers_info(unsigned long val,
156 struct net_device *dev,
157 struct netdev_notifier_info *info);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700160 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 * semaphore.
162 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800163 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 *
165 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700166 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 * actual updates. This allows pure readers to access the list even
168 * while a writer is preparing to update it.
169 *
170 * To put it another way, dev_base_lock is held for writing only to
171 * protect against pure readers; the rtnl semaphore provides the
172 * protection against other writers.
173 *
174 * See, for example usages, register_netdevice() and
175 * unregister_netdevice(), which must be called with the rtnl
176 * semaphore held.
177 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179EXPORT_SYMBOL(dev_base_lock);
180
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300181/* protects napi_hash addition/deletion and napi_gen_id */
182static DEFINE_SPINLOCK(napi_hash_lock);
183
184static unsigned int napi_gen_id;
185static DEFINE_HASHTABLE(napi_hash, 8);
186
Thomas Gleixner18afa4b2013-07-23 16:13:17 +0200187static seqcount_t devnet_rename_seq;
Brian Haleyc91f6df2012-11-26 05:21:08 +0000188
Thomas Graf4e985ad2011-06-21 03:11:20 +0000189static inline void dev_base_seq_inc(struct net *net)
190{
191 while (++net->dev_base_seq == 0);
192}
193
Eric W. Biederman881d9662007-09-17 11:56:21 -0700194static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Eric Dumazet95c96172012-04-15 05:58:06 +0000196 unsigned int hash = full_name_hash(name, strnlen(name, IFNAMSIZ));
197
stephen hemminger08e98972009-11-10 07:20:34 +0000198 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
Eric W. Biederman881d9662007-09-17 11:56:21 -0700201static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700203 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
205
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000206static inline void rps_lock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000207{
208#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000209 spin_lock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000210#endif
211}
212
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000213static inline void rps_unlock(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_unlock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000217#endif
218}
219
Eric W. Biedermance286d32007-09-12 13:53:49 +0200220/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000221static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200222{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900223 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200224
225 ASSERT_RTNL();
226
227 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800228 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Eric Dumazet72c95282009-10-30 07:11:27 +0000229 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000230 hlist_add_head_rcu(&dev->index_hlist,
231 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200232 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000233
234 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200235}
236
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000237/* Device list removal
238 * caller must respect a RCU grace period before freeing/reusing dev
239 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200240static void unlist_netdevice(struct net_device *dev)
241{
242 ASSERT_RTNL();
243
244 /* Unlink dev from the device chain */
245 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800246 list_del_rcu(&dev->dev_list);
Eric Dumazet72c95282009-10-30 07:11:27 +0000247 hlist_del_rcu(&dev->name_hlist);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000248 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200249 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000250
251 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200252}
253
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254/*
255 * Our notifier list
256 */
257
Alan Sternf07d5b92006-05-09 15:23:03 -0700258static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259
260/*
261 * Device drivers call our routines to queue packets here. We empty the
262 * queue in the local softnet handler.
263 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700264
Eric Dumazet9958da02010-04-17 04:17:02 +0000265DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700266EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
David S. Millercf508b12008-07-22 14:16:42 -0700268#ifdef CONFIG_LOCKDEP
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700269/*
David S. Millerc773e842008-07-08 23:13:53 -0700270 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700271 * according to dev->type
272 */
273static const unsigned short netdev_lock_type[] =
274 {ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
275 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
276 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
277 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
278 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
279 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
280 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
281 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
282 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
283 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
284 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
285 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
Paul Gortmaker211ed862012-05-10 17:14:35 -0400286 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
287 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
288 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700289
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700290static const char *const netdev_lock_name[] =
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700291 {"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
292 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
293 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
294 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
295 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
296 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
297 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
298 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
299 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
300 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
301 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
302 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
Paul Gortmaker211ed862012-05-10 17:14:35 -0400303 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
304 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
305 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700306
307static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
David S. Millercf508b12008-07-22 14:16:42 -0700308static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700309
310static inline unsigned short netdev_lock_pos(unsigned short dev_type)
311{
312 int i;
313
314 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
315 if (netdev_lock_type[i] == dev_type)
316 return i;
317 /* the last key is used by default */
318 return ARRAY_SIZE(netdev_lock_type) - 1;
319}
320
David S. Millercf508b12008-07-22 14:16:42 -0700321static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
322 unsigned short dev_type)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700323{
324 int i;
325
326 i = netdev_lock_pos(dev_type);
327 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
328 netdev_lock_name[i]);
329}
David S. Millercf508b12008-07-22 14:16:42 -0700330
331static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
332{
333 int i;
334
335 i = netdev_lock_pos(dev->type);
336 lockdep_set_class_and_name(&dev->addr_list_lock,
337 &netdev_addr_lock_key[i],
338 netdev_lock_name[i]);
339}
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700340#else
David S. Millercf508b12008-07-22 14:16:42 -0700341static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
342 unsigned short dev_type)
343{
344}
345static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700346{
347}
348#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
350/*******************************************************************************
351
352 Protocol management and registration routines
353
354*******************************************************************************/
355
356/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 * Add a protocol ID to the list. Now that the input handler is
358 * smarter we can dispense with all the messy stuff that used to be
359 * here.
360 *
361 * BEWARE!!! Protocol handlers, mangling input packets,
362 * MUST BE last in hash buckets and checking protocol handlers
363 * MUST start from promiscuous ptype_all chain in net_bh.
364 * It is true now, do not change it.
365 * Explanation follows: if protocol handler, mangling packet, will
366 * be the first on list, it is not able to sense, that packet
367 * is cloned and should be copied-on-write, so that it will
368 * change it and subsequent readers will get broken packet.
369 * --ANK (980803)
370 */
371
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000372static inline struct list_head *ptype_head(const struct packet_type *pt)
373{
374 if (pt->type == htons(ETH_P_ALL))
Salam Noureddine7866a622015-01-27 11:35:48 -0800375 return pt->dev ? &pt->dev->ptype_all : &ptype_all;
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000376 else
Salam Noureddine7866a622015-01-27 11:35:48 -0800377 return pt->dev ? &pt->dev->ptype_specific :
378 &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000379}
380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/**
382 * dev_add_pack - add packet handler
383 * @pt: packet type declaration
384 *
385 * Add a protocol handler to the networking stack. The passed &packet_type
386 * is linked into kernel lists and may not be freed until it has been
387 * removed from the kernel lists.
388 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900389 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 * guarantee all CPU's that are in middle of receiving packets
391 * will see the new packet type (until the next received packet).
392 */
393
394void dev_add_pack(struct packet_type *pt)
395{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000396 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000398 spin_lock(&ptype_lock);
399 list_add_rcu(&pt->list, head);
400 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700402EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404/**
405 * __dev_remove_pack - remove packet handler
406 * @pt: packet type declaration
407 *
408 * Remove a protocol handler that was previously added to the kernel
409 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
410 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900411 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 *
413 * The packet type might still be in use by receivers
414 * and must not be freed until after all the CPU's have gone
415 * through a quiescent state.
416 */
417void __dev_remove_pack(struct packet_type *pt)
418{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000419 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 struct packet_type *pt1;
421
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000422 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
424 list_for_each_entry(pt1, head, list) {
425 if (pt == pt1) {
426 list_del_rcu(&pt->list);
427 goto out;
428 }
429 }
430
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000431 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000433 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700435EXPORT_SYMBOL(__dev_remove_pack);
436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437/**
438 * dev_remove_pack - remove packet handler
439 * @pt: packet type declaration
440 *
441 * Remove a protocol handler that was previously added to the kernel
442 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
443 * from the kernel lists and can be freed or reused once this function
444 * returns.
445 *
446 * This call sleeps to guarantee that no CPU is looking at the packet
447 * type after return.
448 */
449void dev_remove_pack(struct packet_type *pt)
450{
451 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900452
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453 synchronize_net();
454}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700455EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
Vlad Yasevich62532da2012-11-15 08:49:10 +0000457
458/**
459 * dev_add_offload - register offload handlers
460 * @po: protocol offload declaration
461 *
462 * Add protocol offload handlers to the networking stack. The passed
463 * &proto_offload is linked into kernel lists and may not be freed until
464 * it has been removed from the kernel lists.
465 *
466 * This call does not sleep therefore it can not
467 * guarantee all CPU's that are in middle of receiving packets
468 * will see the new offload handlers (until the next received packet).
469 */
470void dev_add_offload(struct packet_offload *po)
471{
David S. Millerbdef7de2015-06-01 14:56:09 -0700472 struct packet_offload *elem;
Vlad Yasevich62532da2012-11-15 08:49:10 +0000473
474 spin_lock(&offload_lock);
David S. Millerbdef7de2015-06-01 14:56:09 -0700475 list_for_each_entry(elem, &offload_base, list) {
476 if (po->priority < elem->priority)
477 break;
478 }
479 list_add_rcu(&po->list, elem->list.prev);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000480 spin_unlock(&offload_lock);
481}
482EXPORT_SYMBOL(dev_add_offload);
483
484/**
485 * __dev_remove_offload - remove offload handler
486 * @po: packet offload declaration
487 *
488 * Remove a protocol offload handler that was previously added to the
489 * kernel offload handlers by dev_add_offload(). The passed &offload_type
490 * is removed from the kernel lists and can be freed or reused once this
491 * function returns.
492 *
493 * The packet type might still be in use by receivers
494 * and must not be freed until after all the CPU's have gone
495 * through a quiescent state.
496 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800497static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000498{
499 struct list_head *head = &offload_base;
500 struct packet_offload *po1;
501
Eric Dumazetc53aa502012-11-16 08:08:23 +0000502 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000503
504 list_for_each_entry(po1, head, list) {
505 if (po == po1) {
506 list_del_rcu(&po->list);
507 goto out;
508 }
509 }
510
511 pr_warn("dev_remove_offload: %p not found\n", po);
512out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000513 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000514}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000515
516/**
517 * dev_remove_offload - remove packet offload handler
518 * @po: packet offload declaration
519 *
520 * Remove a packet offload handler that was previously added to the kernel
521 * offload handlers by dev_add_offload(). The passed &offload_type is
522 * removed from the kernel lists and can be freed or reused once this
523 * function returns.
524 *
525 * This call sleeps to guarantee that no CPU is looking at the packet
526 * type after return.
527 */
528void dev_remove_offload(struct packet_offload *po)
529{
530 __dev_remove_offload(po);
531
532 synchronize_net();
533}
534EXPORT_SYMBOL(dev_remove_offload);
535
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536/******************************************************************************
537
538 Device Boot-time Settings Routines
539
540*******************************************************************************/
541
542/* Boot time configuration table */
543static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
544
545/**
546 * netdev_boot_setup_add - add new setup entry
547 * @name: name of the device
548 * @map: configured settings for the device
549 *
550 * Adds new setup entry to the dev_boot_setup list. The function
551 * returns 0 on error and 1 on success. This is a generic routine to
552 * all netdevices.
553 */
554static int netdev_boot_setup_add(char *name, struct ifmap *map)
555{
556 struct netdev_boot_setup *s;
557 int i;
558
559 s = dev_boot_setup;
560 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
561 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
562 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff2008-07-01 19:57:19 -0700563 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 memcpy(&s[i].map, map, sizeof(s[i].map));
565 break;
566 }
567 }
568
569 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
570}
571
572/**
573 * netdev_boot_setup_check - check boot time settings
574 * @dev: the netdevice
575 *
576 * Check boot time settings for the device.
577 * The found settings are set for the device to be used
578 * later in the device probing.
579 * Returns 0 if no settings found, 1 if they are.
580 */
581int netdev_boot_setup_check(struct net_device *dev)
582{
583 struct netdev_boot_setup *s = dev_boot_setup;
584 int i;
585
586 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
587 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff2008-07-01 19:57:19 -0700588 !strcmp(dev->name, s[i].name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 dev->irq = s[i].map.irq;
590 dev->base_addr = s[i].map.base_addr;
591 dev->mem_start = s[i].map.mem_start;
592 dev->mem_end = s[i].map.mem_end;
593 return 1;
594 }
595 }
596 return 0;
597}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700598EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
600
601/**
602 * netdev_boot_base - get address from boot time settings
603 * @prefix: prefix for network device
604 * @unit: id for network device
605 *
606 * Check boot time settings for the base address of device.
607 * The found settings are set for the device to be used
608 * later in the device probing.
609 * Returns 0 if no settings found.
610 */
611unsigned long netdev_boot_base(const char *prefix, int unit)
612{
613 const struct netdev_boot_setup *s = dev_boot_setup;
614 char name[IFNAMSIZ];
615 int i;
616
617 sprintf(name, "%s%d", prefix, unit);
618
619 /*
620 * If device already registered then return base of 1
621 * to indicate not to probe for this interface
622 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700623 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 return 1;
625
626 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
627 if (!strcmp(name, s[i].name))
628 return s[i].map.base_addr;
629 return 0;
630}
631
632/*
633 * Saves at boot time configured settings for any netdevice.
634 */
635int __init netdev_boot_setup(char *str)
636{
637 int ints[5];
638 struct ifmap map;
639
640 str = get_options(str, ARRAY_SIZE(ints), ints);
641 if (!str || !*str)
642 return 0;
643
644 /* Save settings */
645 memset(&map, 0, sizeof(map));
646 if (ints[0] > 0)
647 map.irq = ints[1];
648 if (ints[0] > 1)
649 map.base_addr = ints[2];
650 if (ints[0] > 2)
651 map.mem_start = ints[3];
652 if (ints[0] > 3)
653 map.mem_end = ints[4];
654
655 /* Add new entry to the list */
656 return netdev_boot_setup_add(str, &map);
657}
658
659__setup("netdev=", netdev_boot_setup);
660
661/*******************************************************************************
662
663 Device Interface Subroutines
664
665*******************************************************************************/
666
667/**
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200668 * dev_get_iflink - get 'iflink' value of a interface
669 * @dev: targeted interface
670 *
671 * Indicates the ifindex the interface is linked to.
672 * Physical interfaces have the same 'ifindex' and 'iflink' values.
673 */
674
675int dev_get_iflink(const struct net_device *dev)
676{
677 if (dev->netdev_ops && dev->netdev_ops->ndo_get_iflink)
678 return dev->netdev_ops->ndo_get_iflink(dev);
679
Nicolas Dichtele1622ba2015-04-02 17:07:10 +0200680 /* If dev->rtnl_link_ops is set, it's a virtual interface. */
681 if (dev->rtnl_link_ops)
682 return 0;
683
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +0200684 return dev->ifindex;
Nicolas Dichtela54acb32015-04-02 17:07:00 +0200685}
686EXPORT_SYMBOL(dev_get_iflink);
687
688/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700690 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 * @name: name to find
692 *
693 * Find an interface by name. Must be called under RTNL semaphore
694 * or @dev_base_lock. If the name is found a pointer to the device
695 * is returned. If the name is not found then %NULL is returned. The
696 * reference counters are not incremented so the caller must be
697 * careful with locks.
698 */
699
Eric W. Biederman881d9662007-09-17 11:56:21 -0700700struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700702 struct net_device *dev;
703 struct hlist_head *head = dev_name_hash(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Sasha Levinb67bfe02013-02-27 17:06:00 -0800705 hlist_for_each_entry(dev, head, name_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 if (!strncmp(dev->name, name, IFNAMSIZ))
707 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 return NULL;
710}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700711EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
713/**
Eric Dumazet72c95282009-10-30 07:11:27 +0000714 * dev_get_by_name_rcu - find a device by its name
715 * @net: the applicable net namespace
716 * @name: name to find
717 *
718 * Find an interface by name.
719 * If the name is found a pointer to the device is returned.
720 * If the name is not found then %NULL is returned.
721 * The reference counters are not incremented so the caller must be
722 * careful with locks. The caller must hold RCU lock.
723 */
724
725struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
726{
Eric Dumazet72c95282009-10-30 07:11:27 +0000727 struct net_device *dev;
728 struct hlist_head *head = dev_name_hash(net, name);
729
Sasha Levinb67bfe02013-02-27 17:06:00 -0800730 hlist_for_each_entry_rcu(dev, head, name_hlist)
Eric Dumazet72c95282009-10-30 07:11:27 +0000731 if (!strncmp(dev->name, name, IFNAMSIZ))
732 return dev;
733
734 return NULL;
735}
736EXPORT_SYMBOL(dev_get_by_name_rcu);
737
738/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700740 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 * @name: name to find
742 *
743 * Find an interface by name. This can be called from any
744 * context and does its own locking. The returned handle has
745 * the usage count incremented and the caller must use dev_put() to
746 * release it when it is no longer needed. %NULL is returned if no
747 * matching device is found.
748 */
749
Eric W. Biederman881d9662007-09-17 11:56:21 -0700750struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751{
752 struct net_device *dev;
753
Eric Dumazet72c95282009-10-30 07:11:27 +0000754 rcu_read_lock();
755 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 if (dev)
757 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000758 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return dev;
760}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700761EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762
763/**
764 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700765 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700766 * @ifindex: index of device
767 *
768 * Search for an interface by index. Returns %NULL if the device
769 * is not found or a pointer to the device. The device has not
770 * had its reference counter increased so the caller must be careful
771 * about locking. The caller must hold either the RTNL semaphore
772 * or @dev_base_lock.
773 */
774
Eric W. Biederman881d9662007-09-17 11:56:21 -0700775struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700777 struct net_device *dev;
778 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779
Sasha Levinb67bfe02013-02-27 17:06:00 -0800780 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 if (dev->ifindex == ifindex)
782 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700783
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 return NULL;
785}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700786EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000788/**
789 * dev_get_by_index_rcu - find a device by its ifindex
790 * @net: the applicable net namespace
791 * @ifindex: index of device
792 *
793 * Search for an interface by index. Returns %NULL if the device
794 * is not found or a pointer to the device. The device has not
795 * had its reference counter increased so the caller must be careful
796 * about locking. The caller must hold RCU lock.
797 */
798
799struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
800{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000801 struct net_device *dev;
802 struct hlist_head *head = dev_index_hash(net, ifindex);
803
Sasha Levinb67bfe02013-02-27 17:06:00 -0800804 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000805 if (dev->ifindex == ifindex)
806 return dev;
807
808 return NULL;
809}
810EXPORT_SYMBOL(dev_get_by_index_rcu);
811
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
813/**
814 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700815 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 * @ifindex: index of device
817 *
818 * Search for an interface by index. Returns NULL if the device
819 * is not found or a pointer to the device. The device returned has
820 * had a reference added and the pointer is safe until the user calls
821 * dev_put to indicate they have finished with it.
822 */
823
Eric W. Biederman881d9662007-09-17 11:56:21 -0700824struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825{
826 struct net_device *dev;
827
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000828 rcu_read_lock();
829 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 if (dev)
831 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000832 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 return dev;
834}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700835EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836
837/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200838 * netdev_get_name - get a netdevice name, knowing its ifindex.
839 * @net: network namespace
840 * @name: a pointer to the buffer where the name will be stored.
841 * @ifindex: the ifindex of the interface to get the name from.
842 *
843 * The use of raw_seqcount_begin() and cond_resched() before
844 * retrying is required as we want to give the writers a chance
845 * to complete when CONFIG_PREEMPT is not set.
846 */
847int netdev_get_name(struct net *net, char *name, int ifindex)
848{
849 struct net_device *dev;
850 unsigned int seq;
851
852retry:
853 seq = raw_seqcount_begin(&devnet_rename_seq);
854 rcu_read_lock();
855 dev = dev_get_by_index_rcu(net, ifindex);
856 if (!dev) {
857 rcu_read_unlock();
858 return -ENODEV;
859 }
860
861 strcpy(name, dev->name);
862 rcu_read_unlock();
863 if (read_seqcount_retry(&devnet_rename_seq, seq)) {
864 cond_resched();
865 goto retry;
866 }
867
868 return 0;
869}
870
871/**
Eric Dumazet941666c2010-12-05 01:23:53 +0000872 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700873 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874 * @type: media type of device
875 * @ha: hardware address
876 *
877 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -0800878 * is not found or a pointer to the device.
879 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +0000880 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 * and the caller must therefore be careful about locking
882 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 */
884
Eric Dumazet941666c2010-12-05 01:23:53 +0000885struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
886 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
888 struct net_device *dev;
889
Eric Dumazet941666c2010-12-05 01:23:53 +0000890 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (dev->type == type &&
892 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700893 return dev;
894
895 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896}
Eric Dumazet941666c2010-12-05 01:23:53 +0000897EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -0300898
Eric W. Biederman881d9662007-09-17 11:56:21 -0700899struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700900{
901 struct net_device *dev;
902
903 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700904 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700905 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700906 return dev;
907
908 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700909}
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700910EXPORT_SYMBOL(__dev_getfirstbyhwtype);
911
Eric W. Biederman881d9662007-09-17 11:56:21 -0700912struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000914 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000916 rcu_read_lock();
917 for_each_netdev_rcu(net, dev)
918 if (dev->type == type) {
919 dev_hold(dev);
920 ret = dev;
921 break;
922 }
923 rcu_read_unlock();
924 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926EXPORT_SYMBOL(dev_getfirstbyhwtype);
927
928/**
WANG Cong6c555492014-09-11 15:35:09 -0700929 * __dev_get_by_flags - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700930 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 * @if_flags: IFF_* values
932 * @mask: bitmask of bits in if_flags to check
933 *
934 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +0000935 * is not found or a pointer to the device. Must be called inside
WANG Cong6c555492014-09-11 15:35:09 -0700936 * rtnl_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700937 */
938
WANG Cong6c555492014-09-11 15:35:09 -0700939struct net_device *__dev_get_by_flags(struct net *net, unsigned short if_flags,
940 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941{
Pavel Emelianov7562f872007-05-03 15:13:45 -0700942 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
WANG Cong6c555492014-09-11 15:35:09 -0700944 ASSERT_RTNL();
945
Pavel Emelianov7562f872007-05-03 15:13:45 -0700946 ret = NULL;
WANG Cong6c555492014-09-11 15:35:09 -0700947 for_each_netdev(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -0700949 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 break;
951 }
952 }
Pavel Emelianov7562f872007-05-03 15:13:45 -0700953 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
WANG Cong6c555492014-09-11 15:35:09 -0700955EXPORT_SYMBOL(__dev_get_by_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956
957/**
958 * dev_valid_name - check if name is okay for network device
959 * @name: name string
960 *
961 * Network device names need to be valid file names to
David S. Millerc7fa9d12006-08-15 16:34:13 -0700962 * to allow sysfs to work. We also disallow any kind of
963 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 */
David S. Miller95f050b2012-03-06 16:12:15 -0500965bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966{
David S. Millerc7fa9d12006-08-15 16:34:13 -0700967 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -0500968 return false;
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -0700969 if (strlen(name) >= IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -0500970 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -0700971 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -0500972 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -0700973
974 while (*name) {
Matthew Thodea4176a92015-02-17 18:31:57 -0600975 if (*name == '/' || *name == ':' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -0500976 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -0700977 name++;
978 }
David S. Miller95f050b2012-03-06 16:12:15 -0500979 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700981EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
983/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200984 * __dev_alloc_name - allocate a name for a device
985 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200987 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 *
989 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -0700990 * id. It scans list of devices to build up a free map, then chooses
991 * the first empty slot. The caller must hold the dev_base or rtnl lock
992 * while allocating the name and adding the device in order to avoid
993 * duplicates.
994 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
995 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996 */
997
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200998static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700999{
1000 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001 const char *p;
1002 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001003 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 struct net_device *d;
1005
1006 p = strnchr(name, IFNAMSIZ-1, '%');
1007 if (p) {
1008 /*
1009 * Verify the string as this thing may have come from
1010 * the user. There must be either one "%d" and no other "%"
1011 * characters.
1012 */
1013 if (p[1] != 'd' || strchr(p + 2, '%'))
1014 return -EINVAL;
1015
1016 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -07001017 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 if (!inuse)
1019 return -ENOMEM;
1020
Eric W. Biederman881d9662007-09-17 11:56:21 -07001021 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 if (!sscanf(d->name, name, &i))
1023 continue;
1024 if (i < 0 || i >= max_netdevices)
1025 continue;
1026
1027 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001028 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 if (!strncmp(buf, d->name, IFNAMSIZ))
1030 set_bit(i, inuse);
1031 }
1032
1033 i = find_first_zero_bit(inuse, max_netdevices);
1034 free_page((unsigned long) inuse);
1035 }
1036
Octavian Purdilad9031022009-11-18 02:36:59 +00001037 if (buf != name)
1038 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001039 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041
1042 /* It is possible to run out of possible slots
1043 * when the name is long and there isn't enough space left
1044 * for the digits, or if all bits are used.
1045 */
1046 return -ENFILE;
1047}
1048
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001049/**
1050 * dev_alloc_name - allocate a name for a device
1051 * @dev: device
1052 * @name: name format string
1053 *
1054 * Passed a format string - eg "lt%d" it will try and find a suitable
1055 * id. It scans list of devices to build up a free map, then chooses
1056 * the first empty slot. The caller must hold the dev_base or rtnl lock
1057 * while allocating the name and adding the device in order to avoid
1058 * duplicates.
1059 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1060 * Returns the number of the unit assigned or a negative errno code.
1061 */
1062
1063int dev_alloc_name(struct net_device *dev, const char *name)
1064{
1065 char buf[IFNAMSIZ];
1066 struct net *net;
1067 int ret;
1068
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001069 BUG_ON(!dev_net(dev));
1070 net = dev_net(dev);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001071 ret = __dev_alloc_name(net, name, buf);
1072 if (ret >= 0)
1073 strlcpy(dev->name, buf, IFNAMSIZ);
1074 return ret;
1075}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001076EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001077
Gao feng828de4f2012-09-13 20:58:27 +00001078static int dev_alloc_name_ns(struct net *net,
1079 struct net_device *dev,
1080 const char *name)
Octavian Purdilad9031022009-11-18 02:36:59 +00001081{
Gao feng828de4f2012-09-13 20:58:27 +00001082 char buf[IFNAMSIZ];
1083 int ret;
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001084
Gao feng828de4f2012-09-13 20:58:27 +00001085 ret = __dev_alloc_name(net, name, buf);
1086 if (ret >= 0)
1087 strlcpy(dev->name, buf, IFNAMSIZ);
1088 return ret;
1089}
1090
1091static int dev_get_valid_name(struct net *net,
1092 struct net_device *dev,
1093 const char *name)
1094{
1095 BUG_ON(!net);
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001096
Octavian Purdilad9031022009-11-18 02:36:59 +00001097 if (!dev_valid_name(name))
1098 return -EINVAL;
1099
Jiri Pirko1c5cae82011-04-30 01:21:32 +00001100 if (strchr(name, '%'))
Gao feng828de4f2012-09-13 20:58:27 +00001101 return dev_alloc_name_ns(net, dev, name);
Octavian Purdilad9031022009-11-18 02:36:59 +00001102 else if (__dev_get_by_name(net, name))
1103 return -EEXIST;
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001104 else if (dev->name != name)
1105 strlcpy(dev->name, name, IFNAMSIZ);
Octavian Purdilad9031022009-11-18 02:36:59 +00001106
1107 return 0;
1108}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
1110/**
1111 * dev_change_name - change name of a device
1112 * @dev: device
1113 * @newname: name (or format string) must be at least IFNAMSIZ
1114 *
1115 * Change name of a device, can pass format strings "eth%d".
1116 * for wildcarding.
1117 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001118int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119{
Tom Gundersen238fa362014-07-14 16:37:23 +02001120 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001121 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001123 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001124 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125
1126 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001127 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001129 net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 if (dev->flags & IFF_UP)
1131 return -EBUSY;
1132
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001133 write_seqcount_begin(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001134
1135 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001136 write_seqcount_end(&devnet_rename_seq);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001137 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001138 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001139
Herbert Xufcc5a032007-07-30 17:03:38 -07001140 memcpy(oldname, dev->name, IFNAMSIZ);
1141
Gao feng828de4f2012-09-13 20:58:27 +00001142 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001143 if (err < 0) {
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001144 write_seqcount_end(&devnet_rename_seq);
Octavian Purdilad9031022009-11-18 02:36:59 +00001145 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001146 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001148 if (oldname[0] && !strchr(oldname, '%'))
1149 netdev_info(dev, "renamed from %s\n", oldname);
1150
Tom Gundersen238fa362014-07-14 16:37:23 +02001151 old_assign_type = dev->name_assign_type;
1152 dev->name_assign_type = NET_NAME_RENAMED;
1153
Herbert Xufcc5a032007-07-30 17:03:38 -07001154rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001155 ret = device_rename(&dev->dev, dev->name);
1156 if (ret) {
1157 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001158 dev->name_assign_type = old_assign_type;
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001159 write_seqcount_end(&devnet_rename_seq);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001160 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001161 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001162
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001163 write_seqcount_end(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001164
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001165 netdev_adjacent_rename_links(dev, oldname);
1166
Herbert Xu7f988ea2007-07-30 16:35:46 -07001167 write_lock_bh(&dev_base_lock);
Eric Dumazet372b2312011-05-17 13:56:59 -04001168 hlist_del_rcu(&dev->name_hlist);
Eric Dumazet72c95282009-10-30 07:11:27 +00001169 write_unlock_bh(&dev_base_lock);
1170
1171 synchronize_rcu();
1172
1173 write_lock_bh(&dev_base_lock);
1174 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -07001175 write_unlock_bh(&dev_base_lock);
1176
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001177 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001178 ret = notifier_to_errno(ret);
1179
1180 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001181 /* err >= 0 after dev_alloc_name() or stores the first errno */
1182 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001183 err = ret;
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001184 write_seqcount_begin(&devnet_rename_seq);
Herbert Xufcc5a032007-07-30 17:03:38 -07001185 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001186 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001187 dev->name_assign_type = old_assign_type;
1188 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001189 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001190 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001191 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001192 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001193 }
1194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
1196 return err;
1197}
1198
1199/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001200 * dev_set_alias - change ifalias of a device
1201 * @dev: device
1202 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001203 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001204 *
1205 * Set ifalias for a device,
1206 */
1207int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1208{
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001209 char *new_ifalias;
1210
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001211 ASSERT_RTNL();
1212
1213 if (len >= IFALIASZ)
1214 return -EINVAL;
1215
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001216 if (!len) {
Sachin Kamat388dfc22012-11-20 00:57:04 +00001217 kfree(dev->ifalias);
1218 dev->ifalias = NULL;
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001219 return 0;
1220 }
1221
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001222 new_ifalias = krealloc(dev->ifalias, len + 1, GFP_KERNEL);
1223 if (!new_ifalias)
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001224 return -ENOMEM;
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001225 dev->ifalias = new_ifalias;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001226
1227 strlcpy(dev->ifalias, alias, len+1);
1228 return len;
1229}
1230
1231
1232/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001233 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001234 * @dev: device to cause notification
1235 *
1236 * Called to indicate a device has changed features.
1237 */
1238void netdev_features_change(struct net_device *dev)
1239{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001240 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001241}
1242EXPORT_SYMBOL(netdev_features_change);
1243
1244/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 * netdev_state_change - device changes state
1246 * @dev: device to cause notification
1247 *
1248 * Called to indicate a device has changed state. This function calls
1249 * the notifier chains for netdev_chain and sends a NEWLINK message
1250 * to the routing socket.
1251 */
1252void netdev_state_change(struct net_device *dev)
1253{
1254 if (dev->flags & IFF_UP) {
Loic Prylli5495119462014-07-01 21:39:43 -07001255 struct netdev_notifier_change_info change_info;
1256
1257 change_info.flags_changed = 0;
1258 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
1259 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001260 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 }
1262}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001263EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
Amerigo Wangee89bab2012-08-09 22:14:56 +00001265/**
1266 * netdev_notify_peers - notify network peers about existence of @dev
1267 * @dev: network device
1268 *
1269 * Generate traffic such that interested network peers are aware of
1270 * @dev, such as by generating a gratuitous ARP. This may be used when
1271 * a device wants to inform the rest of the network about some sort of
1272 * reconfiguration such as a failover event or virtual machine
1273 * migration.
1274 */
1275void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001276{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001277 rtnl_lock();
1278 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
1279 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001280}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001281EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001282
Patrick McHardybd380812010-02-26 06:34:53 +00001283static int __dev_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001285 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001286 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001288 ASSERT_RTNL();
1289
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 if (!netif_device_present(dev))
1291 return -ENODEV;
1292
Neil Hormanca99ca12013-02-05 08:05:43 +00001293 /* Block netpoll from trying to do any rx path servicing.
1294 * If we don't do this there is a chance ndo_poll_controller
1295 * or ndo_poll may be running while we open the device
1296 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001297 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001298
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001299 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1300 ret = notifier_to_errno(ret);
1301 if (ret)
1302 return ret;
1303
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001305
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001306 if (ops->ndo_validate_addr)
1307 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001308
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001309 if (!ret && ops->ndo_open)
1310 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Eric W. Biederman66b55522014-03-27 15:39:03 -07001312 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001313
Jeff Garzikbada3392007-10-23 20:19:37 -07001314 if (ret)
1315 clear_bit(__LINK_STATE_START, &dev->state);
1316 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 dev->flags |= IFF_UP;
Patrick McHardy4417da62007-06-27 01:28:10 -07001318 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001320 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001322
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 return ret;
1324}
Patrick McHardybd380812010-02-26 06:34:53 +00001325
1326/**
1327 * dev_open - prepare an interface for use.
1328 * @dev: device to open
1329 *
1330 * Takes a device from down to up state. The device's private open
1331 * function is invoked and then the multicast lists are loaded. Finally
1332 * the device is moved into the up state and a %NETDEV_UP message is
1333 * sent to the netdev notifier chain.
1334 *
1335 * Calling this function on an active interface is a nop. On a failure
1336 * a negative errno code is returned.
1337 */
1338int dev_open(struct net_device *dev)
1339{
1340 int ret;
1341
Patrick McHardybd380812010-02-26 06:34:53 +00001342 if (dev->flags & IFF_UP)
1343 return 0;
1344
Patrick McHardybd380812010-02-26 06:34:53 +00001345 ret = __dev_open(dev);
1346 if (ret < 0)
1347 return ret;
1348
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001349 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001350 call_netdevice_notifiers(NETDEV_UP, dev);
1351
1352 return ret;
1353}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001354EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355
Octavian Purdila44345722010-12-13 12:44:07 +00001356static int __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Octavian Purdila44345722010-12-13 12:44:07 +00001358 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001359
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001360 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001361 might_sleep();
1362
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001363 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001364 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001365 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001366
Octavian Purdila44345722010-12-13 12:44:07 +00001367 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368
Octavian Purdila44345722010-12-13 12:44:07 +00001369 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Octavian Purdila44345722010-12-13 12:44:07 +00001371 /* Synchronize to scheduled poll. We cannot touch poll list, it
1372 * can be even on different cpu. So just clear netif_running().
1373 *
1374 * dev->stop() will invoke napi_disable() on all of it's
1375 * napi_struct instances on this device.
1376 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001377 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Octavian Purdila44345722010-12-13 12:44:07 +00001380 dev_deactivate_many(head);
1381
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001382 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001383 const struct net_device_ops *ops = dev->netdev_ops;
1384
1385 /*
1386 * Call the device specific close. This cannot fail.
1387 * Only if device is UP
1388 *
1389 * We allow it to be called even after a DETACH hot-plug
1390 * event.
1391 */
1392 if (ops->ndo_stop)
1393 ops->ndo_stop(dev);
1394
Octavian Purdila44345722010-12-13 12:44:07 +00001395 dev->flags &= ~IFF_UP;
Eric W. Biederman66b55522014-03-27 15:39:03 -07001396 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001397 }
1398
1399 return 0;
1400}
1401
1402static int __dev_close(struct net_device *dev)
1403{
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001404 int retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001405 LIST_HEAD(single);
1406
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001407 list_add(&dev->close_list, &single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001408 retval = __dev_close_many(&single);
1409 list_del(&single);
Neil Hormanca99ca12013-02-05 08:05:43 +00001410
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001411 return retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001412}
1413
David S. Miller99c4a262015-03-18 22:52:33 -04001414int dev_close_many(struct list_head *head, bool unlink)
Octavian Purdila44345722010-12-13 12:44:07 +00001415{
1416 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001417
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001418 /* Remove the devices that don't need to be closed */
1419 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001420 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001421 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001422
1423 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001424
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001425 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001426 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001427 call_netdevice_notifiers(NETDEV_DOWN, dev);
David S. Miller99c4a262015-03-18 22:52:33 -04001428 if (unlink)
1429 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001430 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432 return 0;
1433}
David S. Miller99c4a262015-03-18 22:52:33 -04001434EXPORT_SYMBOL(dev_close_many);
Patrick McHardybd380812010-02-26 06:34:53 +00001435
1436/**
1437 * dev_close - shutdown an interface.
1438 * @dev: device to shutdown
1439 *
1440 * This function moves an active device into down state. A
1441 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1442 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1443 * chain.
1444 */
1445int dev_close(struct net_device *dev)
1446{
Eric Dumazete14a5992011-05-10 12:26:06 -07001447 if (dev->flags & IFF_UP) {
1448 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001449
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001450 list_add(&dev->close_list, &single);
David S. Miller99c4a262015-03-18 22:52:33 -04001451 dev_close_many(&single, true);
Eric Dumazete14a5992011-05-10 12:26:06 -07001452 list_del(&single);
1453 }
dingtianhongda6e3782013-05-27 19:53:31 +00001454 return 0;
Patrick McHardybd380812010-02-26 06:34:53 +00001455}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001456EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001459/**
1460 * dev_disable_lro - disable Large Receive Offload on a device
1461 * @dev: device
1462 *
1463 * Disable Large Receive Offload (LRO) on a net device. Must be
1464 * called under RTNL. This is needed if received packets may be
1465 * forwarded to another interface.
1466 */
1467void dev_disable_lro(struct net_device *dev)
1468{
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001469 struct net_device *lower_dev;
1470 struct list_head *iter;
Michal Kubeček529d0482013-11-15 06:18:50 +01001471
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001472 dev->wanted_features &= ~NETIF_F_LRO;
1473 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001474
Michał Mirosław22d59692011-04-21 12:42:15 +00001475 if (unlikely(dev->features & NETIF_F_LRO))
1476 netdev_WARN(dev, "failed to disable LRO!\n");
Michal Kubečekfbe168b2014-11-13 07:54:50 +01001477
1478 netdev_for_each_lower_dev(dev, lower_dev, iter)
1479 dev_disable_lro(lower_dev);
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001480}
1481EXPORT_SYMBOL(dev_disable_lro);
1482
Jiri Pirko351638e2013-05-28 01:30:21 +00001483static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1484 struct net_device *dev)
1485{
1486 struct netdev_notifier_info info;
1487
1488 netdev_notifier_info_init(&info, dev);
1489 return nb->notifier_call(nb, val, &info);
1490}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001491
Eric W. Biederman881d9662007-09-17 11:56:21 -07001492static int dev_boot_phase = 1;
1493
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494/**
1495 * register_netdevice_notifier - register a network notifier block
1496 * @nb: notifier
1497 *
1498 * Register a notifier to be called when network device events occur.
1499 * The notifier passed is linked into the kernel structures and must
1500 * not be reused until it has been unregistered. A negative errno code
1501 * is returned on a failure.
1502 *
1503 * When registered all registration and up events are replayed
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001504 * to the new notifier to allow device to have a race free
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 * view of the network device list.
1506 */
1507
1508int register_netdevice_notifier(struct notifier_block *nb)
1509{
1510 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001511 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001512 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 int err;
1514
1515 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001516 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001517 if (err)
1518 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001519 if (dev_boot_phase)
1520 goto unlock;
1521 for_each_net(net) {
1522 for_each_netdev(net, dev) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001523 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001524 err = notifier_to_errno(err);
1525 if (err)
1526 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Eric W. Biederman881d9662007-09-17 11:56:21 -07001528 if (!(dev->flags & IFF_UP))
1529 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001530
Jiri Pirko351638e2013-05-28 01:30:21 +00001531 call_netdevice_notifier(nb, NETDEV_UP, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001534
1535unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 rtnl_unlock();
1537 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001538
1539rollback:
1540 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001541 for_each_net(net) {
1542 for_each_netdev(net, dev) {
1543 if (dev == last)
RongQing.Li8f891482011-11-30 23:43:07 -05001544 goto outroll;
Herbert Xufcc5a032007-07-30 17:03:38 -07001545
Eric W. Biederman881d9662007-09-17 11:56:21 -07001546 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001547 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1548 dev);
1549 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001550 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001551 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001552 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001553 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001554
RongQing.Li8f891482011-11-30 23:43:07 -05001555outroll:
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001556 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001557 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001559EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561/**
1562 * unregister_netdevice_notifier - unregister a network notifier block
1563 * @nb: notifier
1564 *
1565 * Unregister a notifier previously registered by
1566 * register_netdevice_notifier(). The notifier is unlinked into the
1567 * kernel structures and may then be reused. A negative errno code
1568 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001569 *
1570 * After unregistering unregister and down device events are synthesized
1571 * for all devices on the device list to the removed notifier to remove
1572 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 */
1574
1575int unregister_netdevice_notifier(struct notifier_block *nb)
1576{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001577 struct net_device *dev;
1578 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001579 int err;
1580
1581 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001582 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001583 if (err)
1584 goto unlock;
1585
1586 for_each_net(net) {
1587 for_each_netdev(net, dev) {
1588 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001589 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1590 dev);
1591 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001592 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001593 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001594 }
1595 }
1596unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001597 rtnl_unlock();
1598 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001600EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
1602/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001603 * call_netdevice_notifiers_info - call all network notifier blocks
1604 * @val: value passed unmodified to notifier function
1605 * @dev: net_device pointer passed unmodified to notifier function
1606 * @info: notifier information data
1607 *
1608 * Call all network notifier blocks. Parameters and return value
1609 * are as for raw_notifier_call_chain().
1610 */
1611
stephen hemminger1d143d92013-12-29 14:01:29 -08001612static int call_netdevice_notifiers_info(unsigned long val,
1613 struct net_device *dev,
1614 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00001615{
1616 ASSERT_RTNL();
1617 netdev_notifier_info_init(info, dev);
1618 return raw_notifier_call_chain(&netdev_chain, val, info);
1619}
Jiri Pirko351638e2013-05-28 01:30:21 +00001620
1621/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 * call_netdevice_notifiers - call all network notifier blocks
1623 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001624 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 *
1626 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001627 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 */
1629
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001630int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631{
Jiri Pirko351638e2013-05-28 01:30:21 +00001632 struct netdev_notifier_info info;
1633
1634 return call_netdevice_notifiers_info(val, dev, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635}
stephen hemmingeredf947f2011-03-24 13:24:01 +00001636EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Pablo Neira1cf519002015-05-13 18:19:37 +02001638#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +02001639static struct static_key ingress_needed __read_mostly;
1640
1641void net_inc_ingress_queue(void)
1642{
1643 static_key_slow_inc(&ingress_needed);
1644}
1645EXPORT_SYMBOL_GPL(net_inc_ingress_queue);
1646
1647void net_dec_ingress_queue(void)
1648{
1649 static_key_slow_dec(&ingress_needed);
1650}
1651EXPORT_SYMBOL_GPL(net_dec_ingress_queue);
1652#endif
1653
Ingo Molnarc5905af2012-02-24 08:31:31 +01001654static struct static_key netstamp_needed __read_mostly;
Eric Dumazetb90e5792011-11-28 11:16:50 +00001655#ifdef HAVE_JUMP_LABEL
Ingo Molnarc5905af2012-02-24 08:31:31 +01001656/* We are not allowed to call static_key_slow_dec() from irq context
Eric Dumazetb90e5792011-11-28 11:16:50 +00001657 * If net_disable_timestamp() is called from irq context, defer the
Ingo Molnarc5905af2012-02-24 08:31:31 +01001658 * static_key_slow_dec() calls.
Eric Dumazetb90e5792011-11-28 11:16:50 +00001659 */
1660static atomic_t netstamp_needed_deferred;
1661#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
1663void net_enable_timestamp(void)
1664{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001665#ifdef HAVE_JUMP_LABEL
1666 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
1667
1668 if (deferred) {
1669 while (--deferred)
Ingo Molnarc5905af2012-02-24 08:31:31 +01001670 static_key_slow_dec(&netstamp_needed);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001671 return;
1672 }
1673#endif
Ingo Molnarc5905af2012-02-24 08:31:31 +01001674 static_key_slow_inc(&netstamp_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001676EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678void net_disable_timestamp(void)
1679{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001680#ifdef HAVE_JUMP_LABEL
1681 if (in_interrupt()) {
1682 atomic_inc(&netstamp_needed_deferred);
1683 return;
1684 }
1685#endif
Ingo Molnarc5905af2012-02-24 08:31:31 +01001686 static_key_slow_dec(&netstamp_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001688EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Eric Dumazet3b098e22010-05-15 23:57:10 -07001690static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691{
Eric Dumazet588f0332011-11-15 04:12:55 +00001692 skb->tstamp.tv64 = 0;
Ingo Molnarc5905af2012-02-24 08:31:31 +01001693 if (static_key_false(&netstamp_needed))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001694 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695}
1696
Eric Dumazet588f0332011-11-15 04:12:55 +00001697#define net_timestamp_check(COND, SKB) \
Ingo Molnarc5905af2012-02-24 08:31:31 +01001698 if (static_key_false(&netstamp_needed)) { \
Eric Dumazet588f0332011-11-15 04:12:55 +00001699 if ((COND) && !(SKB)->tstamp.tv64) \
1700 __net_timestamp(SKB); \
1701 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07001702
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001703bool is_skb_forwardable(struct net_device *dev, struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001704{
1705 unsigned int len;
1706
1707 if (!(dev->flags & IFF_UP))
1708 return false;
1709
1710 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1711 if (skb->len <= len)
1712 return true;
1713
1714 /* if TSO is enabled, we don't care about the length as the packet
1715 * could be forwarded without being segmented before
1716 */
1717 if (skb_is_gso(skb))
1718 return true;
1719
1720 return false;
1721}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001722EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001723
Herbert Xua0265d22014-04-17 13:45:03 +08001724int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1725{
Willem de Bruijnbbbf2df2015-06-08 11:53:08 -04001726 if (skb_orphan_frags(skb, GFP_ATOMIC) ||
1727 unlikely(!is_skb_forwardable(dev, skb))) {
Herbert Xua0265d22014-04-17 13:45:03 +08001728 atomic_long_inc(&dev->rx_dropped);
1729 kfree_skb(skb);
1730 return NET_RX_DROP;
1731 }
1732
1733 skb_scrub_packet(skb, true);
WANG Cong08b4b8e2015-03-20 14:29:09 -07001734 skb->priority = 0;
Herbert Xua0265d22014-04-17 13:45:03 +08001735 skb->protocol = eth_type_trans(skb, dev);
Jay Vosburgh2c26d342014-12-19 15:32:00 -08001736 skb_postpull_rcsum(skb, eth_hdr(skb), ETH_HLEN);
Herbert Xua0265d22014-04-17 13:45:03 +08001737
1738 return 0;
1739}
1740EXPORT_SYMBOL_GPL(__dev_forward_skb);
1741
Arnd Bergmann44540962009-11-26 06:07:08 +00001742/**
1743 * dev_forward_skb - loopback an skb to another netif
1744 *
1745 * @dev: destination network device
1746 * @skb: buffer to forward
1747 *
1748 * return values:
1749 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07001750 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00001751 *
1752 * dev_forward_skb can be used for injecting an skb from the
1753 * start_xmit function of one device into the receive queue
1754 * of another device.
1755 *
1756 * The receiving device may be in another namespace, so
1757 * we have to clear all information in the skb that could
1758 * impact namespace isolation.
1759 */
1760int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1761{
Herbert Xua0265d22014-04-17 13:45:03 +08001762 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00001763}
1764EXPORT_SYMBOL_GPL(dev_forward_skb);
1765
Changli Gao71d9dec2010-12-15 19:57:25 +00001766static inline int deliver_skb(struct sk_buff *skb,
1767 struct packet_type *pt_prev,
1768 struct net_device *orig_dev)
1769{
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00001770 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
1771 return -ENOMEM;
Changli Gao71d9dec2010-12-15 19:57:25 +00001772 atomic_inc(&skb->users);
1773 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1774}
1775
Salam Noureddine7866a622015-01-27 11:35:48 -08001776static inline void deliver_ptype_list_skb(struct sk_buff *skb,
1777 struct packet_type **pt,
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001778 struct net_device *orig_dev,
1779 __be16 type,
Salam Noureddine7866a622015-01-27 11:35:48 -08001780 struct list_head *ptype_list)
1781{
1782 struct packet_type *ptype, *pt_prev = *pt;
1783
1784 list_for_each_entry_rcu(ptype, ptype_list, list) {
1785 if (ptype->type != type)
1786 continue;
1787 if (pt_prev)
Jiri Pirkofbcb2172015-03-30 16:56:01 +02001788 deliver_skb(skb, pt_prev, orig_dev);
Salam Noureddine7866a622015-01-27 11:35:48 -08001789 pt_prev = ptype;
1790 }
1791 *pt = pt_prev;
1792}
1793
Eric Leblondc0de08d2012-08-16 22:02:58 +00001794static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1795{
Eric Leblonda3d744e2012-11-06 02:10:10 +00001796 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001797 return false;
1798
1799 if (ptype->id_match)
1800 return ptype->id_match(ptype, skb->sk);
1801 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
1802 return true;
1803
1804 return false;
1805}
1806
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807/*
1808 * Support routine. Sends outgoing frames to any network
1809 * taps currently in use.
1810 */
1811
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001812static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813{
1814 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00001815 struct sk_buff *skb2 = NULL;
1816 struct packet_type *pt_prev = NULL;
Salam Noureddine7866a622015-01-27 11:35:48 -08001817 struct list_head *ptype_list = &ptype_all;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001818
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 rcu_read_lock();
Salam Noureddine7866a622015-01-27 11:35:48 -08001820again:
1821 list_for_each_entry_rcu(ptype, ptype_list, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822 /* Never send packets back to the socket
1823 * they originated from - MvS (miquels@drinkel.ow.org)
1824 */
Salam Noureddine7866a622015-01-27 11:35:48 -08001825 if (skb_loop_sk(ptype, skb))
1826 continue;
Changli Gao71d9dec2010-12-15 19:57:25 +00001827
Salam Noureddine7866a622015-01-27 11:35:48 -08001828 if (pt_prev) {
1829 deliver_skb(skb2, pt_prev, skb->dev);
Changli Gao71d9dec2010-12-15 19:57:25 +00001830 pt_prev = ptype;
Salam Noureddine7866a622015-01-27 11:35:48 -08001831 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 }
Salam Noureddine7866a622015-01-27 11:35:48 -08001833
1834 /* need to clone skb, done only once */
1835 skb2 = skb_clone(skb, GFP_ATOMIC);
1836 if (!skb2)
1837 goto out_unlock;
1838
1839 net_timestamp_set(skb2);
1840
1841 /* skb->nh should be correctly
1842 * set by sender, so that the second statement is
1843 * just protection against buggy protocols.
1844 */
1845 skb_reset_mac_header(skb2);
1846
1847 if (skb_network_header(skb2) < skb2->data ||
1848 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
1849 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
1850 ntohs(skb2->protocol),
1851 dev->name);
1852 skb_reset_network_header(skb2);
1853 }
1854
1855 skb2->transport_header = skb2->network_header;
1856 skb2->pkt_type = PACKET_OUTGOING;
1857 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 }
Salam Noureddine7866a622015-01-27 11:35:48 -08001859
1860 if (ptype_list == &ptype_all) {
1861 ptype_list = &dev->ptype_all;
1862 goto again;
1863 }
1864out_unlock:
Changli Gao71d9dec2010-12-15 19:57:25 +00001865 if (pt_prev)
1866 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 rcu_read_unlock();
1868}
1869
Ben Hutchings2c530402012-07-10 10:55:09 +00001870/**
1871 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00001872 * @dev: Network device
1873 * @txq: number of queues available
1874 *
1875 * If real_num_tx_queues is changed the tc mappings may no longer be
1876 * valid. To resolve this verify the tc mapping remains valid and if
1877 * not NULL the mapping. With no priorities mapping to this
1878 * offset/count pair it will no longer be used. In the worst case TC0
1879 * is invalid nothing can be done so disable priority mappings. If is
1880 * expected that drivers will fix this mapping if they can before
1881 * calling netif_set_real_num_tx_queues.
1882 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00001883static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00001884{
1885 int i;
1886 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
1887
1888 /* If TC0 is invalidated disable TC mapping */
1889 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001890 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00001891 dev->num_tc = 0;
1892 return;
1893 }
1894
1895 /* Invalidated prio to tc mappings set to TC0 */
1896 for (i = 1; i < TC_BITMASK + 1; i++) {
1897 int q = netdev_get_prio_tc_map(dev, i);
1898
1899 tc = &dev->tc_to_txq[q];
1900 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001901 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
1902 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00001903 netdev_set_prio_tc_map(dev, i, 0);
1904 }
1905 }
1906}
1907
Alexander Duyck537c00d2013-01-10 08:57:02 +00001908#ifdef CONFIG_XPS
1909static DEFINE_MUTEX(xps_map_mutex);
1910#define xmap_dereference(P) \
1911 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
1912
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001913static struct xps_map *remove_xps_queue(struct xps_dev_maps *dev_maps,
1914 int cpu, u16 index)
1915{
1916 struct xps_map *map = NULL;
1917 int pos;
1918
1919 if (dev_maps)
1920 map = xmap_dereference(dev_maps->cpu_map[cpu]);
1921
1922 for (pos = 0; map && pos < map->len; pos++) {
1923 if (map->queues[pos] == index) {
1924 if (map->len > 1) {
1925 map->queues[pos] = map->queues[--map->len];
1926 } else {
1927 RCU_INIT_POINTER(dev_maps->cpu_map[cpu], NULL);
1928 kfree_rcu(map, rcu);
1929 map = NULL;
1930 }
1931 break;
1932 }
1933 }
1934
1935 return map;
1936}
1937
Alexander Duyck024e9672013-01-10 08:57:46 +00001938static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00001939{
1940 struct xps_dev_maps *dev_maps;
Alexander Duyck024e9672013-01-10 08:57:46 +00001941 int cpu, i;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001942 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001943
1944 mutex_lock(&xps_map_mutex);
1945 dev_maps = xmap_dereference(dev->xps_maps);
1946
1947 if (!dev_maps)
1948 goto out_no_maps;
1949
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001950 for_each_possible_cpu(cpu) {
Alexander Duyck024e9672013-01-10 08:57:46 +00001951 for (i = index; i < dev->num_tx_queues; i++) {
1952 if (!remove_xps_queue(dev_maps, cpu, i))
1953 break;
1954 }
1955 if (i == dev->num_tx_queues)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001956 active = true;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001957 }
1958
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001959 if (!active) {
Alexander Duyck537c00d2013-01-10 08:57:02 +00001960 RCU_INIT_POINTER(dev->xps_maps, NULL);
1961 kfree_rcu(dev_maps, rcu);
1962 }
1963
Alexander Duyck024e9672013-01-10 08:57:46 +00001964 for (i = index; i < dev->num_tx_queues; i++)
1965 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, i),
1966 NUMA_NO_NODE);
1967
Alexander Duyck537c00d2013-01-10 08:57:02 +00001968out_no_maps:
1969 mutex_unlock(&xps_map_mutex);
1970}
1971
Alexander Duyck01c5f862013-01-10 08:57:35 +00001972static struct xps_map *expand_xps_map(struct xps_map *map,
1973 int cpu, u16 index)
1974{
1975 struct xps_map *new_map;
1976 int alloc_len = XPS_MIN_MAP_ALLOC;
1977 int i, pos;
1978
1979 for (pos = 0; map && pos < map->len; pos++) {
1980 if (map->queues[pos] != index)
1981 continue;
1982 return map;
1983 }
1984
1985 /* Need to add queue to this CPU's existing map */
1986 if (map) {
1987 if (pos < map->alloc_len)
1988 return map;
1989
1990 alloc_len = map->alloc_len * 2;
1991 }
1992
1993 /* Need to allocate new map to store queue on this CPU's map */
1994 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
1995 cpu_to_node(cpu));
1996 if (!new_map)
1997 return NULL;
1998
1999 for (i = 0; i < pos; i++)
2000 new_map->queues[i] = map->queues[i];
2001 new_map->alloc_len = alloc_len;
2002 new_map->len = pos;
2003
2004 return new_map;
2005}
2006
Michael S. Tsirkin35735402013-10-02 09:14:06 +03002007int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
2008 u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00002009{
Alexander Duyck01c5f862013-01-10 08:57:35 +00002010 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002011 struct xps_map *map, *new_map;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002012 int maps_sz = max_t(unsigned int, XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002013 int cpu, numa_node_id = -2;
2014 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002015
2016 mutex_lock(&xps_map_mutex);
2017
2018 dev_maps = xmap_dereference(dev->xps_maps);
2019
Alexander Duyck01c5f862013-01-10 08:57:35 +00002020 /* allocate memory for queue storage */
2021 for_each_online_cpu(cpu) {
2022 if (!cpumask_test_cpu(cpu, mask))
2023 continue;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002024
Alexander Duyck01c5f862013-01-10 08:57:35 +00002025 if (!new_dev_maps)
2026 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002027 if (!new_dev_maps) {
2028 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002029 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00002030 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002031
2032 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2033 NULL;
2034
2035 map = expand_xps_map(map, cpu, index);
2036 if (!map)
2037 goto error;
2038
2039 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
2040 }
2041
2042 if (!new_dev_maps)
2043 goto out_no_new_maps;
2044
2045 for_each_possible_cpu(cpu) {
2046 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu)) {
2047 /* add queue to CPU maps */
2048 int pos = 0;
2049
2050 map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2051 while ((pos < map->len) && (map->queues[pos] != index))
2052 pos++;
2053
2054 if (pos == map->len)
2055 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002056#ifdef CONFIG_NUMA
Alexander Duyck537c00d2013-01-10 08:57:02 +00002057 if (numa_node_id == -2)
2058 numa_node_id = cpu_to_node(cpu);
2059 else if (numa_node_id != cpu_to_node(cpu))
2060 numa_node_id = -1;
Alexander Duyck537c00d2013-01-10 08:57:02 +00002061#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00002062 } else if (dev_maps) {
2063 /* fill in the new device map from the old device map */
2064 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2065 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002066 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002067
Alexander Duyck537c00d2013-01-10 08:57:02 +00002068 }
2069
Alexander Duyck01c5f862013-01-10 08:57:35 +00002070 rcu_assign_pointer(dev->xps_maps, new_dev_maps);
2071
Alexander Duyck537c00d2013-01-10 08:57:02 +00002072 /* Cleanup old maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002073 if (dev_maps) {
2074 for_each_possible_cpu(cpu) {
2075 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2076 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2077 if (map && map != new_map)
2078 kfree_rcu(map, rcu);
2079 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002080
Alexander Duyck537c00d2013-01-10 08:57:02 +00002081 kfree_rcu(dev_maps, rcu);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002082 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002083
Alexander Duyck01c5f862013-01-10 08:57:35 +00002084 dev_maps = new_dev_maps;
2085 active = true;
2086
2087out_no_new_maps:
2088 /* update Tx queue numa node */
Alexander Duyck537c00d2013-01-10 08:57:02 +00002089 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2090 (numa_node_id >= 0) ? numa_node_id :
2091 NUMA_NO_NODE);
2092
Alexander Duyck01c5f862013-01-10 08:57:35 +00002093 if (!dev_maps)
2094 goto out_no_maps;
2095
2096 /* removes queue from unused CPUs */
2097 for_each_possible_cpu(cpu) {
2098 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu))
2099 continue;
2100
2101 if (remove_xps_queue(dev_maps, cpu, index))
2102 active = true;
2103 }
2104
2105 /* free map if not active */
2106 if (!active) {
2107 RCU_INIT_POINTER(dev->xps_maps, NULL);
2108 kfree_rcu(dev_maps, rcu);
2109 }
2110
2111out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002112 mutex_unlock(&xps_map_mutex);
2113
2114 return 0;
2115error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002116 /* remove any maps that we added */
2117 for_each_possible_cpu(cpu) {
2118 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2119 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2120 NULL;
2121 if (new_map && new_map != map)
2122 kfree(new_map);
2123 }
2124
Alexander Duyck537c00d2013-01-10 08:57:02 +00002125 mutex_unlock(&xps_map_mutex);
2126
Alexander Duyck537c00d2013-01-10 08:57:02 +00002127 kfree(new_dev_maps);
2128 return -ENOMEM;
2129}
2130EXPORT_SYMBOL(netif_set_xps_queue);
2131
2132#endif
John Fastabendf0796d52010-07-01 13:21:57 +00002133/*
2134 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
2135 * greater then real_num_tx_queues stale skbs on the qdisc must be flushed.
2136 */
Tom Herberte6484932010-10-18 18:04:39 +00002137int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002138{
Tom Herbert1d24eb42010-11-21 13:17:27 +00002139 int rc;
2140
Tom Herberte6484932010-10-18 18:04:39 +00002141 if (txq < 1 || txq > dev->num_tx_queues)
2142 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002143
Ben Hutchings5c565802011-02-15 19:39:21 +00002144 if (dev->reg_state == NETREG_REGISTERED ||
2145 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002146 ASSERT_RTNL();
2147
Tom Herbert1d24eb42010-11-21 13:17:27 +00002148 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2149 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002150 if (rc)
2151 return rc;
2152
John Fastabend4f57c082011-01-17 08:06:04 +00002153 if (dev->num_tc)
2154 netif_setup_tc(dev, txq);
2155
Alexander Duyck024e9672013-01-10 08:57:46 +00002156 if (txq < dev->real_num_tx_queues) {
Tom Herberte6484932010-10-18 18:04:39 +00002157 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002158#ifdef CONFIG_XPS
2159 netif_reset_xps_queues_gt(dev, txq);
2160#endif
2161 }
John Fastabendf0796d52010-07-01 13:21:57 +00002162 }
Tom Herberte6484932010-10-18 18:04:39 +00002163
2164 dev->real_num_tx_queues = txq;
2165 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002166}
2167EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002168
Michael Daltona953be52014-01-16 22:23:28 -08002169#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002170/**
2171 * netif_set_real_num_rx_queues - set actual number of RX queues used
2172 * @dev: Network device
2173 * @rxq: Actual number of RX queues
2174 *
2175 * This must be called either with the rtnl_lock held or before
2176 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002177 * negative error code. If called before registration, it always
2178 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002179 */
2180int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2181{
2182 int rc;
2183
Tom Herbertbd25fa72010-10-18 18:00:16 +00002184 if (rxq < 1 || rxq > dev->num_rx_queues)
2185 return -EINVAL;
2186
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002187 if (dev->reg_state == NETREG_REGISTERED) {
2188 ASSERT_RTNL();
2189
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002190 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2191 rxq);
2192 if (rc)
2193 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002194 }
2195
2196 dev->real_num_rx_queues = rxq;
2197 return 0;
2198}
2199EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2200#endif
2201
Ben Hutchings2c530402012-07-10 10:55:09 +00002202/**
2203 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002204 *
2205 * This routine should set an upper limit on the number of RSS queues
2206 * used by default by multiqueue devices.
2207 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002208int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002209{
2210 return min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
2211}
2212EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2213
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002214static inline void __netif_reschedule(struct Qdisc *q)
2215{
2216 struct softnet_data *sd;
2217 unsigned long flags;
2218
2219 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05002220 sd = this_cpu_ptr(&softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002221 q->next_sched = NULL;
2222 *sd->output_queue_tailp = q;
2223 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002224 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2225 local_irq_restore(flags);
2226}
2227
David S. Miller37437bb2008-07-16 02:15:04 -07002228void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002229{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002230 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2231 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002232}
2233EXPORT_SYMBOL(__netif_schedule);
2234
Eric Dumazete6247022013-12-05 04:45:08 -08002235struct dev_kfree_skb_cb {
2236 enum skb_free_reason reason;
2237};
2238
2239static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002240{
Eric Dumazete6247022013-12-05 04:45:08 -08002241 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002242}
Denis Vlasenko56079432006-03-29 15:57:29 -08002243
John Fastabend46e5da42014-09-12 20:04:52 -07002244void netif_schedule_queue(struct netdev_queue *txq)
2245{
2246 rcu_read_lock();
2247 if (!(txq->state & QUEUE_STATE_ANY_XOFF)) {
2248 struct Qdisc *q = rcu_dereference(txq->qdisc);
2249
2250 __netif_schedule(q);
2251 }
2252 rcu_read_unlock();
2253}
2254EXPORT_SYMBOL(netif_schedule_queue);
2255
2256/**
2257 * netif_wake_subqueue - allow sending packets on subqueue
2258 * @dev: network device
2259 * @queue_index: sub queue index
2260 *
2261 * Resume individual transmit queue of a device with multiple transmit queues.
2262 */
2263void netif_wake_subqueue(struct net_device *dev, u16 queue_index)
2264{
2265 struct netdev_queue *txq = netdev_get_tx_queue(dev, queue_index);
2266
2267 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &txq->state)) {
2268 struct Qdisc *q;
2269
2270 rcu_read_lock();
2271 q = rcu_dereference(txq->qdisc);
2272 __netif_schedule(q);
2273 rcu_read_unlock();
2274 }
2275}
2276EXPORT_SYMBOL(netif_wake_subqueue);
2277
2278void netif_tx_wake_queue(struct netdev_queue *dev_queue)
2279{
2280 if (test_and_clear_bit(__QUEUE_STATE_DRV_XOFF, &dev_queue->state)) {
2281 struct Qdisc *q;
2282
2283 rcu_read_lock();
2284 q = rcu_dereference(dev_queue->qdisc);
2285 __netif_schedule(q);
2286 rcu_read_unlock();
2287 }
2288}
2289EXPORT_SYMBOL(netif_tx_wake_queue);
2290
Eric Dumazete6247022013-12-05 04:45:08 -08002291void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2292{
2293 unsigned long flags;
2294
2295 if (likely(atomic_read(&skb->users) == 1)) {
2296 smp_rmb();
2297 atomic_set(&skb->users, 0);
2298 } else if (likely(!atomic_dec_and_test(&skb->users))) {
2299 return;
2300 }
2301 get_kfree_skb_cb(skb)->reason = reason;
2302 local_irq_save(flags);
2303 skb->next = __this_cpu_read(softnet_data.completion_queue);
2304 __this_cpu_write(softnet_data.completion_queue, skb);
2305 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2306 local_irq_restore(flags);
2307}
2308EXPORT_SYMBOL(__dev_kfree_skb_irq);
2309
2310void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002311{
2312 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002313 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002314 else
2315 dev_kfree_skb(skb);
2316}
Eric Dumazete6247022013-12-05 04:45:08 -08002317EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002318
2319
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002320/**
2321 * netif_device_detach - mark device as removed
2322 * @dev: network device
2323 *
2324 * Mark device as removed from system and therefore no longer available.
2325 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002326void netif_device_detach(struct net_device *dev)
2327{
2328 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2329 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002330 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002331 }
2332}
2333EXPORT_SYMBOL(netif_device_detach);
2334
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002335/**
2336 * netif_device_attach - mark device as attached
2337 * @dev: network device
2338 *
2339 * Mark device as attached from system and restart if needed.
2340 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002341void netif_device_attach(struct net_device *dev)
2342{
2343 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2344 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002345 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002346 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002347 }
2348}
2349EXPORT_SYMBOL(netif_device_attach);
2350
Jiri Pirko5605c762015-05-12 14:56:12 +02002351/*
2352 * Returns a Tx hash based on the given packet descriptor a Tx queues' number
2353 * to be used as a distribution range.
2354 */
2355u16 __skb_tx_hash(const struct net_device *dev, struct sk_buff *skb,
2356 unsigned int num_tx_queues)
2357{
2358 u32 hash;
2359 u16 qoffset = 0;
2360 u16 qcount = num_tx_queues;
2361
2362 if (skb_rx_queue_recorded(skb)) {
2363 hash = skb_get_rx_queue(skb);
2364 while (unlikely(hash >= num_tx_queues))
2365 hash -= num_tx_queues;
2366 return hash;
2367 }
2368
2369 if (dev->num_tc) {
2370 u8 tc = netdev_get_prio_tc_map(dev, skb->priority);
2371 qoffset = dev->tc_to_txq[tc].offset;
2372 qcount = dev->tc_to_txq[tc].count;
2373 }
2374
2375 return (u16) reciprocal_scale(skb_get_hash(skb), qcount) + qoffset;
2376}
2377EXPORT_SYMBOL(__skb_tx_hash);
2378
Ben Hutchings36c92472012-01-17 07:57:56 +00002379static void skb_warn_bad_offload(const struct sk_buff *skb)
2380{
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002381 static const netdev_features_t null_features = 0;
Ben Hutchings36c92472012-01-17 07:57:56 +00002382 struct net_device *dev = skb->dev;
2383 const char *driver = "";
2384
Ben Greearc846ad92013-04-19 10:45:52 +00002385 if (!net_ratelimit())
2386 return;
2387
Ben Hutchings36c92472012-01-17 07:57:56 +00002388 if (dev && dev->dev.parent)
2389 driver = dev_driver_string(dev->dev.parent);
2390
2391 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2392 "gso_type=%d ip_summed=%d\n",
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002393 driver, dev ? &dev->features : &null_features,
2394 skb->sk ? &skb->sk->sk_route_caps : &null_features,
Ben Hutchings36c92472012-01-17 07:57:56 +00002395 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2396 skb_shinfo(skb)->gso_type, skb->ip_summed);
2397}
2398
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399/*
2400 * Invalidate hardware checksum when packet is to be mangled, and
2401 * complete checksum manually on outgoing path.
2402 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002403int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404{
Al Virod3bc23e2006-11-14 21:24:49 -08002405 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002406 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Patrick McHardy84fa7932006-08-29 16:44:56 -07002408 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002409 goto out_set_summed;
2410
2411 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002412 skb_warn_bad_offload(skb);
2413 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 }
2415
Eric Dumazetcef401d2013-01-25 20:34:37 +00002416 /* Before computing a checksum, we should make sure no frag could
2417 * be modified by an external entity : checksum could be wrong.
2418 */
2419 if (skb_has_shared_frag(skb)) {
2420 ret = __skb_linearize(skb);
2421 if (ret)
2422 goto out;
2423 }
2424
Michał Mirosław55508d62010-12-14 15:24:08 +00002425 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002426 BUG_ON(offset >= skb_headlen(skb));
2427 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2428
2429 offset += skb->csum_offset;
2430 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2431
2432 if (skb_cloned(skb) &&
2433 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2435 if (ret)
2436 goto out;
2437 }
2438
Herbert Xua0308472007-10-15 01:47:15 -07002439 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
Herbert Xua430a432006-07-08 13:34:56 -07002440out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002442out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 return ret;
2444}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002445EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446
Vlad Yasevich53d64712014-03-27 17:26:18 -04002447__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002448{
2449 __be16 type = skb->protocol;
2450
Pravin B Shelar19acc322013-05-07 20:41:07 +00002451 /* Tunnel gso handlers can set protocol to ethernet. */
2452 if (type == htons(ETH_P_TEB)) {
2453 struct ethhdr *eth;
2454
2455 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
2456 return 0;
2457
2458 eth = (struct ethhdr *)skb_mac_header(skb);
2459 type = eth->h_proto;
2460 }
2461
Toshiaki Makitad4bcef32015-01-29 20:37:07 +09002462 return __vlan_get_protocol(skb, type, depth);
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002463}
2464
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002465/**
2466 * skb_mac_gso_segment - mac layer segmentation handler.
2467 * @skb: buffer to segment
2468 * @features: features for the output path (see dev->features)
2469 */
2470struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
2471 netdev_features_t features)
2472{
2473 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
2474 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04002475 int vlan_depth = skb->mac_len;
2476 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002477
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002478 if (unlikely(!type))
2479 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002480
Vlad Yasevich53d64712014-03-27 17:26:18 -04002481 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002482
2483 rcu_read_lock();
2484 list_for_each_entry_rcu(ptype, &offload_base, list) {
2485 if (ptype->type == type && ptype->callbacks.gso_segment) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002486 segs = ptype->callbacks.gso_segment(skb, features);
2487 break;
2488 }
2489 }
2490 rcu_read_unlock();
2491
2492 __skb_push(skb, skb->data - skb_mac_header(skb));
2493
2494 return segs;
2495}
2496EXPORT_SYMBOL(skb_mac_gso_segment);
2497
2498
Cong Wang12b00042013-02-05 16:36:38 +00002499/* openvswitch calls this on rx path, so we need a different check.
2500 */
2501static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
2502{
2503 if (tx_path)
2504 return skb->ip_summed != CHECKSUM_PARTIAL;
2505 else
2506 return skb->ip_summed == CHECKSUM_NONE;
2507}
2508
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002509/**
Cong Wang12b00042013-02-05 16:36:38 +00002510 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002511 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002512 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00002513 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002514 *
2515 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07002516 *
2517 * It may return NULL if the skb requires no segmentation. This is
2518 * only possible when GSO is used for verifying header integrity.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002519 */
Cong Wang12b00042013-02-05 16:36:38 +00002520struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
2521 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002522{
Cong Wang12b00042013-02-05 16:36:38 +00002523 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002524 int err;
2525
Ben Hutchings36c92472012-01-17 07:57:56 +00002526 skb_warn_bad_offload(skb);
Herbert Xu67fd1a72009-01-19 16:26:44 -08002527
françois romieua40e0a62014-07-15 23:55:35 +02002528 err = skb_cow_head(skb, 0);
2529 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07002530 return ERR_PTR(err);
2531 }
2532
Pravin B Shelar68c33162013-02-14 14:02:41 +00002533 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07002534 SKB_GSO_CB(skb)->encap_level = 0;
2535
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002536 skb_reset_mac_header(skb);
2537 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002538
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002539 return skb_mac_gso_segment(skb, features);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002540}
Cong Wang12b00042013-02-05 16:36:38 +00002541EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002542
Herbert Xufb286bb2005-11-10 13:01:24 -08002543/* Take action when hardware reception checksum errors are detected. */
2544#ifdef CONFIG_BUG
2545void netdev_rx_csum_fault(struct net_device *dev)
2546{
2547 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002548 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08002549 dump_stack();
2550 }
2551}
2552EXPORT_SYMBOL(netdev_rx_csum_fault);
2553#endif
2554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555/* Actually, we should eliminate this check as soon as we know, that:
2556 * 1. IOMMU is present and allows to map all the memory.
2557 * 2. No high memory really exists on this machine.
2558 */
2559
Florian Westphalc1e756b2014-05-05 15:00:44 +02002560static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561{
Herbert Xu3d3a8532006-06-27 13:33:10 -07002562#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563 int i;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002564 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002565 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2566 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2567 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002568 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00002569 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002570 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002572 if (PCI_DMA_BUS_IS_PHYS) {
2573 struct device *pdev = dev->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Eric Dumazet9092c652010-04-02 13:34:49 -07002575 if (!pdev)
2576 return 0;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002577 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002578 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2579 dma_addr_t addr = page_to_phys(skb_frag_page(frag));
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002580 if (!pdev->dma_mask || addr + PAGE_SIZE - 1 > *pdev->dma_mask)
2581 return 1;
2582 }
2583 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07002584#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 return 0;
2586}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Simon Horman3b392dd2014-06-04 08:53:17 +09002588/* If MPLS offload request, verify we are testing hardware MPLS features
2589 * instead of standard features for the netdev.
2590 */
Pravin B Shelard0edc7b2014-12-23 16:20:11 -08002591#if IS_ENABLED(CONFIG_NET_MPLS_GSO)
Simon Horman3b392dd2014-06-04 08:53:17 +09002592static netdev_features_t net_mpls_features(struct sk_buff *skb,
2593 netdev_features_t features,
2594 __be16 type)
2595{
Simon Horman25cd9ba2014-10-06 05:05:13 -07002596 if (eth_p_mpls(type))
Simon Horman3b392dd2014-06-04 08:53:17 +09002597 features &= skb->dev->mpls_features;
2598
2599 return features;
2600}
2601#else
2602static netdev_features_t net_mpls_features(struct sk_buff *skb,
2603 netdev_features_t features,
2604 __be16 type)
2605{
2606 return features;
2607}
2608#endif
2609
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002610static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02002611 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00002612{
Vlad Yasevich53d64712014-03-27 17:26:18 -04002613 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09002614 __be16 type;
2615
2616 type = skb_network_protocol(skb, &tmp);
2617 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04002618
Ed Cashinc0d680e2012-09-19 15:49:00 +00002619 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09002620 !can_checksum_protocol(features, type)) {
Jesse Grossf01a5232011-01-09 06:23:31 +00002621 features &= ~NETIF_F_ALL_CSUM;
Florian Westphalc1e756b2014-05-05 15:00:44 +02002622 } else if (illegal_highdma(skb->dev, skb)) {
Jesse Grossf01a5232011-01-09 06:23:31 +00002623 features &= ~NETIF_F_SG;
2624 }
2625
2626 return features;
2627}
2628
Toshiaki Makitae38f3022015-03-27 14:31:13 +09002629netdev_features_t passthru_features_check(struct sk_buff *skb,
2630 struct net_device *dev,
2631 netdev_features_t features)
2632{
2633 return features;
2634}
2635EXPORT_SYMBOL(passthru_features_check);
2636
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09002637static netdev_features_t dflt_features_check(const struct sk_buff *skb,
2638 struct net_device *dev,
2639 netdev_features_t features)
2640{
2641 return vlan_features_check(skb, features);
2642}
2643
Florian Westphalc1e756b2014-05-05 15:00:44 +02002644netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00002645{
Jesse Gross5f352272014-12-23 22:37:26 -08002646 struct net_device *dev = skb->dev;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07002647 netdev_features_t features = dev->features;
2648 u16 gso_segs = skb_shinfo(skb)->gso_segs;
Jesse Gross58e998c2010-10-29 12:14:55 +00002649
Eric Dumazetfcbeb972014-10-05 10:11:27 -07002650 if (gso_segs > dev->gso_max_segs || gso_segs < dev->gso_min_segs)
Ben Hutchings30b678d2012-07-30 15:57:00 +00002651 features &= ~NETIF_F_GSO_MASK;
2652
Jesse Gross5f352272014-12-23 22:37:26 -08002653 /* If encapsulation offload request, verify we are testing
2654 * hardware encapsulation features instead of standard
2655 * features for the netdev
2656 */
2657 if (skb->encapsulation)
2658 features &= dev->hw_enc_features;
2659
Toshiaki Makitaf5a7fb82015-03-27 14:31:11 +09002660 if (skb_vlan_tagged(skb))
2661 features = netdev_intersect_features(features,
2662 dev->vlan_features |
2663 NETIF_F_HW_VLAN_CTAG_TX |
2664 NETIF_F_HW_VLAN_STAG_TX);
Jesse Gross58e998c2010-10-29 12:14:55 +00002665
Jesse Gross5f352272014-12-23 22:37:26 -08002666 if (dev->netdev_ops->ndo_features_check)
2667 features &= dev->netdev_ops->ndo_features_check(skb, dev,
2668 features);
Toshiaki Makita8cb65d02015-03-27 14:31:12 +09002669 else
2670 features &= dflt_features_check(skb, dev, features);
Jesse Gross5f352272014-12-23 22:37:26 -08002671
Florian Westphalc1e756b2014-05-05 15:00:44 +02002672 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002673}
Florian Westphalc1e756b2014-05-05 15:00:44 +02002674EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002675
David S. Miller2ea25512014-08-29 21:10:01 -07002676static int xmit_one(struct sk_buff *skb, struct net_device *dev,
David S. Miller95f6b3d2014-08-29 21:57:30 -07002677 struct netdev_queue *txq, bool more)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002678{
David S. Miller2ea25512014-08-29 21:10:01 -07002679 unsigned int len;
2680 int rc;
Stephen Hemminger00829822008-11-20 20:14:53 -08002681
Salam Noureddine7866a622015-01-27 11:35:48 -08002682 if (!list_empty(&ptype_all) || !list_empty(&dev->ptype_all))
David S. Miller2ea25512014-08-29 21:10:01 -07002683 dev_queue_xmit_nit(skb, dev);
Jesse Grossfc741212011-01-09 06:23:32 +00002684
David S. Miller2ea25512014-08-29 21:10:01 -07002685 len = skb->len;
2686 trace_net_dev_start_xmit(skb, dev);
David S. Miller95f6b3d2014-08-29 21:57:30 -07002687 rc = netdev_start_xmit(skb, dev, txq, more);
David S. Miller2ea25512014-08-29 21:10:01 -07002688 trace_net_dev_xmit(skb, rc, dev, len);
Eric Dumazetadf30902009-06-02 05:19:30 +00002689
Patrick McHardy572a9d72009-11-10 06:14:14 +00002690 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002691}
David S. Miller2ea25512014-08-29 21:10:01 -07002692
David S. Miller8dcda222014-09-01 15:06:40 -07002693struct sk_buff *dev_hard_start_xmit(struct sk_buff *first, struct net_device *dev,
2694 struct netdev_queue *txq, int *ret)
David S. Miller7f2e8702014-08-29 21:19:14 -07002695{
2696 struct sk_buff *skb = first;
2697 int rc = NETDEV_TX_OK;
2698
2699 while (skb) {
2700 struct sk_buff *next = skb->next;
2701
2702 skb->next = NULL;
David S. Miller95f6b3d2014-08-29 21:57:30 -07002703 rc = xmit_one(skb, dev, txq, next != NULL);
David S. Miller7f2e8702014-08-29 21:19:14 -07002704 if (unlikely(!dev_xmit_complete(rc))) {
2705 skb->next = next;
2706 goto out;
2707 }
2708
2709 skb = next;
2710 if (netif_xmit_stopped(txq) && skb) {
2711 rc = NETDEV_TX_BUSY;
2712 break;
2713 }
2714 }
2715
2716out:
2717 *ret = rc;
2718 return skb;
2719}
2720
Eric Dumazet1ff0dc92014-10-06 11:26:27 -07002721static struct sk_buff *validate_xmit_vlan(struct sk_buff *skb,
2722 netdev_features_t features)
David S. Millereae3f882014-08-30 15:17:13 -07002723{
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01002724 if (skb_vlan_tag_present(skb) &&
Jiri Pirko59682502014-11-19 14:04:59 +01002725 !vlan_hw_offload_capable(features, skb->vlan_proto))
2726 skb = __vlan_hwaccel_push_inside(skb);
David S. Millereae3f882014-08-30 15:17:13 -07002727 return skb;
2728}
2729
Eric Dumazet55a93b32014-10-03 15:31:07 -07002730static struct sk_buff *validate_xmit_skb(struct sk_buff *skb, struct net_device *dev)
David S. Millereae3f882014-08-30 15:17:13 -07002731{
2732 netdev_features_t features;
2733
2734 if (skb->next)
2735 return skb;
2736
David S. Millereae3f882014-08-30 15:17:13 -07002737 features = netif_skb_features(skb);
2738 skb = validate_xmit_vlan(skb, features);
2739 if (unlikely(!skb))
2740 goto out_null;
2741
Johannes Berg8b86a612015-04-17 15:45:04 +02002742 if (netif_needs_gso(skb, features)) {
David S. Millerce937182014-08-30 19:22:20 -07002743 struct sk_buff *segs;
2744
2745 segs = skb_gso_segment(skb, features);
Jason Wangcecda692014-09-19 16:04:38 +08002746 if (IS_ERR(segs)) {
Jason Wangaf6dabc2014-12-19 11:09:13 +08002747 goto out_kfree_skb;
Jason Wangcecda692014-09-19 16:04:38 +08002748 } else if (segs) {
2749 consume_skb(skb);
2750 skb = segs;
2751 }
David S. Millereae3f882014-08-30 15:17:13 -07002752 } else {
2753 if (skb_needs_linearize(skb, features) &&
2754 __skb_linearize(skb))
2755 goto out_kfree_skb;
2756
2757 /* If packet is not checksummed and device does not
2758 * support checksumming for this protocol, complete
2759 * checksumming here.
2760 */
2761 if (skb->ip_summed == CHECKSUM_PARTIAL) {
2762 if (skb->encapsulation)
2763 skb_set_inner_transport_header(skb,
2764 skb_checksum_start_offset(skb));
2765 else
2766 skb_set_transport_header(skb,
2767 skb_checksum_start_offset(skb));
2768 if (!(features & NETIF_F_ALL_CSUM) &&
2769 skb_checksum_help(skb))
2770 goto out_kfree_skb;
2771 }
2772 }
2773
2774 return skb;
2775
2776out_kfree_skb:
2777 kfree_skb(skb);
2778out_null:
2779 return NULL;
2780}
2781
Eric Dumazet55a93b32014-10-03 15:31:07 -07002782struct sk_buff *validate_xmit_skb_list(struct sk_buff *skb, struct net_device *dev)
2783{
2784 struct sk_buff *next, *head = NULL, *tail;
2785
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07002786 for (; skb != NULL; skb = next) {
Eric Dumazet55a93b32014-10-03 15:31:07 -07002787 next = skb->next;
2788 skb->next = NULL;
Eric Dumazet55a93b32014-10-03 15:31:07 -07002789
Eric Dumazetbec3cfd2014-10-03 20:59:19 -07002790 /* in case skb wont be segmented, point to itself */
2791 skb->prev = skb;
2792
2793 skb = validate_xmit_skb(skb, dev);
2794 if (!skb)
2795 continue;
2796
2797 if (!head)
2798 head = skb;
2799 else
2800 tail->next = skb;
2801 /* If skb was segmented, skb->prev points to
2802 * the last segment. If not, it still contains skb.
2803 */
2804 tail = skb->prev;
Eric Dumazet55a93b32014-10-03 15:31:07 -07002805 }
2806 return head;
2807}
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002808
Eric Dumazet1def9232013-01-10 12:36:42 +00002809static void qdisc_pkt_len_init(struct sk_buff *skb)
2810{
2811 const struct skb_shared_info *shinfo = skb_shinfo(skb);
2812
2813 qdisc_skb_cb(skb)->pkt_len = skb->len;
2814
2815 /* To get more precise estimation of bytes sent on wire,
2816 * we add to pkt_len the headers size of all segments
2817 */
2818 if (shinfo->gso_size) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08002819 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00002820 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00002821
Eric Dumazet757b8b12013-01-15 21:14:21 -08002822 /* mac layer + network layer */
2823 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
2824
2825 /* + transport layer */
Eric Dumazet1def9232013-01-10 12:36:42 +00002826 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
2827 hdr_len += tcp_hdrlen(skb);
2828 else
2829 hdr_len += sizeof(struct udphdr);
Jason Wang15e5a032013-03-25 20:19:59 +00002830
2831 if (shinfo->gso_type & SKB_GSO_DODGY)
2832 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
2833 shinfo->gso_size);
2834
2835 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00002836 }
2837}
2838
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002839static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
2840 struct net_device *dev,
2841 struct netdev_queue *txq)
2842{
2843 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazeta2da5702011-01-20 03:48:19 +00002844 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002845 int rc;
2846
Eric Dumazet1def9232013-01-10 12:36:42 +00002847 qdisc_pkt_len_init(skb);
Eric Dumazeta2da5702011-01-20 03:48:19 +00002848 qdisc_calculate_pkt_len(skb, q);
Eric Dumazet79640a42010-06-02 05:09:29 -07002849 /*
2850 * Heuristic to force contended enqueues to serialize on a
2851 * separate lock before trying to get qdisc main lock.
Ying Xue9bf2b8c2014-06-26 15:56:31 +08002852 * This permits __QDISC___STATE_RUNNING owner to get the lock more
2853 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07002854 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00002855 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07002856 if (unlikely(contended))
2857 spin_lock(&q->busylock);
2858
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002859 spin_lock(root_lock);
2860 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
2861 kfree_skb(skb);
2862 rc = NET_XMIT_DROP;
2863 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07002864 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002865 /*
2866 * This is a work-conserving queue; there are no old skbs
2867 * waiting to be sent out; and the qdisc is not running -
2868 * xmit the skb directly.
2869 */
Eric Dumazetbfe0d022011-01-09 08:30:54 +00002870
Eric Dumazetbfe0d022011-01-09 08:30:54 +00002871 qdisc_bstats_update(q, skb);
2872
Eric Dumazet55a93b32014-10-03 15:31:07 -07002873 if (sch_direct_xmit(skb, q, dev, txq, root_lock, true)) {
Eric Dumazet79640a42010-06-02 05:09:29 -07002874 if (unlikely(contended)) {
2875 spin_unlock(&q->busylock);
2876 contended = false;
2877 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002878 __qdisc_run(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07002879 } else
Eric Dumazetbc135b22010-06-02 03:23:51 -07002880 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002881
2882 rc = NET_XMIT_SUCCESS;
2883 } else {
Eric Dumazeta2da5702011-01-20 03:48:19 +00002884 rc = q->enqueue(skb, q) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07002885 if (qdisc_run_begin(q)) {
2886 if (unlikely(contended)) {
2887 spin_unlock(&q->busylock);
2888 contended = false;
2889 }
2890 __qdisc_run(q);
2891 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002892 }
2893 spin_unlock(root_lock);
Eric Dumazet79640a42010-06-02 05:09:29 -07002894 if (unlikely(contended))
2895 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002896 return rc;
2897}
2898
Daniel Borkmann86f85152013-12-29 17:27:11 +01002899#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00002900static void skb_update_prio(struct sk_buff *skb)
2901{
Igor Maravic6977a792011-11-25 07:44:54 +00002902 struct netprio_map *map = rcu_dereference_bh(skb->dev->priomap);
Neil Horman5bc14212011-11-22 05:10:51 +00002903
Eric Dumazet91c68ce2012-07-08 21:45:10 +00002904 if (!skb->priority && skb->sk && map) {
2905 unsigned int prioidx = skb->sk->sk_cgrp_prioidx;
2906
2907 if (prioidx < map->priomap_len)
2908 skb->priority = map->priomap[prioidx];
2909 }
Neil Horman5bc14212011-11-22 05:10:51 +00002910}
2911#else
2912#define skb_update_prio(skb)
2913#endif
2914
hannes@stressinduktion.orgf60e5992015-04-01 17:07:44 +02002915DEFINE_PER_CPU(int, xmit_recursion);
2916EXPORT_SYMBOL(xmit_recursion);
2917
David S. Miller11a766c2010-10-25 12:51:55 -07002918#define RECURSION_LIMIT 10
Eric Dumazet745e20f2010-09-29 13:23:09 -07002919
Dave Jonesd29f7492008-07-22 14:09:06 -07002920/**
Michel Machado95603e22012-06-12 10:16:35 +00002921 * dev_loopback_xmit - loop back @skb
2922 * @skb: buffer to transmit
2923 */
David Miller7026b1d2015-04-05 22:19:04 -04002924int dev_loopback_xmit(struct sock *sk, struct sk_buff *skb)
Michel Machado95603e22012-06-12 10:16:35 +00002925{
2926 skb_reset_mac_header(skb);
2927 __skb_pull(skb, skb_network_offset(skb));
2928 skb->pkt_type = PACKET_LOOPBACK;
2929 skb->ip_summed = CHECKSUM_UNNECESSARY;
2930 WARN_ON(!skb_dst(skb));
2931 skb_dst_force(skb);
2932 netif_rx_ni(skb);
2933 return 0;
2934}
2935EXPORT_SYMBOL(dev_loopback_xmit);
2936
Jiri Pirko638b2a62015-05-12 14:56:13 +02002937static inline int get_xps_queue(struct net_device *dev, struct sk_buff *skb)
2938{
2939#ifdef CONFIG_XPS
2940 struct xps_dev_maps *dev_maps;
2941 struct xps_map *map;
2942 int queue_index = -1;
2943
2944 rcu_read_lock();
2945 dev_maps = rcu_dereference(dev->xps_maps);
2946 if (dev_maps) {
2947 map = rcu_dereference(
2948 dev_maps->cpu_map[skb->sender_cpu - 1]);
2949 if (map) {
2950 if (map->len == 1)
2951 queue_index = map->queues[0];
2952 else
2953 queue_index = map->queues[reciprocal_scale(skb_get_hash(skb),
2954 map->len)];
2955 if (unlikely(queue_index >= dev->real_num_tx_queues))
2956 queue_index = -1;
2957 }
2958 }
2959 rcu_read_unlock();
2960
2961 return queue_index;
2962#else
2963 return -1;
2964#endif
2965}
2966
2967static u16 __netdev_pick_tx(struct net_device *dev, struct sk_buff *skb)
2968{
2969 struct sock *sk = skb->sk;
2970 int queue_index = sk_tx_queue_get(sk);
2971
2972 if (queue_index < 0 || skb->ooo_okay ||
2973 queue_index >= dev->real_num_tx_queues) {
2974 int new_index = get_xps_queue(dev, skb);
2975 if (new_index < 0)
2976 new_index = skb_tx_hash(dev, skb);
2977
2978 if (queue_index != new_index && sk &&
2979 rcu_access_pointer(sk->sk_dst_cache))
2980 sk_tx_queue_set(sk, new_index);
2981
2982 queue_index = new_index;
2983 }
2984
2985 return queue_index;
2986}
2987
2988struct netdev_queue *netdev_pick_tx(struct net_device *dev,
2989 struct sk_buff *skb,
2990 void *accel_priv)
2991{
2992 int queue_index = 0;
2993
2994#ifdef CONFIG_XPS
2995 if (skb->sender_cpu == 0)
2996 skb->sender_cpu = raw_smp_processor_id() + 1;
2997#endif
2998
2999 if (dev->real_num_tx_queues != 1) {
3000 const struct net_device_ops *ops = dev->netdev_ops;
3001 if (ops->ndo_select_queue)
3002 queue_index = ops->ndo_select_queue(dev, skb, accel_priv,
3003 __netdev_pick_tx);
3004 else
3005 queue_index = __netdev_pick_tx(dev, skb);
3006
3007 if (!accel_priv)
3008 queue_index = netdev_cap_txqueue(dev, queue_index);
3009 }
3010
3011 skb_set_queue_mapping(skb, queue_index);
3012 return netdev_get_tx_queue(dev, queue_index);
3013}
3014
Michel Machado95603e22012-06-12 10:16:35 +00003015/**
Jason Wang9d08dd32014-01-20 11:25:13 +08003016 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07003017 * @skb: buffer to transmit
Jason Wang9d08dd32014-01-20 11:25:13 +08003018 * @accel_priv: private data used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07003019 *
3020 * Queue a buffer for transmission to a network device. The caller must
3021 * have set the device and priority and built the buffer before calling
3022 * this function. The function can be called from an interrupt.
3023 *
3024 * A negative errno code is returned on a failure. A success does not
3025 * guarantee the frame will be transmitted as it may be dropped due
3026 * to congestion or traffic shaping.
3027 *
3028 * -----------------------------------------------------------------------------------
3029 * I notice this method can also return errors from the queue disciplines,
3030 * including NET_XMIT_DROP, which is a positive value. So, errors can also
3031 * be positive.
3032 *
3033 * Regardless of the return value, the skb is consumed, so it is currently
3034 * difficult to retry a send to this method. (You can bump the ref count
3035 * before sending to hold a reference for retry if you are careful.)
3036 *
3037 * When calling this method, interrupts MUST be enabled. This is because
3038 * the BH enable code must have IRQs enabled so that it will not deadlock.
3039 * --BLG
3040 */
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05303041static int __dev_queue_xmit(struct sk_buff *skb, void *accel_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042{
3043 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07003044 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 struct Qdisc *q;
3046 int rc = -ENOMEM;
3047
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00003048 skb_reset_mac_header(skb);
3049
Willem de Bruijne7fd2882014-08-04 22:11:48 -04003050 if (unlikely(skb_shinfo(skb)->tx_flags & SKBTX_SCHED_TSTAMP))
3051 __skb_tstamp_tx(skb, NULL, skb->sk, SCM_TSTAMP_SCHED);
3052
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003053 /* Disable soft irqs for various locks below. Also
3054 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003056 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057
Neil Horman5bc14212011-11-22 05:10:51 +00003058 skb_update_prio(skb);
3059
Eric Dumazet02875872014-10-05 18:38:35 -07003060 /* If device/qdisc don't need skb->dst, release it right now while
3061 * its hot in this cpu cache.
3062 */
3063 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
3064 skb_dst_drop(skb);
3065 else
3066 skb_dst_force(skb);
3067
Jason Wangf663dd92014-01-10 16:18:26 +08003068 txq = netdev_pick_tx(dev, skb, accel_priv);
Paul E. McKenneya898def2010-02-22 17:04:49 -08003069 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07003070
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071#ifdef CONFIG_NET_CLS_ACT
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003072 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073#endif
Koki Sanagicf66ba52010-08-23 18:45:02 +09003074 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00003076 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07003077 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078 }
3079
3080 /* The device has no queue. Common case for software devices:
3081 loopback, all the sorts of tunnels...
3082
Herbert Xu932ff272006-06-09 12:20:56 -07003083 Really, it is unlikely that netif_tx_lock protection is necessary
3084 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 counters.)
3086 However, it is possible, that they rely on protection
3087 made by us here.
3088
3089 Check this and shot the lock. It is not prone from deadlocks.
3090 Either shot noqueue qdisc, it is even simpler 8)
3091 */
3092 if (dev->flags & IFF_UP) {
3093 int cpu = smp_processor_id(); /* ok because BHs are off */
3094
David S. Millerc773e842008-07-08 23:13:53 -07003095 if (txq->xmit_lock_owner != cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096
Eric Dumazet745e20f2010-09-29 13:23:09 -07003097 if (__this_cpu_read(xmit_recursion) > RECURSION_LIMIT)
3098 goto recursion_alert;
3099
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003100 skb = validate_xmit_skb(skb, dev);
3101 if (!skb)
3102 goto drop;
3103
David S. Millerc773e842008-07-08 23:13:53 -07003104 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105
Tom Herbert734664982011-11-28 16:32:44 +00003106 if (!netif_xmit_stopped(txq)) {
Eric Dumazet745e20f2010-09-29 13:23:09 -07003107 __this_cpu_inc(xmit_recursion);
David S. Millerce937182014-08-30 19:22:20 -07003108 skb = dev_hard_start_xmit(skb, dev, txq, &rc);
Eric Dumazet745e20f2010-09-29 13:23:09 -07003109 __this_cpu_dec(xmit_recursion);
Patrick McHardy572a9d72009-11-10 06:14:14 +00003110 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07003111 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 goto out;
3113 }
3114 }
David S. Millerc773e842008-07-08 23:13:53 -07003115 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00003116 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
3117 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 } else {
3119 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07003120 * unfortunately
3121 */
3122recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00003123 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
3124 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 }
3126 }
3127
3128 rc = -ENETDOWN;
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003129drop:
Herbert Xud4828d82006-06-22 02:28:18 -07003130 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131
Eric Dumazet015f0682014-03-27 08:45:56 -07003132 atomic_long_inc(&dev->tx_dropped);
Jesper Dangaard Brouer1f595332014-09-03 17:56:09 +02003133 kfree_skb_list(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003134 return rc;
3135out:
Herbert Xud4828d82006-06-22 02:28:18 -07003136 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 return rc;
3138}
Jason Wangf663dd92014-01-10 16:18:26 +08003139
David Miller7026b1d2015-04-05 22:19:04 -04003140int dev_queue_xmit_sk(struct sock *sk, struct sk_buff *skb)
Jason Wangf663dd92014-01-10 16:18:26 +08003141{
3142 return __dev_queue_xmit(skb, NULL);
3143}
David Miller7026b1d2015-04-05 22:19:04 -04003144EXPORT_SYMBOL(dev_queue_xmit_sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145
Jason Wangf663dd92014-01-10 16:18:26 +08003146int dev_queue_xmit_accel(struct sk_buff *skb, void *accel_priv)
3147{
3148 return __dev_queue_xmit(skb, accel_priv);
3149}
3150EXPORT_SYMBOL(dev_queue_xmit_accel);
3151
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152
3153/*=======================================================================
3154 Receiver routines
3155 =======================================================================*/
3156
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003157int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00003158EXPORT_SYMBOL(netdev_max_backlog);
3159
Eric Dumazet3b098e22010-05-15 23:57:10 -07003160int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07003161int netdev_budget __read_mostly = 300;
3162int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003164/* Called with irq disabled */
3165static inline void ____napi_schedule(struct softnet_data *sd,
3166 struct napi_struct *napi)
3167{
3168 list_add_tail(&napi->poll_list, &sd->poll_list);
3169 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3170}
3171
Eric Dumazetdf334542010-03-24 19:13:54 +00003172#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07003173
3174/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003175struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07003176EXPORT_SYMBOL(rps_sock_flow_table);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003177u32 rps_cpu_mask __read_mostly;
3178EXPORT_SYMBOL(rps_cpu_mask);
Tom Herbertfec5e652010-04-16 16:01:27 -07003179
Ingo Molnarc5905af2012-02-24 08:31:31 +01003180struct static_key rps_needed __read_mostly;
Eric Dumazetadc93002011-11-17 03:13:26 +00003181
Ben Hutchingsc4454772011-01-19 11:03:53 +00003182static struct rps_dev_flow *
3183set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3184 struct rps_dev_flow *rflow, u16 next_cpu)
3185{
Eric Dumazeta31196b2015-04-25 09:35:24 -07003186 if (next_cpu < nr_cpu_ids) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00003187#ifdef CONFIG_RFS_ACCEL
3188 struct netdev_rx_queue *rxqueue;
3189 struct rps_dev_flow_table *flow_table;
3190 struct rps_dev_flow *old_rflow;
3191 u32 flow_id;
3192 u16 rxq_index;
3193 int rc;
3194
3195 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00003196 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
3197 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00003198 goto out;
3199 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
3200 if (rxq_index == skb_get_rx_queue(skb))
3201 goto out;
3202
3203 rxqueue = dev->_rx + rxq_index;
3204 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3205 if (!flow_table)
3206 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07003207 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003208 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
3209 rxq_index, flow_id);
3210 if (rc < 0)
3211 goto out;
3212 old_rflow = rflow;
3213 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00003214 rflow->filter = rc;
3215 if (old_rflow->filter == rflow->filter)
3216 old_rflow->filter = RPS_NO_FILTER;
3217 out:
3218#endif
3219 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00003220 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003221 }
3222
Ben Hutchings09994d12011-10-03 04:42:46 +00003223 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003224 return rflow;
3225}
3226
Tom Herbert0a9627f2010-03-16 08:03:29 +00003227/*
3228 * get_rps_cpu is called from netif_receive_skb and returns the target
3229 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003230 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00003231 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003232static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3233 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003234{
Eric Dumazet567e4b72015-02-06 12:59:01 -08003235 const struct rps_sock_flow_table *sock_flow_table;
3236 struct netdev_rx_queue *rxqueue = dev->_rx;
Tom Herbertfec5e652010-04-16 16:01:27 -07003237 struct rps_dev_flow_table *flow_table;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003238 struct rps_map *map;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003239 int cpu = -1;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003240 u32 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07003241 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003242
Tom Herbert0a9627f2010-03-16 08:03:29 +00003243 if (skb_rx_queue_recorded(skb)) {
3244 u16 index = skb_get_rx_queue(skb);
Eric Dumazet567e4b72015-02-06 12:59:01 -08003245
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003246 if (unlikely(index >= dev->real_num_rx_queues)) {
3247 WARN_ONCE(dev->real_num_rx_queues > 1,
3248 "%s received packet on queue %u, but number "
3249 "of RX queues is %u\n",
3250 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003251 goto done;
3252 }
Eric Dumazet567e4b72015-02-06 12:59:01 -08003253 rxqueue += index;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003254 }
3255
Eric Dumazet567e4b72015-02-06 12:59:01 -08003256 /* Avoid computing hash if RFS/RPS is not active for this rxqueue */
3257
3258 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3259 map = rcu_dereference(rxqueue->rps_map);
3260 if (!flow_table && !map)
3261 goto done;
3262
Changli Gao2d47b452010-08-17 19:00:56 +00003263 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07003264 hash = skb_get_hash(skb);
3265 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003266 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003267
Tom Herbertfec5e652010-04-16 16:01:27 -07003268 sock_flow_table = rcu_dereference(rps_sock_flow_table);
3269 if (flow_table && sock_flow_table) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003270 struct rps_dev_flow *rflow;
Eric Dumazet567e4b72015-02-06 12:59:01 -08003271 u32 next_cpu;
3272 u32 ident;
Tom Herbertfec5e652010-04-16 16:01:27 -07003273
Eric Dumazet567e4b72015-02-06 12:59:01 -08003274 /* First check into global flow table if there is a match */
3275 ident = sock_flow_table->ents[hash & sock_flow_table->mask];
3276 if ((ident ^ hash) & ~rps_cpu_mask)
3277 goto try_rps;
3278
3279 next_cpu = ident & rps_cpu_mask;
3280
3281 /* OK, now we know there is a match,
3282 * we can look at the local (per receive queue) flow table
3283 */
Tom Herbert61b905d2014-03-24 15:34:47 -07003284 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07003285 tcpu = rflow->cpu;
3286
Tom Herbertfec5e652010-04-16 16:01:27 -07003287 /*
3288 * If the desired CPU (where last recvmsg was done) is
3289 * different from current CPU (one in the rx-queue flow
3290 * table entry), switch if one of the following holds:
Eric Dumazeta31196b2015-04-25 09:35:24 -07003291 * - Current CPU is unset (>= nr_cpu_ids).
Tom Herbertfec5e652010-04-16 16:01:27 -07003292 * - Current CPU is offline.
3293 * - The current CPU's queue tail has advanced beyond the
3294 * last packet that was enqueued using this table entry.
3295 * This guarantees that all previous packets for the flow
3296 * have been dequeued, thus preserving in order delivery.
3297 */
3298 if (unlikely(tcpu != next_cpu) &&
Eric Dumazeta31196b2015-04-25 09:35:24 -07003299 (tcpu >= nr_cpu_ids || !cpu_online(tcpu) ||
Tom Herbertfec5e652010-04-16 16:01:27 -07003300 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00003301 rflow->last_qtail)) >= 0)) {
3302 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003303 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00003304 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00003305
Eric Dumazeta31196b2015-04-25 09:35:24 -07003306 if (tcpu < nr_cpu_ids && cpu_online(tcpu)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003307 *rflowp = rflow;
3308 cpu = tcpu;
3309 goto done;
3310 }
3311 }
3312
Eric Dumazet567e4b72015-02-06 12:59:01 -08003313try_rps:
3314
Tom Herbert0a9627f2010-03-16 08:03:29 +00003315 if (map) {
Daniel Borkmann8fc54f62014-08-23 20:58:54 +02003316 tcpu = map->cpus[reciprocal_scale(hash, map->len)];
Tom Herbert0a9627f2010-03-16 08:03:29 +00003317 if (cpu_online(tcpu)) {
3318 cpu = tcpu;
3319 goto done;
3320 }
3321 }
3322
3323done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00003324 return cpu;
3325}
3326
Ben Hutchingsc4454772011-01-19 11:03:53 +00003327#ifdef CONFIG_RFS_ACCEL
3328
3329/**
3330 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
3331 * @dev: Device on which the filter was set
3332 * @rxq_index: RX queue index
3333 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
3334 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
3335 *
3336 * Drivers that implement ndo_rx_flow_steer() should periodically call
3337 * this function for each installed filter and remove the filters for
3338 * which it returns %true.
3339 */
3340bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
3341 u32 flow_id, u16 filter_id)
3342{
3343 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
3344 struct rps_dev_flow_table *flow_table;
3345 struct rps_dev_flow *rflow;
3346 bool expire = true;
Eric Dumazeta31196b2015-04-25 09:35:24 -07003347 unsigned int cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003348
3349 rcu_read_lock();
3350 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3351 if (flow_table && flow_id <= flow_table->mask) {
3352 rflow = &flow_table->flows[flow_id];
3353 cpu = ACCESS_ONCE(rflow->cpu);
Eric Dumazeta31196b2015-04-25 09:35:24 -07003354 if (rflow->filter == filter_id && cpu < nr_cpu_ids &&
Ben Hutchingsc4454772011-01-19 11:03:53 +00003355 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
3356 rflow->last_qtail) <
3357 (int)(10 * flow_table->mask)))
3358 expire = false;
3359 }
3360 rcu_read_unlock();
3361 return expire;
3362}
3363EXPORT_SYMBOL(rps_may_expire_flow);
3364
3365#endif /* CONFIG_RFS_ACCEL */
3366
Tom Herbert0a9627f2010-03-16 08:03:29 +00003367/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003368static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003369{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003370 struct softnet_data *sd = data;
3371
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003372 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00003373 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003374}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003375
Tom Herbertfec5e652010-04-16 16:01:27 -07003376#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00003377
3378/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003379 * Check if this softnet_data structure is another cpu one
3380 * If yes, queue it to our IPI list and return 1
3381 * If no, return 0
3382 */
3383static int rps_ipi_queued(struct softnet_data *sd)
3384{
3385#ifdef CONFIG_RPS
Christoph Lameter903ceff2014-08-17 12:30:35 -05003386 struct softnet_data *mysd = this_cpu_ptr(&softnet_data);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003387
3388 if (sd != mysd) {
3389 sd->rps_ipi_next = mysd->rps_ipi_list;
3390 mysd->rps_ipi_list = sd;
3391
3392 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3393 return 1;
3394 }
3395#endif /* CONFIG_RPS */
3396 return 0;
3397}
3398
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003399#ifdef CONFIG_NET_FLOW_LIMIT
3400int netdev_flow_limit_table_len __read_mostly = (1 << 12);
3401#endif
3402
3403static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
3404{
3405#ifdef CONFIG_NET_FLOW_LIMIT
3406 struct sd_flow_limit *fl;
3407 struct softnet_data *sd;
3408 unsigned int old_flow, new_flow;
3409
3410 if (qlen < (netdev_max_backlog >> 1))
3411 return false;
3412
Christoph Lameter903ceff2014-08-17 12:30:35 -05003413 sd = this_cpu_ptr(&softnet_data);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003414
3415 rcu_read_lock();
3416 fl = rcu_dereference(sd->flow_limit);
3417 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08003418 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003419 old_flow = fl->history[fl->history_head];
3420 fl->history[fl->history_head] = new_flow;
3421
3422 fl->history_head++;
3423 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
3424
3425 if (likely(fl->buckets[old_flow]))
3426 fl->buckets[old_flow]--;
3427
3428 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
3429 fl->count++;
3430 rcu_read_unlock();
3431 return true;
3432 }
3433 }
3434 rcu_read_unlock();
3435#endif
3436 return false;
3437}
3438
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003439/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00003440 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
3441 * queue (may be a remote CPU queue).
3442 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003443static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
3444 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003445{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003446 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003447 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003448 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003449
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003450 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003451
3452 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003453
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003454 rps_lock(sd);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003455 qlen = skb_queue_len(&sd->input_pkt_queue);
3456 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Li RongQinge008f3f2014-12-08 09:42:55 +08003457 if (qlen) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00003458enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003459 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003460 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003461 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00003462 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003463 return NET_RX_SUCCESS;
3464 }
3465
Eric Dumazetebda37c22010-05-06 23:51:21 +00003466 /* Schedule NAPI for backlog device
3467 * We can use non atomic operation since we own the queue lock
3468 */
3469 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003470 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003471 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003472 }
3473 goto enqueue;
3474 }
3475
Changli Gaodee42872010-05-02 05:42:16 +00003476 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003477 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003478
Tom Herbert0a9627f2010-03-16 08:03:29 +00003479 local_irq_restore(flags);
3480
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003481 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003482 kfree_skb(skb);
3483 return NET_RX_DROP;
3484}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003486static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003488 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
Eric Dumazet588f0332011-11-15 04:12:55 +00003490 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
Koki Sanagicf66ba52010-08-23 18:45:02 +09003492 trace_netif_rx(skb);
Eric Dumazetdf334542010-03-24 19:13:54 +00003493#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003494 if (static_key_false(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003495 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003496 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497
Changli Gaocece1942010-08-07 20:35:43 -07003498 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003499 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003500
3501 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003502 if (cpu < 0)
3503 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07003504
3505 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3506
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003507 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07003508 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00003509 } else
3510#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07003511 {
3512 unsigned int qtail;
3513 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
3514 put_cpu();
3515 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003516 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003518
3519/**
3520 * netif_rx - post buffer to the network code
3521 * @skb: buffer to post
3522 *
3523 * This function receives a packet from a device driver and queues it for
3524 * the upper (protocol) levels to process. It always succeeds. The buffer
3525 * may be dropped during processing for congestion control or by the
3526 * protocol layers.
3527 *
3528 * return values:
3529 * NET_RX_SUCCESS (no congestion)
3530 * NET_RX_DROP (packet was dropped)
3531 *
3532 */
3533
3534int netif_rx(struct sk_buff *skb)
3535{
3536 trace_netif_rx_entry(skb);
3537
3538 return netif_rx_internal(skb);
3539}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003540EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541
3542int netif_rx_ni(struct sk_buff *skb)
3543{
3544 int err;
3545
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003546 trace_netif_rx_ni_entry(skb);
3547
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003549 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 if (local_softirq_pending())
3551 do_softirq();
3552 preempt_enable();
3553
3554 return err;
3555}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556EXPORT_SYMBOL(netif_rx_ni);
3557
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558static void net_tx_action(struct softirq_action *h)
3559{
Christoph Lameter903ceff2014-08-17 12:30:35 -05003560 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561
3562 if (sd->completion_queue) {
3563 struct sk_buff *clist;
3564
3565 local_irq_disable();
3566 clist = sd->completion_queue;
3567 sd->completion_queue = NULL;
3568 local_irq_enable();
3569
3570 while (clist) {
3571 struct sk_buff *skb = clist;
3572 clist = clist->next;
3573
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003574 WARN_ON(atomic_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08003575 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
3576 trace_consume_skb(skb);
3577 else
3578 trace_kfree_skb(skb, net_tx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 __kfree_skb(skb);
3580 }
3581 }
3582
3583 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07003584 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
3586 local_irq_disable();
3587 head = sd->output_queue;
3588 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00003589 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 local_irq_enable();
3591
3592 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07003593 struct Qdisc *q = head;
3594 spinlock_t *root_lock;
3595
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 head = head->next_sched;
3597
David S. Miller5fb66222008-08-02 20:02:43 -07003598 root_lock = qdisc_lock(q);
David S. Miller37437bb2008-07-16 02:15:04 -07003599 if (spin_trylock(root_lock)) {
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003600 smp_mb__before_atomic();
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003601 clear_bit(__QDISC_STATE_SCHED,
3602 &q->state);
David S. Miller37437bb2008-07-16 02:15:04 -07003603 qdisc_run(q);
3604 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605 } else {
David S. Miller195648b2008-08-19 04:00:36 -07003606 if (!test_bit(__QDISC_STATE_DEACTIVATED,
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07003607 &q->state)) {
David S. Miller195648b2008-08-19 04:00:36 -07003608 __netif_reschedule(q);
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07003609 } else {
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003610 smp_mb__before_atomic();
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07003611 clear_bit(__QDISC_STATE_SCHED,
3612 &q->state);
3613 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 }
3615 }
3616 }
3617}
3618
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003619#if (defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)) && \
3620 (defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE))
Michał Mirosławda678292009-06-05 05:35:28 +00003621/* This hook is defined here for ATM LANE */
3622int (*br_fdb_test_addr_hook)(struct net_device *dev,
3623 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07003624EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00003625#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
Herbert Xuf697c3e2007-10-14 00:38:47 -07003627static inline struct sk_buff *handle_ing(struct sk_buff *skb,
3628 struct packet_type **pt_prev,
3629 int *ret, struct net_device *orig_dev)
3630{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02003631#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003632 struct tcf_proto *cl = rcu_dereference_bh(skb->dev->ingress_cl_list);
3633 struct tcf_result cl_res;
Eric Dumazet24824a02010-10-02 06:11:55 +00003634
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02003635 /* If there's at least one ingress present somewhere (so
3636 * we get here via enabled static key), remaining devices
3637 * that are not configured with an ingress qdisc will bail
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003638 * out here.
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02003639 */
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003640 if (!cl)
Daniel Borkmann45771392015-04-10 23:07:54 +02003641 return skb;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003642 if (*pt_prev) {
3643 *ret = deliver_skb(skb, *pt_prev, orig_dev);
3644 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003645 }
3646
Florian Westphal33654952015-05-14 00:36:28 +02003647 qdisc_skb_cb(skb)->pkt_len = skb->len;
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02003648 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
Florian Westphal33654952015-05-14 00:36:28 +02003649 qdisc_bstats_update_cpu(cl->q, skb);
Daniel Borkmannc9e99fd2015-05-09 22:51:31 +02003650
Daniel Borkmannd2788d32015-05-09 22:51:32 +02003651 switch (tc_classify(skb, cl, &cl_res)) {
3652 case TC_ACT_OK:
3653 case TC_ACT_RECLASSIFY:
3654 skb->tc_index = TC_H_MIN(cl_res.classid);
3655 break;
3656 case TC_ACT_SHOT:
3657 qdisc_qstats_drop_cpu(cl->q);
3658 case TC_ACT_STOLEN:
3659 case TC_ACT_QUEUED:
3660 kfree_skb(skb);
3661 return NULL;
3662 default:
3663 break;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003664 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02003665#endif /* CONFIG_NET_CLS_ACT */
Herbert Xuf697c3e2007-10-14 00:38:47 -07003666 return skb;
3667}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003669/**
3670 * netdev_rx_handler_register - register receive handler
3671 * @dev: device to register a handler for
3672 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00003673 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003674 *
Masanari Iidae2278672014-02-18 22:54:36 +09003675 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003676 * called from __netif_receive_skb. A negative errno code is returned
3677 * on a failure.
3678 *
3679 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003680 *
3681 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003682 */
3683int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00003684 rx_handler_func_t *rx_handler,
3685 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003686{
3687 ASSERT_RTNL();
3688
3689 if (dev->rx_handler)
3690 return -EBUSY;
3691
Eric Dumazet00cfec32013-03-29 03:01:22 +00003692 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00003693 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003694 rcu_assign_pointer(dev->rx_handler, rx_handler);
3695
3696 return 0;
3697}
3698EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
3699
3700/**
3701 * netdev_rx_handler_unregister - unregister receive handler
3702 * @dev: device to unregister a handler from
3703 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00003704 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003705 *
3706 * The caller must hold the rtnl_mutex.
3707 */
3708void netdev_rx_handler_unregister(struct net_device *dev)
3709{
3710
3711 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003712 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00003713 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
3714 * section has a guarantee to see a non NULL rx_handler_data
3715 * as well.
3716 */
3717 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003718 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003719}
3720EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
3721
Mel Gormanb4b9e352012-07-31 16:44:26 -07003722/*
3723 * Limit the use of PFMEMALLOC reserves to those protocols that implement
3724 * the special handling of PFMEMALLOC skbs.
3725 */
3726static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
3727{
3728 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07003729 case htons(ETH_P_ARP):
3730 case htons(ETH_P_IP):
3731 case htons(ETH_P_IPV6):
3732 case htons(ETH_P_8021Q):
3733 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07003734 return true;
3735 default:
3736 return false;
3737 }
3738}
3739
Pablo Neirae687ad62015-05-13 18:19:38 +02003740static inline int nf_ingress(struct sk_buff *skb, struct packet_type **pt_prev,
3741 int *ret, struct net_device *orig_dev)
3742{
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02003743#ifdef CONFIG_NETFILTER_INGRESS
Pablo Neirae687ad62015-05-13 18:19:38 +02003744 if (nf_hook_ingress_active(skb)) {
3745 if (*pt_prev) {
3746 *ret = deliver_skb(skb, *pt_prev, orig_dev);
3747 *pt_prev = NULL;
3748 }
3749
3750 return nf_hook_ingress(skb);
3751 }
Daniel Borkmanne7582ba2015-05-19 22:33:25 +02003752#endif /* CONFIG_NETFILTER_INGRESS */
Pablo Neirae687ad62015-05-13 18:19:38 +02003753 return 0;
3754}
Pablo Neirae687ad62015-05-13 18:19:38 +02003755
David S. Miller9754e292013-02-14 15:57:38 -05003756static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757{
3758 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003759 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07003760 struct net_device *orig_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003761 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 int ret = NET_RX_DROP;
Al Viro252e3342006-11-14 20:48:11 -08003763 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764
Eric Dumazet588f0332011-11-15 04:12:55 +00003765 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07003766
Koki Sanagicf66ba52010-08-23 18:45:02 +09003767 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08003768
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07003769 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00003770
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07003771 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00003772 if (!skb_transport_header_was_set(skb))
3773 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00003774 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775
3776 pt_prev = NULL;
3777
3778 rcu_read_lock();
3779
David S. Miller63d8ea72011-02-28 10:48:59 -08003780another_round:
David S. Millerb6858172012-07-23 16:27:54 -07003781 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08003782
3783 __this_cpu_inc(softnet_data.processed);
3784
Patrick McHardy8ad227f2013-04-19 02:04:31 +00003785 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
3786 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Vlad Yasevich0d5501c2014-08-08 14:42:13 -04003787 skb = skb_vlan_untag(skb);
Jiri Pirkobcc6d472011-04-07 19:48:33 +00003788 if (unlikely(!skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07003789 goto unlock;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00003790 }
3791
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792#ifdef CONFIG_NET_CLS_ACT
3793 if (skb->tc_verd & TC_NCLS) {
3794 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
3795 goto ncls;
3796 }
3797#endif
3798
David S. Miller9754e292013-02-14 15:57:38 -05003799 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07003800 goto skip_taps;
3801
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 list_for_each_entry_rcu(ptype, &ptype_all, list) {
Salam Noureddine7866a622015-01-27 11:35:48 -08003803 if (pt_prev)
3804 ret = deliver_skb(skb, pt_prev, orig_dev);
3805 pt_prev = ptype;
3806 }
3807
3808 list_for_each_entry_rcu(ptype, &skb->dev->ptype_all, list) {
3809 if (pt_prev)
3810 ret = deliver_skb(skb, pt_prev, orig_dev);
3811 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 }
3813
Mel Gormanb4b9e352012-07-31 16:44:26 -07003814skip_taps:
Pablo Neira1cf519002015-05-13 18:19:37 +02003815#ifdef CONFIG_NET_INGRESS
Daniel Borkmann45771392015-04-10 23:07:54 +02003816 if (static_key_false(&ingress_needed)) {
3817 skb = handle_ing(skb, &pt_prev, &ret, orig_dev);
3818 if (!skb)
3819 goto unlock;
Pablo Neirae687ad62015-05-13 18:19:38 +02003820
3821 if (nf_ingress(skb, &pt_prev, &ret, orig_dev) < 0)
3822 goto unlock;
Daniel Borkmann45771392015-04-10 23:07:54 +02003823 }
Pablo Neira1cf519002015-05-13 18:19:37 +02003824#endif
3825#ifdef CONFIG_NET_CLS_ACT
Daniel Borkmann45771392015-04-10 23:07:54 +02003826 skb->tc_verd = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827ncls:
3828#endif
David S. Miller9754e292013-02-14 15:57:38 -05003829 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07003830 goto drop;
3831
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003832 if (skb_vlan_tag_present(skb)) {
John Fastabend24257172011-10-10 09:16:41 +00003833 if (pt_prev) {
3834 ret = deliver_skb(skb, pt_prev, orig_dev);
3835 pt_prev = NULL;
3836 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00003837 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00003838 goto another_round;
3839 else if (unlikely(!skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07003840 goto unlock;
John Fastabend24257172011-10-10 09:16:41 +00003841 }
3842
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00003843 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003844 if (rx_handler) {
3845 if (pt_prev) {
3846 ret = deliver_skb(skb, pt_prev, orig_dev);
3847 pt_prev = NULL;
3848 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003849 switch (rx_handler(&skb)) {
3850 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00003851 ret = NET_RX_SUCCESS;
Mel Gormanb4b9e352012-07-31 16:44:26 -07003852 goto unlock;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003853 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08003854 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003855 case RX_HANDLER_EXACT:
3856 deliver_exact = true;
3857 case RX_HANDLER_PASS:
3858 break;
3859 default:
3860 BUG();
3861 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003862 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863
Jiri Pirkodf8a39d2015-01-13 17:13:44 +01003864 if (unlikely(skb_vlan_tag_present(skb))) {
3865 if (skb_vlan_tag_get_id(skb))
Eric Dumazetd4b812d2013-07-18 07:19:26 -07003866 skb->pkt_type = PACKET_OTHERHOST;
3867 /* Note: we might in the future use prio bits
3868 * and set skb->priority like in vlan_do_receive()
3869 * For the time being, just ignore Priority Code Point
3870 */
3871 skb->vlan_tci = 0;
3872 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00003873
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874 type = skb->protocol;
Salam Noureddine7866a622015-01-27 11:35:48 -08003875
3876 /* deliver only exact match when indicated */
3877 if (likely(!deliver_exact)) {
3878 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
3879 &ptype_base[ntohs(type) &
3880 PTYPE_HASH_MASK]);
3881 }
3882
3883 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
3884 &orig_dev->ptype_specific);
3885
3886 if (unlikely(skb->dev != orig_dev)) {
3887 deliver_ptype_list_skb(skb, &pt_prev, orig_dev, type,
3888 &skb->dev->ptype_specific);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 }
3890
3891 if (pt_prev) {
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00003892 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00003893 goto drop;
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00003894 else
3895 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07003897drop:
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003898 atomic_long_inc(&skb->dev->rx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 kfree_skb(skb);
3900 /* Jamal, now you will not able to escape explaining
3901 * me how you were going to use this. :-)
3902 */
3903 ret = NET_RX_DROP;
3904 }
3905
Mel Gormanb4b9e352012-07-31 16:44:26 -07003906unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 rcu_read_unlock();
David S. Miller9754e292013-02-14 15:57:38 -05003908 return ret;
3909}
3910
3911static int __netif_receive_skb(struct sk_buff *skb)
3912{
3913 int ret;
3914
3915 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
3916 unsigned long pflags = current->flags;
3917
3918 /*
3919 * PFMEMALLOC skbs are special, they should
3920 * - be delivered to SOCK_MEMALLOC sockets only
3921 * - stay away from userspace
3922 * - have bounded memory usage
3923 *
3924 * Use PF_MEMALLOC as this saves us from propagating the allocation
3925 * context down to all allocation sites.
3926 */
3927 current->flags |= PF_MEMALLOC;
3928 ret = __netif_receive_skb_core(skb, true);
3929 tsk_restore_flags(current, pflags, PF_MEMALLOC);
3930 } else
3931 ret = __netif_receive_skb_core(skb, false);
3932
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 return ret;
3934}
Tom Herbert0a9627f2010-03-16 08:03:29 +00003935
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003936static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003937{
Eric Dumazet588f0332011-11-15 04:12:55 +00003938 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07003939
Richard Cochranc1f19b52010-07-17 08:49:36 +00003940 if (skb_defer_rx_timestamp(skb))
3941 return NET_RX_SUCCESS;
3942
Eric Dumazetdf334542010-03-24 19:13:54 +00003943#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003944 if (static_key_false(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07003945 struct rps_dev_flow voidflow, *rflow = &voidflow;
3946 int cpu, ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003947
Eric Dumazet3b098e22010-05-15 23:57:10 -07003948 rcu_read_lock();
Tom Herbert0a9627f2010-03-16 08:03:29 +00003949
Eric Dumazet3b098e22010-05-15 23:57:10 -07003950 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07003951
Eric Dumazet3b098e22010-05-15 23:57:10 -07003952 if (cpu >= 0) {
3953 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3954 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00003955 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07003956 }
Eric Dumazetadc93002011-11-17 03:13:26 +00003957 rcu_read_unlock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003958 }
Tom Herbert1e94d722010-03-18 17:45:44 -07003959#endif
Eric Dumazetadc93002011-11-17 03:13:26 +00003960 return __netif_receive_skb(skb);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003961}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003962
3963/**
3964 * netif_receive_skb - process receive buffer from network
3965 * @skb: buffer to process
3966 *
3967 * netif_receive_skb() is the main receive data processing function.
3968 * It always succeeds. The buffer may be dropped during processing
3969 * for congestion control or by the protocol layers.
3970 *
3971 * This function may only be called from softirq context and interrupts
3972 * should be enabled.
3973 *
3974 * Return values (usually ignored):
3975 * NET_RX_SUCCESS: no congestion
3976 * NET_RX_DROP: packet was dropped
3977 */
David Miller7026b1d2015-04-05 22:19:04 -04003978int netif_receive_skb_sk(struct sock *sk, struct sk_buff *skb)
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003979{
3980 trace_netif_receive_skb_entry(skb);
3981
3982 return netif_receive_skb_internal(skb);
3983}
David Miller7026b1d2015-04-05 22:19:04 -04003984EXPORT_SYMBOL(netif_receive_skb_sk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985
Eric Dumazet88751272010-04-19 05:07:33 +00003986/* Network device is going away, flush any packets still pending
3987 * Called with irqs disabled.
3988 */
Changli Gao152102c2010-03-30 20:16:22 +00003989static void flush_backlog(void *arg)
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003990{
Changli Gao152102c2010-03-30 20:16:22 +00003991 struct net_device *dev = arg;
Christoph Lameter903ceff2014-08-17 12:30:35 -05003992 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003993 struct sk_buff *skb, *tmp;
3994
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003995 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07003996 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003997 if (skb->dev == dev) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003998 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003999 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004000 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004001 }
Changli Gao6e7676c2010-04-27 15:07:33 -07004002 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00004003 rps_unlock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07004004
4005 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
4006 if (skb->dev == dev) {
4007 __skb_unlink(skb, &sd->process_queue);
4008 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00004009 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07004010 }
4011 }
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07004012}
4013
Herbert Xud565b0a2008-12-15 23:38:52 -08004014static int napi_gro_complete(struct sk_buff *skb)
4015{
Vlad Yasevich22061d82012-11-15 08:49:11 +00004016 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08004017 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004018 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08004019 int err = -ENOENT;
4020
Eric Dumazetc3c7c252012-12-06 13:54:59 +00004021 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
4022
Herbert Xufc59f9a2009-04-14 15:11:06 -07004023 if (NAPI_GRO_CB(skb)->count == 1) {
4024 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004025 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07004026 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004027
4028 rcu_read_lock();
4029 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004030 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08004031 continue;
4032
Jerry Chu299603e82013-12-11 20:53:45 -08004033 err = ptype->callbacks.gro_complete(skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08004034 break;
4035 }
4036 rcu_read_unlock();
4037
4038 if (err) {
4039 WARN_ON(&ptype->list == head);
4040 kfree_skb(skb);
4041 return NET_RX_SUCCESS;
4042 }
4043
4044out:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004045 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004046}
4047
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004048/* napi->gro_list contains packets ordered by age.
4049 * youngest packets at the head of it.
4050 * Complete skbs in reverse order to reduce latencies.
4051 */
4052void napi_gro_flush(struct napi_struct *napi, bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08004053{
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004054 struct sk_buff *skb, *prev = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004055
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004056 /* scan list and build reverse chain */
4057 for (skb = napi->gro_list; skb != NULL; skb = skb->next) {
4058 skb->prev = prev;
4059 prev = skb;
Herbert Xud565b0a2008-12-15 23:38:52 -08004060 }
4061
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004062 for (skb = prev; skb; skb = prev) {
4063 skb->next = NULL;
4064
4065 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
4066 return;
4067
4068 prev = skb->prev;
4069 napi_gro_complete(skb);
4070 napi->gro_count--;
4071 }
4072
Herbert Xud565b0a2008-12-15 23:38:52 -08004073 napi->gro_list = NULL;
4074}
Eric Dumazet86cac582010-08-31 18:25:32 +00004075EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08004076
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004077static void gro_list_prepare(struct napi_struct *napi, struct sk_buff *skb)
4078{
4079 struct sk_buff *p;
4080 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08004081 u32 hash = skb_get_hash_raw(skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004082
4083 for (p = napi->gro_list; p; p = p->next) {
4084 unsigned long diffs;
4085
Tom Herbert0b4cec82014-01-15 08:58:06 -08004086 NAPI_GRO_CB(p)->flush = 0;
4087
4088 if (hash != skb_get_hash_raw(p)) {
4089 NAPI_GRO_CB(p)->same_flow = 0;
4090 continue;
4091 }
4092
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004093 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
4094 diffs |= p->vlan_tci ^ skb->vlan_tci;
4095 if (maclen == ETH_HLEN)
4096 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07004097 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004098 else if (!diffs)
4099 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07004100 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004101 maclen);
4102 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004103 }
4104}
4105
Jerry Chu299603e82013-12-11 20:53:45 -08004106static void skb_gro_reset_offset(struct sk_buff *skb)
4107{
4108 const struct skb_shared_info *pinfo = skb_shinfo(skb);
4109 const skb_frag_t *frag0 = &pinfo->frags[0];
4110
4111 NAPI_GRO_CB(skb)->data_offset = 0;
4112 NAPI_GRO_CB(skb)->frag0 = NULL;
4113 NAPI_GRO_CB(skb)->frag0_len = 0;
4114
4115 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
4116 pinfo->nr_frags &&
4117 !PageHighMem(skb_frag_page(frag0))) {
4118 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
4119 NAPI_GRO_CB(skb)->frag0_len = skb_frag_size(frag0);
Herbert Xud565b0a2008-12-15 23:38:52 -08004120 }
4121}
4122
Eric Dumazeta50e2332014-03-29 21:28:21 -07004123static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
4124{
4125 struct skb_shared_info *pinfo = skb_shinfo(skb);
4126
4127 BUG_ON(skb->end - skb->tail < grow);
4128
4129 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
4130
4131 skb->data_len -= grow;
4132 skb->tail += grow;
4133
4134 pinfo->frags[0].page_offset += grow;
4135 skb_frag_size_sub(&pinfo->frags[0], grow);
4136
4137 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
4138 skb_frag_unref(skb, 0);
4139 memmove(pinfo->frags, pinfo->frags + 1,
4140 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
4141 }
4142}
4143
Rami Rosenbb728822012-11-28 21:55:25 +00004144static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08004145{
4146 struct sk_buff **pp = NULL;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004147 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08004148 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00004149 struct list_head *head = &offload_base;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004150 int same_flow;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004151 enum gro_result ret;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004152 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08004153
Eric W. Biederman9c62a682014-03-14 20:51:52 -07004154 if (!(skb->dev->features & NETIF_F_GRO))
Herbert Xud565b0a2008-12-15 23:38:52 -08004155 goto normal;
4156
Tom Herbert5a212322014-08-31 15:12:41 -07004157 if (skb_is_gso(skb) || skb_has_frag_list(skb) || skb->csum_bad)
Herbert Xuf17f5c92009-01-14 14:36:12 -08004158 goto normal;
4159
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004160 gro_list_prepare(napi, skb);
4161
Herbert Xud565b0a2008-12-15 23:38:52 -08004162 rcu_read_lock();
4163 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004164 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08004165 continue;
4166
Herbert Xu86911732009-01-29 14:19:50 +00004167 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00004168 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004169 NAPI_GRO_CB(skb)->same_flow = 0;
4170 NAPI_GRO_CB(skb)->flush = 0;
Herbert Xu5d38a072009-01-04 16:13:40 -08004171 NAPI_GRO_CB(skb)->free = 0;
Or Gerlitzb582ef02014-01-20 13:59:19 +02004172 NAPI_GRO_CB(skb)->udp_mark = 0;
Tom Herbert15e23962015-02-10 16:30:31 -08004173 NAPI_GRO_CB(skb)->gro_remcsum_start = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004174
Tom Herbert662880f2014-08-27 21:26:56 -07004175 /* Setup for GRO checksum validation */
4176 switch (skb->ip_summed) {
4177 case CHECKSUM_COMPLETE:
4178 NAPI_GRO_CB(skb)->csum = skb->csum;
4179 NAPI_GRO_CB(skb)->csum_valid = 1;
4180 NAPI_GRO_CB(skb)->csum_cnt = 0;
4181 break;
4182 case CHECKSUM_UNNECESSARY:
4183 NAPI_GRO_CB(skb)->csum_cnt = skb->csum_level + 1;
4184 NAPI_GRO_CB(skb)->csum_valid = 0;
4185 break;
4186 default:
4187 NAPI_GRO_CB(skb)->csum_cnt = 0;
4188 NAPI_GRO_CB(skb)->csum_valid = 0;
4189 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004190
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00004191 pp = ptype->callbacks.gro_receive(&napi->gro_list, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004192 break;
4193 }
4194 rcu_read_unlock();
4195
4196 if (&ptype->list == head)
4197 goto normal;
4198
Herbert Xu0da2afd52008-12-26 14:57:42 -08004199 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004200 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08004201
Herbert Xud565b0a2008-12-15 23:38:52 -08004202 if (pp) {
4203 struct sk_buff *nskb = *pp;
4204
4205 *pp = nskb->next;
4206 nskb->next = NULL;
4207 napi_gro_complete(nskb);
Herbert Xu4ae55442009-02-08 18:00:36 +00004208 napi->gro_count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08004209 }
4210
Herbert Xu0da2afd52008-12-26 14:57:42 -08004211 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08004212 goto ok;
4213
Eric Dumazet600adc12014-01-09 14:12:19 -08004214 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08004215 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08004216
Eric Dumazet600adc12014-01-09 14:12:19 -08004217 if (unlikely(napi->gro_count >= MAX_GRO_SKBS)) {
4218 struct sk_buff *nskb = napi->gro_list;
4219
4220 /* locate the end of the list to select the 'oldest' flow */
4221 while (nskb->next) {
4222 pp = &nskb->next;
4223 nskb = *pp;
4224 }
4225 *pp = NULL;
4226 nskb->next = NULL;
4227 napi_gro_complete(nskb);
4228 } else {
4229 napi->gro_count++;
4230 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004231 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004232 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07004233 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00004234 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004235 skb->next = napi->gro_list;
4236 napi->gro_list = skb;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004237 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08004238
Herbert Xuad0f9902009-02-01 01:24:55 -08004239pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004240 grow = skb_gro_offset(skb) - skb_headlen(skb);
4241 if (grow > 0)
4242 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08004243ok:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004244 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08004245
4246normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08004247 ret = GRO_NORMAL;
4248 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08004249}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004250
Jerry Chubf5a7552014-01-07 10:23:19 -08004251struct packet_offload *gro_find_receive_by_type(__be16 type)
4252{
4253 struct list_head *offload_head = &offload_base;
4254 struct packet_offload *ptype;
4255
4256 list_for_each_entry_rcu(ptype, offload_head, list) {
4257 if (ptype->type != type || !ptype->callbacks.gro_receive)
4258 continue;
4259 return ptype;
4260 }
4261 return NULL;
4262}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004263EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08004264
4265struct packet_offload *gro_find_complete_by_type(__be16 type)
4266{
4267 struct list_head *offload_head = &offload_base;
4268 struct packet_offload *ptype;
4269
4270 list_for_each_entry_rcu(ptype, offload_head, list) {
4271 if (ptype->type != type || !ptype->callbacks.gro_complete)
4272 continue;
4273 return ptype;
4274 }
4275 return NULL;
4276}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004277EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004278
Rami Rosenbb728822012-11-28 21:55:25 +00004279static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08004280{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004281 switch (ret) {
4282 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004283 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004284 ret = GRO_DROP;
4285 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004286
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004287 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08004288 kfree_skb(skb);
4289 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004290
Eric Dumazetdaa86542012-04-19 07:07:40 +00004291 case GRO_MERGED_FREE:
Eric Dumazetd7e88832012-04-30 08:10:34 +00004292 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4293 kmem_cache_free(skbuff_head_cache, skb);
4294 else
4295 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00004296 break;
4297
Ben Hutchings5b252f02009-10-29 07:17:09 +00004298 case GRO_HELD:
4299 case GRO_MERGED:
4300 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004301 }
4302
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004303 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004304}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004305
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004306gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004307{
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004308 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00004309
Eric Dumazeta50e2332014-03-29 21:28:21 -07004310 skb_gro_reset_offset(skb);
4311
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004312 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004313}
4314EXPORT_SYMBOL(napi_gro_receive);
4315
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00004316static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004317{
Eric Dumazet93a35f52014-10-23 06:30:30 -07004318 if (unlikely(skb->pfmemalloc)) {
4319 consume_skb(skb);
4320 return;
4321 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004322 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00004323 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
4324 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Jesse Gross3701e512010-10-20 13:56:06 +00004325 skb->vlan_tci = 0;
Herbert Xu66c46d72011-01-29 20:44:54 -08004326 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08004327 skb->skb_iif = 0;
Jerry Chuc3caf112014-07-14 15:54:46 -07004328 skb->encapsulation = 0;
4329 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07004330 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Herbert Xu96e93ea2009-01-06 10:49:34 -08004331
4332 napi->skb = skb;
4333}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004334
Herbert Xu76620aa2009-04-16 02:02:07 -07004335struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08004336{
Herbert Xu5d38a072009-01-04 16:13:40 -08004337 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004338
4339 if (!skb) {
Alexander Duyckfd11a832014-12-09 19:40:49 -08004340 skb = napi_alloc_skb(napi, GRO_MAX_HEAD);
Eric Dumazet84b9cd62013-12-05 21:44:27 -08004341 napi->skb = skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004342 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004343 return skb;
4344}
Herbert Xu76620aa2009-04-16 02:02:07 -07004345EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004346
Eric Dumazeta50e2332014-03-29 21:28:21 -07004347static gro_result_t napi_frags_finish(struct napi_struct *napi,
4348 struct sk_buff *skb,
4349 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004350{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004351 switch (ret) {
4352 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004353 case GRO_HELD:
4354 __skb_push(skb, ETH_HLEN);
4355 skb->protocol = eth_type_trans(skb, skb->dev);
4356 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004357 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00004358 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004359
4360 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004361 case GRO_MERGED_FREE:
4362 napi_reuse_skb(napi, skb);
4363 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004364
4365 case GRO_MERGED:
4366 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004367 }
4368
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004369 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004370}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004371
Eric Dumazeta50e2332014-03-29 21:28:21 -07004372/* Upper GRO stack assumes network header starts at gro_offset=0
4373 * Drivers could call both napi_gro_frags() and napi_gro_receive()
4374 * We copy ethernet header into skb->data to have a common layout.
4375 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00004376static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004377{
Herbert Xu76620aa2009-04-16 02:02:07 -07004378 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004379 const struct ethhdr *eth;
4380 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07004381
4382 napi->skb = NULL;
4383
Eric Dumazeta50e2332014-03-29 21:28:21 -07004384 skb_reset_mac_header(skb);
4385 skb_gro_reset_offset(skb);
4386
4387 eth = skb_gro_header_fast(skb, 0);
4388 if (unlikely(skb_gro_header_hard(skb, hlen))) {
4389 eth = skb_gro_header_slow(skb, hlen, 0);
4390 if (unlikely(!eth)) {
4391 napi_reuse_skb(napi, skb);
4392 return NULL;
4393 }
4394 } else {
4395 gro_pull_from_frag0(skb, hlen);
4396 NAPI_GRO_CB(skb)->frag0 += hlen;
4397 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07004398 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07004399 __skb_pull(skb, hlen);
4400
4401 /*
4402 * This works because the only protocols we care about don't require
4403 * special handling.
4404 * We'll fix it up properly in napi_frags_finish()
4405 */
4406 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07004407
Herbert Xu76620aa2009-04-16 02:02:07 -07004408 return skb;
4409}
Herbert Xu76620aa2009-04-16 02:02:07 -07004410
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004411gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07004412{
4413 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004414
4415 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004416 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08004417
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004418 trace_napi_gro_frags_entry(skb);
4419
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004420 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08004421}
4422EXPORT_SYMBOL(napi_gro_frags);
4423
Tom Herbert573e8fc2014-08-22 13:33:47 -07004424/* Compute the checksum from gro_offset and return the folded value
4425 * after adding in any pseudo checksum.
4426 */
4427__sum16 __skb_gro_checksum_complete(struct sk_buff *skb)
4428{
4429 __wsum wsum;
4430 __sum16 sum;
4431
4432 wsum = skb_checksum(skb, skb_gro_offset(skb), skb_gro_len(skb), 0);
4433
4434 /* NAPI_GRO_CB(skb)->csum holds pseudo checksum */
4435 sum = csum_fold(csum_add(NAPI_GRO_CB(skb)->csum, wsum));
4436 if (likely(!sum)) {
4437 if (unlikely(skb->ip_summed == CHECKSUM_COMPLETE) &&
4438 !skb->csum_complete_sw)
4439 netdev_rx_csum_fault(skb->dev);
4440 }
4441
4442 NAPI_GRO_CB(skb)->csum = wsum;
4443 NAPI_GRO_CB(skb)->csum_valid = 1;
4444
4445 return sum;
4446}
4447EXPORT_SYMBOL(__skb_gro_checksum_complete);
4448
Eric Dumazete326bed2010-04-22 00:22:45 -07004449/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08004450 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07004451 * Note: called with local irq disabled, but exits with local irq enabled.
4452 */
4453static void net_rps_action_and_irq_enable(struct softnet_data *sd)
4454{
4455#ifdef CONFIG_RPS
4456 struct softnet_data *remsd = sd->rps_ipi_list;
4457
4458 if (remsd) {
4459 sd->rps_ipi_list = NULL;
4460
4461 local_irq_enable();
4462
4463 /* Send pending IPI's to kick RPS processing on remote cpus. */
4464 while (remsd) {
4465 struct softnet_data *next = remsd->rps_ipi_next;
4466
4467 if (cpu_online(remsd->cpu))
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +01004468 smp_call_function_single_async(remsd->cpu,
Frederic Weisbeckerfce8ad12014-02-24 16:40:01 +01004469 &remsd->csd);
Eric Dumazete326bed2010-04-22 00:22:45 -07004470 remsd = next;
4471 }
4472 } else
4473#endif
4474 local_irq_enable();
4475}
4476
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004477static bool sd_has_rps_ipi_waiting(struct softnet_data *sd)
4478{
4479#ifdef CONFIG_RPS
4480 return sd->rps_ipi_list != NULL;
4481#else
4482 return false;
4483#endif
4484}
4485
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004486static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004487{
4488 int work = 0;
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004489 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490
Eric Dumazete326bed2010-04-22 00:22:45 -07004491 /* Check if we have pending ipi, its better to send them now,
4492 * not waiting net_rx_action() end.
4493 */
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004494 if (sd_has_rps_ipi_waiting(sd)) {
Eric Dumazete326bed2010-04-22 00:22:45 -07004495 local_irq_disable();
4496 net_rps_action_and_irq_enable(sd);
4497 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004498
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004499 napi->weight = weight_p;
Changli Gao6e7676c2010-04-27 15:07:33 -07004500 local_irq_disable();
Tom Herbert11ef7a82014-06-30 09:50:40 -07004501 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004502 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004503
Changli Gao6e7676c2010-04-27 15:07:33 -07004504 while ((skb = __skb_dequeue(&sd->process_queue))) {
Eric Dumazete4008272010-04-05 15:42:39 -07004505 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004506 __netif_receive_skb(skb);
Changli Gao6e7676c2010-04-27 15:07:33 -07004507 local_irq_disable();
Tom Herbert76cc8b12010-05-20 18:37:59 +00004508 input_queue_head_incr(sd);
4509 if (++work >= quota) {
4510 local_irq_enable();
4511 return work;
4512 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004514
Changli Gao6e7676c2010-04-27 15:07:33 -07004515 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07004516 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004517 /*
4518 * Inline a custom version of __napi_complete().
4519 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07004520 * and NAPI_STATE_SCHED is the only possible flag set
4521 * on backlog.
4522 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004523 * and we dont need an smp_mb() memory barrier.
4524 */
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004525 napi->state = 0;
Tom Herbert11ef7a82014-06-30 09:50:40 -07004526 rps_unlock(sd);
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004527
Tom Herbert11ef7a82014-06-30 09:50:40 -07004528 break;
Changli Gao6e7676c2010-04-27 15:07:33 -07004529 }
Tom Herbert11ef7a82014-06-30 09:50:40 -07004530
4531 skb_queue_splice_tail_init(&sd->input_pkt_queue,
4532 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07004533 rps_unlock(sd);
4534 }
4535 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004536
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004537 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004538}
4539
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004540/**
4541 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07004542 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004543 *
Eric Dumazetbc9ad162014-10-28 18:05:13 -07004544 * The entry's receive function will be scheduled to run.
4545 * Consider using __napi_schedule_irqoff() if hard irqs are masked.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004546 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08004547void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004548{
4549 unsigned long flags;
4550
4551 local_irq_save(flags);
Christoph Lameter903ceff2014-08-17 12:30:35 -05004552 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004553 local_irq_restore(flags);
4554}
4555EXPORT_SYMBOL(__napi_schedule);
4556
Eric Dumazetbc9ad162014-10-28 18:05:13 -07004557/**
4558 * __napi_schedule_irqoff - schedule for receive
4559 * @n: entry to schedule
4560 *
4561 * Variant of __napi_schedule() assuming hard irqs are masked
4562 */
4563void __napi_schedule_irqoff(struct napi_struct *n)
4564{
4565 ____napi_schedule(this_cpu_ptr(&softnet_data), n);
4566}
4567EXPORT_SYMBOL(__napi_schedule_irqoff);
4568
Herbert Xud565b0a2008-12-15 23:38:52 -08004569void __napi_complete(struct napi_struct *n)
4570{
4571 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
Herbert Xud565b0a2008-12-15 23:38:52 -08004572
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004573 list_del_init(&n->poll_list);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004574 smp_mb__before_atomic();
Herbert Xud565b0a2008-12-15 23:38:52 -08004575 clear_bit(NAPI_STATE_SCHED, &n->state);
4576}
4577EXPORT_SYMBOL(__napi_complete);
4578
Eric Dumazet3b47d302014-11-06 21:09:44 -08004579void napi_complete_done(struct napi_struct *n, int work_done)
Herbert Xud565b0a2008-12-15 23:38:52 -08004580{
4581 unsigned long flags;
4582
4583 /*
4584 * don't let napi dequeue from the cpu poll list
4585 * just in case its running on a different cpu
4586 */
4587 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
4588 return;
4589
Eric Dumazet3b47d302014-11-06 21:09:44 -08004590 if (n->gro_list) {
4591 unsigned long timeout = 0;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004592
Eric Dumazet3b47d302014-11-06 21:09:44 -08004593 if (work_done)
4594 timeout = n->dev->gro_flush_timeout;
4595
4596 if (timeout)
4597 hrtimer_start(&n->timer, ns_to_ktime(timeout),
4598 HRTIMER_MODE_REL_PINNED);
4599 else
4600 napi_gro_flush(n, false);
4601 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004602 if (likely(list_empty(&n->poll_list))) {
4603 WARN_ON_ONCE(!test_and_clear_bit(NAPI_STATE_SCHED, &n->state));
4604 } else {
4605 /* If n->poll_list is not empty, we need to mask irqs */
4606 local_irq_save(flags);
4607 __napi_complete(n);
4608 local_irq_restore(flags);
4609 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004610}
Eric Dumazet3b47d302014-11-06 21:09:44 -08004611EXPORT_SYMBOL(napi_complete_done);
Herbert Xud565b0a2008-12-15 23:38:52 -08004612
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03004613/* must be called under rcu_read_lock(), as we dont take a reference */
4614struct napi_struct *napi_by_id(unsigned int napi_id)
4615{
4616 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
4617 struct napi_struct *napi;
4618
4619 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
4620 if (napi->napi_id == napi_id)
4621 return napi;
4622
4623 return NULL;
4624}
4625EXPORT_SYMBOL_GPL(napi_by_id);
4626
4627void napi_hash_add(struct napi_struct *napi)
4628{
4629 if (!test_and_set_bit(NAPI_STATE_HASHED, &napi->state)) {
4630
4631 spin_lock(&napi_hash_lock);
4632
4633 /* 0 is not a valid id, we also skip an id that is taken
4634 * we expect both events to be extremely rare
4635 */
4636 napi->napi_id = 0;
4637 while (!napi->napi_id) {
4638 napi->napi_id = ++napi_gen_id;
4639 if (napi_by_id(napi->napi_id))
4640 napi->napi_id = 0;
4641 }
4642
4643 hlist_add_head_rcu(&napi->napi_hash_node,
4644 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
4645
4646 spin_unlock(&napi_hash_lock);
4647 }
4648}
4649EXPORT_SYMBOL_GPL(napi_hash_add);
4650
4651/* Warning : caller is responsible to make sure rcu grace period
4652 * is respected before freeing memory containing @napi
4653 */
4654void napi_hash_del(struct napi_struct *napi)
4655{
4656 spin_lock(&napi_hash_lock);
4657
4658 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state))
4659 hlist_del_rcu(&napi->napi_hash_node);
4660
4661 spin_unlock(&napi_hash_lock);
4662}
4663EXPORT_SYMBOL_GPL(napi_hash_del);
4664
Eric Dumazet3b47d302014-11-06 21:09:44 -08004665static enum hrtimer_restart napi_watchdog(struct hrtimer *timer)
4666{
4667 struct napi_struct *napi;
4668
4669 napi = container_of(timer, struct napi_struct, timer);
4670 if (napi->gro_list)
4671 napi_schedule(napi);
4672
4673 return HRTIMER_NORESTART;
4674}
4675
Herbert Xud565b0a2008-12-15 23:38:52 -08004676void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
4677 int (*poll)(struct napi_struct *, int), int weight)
4678{
4679 INIT_LIST_HEAD(&napi->poll_list);
Eric Dumazet3b47d302014-11-06 21:09:44 -08004680 hrtimer_init(&napi->timer, CLOCK_MONOTONIC, HRTIMER_MODE_REL_PINNED);
4681 napi->timer.function = napi_watchdog;
Herbert Xu4ae55442009-02-08 18:00:36 +00004682 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004683 napi->gro_list = NULL;
Herbert Xu5d38a072009-01-04 16:13:40 -08004684 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004685 napi->poll = poll;
Eric Dumazet82dc3c62013-03-05 15:57:22 +00004686 if (weight > NAPI_POLL_WEIGHT)
4687 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
4688 weight, dev->name);
Herbert Xud565b0a2008-12-15 23:38:52 -08004689 napi->weight = weight;
4690 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08004691 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08004692#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08004693 spin_lock_init(&napi->poll_lock);
4694 napi->poll_owner = -1;
4695#endif
4696 set_bit(NAPI_STATE_SCHED, &napi->state);
4697}
4698EXPORT_SYMBOL(netif_napi_add);
4699
Eric Dumazet3b47d302014-11-06 21:09:44 -08004700void napi_disable(struct napi_struct *n)
4701{
4702 might_sleep();
4703 set_bit(NAPI_STATE_DISABLE, &n->state);
4704
4705 while (test_and_set_bit(NAPI_STATE_SCHED, &n->state))
4706 msleep(1);
4707
4708 hrtimer_cancel(&n->timer);
4709
4710 clear_bit(NAPI_STATE_DISABLE, &n->state);
4711}
4712EXPORT_SYMBOL(napi_disable);
4713
Herbert Xud565b0a2008-12-15 23:38:52 -08004714void netif_napi_del(struct napi_struct *napi)
4715{
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08004716 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07004717 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08004718
Eric Dumazet289dccb2013-12-20 14:29:08 -08004719 kfree_skb_list(napi->gro_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08004720 napi->gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00004721 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004722}
4723EXPORT_SYMBOL(netif_napi_del);
4724
Herbert Xu726ce702014-12-21 07:16:21 +11004725static int napi_poll(struct napi_struct *n, struct list_head *repoll)
4726{
4727 void *have;
4728 int work, weight;
4729
4730 list_del_init(&n->poll_list);
4731
4732 have = netpoll_poll_lock(n);
4733
4734 weight = n->weight;
4735
4736 /* This NAPI_STATE_SCHED test is for avoiding a race
4737 * with netpoll's poll_napi(). Only the entity which
4738 * obtains the lock and sees NAPI_STATE_SCHED set will
4739 * actually make the ->poll() call. Therefore we avoid
4740 * accidentally calling ->poll() when NAPI is not scheduled.
4741 */
4742 work = 0;
4743 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
4744 work = n->poll(n, weight);
4745 trace_napi_poll(n);
4746 }
4747
4748 WARN_ON_ONCE(work > weight);
4749
4750 if (likely(work < weight))
4751 goto out_unlock;
4752
4753 /* Drivers must not modify the NAPI state if they
4754 * consume the entire weight. In such cases this code
4755 * still "owns" the NAPI instance and therefore can
4756 * move the instance around on the list at-will.
4757 */
4758 if (unlikely(napi_disable_pending(n))) {
4759 napi_complete(n);
4760 goto out_unlock;
4761 }
4762
4763 if (n->gro_list) {
4764 /* flush too old packets
4765 * If HZ < 1000, flush all packets.
4766 */
4767 napi_gro_flush(n, HZ >= 1000);
4768 }
4769
Herbert Xu001ce542014-12-21 07:16:22 +11004770 /* Some drivers may have called napi_schedule
4771 * prior to exhausting their budget.
4772 */
4773 if (unlikely(!list_empty(&n->poll_list))) {
4774 pr_warn_once("%s: Budget exhausted after napi rescheduled\n",
4775 n->dev ? n->dev->name : "backlog");
4776 goto out_unlock;
4777 }
4778
Herbert Xu726ce702014-12-21 07:16:21 +11004779 list_add_tail(&n->poll_list, repoll);
4780
4781out_unlock:
4782 netpoll_poll_unlock(have);
4783
4784 return work;
4785}
4786
Linus Torvalds1da177e2005-04-16 15:20:36 -07004787static void net_rx_action(struct softirq_action *h)
4788{
Christoph Lameter903ceff2014-08-17 12:30:35 -05004789 struct softnet_data *sd = this_cpu_ptr(&softnet_data);
Stephen Hemminger24f8b232008-11-03 17:14:38 -08004790 unsigned long time_limit = jiffies + 2;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07004791 int budget = netdev_budget;
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004792 LIST_HEAD(list);
4793 LIST_HEAD(repoll);
Matt Mackall53fb95d2005-08-11 19:27:43 -07004794
Linus Torvalds1da177e2005-04-16 15:20:36 -07004795 local_irq_disable();
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004796 list_splice_init(&sd->poll_list, &list);
4797 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004798
Herbert Xuceb8d5b2014-12-21 07:16:25 +11004799 for (;;) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004800 struct napi_struct *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004801
Herbert Xuceb8d5b2014-12-21 07:16:25 +11004802 if (list_empty(&list)) {
4803 if (!sd_has_rps_ipi_waiting(sd) && list_empty(&repoll))
4804 return;
4805 break;
4806 }
4807
Herbert Xu6bd373e2014-12-21 07:16:24 +11004808 n = list_first_entry(&list, struct napi_struct, poll_list);
4809 budget -= napi_poll(n, &repoll);
4810
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004811 /* If softirq window is exhausted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08004812 * Allow this to run for 2 jiffies since which will allow
4813 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004814 */
Herbert Xuceb8d5b2014-12-21 07:16:25 +11004815 if (unlikely(budget <= 0 ||
4816 time_after_eq(jiffies, time_limit))) {
4817 sd->time_squeeze++;
4818 break;
4819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004820 }
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004821
Eric Dumazetd75b1ad2014-11-02 06:19:33 -08004822 local_irq_disable();
4823
4824 list_splice_tail_init(&sd->poll_list, &list);
4825 list_splice_tail(&repoll, &list);
4826 list_splice(&list, &sd->poll_list);
4827 if (!list_empty(&sd->poll_list))
4828 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4829
Eric Dumazete326bed2010-04-22 00:22:45 -07004830 net_rps_action_and_irq_enable(sd);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004831}
4832
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004833struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004834 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004835
4836 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004837 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004838
Veaceslav Falico5d261912013-08-28 23:25:05 +02004839 /* counter for the number of times this device was added to us */
4840 u16 ref_nr;
4841
Veaceslav Falico402dae92013-09-25 09:20:09 +02004842 /* private field for the users */
4843 void *private;
4844
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004845 struct list_head list;
4846 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004847};
4848
Veaceslav Falico5d261912013-08-28 23:25:05 +02004849static struct netdev_adjacent *__netdev_find_adj(struct net_device *dev,
4850 struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004851 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004852{
Veaceslav Falico5d261912013-08-28 23:25:05 +02004853 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004854
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004855 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02004856 if (adj->dev == adj_dev)
4857 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004858 }
4859 return NULL;
4860}
4861
4862/**
4863 * netdev_has_upper_dev - Check if device is linked to an upper device
4864 * @dev: device
4865 * @upper_dev: upper device to check
4866 *
4867 * Find out if a device is linked to specified upper device and return true
4868 * in case it is. Note that this checks only immediate upper device,
4869 * not through a complete stack of devices. The caller must hold the RTNL lock.
4870 */
4871bool netdev_has_upper_dev(struct net_device *dev,
4872 struct net_device *upper_dev)
4873{
4874 ASSERT_RTNL();
4875
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004876 return __netdev_find_adj(dev, upper_dev, &dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004877}
4878EXPORT_SYMBOL(netdev_has_upper_dev);
4879
4880/**
4881 * netdev_has_any_upper_dev - Check if device is linked to some device
4882 * @dev: device
4883 *
4884 * Find out if a device is linked to an upper device and return true in case
4885 * it is. The caller must hold the RTNL lock.
4886 */
stephen hemminger1d143d92013-12-29 14:01:29 -08004887static bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004888{
4889 ASSERT_RTNL();
4890
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004891 return !list_empty(&dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004892}
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004893
4894/**
4895 * netdev_master_upper_dev_get - Get master upper device
4896 * @dev: device
4897 *
4898 * Find a master upper device and return pointer to it or NULL in case
4899 * it's not there. The caller must hold the RTNL lock.
4900 */
4901struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
4902{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004903 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004904
4905 ASSERT_RTNL();
4906
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004907 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004908 return NULL;
4909
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004910 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004911 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004912 if (likely(upper->master))
4913 return upper->dev;
4914 return NULL;
4915}
4916EXPORT_SYMBOL(netdev_master_upper_dev_get);
4917
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02004918void *netdev_adjacent_get_private(struct list_head *adj_list)
4919{
4920 struct netdev_adjacent *adj;
4921
4922 adj = list_entry(adj_list, struct netdev_adjacent, list);
4923
4924 return adj->private;
4925}
4926EXPORT_SYMBOL(netdev_adjacent_get_private);
4927
Veaceslav Falico31088a12013-09-25 09:20:12 +02004928/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04004929 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
4930 * @dev: device
4931 * @iter: list_head ** of the current position
4932 *
4933 * Gets the next device from the dev's upper list, starting from iter
4934 * position. The caller must hold RCU read lock.
4935 */
4936struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
4937 struct list_head **iter)
4938{
4939 struct netdev_adjacent *upper;
4940
4941 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
4942
4943 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4944
4945 if (&upper->list == &dev->adj_list.upper)
4946 return NULL;
4947
4948 *iter = &upper->list;
4949
4950 return upper->dev;
4951}
4952EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
4953
4954/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02004955 * netdev_all_upper_get_next_dev_rcu - Get the next dev from upper list
Veaceslav Falico48311f42013-08-28 23:25:07 +02004956 * @dev: device
4957 * @iter: list_head ** of the current position
4958 *
4959 * Gets the next device from the dev's upper list, starting from iter
4960 * position. The caller must hold RCU read lock.
4961 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004962struct net_device *netdev_all_upper_get_next_dev_rcu(struct net_device *dev,
4963 struct list_head **iter)
Veaceslav Falico48311f42013-08-28 23:25:07 +02004964{
4965 struct netdev_adjacent *upper;
4966
John Fastabend85328242013-11-26 06:33:52 +00004967 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
Veaceslav Falico48311f42013-08-28 23:25:07 +02004968
4969 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4970
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004971 if (&upper->list == &dev->all_adj_list.upper)
Veaceslav Falico48311f42013-08-28 23:25:07 +02004972 return NULL;
4973
4974 *iter = &upper->list;
4975
4976 return upper->dev;
4977}
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004978EXPORT_SYMBOL(netdev_all_upper_get_next_dev_rcu);
Veaceslav Falico48311f42013-08-28 23:25:07 +02004979
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004980/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02004981 * netdev_lower_get_next_private - Get the next ->private from the
4982 * lower neighbour list
4983 * @dev: device
4984 * @iter: list_head ** of the current position
4985 *
4986 * Gets the next netdev_adjacent->private from the dev's lower neighbour
4987 * list, starting from iter position. The caller must hold either hold the
4988 * RTNL lock or its own locking that guarantees that the neighbour lower
4989 * list will remain unchainged.
4990 */
4991void *netdev_lower_get_next_private(struct net_device *dev,
4992 struct list_head **iter)
4993{
4994 struct netdev_adjacent *lower;
4995
4996 lower = list_entry(*iter, struct netdev_adjacent, list);
4997
4998 if (&lower->list == &dev->adj_list.lower)
4999 return NULL;
5000
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02005001 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02005002
5003 return lower->private;
5004}
5005EXPORT_SYMBOL(netdev_lower_get_next_private);
5006
5007/**
5008 * netdev_lower_get_next_private_rcu - Get the next ->private from the
5009 * lower neighbour list, RCU
5010 * variant
5011 * @dev: device
5012 * @iter: list_head ** of the current position
5013 *
5014 * Gets the next netdev_adjacent->private from the dev's lower neighbour
5015 * list, starting from iter position. The caller must hold RCU read lock.
5016 */
5017void *netdev_lower_get_next_private_rcu(struct net_device *dev,
5018 struct list_head **iter)
5019{
5020 struct netdev_adjacent *lower;
5021
5022 WARN_ON_ONCE(!rcu_read_lock_held());
5023
5024 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
5025
5026 if (&lower->list == &dev->adj_list.lower)
5027 return NULL;
5028
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02005029 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02005030
5031 return lower->private;
5032}
5033EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
5034
5035/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005036 * netdev_lower_get_next - Get the next device from the lower neighbour
5037 * list
5038 * @dev: device
5039 * @iter: list_head ** of the current position
5040 *
5041 * Gets the next netdev_adjacent from the dev's lower neighbour
5042 * list, starting from iter position. The caller must hold RTNL lock or
5043 * its own locking that guarantees that the neighbour lower
5044 * list will remain unchainged.
5045 */
5046void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
5047{
5048 struct netdev_adjacent *lower;
5049
5050 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
5051
5052 if (&lower->list == &dev->adj_list.lower)
5053 return NULL;
5054
5055 *iter = &lower->list;
5056
5057 return lower->dev;
5058}
5059EXPORT_SYMBOL(netdev_lower_get_next);
5060
5061/**
dingtianhonge001bfa2013-12-13 10:19:55 +08005062 * netdev_lower_get_first_private_rcu - Get the first ->private from the
5063 * lower neighbour list, RCU
5064 * variant
5065 * @dev: device
5066 *
5067 * Gets the first netdev_adjacent->private from the dev's lower neighbour
5068 * list. The caller must hold RCU read lock.
5069 */
5070void *netdev_lower_get_first_private_rcu(struct net_device *dev)
5071{
5072 struct netdev_adjacent *lower;
5073
5074 lower = list_first_or_null_rcu(&dev->adj_list.lower,
5075 struct netdev_adjacent, list);
5076 if (lower)
5077 return lower->private;
5078 return NULL;
5079}
5080EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
5081
5082/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005083 * netdev_master_upper_dev_get_rcu - Get master upper device
5084 * @dev: device
5085 *
5086 * Find a master upper device and return pointer to it or NULL in case
5087 * it's not there. The caller must hold the RCU read lock.
5088 */
5089struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
5090{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005091 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005092
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005093 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02005094 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005095 if (upper && likely(upper->master))
5096 return upper->dev;
5097 return NULL;
5098}
5099EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
5100
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05305101static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005102 struct net_device *adj_dev,
5103 struct list_head *dev_list)
5104{
5105 char linkname[IFNAMSIZ+7];
5106 sprintf(linkname, dev_list == &dev->adj_list.upper ?
5107 "upper_%s" : "lower_%s", adj_dev->name);
5108 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
5109 linkname);
5110}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05305111static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005112 char *name,
5113 struct list_head *dev_list)
5114{
5115 char linkname[IFNAMSIZ+7];
5116 sprintf(linkname, dev_list == &dev->adj_list.upper ?
5117 "upper_%s" : "lower_%s", name);
5118 sysfs_remove_link(&(dev->dev.kobj), linkname);
5119}
5120
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005121static inline bool netdev_adjacent_is_neigh_list(struct net_device *dev,
5122 struct net_device *adj_dev,
5123 struct list_head *dev_list)
5124{
5125 return (dev_list == &dev->adj_list.upper ||
5126 dev_list == &dev->adj_list.lower) &&
5127 net_eq(dev_net(dev), dev_net(adj_dev));
5128}
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005129
Veaceslav Falico5d261912013-08-28 23:25:05 +02005130static int __netdev_adjacent_dev_insert(struct net_device *dev,
5131 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02005132 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005133 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005134{
5135 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005136 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005137
Veaceslav Falico7863c052013-09-25 09:20:06 +02005138 adj = __netdev_find_adj(dev, adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005139
5140 if (adj) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005141 adj->ref_nr++;
5142 return 0;
5143 }
5144
5145 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
5146 if (!adj)
5147 return -ENOMEM;
5148
5149 adj->dev = adj_dev;
5150 adj->master = master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005151 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02005152 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005153 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005154
5155 pr_debug("dev_hold for %s, because of link added from %s to %s\n",
5156 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005157
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005158 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list)) {
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005159 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005160 if (ret)
5161 goto free_adj;
5162 }
5163
Veaceslav Falico7863c052013-09-25 09:20:06 +02005164 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005165 if (master) {
5166 ret = sysfs_create_link(&(dev->dev.kobj),
5167 &(adj_dev->dev.kobj), "master");
5168 if (ret)
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005169 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005170
Veaceslav Falico7863c052013-09-25 09:20:06 +02005171 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005172 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02005173 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005174 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02005175
5176 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005177
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005178remove_symlinks:
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005179 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005180 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005181free_adj:
5182 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02005183 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005184
5185 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005186}
5187
stephen hemminger1d143d92013-12-29 14:01:29 -08005188static void __netdev_adjacent_dev_remove(struct net_device *dev,
5189 struct net_device *adj_dev,
5190 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005191{
5192 struct netdev_adjacent *adj;
5193
Veaceslav Falico7863c052013-09-25 09:20:06 +02005194 adj = __netdev_find_adj(dev, adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005195
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005196 if (!adj) {
5197 pr_err("tried to remove device %s from %s\n",
5198 dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005199 BUG();
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005200 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02005201
5202 if (adj->ref_nr > 1) {
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005203 pr_debug("%s to %s ref_nr-- = %d\n", dev->name, adj_dev->name,
5204 adj->ref_nr-1);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005205 adj->ref_nr--;
5206 return;
5207 }
5208
Veaceslav Falico842d67a2013-09-25 09:20:31 +02005209 if (adj->master)
5210 sysfs_remove_link(&(dev->dev.kobj), "master");
5211
Alexander Y. Fomichev7ce64c72014-09-15 14:22:35 +04005212 if (netdev_adjacent_is_neigh_list(dev, adj_dev, dev_list))
Veaceslav Falico3ee32702014-01-14 21:58:50 +01005213 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02005214
Veaceslav Falico5d261912013-08-28 23:25:05 +02005215 list_del_rcu(&adj->list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005216 pr_debug("dev_put for %s, because link removed from %s to %s\n",
5217 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005218 dev_put(adj_dev);
5219 kfree_rcu(adj, rcu);
5220}
5221
stephen hemminger1d143d92013-12-29 14:01:29 -08005222static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
5223 struct net_device *upper_dev,
5224 struct list_head *up_list,
5225 struct list_head *down_list,
5226 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005227{
5228 int ret;
5229
Veaceslav Falico402dae92013-09-25 09:20:09 +02005230 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list, private,
5231 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005232 if (ret)
5233 return ret;
5234
Veaceslav Falico402dae92013-09-25 09:20:09 +02005235 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list, private,
5236 false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005237 if (ret) {
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005238 __netdev_adjacent_dev_remove(dev, upper_dev, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005239 return ret;
5240 }
5241
5242 return 0;
5243}
5244
stephen hemminger1d143d92013-12-29 14:01:29 -08005245static int __netdev_adjacent_dev_link(struct net_device *dev,
5246 struct net_device *upper_dev)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005247{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005248 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
5249 &dev->all_adj_list.upper,
5250 &upper_dev->all_adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005251 NULL, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005252}
5253
stephen hemminger1d143d92013-12-29 14:01:29 -08005254static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
5255 struct net_device *upper_dev,
5256 struct list_head *up_list,
5257 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005258{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005259 __netdev_adjacent_dev_remove(dev, upper_dev, up_list);
5260 __netdev_adjacent_dev_remove(upper_dev, dev, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005261}
5262
stephen hemminger1d143d92013-12-29 14:01:29 -08005263static void __netdev_adjacent_dev_unlink(struct net_device *dev,
5264 struct net_device *upper_dev)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005265{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005266 __netdev_adjacent_dev_unlink_lists(dev, upper_dev,
5267 &dev->all_adj_list.upper,
5268 &upper_dev->all_adj_list.lower);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005269}
5270
stephen hemminger1d143d92013-12-29 14:01:29 -08005271static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
5272 struct net_device *upper_dev,
5273 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005274{
5275 int ret = __netdev_adjacent_dev_link(dev, upper_dev);
5276
5277 if (ret)
5278 return ret;
5279
5280 ret = __netdev_adjacent_dev_link_lists(dev, upper_dev,
5281 &dev->adj_list.upper,
5282 &upper_dev->adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005283 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005284 if (ret) {
5285 __netdev_adjacent_dev_unlink(dev, upper_dev);
5286 return ret;
5287 }
5288
5289 return 0;
5290}
5291
stephen hemminger1d143d92013-12-29 14:01:29 -08005292static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
5293 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005294{
5295 __netdev_adjacent_dev_unlink(dev, upper_dev);
5296 __netdev_adjacent_dev_unlink_lists(dev, upper_dev,
5297 &dev->adj_list.upper,
5298 &upper_dev->adj_list.lower);
5299}
Veaceslav Falico5d261912013-08-28 23:25:05 +02005300
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005301static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02005302 struct net_device *upper_dev, bool master,
5303 void *private)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005304{
Veaceslav Falico5d261912013-08-28 23:25:05 +02005305 struct netdev_adjacent *i, *j, *to_i, *to_j;
5306 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005307
5308 ASSERT_RTNL();
5309
5310 if (dev == upper_dev)
5311 return -EBUSY;
5312
5313 /* To prevent loops, check if dev is not upper device to upper_dev. */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005314 if (__netdev_find_adj(upper_dev, dev, &upper_dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005315 return -EBUSY;
5316
Vlad Yasevichd66bf7d2015-05-02 21:33:44 -04005317 if (__netdev_find_adj(dev, upper_dev, &dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005318 return -EEXIST;
5319
5320 if (master && netdev_master_upper_dev_get(dev))
5321 return -EBUSY;
5322
Veaceslav Falico402dae92013-09-25 09:20:09 +02005323 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, private,
5324 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005325 if (ret)
5326 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005327
Veaceslav Falico5d261912013-08-28 23:25:05 +02005328 /* Now that we linked these devs, make all the upper_dev's
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005329 * all_adj_list.upper visible to every dev's all_adj_list.lower an
Veaceslav Falico5d261912013-08-28 23:25:05 +02005330 * versa, and don't forget the devices itself. All of these
5331 * links are non-neighbours.
5332 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005333 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5334 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
5335 pr_debug("Interlinking %s with %s, non-neighbour\n",
5336 i->dev->name, j->dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005337 ret = __netdev_adjacent_dev_link(i->dev, j->dev);
5338 if (ret)
5339 goto rollback_mesh;
5340 }
5341 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005342
Veaceslav Falico5d261912013-08-28 23:25:05 +02005343 /* add dev to every upper_dev's upper device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005344 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
5345 pr_debug("linking %s's upper device %s with %s\n",
5346 upper_dev->name, i->dev->name, dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005347 ret = __netdev_adjacent_dev_link(dev, i->dev);
5348 if (ret)
5349 goto rollback_upper_mesh;
5350 }
5351
5352 /* add upper_dev to every dev's lower device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005353 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5354 pr_debug("linking %s's lower device %s with %s\n", dev->name,
5355 i->dev->name, upper_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005356 ret = __netdev_adjacent_dev_link(i->dev, upper_dev);
5357 if (ret)
5358 goto rollback_lower_mesh;
5359 }
5360
Jiri Pirko42e52bf2013-05-25 04:12:10 +00005361 call_netdevice_notifiers(NETDEV_CHANGEUPPER, dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005362 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005363
5364rollback_lower_mesh:
5365 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005366 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005367 if (i == to_i)
5368 break;
5369 __netdev_adjacent_dev_unlink(i->dev, upper_dev);
5370 }
5371
5372 i = NULL;
5373
5374rollback_upper_mesh:
5375 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005376 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005377 if (i == to_i)
5378 break;
5379 __netdev_adjacent_dev_unlink(dev, i->dev);
5380 }
5381
5382 i = j = NULL;
5383
5384rollback_mesh:
5385 to_i = i;
5386 to_j = j;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005387 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5388 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005389 if (i == to_i && j == to_j)
5390 break;
5391 __netdev_adjacent_dev_unlink(i->dev, j->dev);
5392 }
5393 if (i == to_i)
5394 break;
5395 }
5396
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005397 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005398
5399 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005400}
5401
5402/**
5403 * netdev_upper_dev_link - Add a link to the upper device
5404 * @dev: device
5405 * @upper_dev: new upper device
5406 *
5407 * Adds a link to device which is upper to this one. The caller must hold
5408 * the RTNL lock. On a failure a negative errno code is returned.
5409 * On success the reference counts are adjusted and the function
5410 * returns zero.
5411 */
5412int netdev_upper_dev_link(struct net_device *dev,
5413 struct net_device *upper_dev)
5414{
Veaceslav Falico402dae92013-09-25 09:20:09 +02005415 return __netdev_upper_dev_link(dev, upper_dev, false, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005416}
5417EXPORT_SYMBOL(netdev_upper_dev_link);
5418
5419/**
5420 * netdev_master_upper_dev_link - Add a master link to the upper device
5421 * @dev: device
5422 * @upper_dev: new upper device
5423 *
5424 * Adds a link to device which is upper to this one. In this case, only
5425 * one master upper device can be linked, although other non-master devices
5426 * might be linked as well. The caller must hold the RTNL lock.
5427 * On a failure a negative errno code is returned. On success the reference
5428 * counts are adjusted and the function returns zero.
5429 */
5430int netdev_master_upper_dev_link(struct net_device *dev,
5431 struct net_device *upper_dev)
5432{
Veaceslav Falico402dae92013-09-25 09:20:09 +02005433 return __netdev_upper_dev_link(dev, upper_dev, true, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005434}
5435EXPORT_SYMBOL(netdev_master_upper_dev_link);
5436
Veaceslav Falico402dae92013-09-25 09:20:09 +02005437int netdev_master_upper_dev_link_private(struct net_device *dev,
5438 struct net_device *upper_dev,
5439 void *private)
5440{
5441 return __netdev_upper_dev_link(dev, upper_dev, true, private);
5442}
5443EXPORT_SYMBOL(netdev_master_upper_dev_link_private);
5444
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005445/**
5446 * netdev_upper_dev_unlink - Removes a link to upper device
5447 * @dev: device
5448 * @upper_dev: new upper device
5449 *
5450 * Removes a link to device which is upper to this one. The caller must hold
5451 * the RTNL lock.
5452 */
5453void netdev_upper_dev_unlink(struct net_device *dev,
5454 struct net_device *upper_dev)
5455{
Veaceslav Falico5d261912013-08-28 23:25:05 +02005456 struct netdev_adjacent *i, *j;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005457 ASSERT_RTNL();
5458
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005459 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005460
5461 /* Here is the tricky part. We must remove all dev's lower
5462 * devices from all upper_dev's upper devices and vice
5463 * versa, to maintain the graph relationship.
5464 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005465 list_for_each_entry(i, &dev->all_adj_list.lower, list)
5466 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005467 __netdev_adjacent_dev_unlink(i->dev, j->dev);
5468
5469 /* remove also the devices itself from lower/upper device
5470 * list
5471 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005472 list_for_each_entry(i, &dev->all_adj_list.lower, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005473 __netdev_adjacent_dev_unlink(i->dev, upper_dev);
5474
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005475 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005476 __netdev_adjacent_dev_unlink(dev, i->dev);
5477
Jiri Pirko42e52bf2013-05-25 04:12:10 +00005478 call_netdevice_notifiers(NETDEV_CHANGEUPPER, dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005479}
5480EXPORT_SYMBOL(netdev_upper_dev_unlink);
5481
Moni Shoua61bd3852015-02-03 16:48:29 +02005482/**
5483 * netdev_bonding_info_change - Dispatch event about slave change
5484 * @dev: device
Masanari Iida4a26e4532015-02-14 22:26:34 +09005485 * @bonding_info: info to dispatch
Moni Shoua61bd3852015-02-03 16:48:29 +02005486 *
5487 * Send NETDEV_BONDING_INFO to netdev notifiers with info.
5488 * The caller must hold the RTNL lock.
5489 */
5490void netdev_bonding_info_change(struct net_device *dev,
5491 struct netdev_bonding_info *bonding_info)
5492{
5493 struct netdev_notifier_bonding_info info;
5494
5495 memcpy(&info.bonding_info, bonding_info,
5496 sizeof(struct netdev_bonding_info));
5497 call_netdevice_notifiers_info(NETDEV_BONDING_INFO, dev,
5498 &info.info);
5499}
5500EXPORT_SYMBOL(netdev_bonding_info_change);
5501
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08005502static void netdev_adjacent_add_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04005503{
5504 struct netdev_adjacent *iter;
5505
5506 struct net *net = dev_net(dev);
5507
5508 list_for_each_entry(iter, &dev->adj_list.upper, list) {
5509 if (!net_eq(net,dev_net(iter->dev)))
5510 continue;
5511 netdev_adjacent_sysfs_add(iter->dev, dev,
5512 &iter->dev->adj_list.lower);
5513 netdev_adjacent_sysfs_add(dev, iter->dev,
5514 &dev->adj_list.upper);
5515 }
5516
5517 list_for_each_entry(iter, &dev->adj_list.lower, list) {
5518 if (!net_eq(net,dev_net(iter->dev)))
5519 continue;
5520 netdev_adjacent_sysfs_add(iter->dev, dev,
5521 &iter->dev->adj_list.upper);
5522 netdev_adjacent_sysfs_add(dev, iter->dev,
5523 &dev->adj_list.lower);
5524 }
5525}
5526
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08005527static void netdev_adjacent_del_links(struct net_device *dev)
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04005528{
5529 struct netdev_adjacent *iter;
5530
5531 struct net *net = dev_net(dev);
5532
5533 list_for_each_entry(iter, &dev->adj_list.upper, list) {
5534 if (!net_eq(net,dev_net(iter->dev)))
5535 continue;
5536 netdev_adjacent_sysfs_del(iter->dev, dev->name,
5537 &iter->dev->adj_list.lower);
5538 netdev_adjacent_sysfs_del(dev, iter->dev->name,
5539 &dev->adj_list.upper);
5540 }
5541
5542 list_for_each_entry(iter, &dev->adj_list.lower, list) {
5543 if (!net_eq(net,dev_net(iter->dev)))
5544 continue;
5545 netdev_adjacent_sysfs_del(iter->dev, dev->name,
5546 &iter->dev->adj_list.upper);
5547 netdev_adjacent_sysfs_del(dev, iter->dev->name,
5548 &dev->adj_list.lower);
5549 }
5550}
5551
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005552void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02005553{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005554 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02005555
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04005556 struct net *net = dev_net(dev);
5557
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005558 list_for_each_entry(iter, &dev->adj_list.upper, list) {
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04005559 if (!net_eq(net,dev_net(iter->dev)))
5560 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005561 netdev_adjacent_sysfs_del(iter->dev, oldname,
5562 &iter->dev->adj_list.lower);
5563 netdev_adjacent_sysfs_add(iter->dev, dev,
5564 &iter->dev->adj_list.lower);
5565 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02005566
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005567 list_for_each_entry(iter, &dev->adj_list.lower, list) {
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04005568 if (!net_eq(net,dev_net(iter->dev)))
5569 continue;
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005570 netdev_adjacent_sysfs_del(iter->dev, oldname,
5571 &iter->dev->adj_list.upper);
5572 netdev_adjacent_sysfs_add(iter->dev, dev,
5573 &iter->dev->adj_list.upper);
5574 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02005575}
Veaceslav Falico402dae92013-09-25 09:20:09 +02005576
5577void *netdev_lower_dev_get_private(struct net_device *dev,
5578 struct net_device *lower_dev)
5579{
5580 struct netdev_adjacent *lower;
5581
5582 if (!lower_dev)
5583 return NULL;
5584 lower = __netdev_find_adj(dev, lower_dev, &dev->adj_list.lower);
5585 if (!lower)
5586 return NULL;
5587
5588 return lower->private;
5589}
5590EXPORT_SYMBOL(netdev_lower_dev_get_private);
5591
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005592
5593int dev_get_nest_level(struct net_device *dev,
5594 bool (*type_check)(struct net_device *dev))
5595{
5596 struct net_device *lower = NULL;
5597 struct list_head *iter;
5598 int max_nest = -1;
5599 int nest;
5600
5601 ASSERT_RTNL();
5602
5603 netdev_for_each_lower_dev(dev, lower, iter) {
5604 nest = dev_get_nest_level(lower, type_check);
5605 if (max_nest < nest)
5606 max_nest = nest;
5607 }
5608
5609 if (type_check(dev))
5610 max_nest++;
5611
5612 return max_nest;
5613}
5614EXPORT_SYMBOL(dev_get_nest_level);
5615
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005616static void dev_change_rx_flags(struct net_device *dev, int flags)
5617{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005618 const struct net_device_ops *ops = dev->netdev_ops;
5619
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05005620 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005621 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005622}
5623
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005624static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07005625{
Eric Dumazetb536db92011-11-30 21:42:26 +00005626 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06005627 kuid_t uid;
5628 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07005629
Patrick McHardy24023452007-07-14 18:51:31 -07005630 ASSERT_RTNL();
5631
Wang Chendad9b332008-06-18 01:48:28 -07005632 dev->flags |= IFF_PROMISC;
5633 dev->promiscuity += inc;
5634 if (dev->promiscuity == 0) {
5635 /*
5636 * Avoid overflow.
5637 * If inc causes overflow, untouch promisc and return error.
5638 */
5639 if (inc < 0)
5640 dev->flags &= ~IFF_PROMISC;
5641 else {
5642 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005643 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
5644 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07005645 return -EOVERFLOW;
5646 }
5647 }
Patrick McHardy4417da62007-06-27 01:28:10 -07005648 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005649 pr_info("device %s %s promiscuous mode\n",
5650 dev->name,
5651 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11005652 if (audit_enabled) {
5653 current_uid_gid(&uid, &gid);
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05005654 audit_log(current->audit_context, GFP_ATOMIC,
5655 AUDIT_ANOM_PROMISCUOUS,
5656 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
5657 dev->name, (dev->flags & IFF_PROMISC),
5658 (old_flags & IFF_PROMISC),
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07005659 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06005660 from_kuid(&init_user_ns, uid),
5661 from_kgid(&init_user_ns, gid),
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05005662 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11005663 }
Patrick McHardy24023452007-07-14 18:51:31 -07005664
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005665 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07005666 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005667 if (notify)
5668 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07005669 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07005670}
5671
Linus Torvalds1da177e2005-04-16 15:20:36 -07005672/**
5673 * dev_set_promiscuity - update promiscuity count on a device
5674 * @dev: device
5675 * @inc: modifier
5676 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07005677 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005678 * remains above zero the interface remains promiscuous. Once it hits zero
5679 * the device reverts back to normal filtering operation. A negative inc
5680 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07005681 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682 */
Wang Chendad9b332008-06-18 01:48:28 -07005683int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684{
Eric Dumazetb536db92011-11-30 21:42:26 +00005685 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07005686 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005688 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07005689 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07005690 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07005691 if (dev->flags != old_flags)
5692 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07005693 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005694}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005695EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005696
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005697static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005698{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005699 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005700
Patrick McHardy24023452007-07-14 18:51:31 -07005701 ASSERT_RTNL();
5702
Linus Torvalds1da177e2005-04-16 15:20:36 -07005703 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07005704 dev->allmulti += inc;
5705 if (dev->allmulti == 0) {
5706 /*
5707 * Avoid overflow.
5708 * If inc causes overflow, untouch allmulti and return error.
5709 */
5710 if (inc < 0)
5711 dev->flags &= ~IFF_ALLMULTI;
5712 else {
5713 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005714 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
5715 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07005716 return -EOVERFLOW;
5717 }
5718 }
Patrick McHardy24023452007-07-14 18:51:31 -07005719 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005720 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07005721 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005722 if (notify)
5723 __dev_notify_flags(dev, old_flags,
5724 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07005725 }
Wang Chendad9b332008-06-18 01:48:28 -07005726 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07005727}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005728
5729/**
5730 * dev_set_allmulti - update allmulti count on a device
5731 * @dev: device
5732 * @inc: modifier
5733 *
5734 * Add or remove reception of all multicast frames to a device. While the
5735 * count in the device remains above zero the interface remains listening
5736 * to all interfaces. Once it hits zero the device reverts back to normal
5737 * filtering operation. A negative @inc value is used to drop the counter
5738 * when releasing a resource needing all multicasts.
5739 * Return 0 if successful or a negative errno code on error.
5740 */
5741
5742int dev_set_allmulti(struct net_device *dev, int inc)
5743{
5744 return __dev_set_allmulti(dev, inc, true);
5745}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005746EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07005747
5748/*
5749 * Upload unicast and multicast address lists to device and
5750 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08005751 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07005752 * are present.
5753 */
5754void __dev_set_rx_mode(struct net_device *dev)
5755{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005756 const struct net_device_ops *ops = dev->netdev_ops;
5757
Patrick McHardy4417da62007-06-27 01:28:10 -07005758 /* dev_open will call this function so the list will stay sane. */
5759 if (!(dev->flags&IFF_UP))
5760 return;
5761
5762 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09005763 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07005764
Jiri Pirko01789342011-08-16 06:29:00 +00005765 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07005766 /* Unicast addresses changes may only happen under the rtnl,
5767 * therefore calling __dev_set_promiscuity here is safe.
5768 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08005769 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005770 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07005771 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08005772 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005773 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07005774 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07005775 }
Patrick McHardy4417da62007-06-27 01:28:10 -07005776 }
Jiri Pirko01789342011-08-16 06:29:00 +00005777
5778 if (ops->ndo_set_rx_mode)
5779 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07005780}
5781
5782void dev_set_rx_mode(struct net_device *dev)
5783{
David S. Millerb9e40852008-07-15 00:15:08 -07005784 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07005785 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07005786 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005787}
5788
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005789/**
5790 * dev_get_flags - get flags reported to userspace
5791 * @dev: device
5792 *
5793 * Get the combination of flag bits exported through APIs to userspace.
5794 */
Eric Dumazet95c96172012-04-15 05:58:06 +00005795unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005796{
Eric Dumazet95c96172012-04-15 05:58:06 +00005797 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005798
5799 flags = (dev->flags & ~(IFF_PROMISC |
5800 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08005801 IFF_RUNNING |
5802 IFF_LOWER_UP |
5803 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07005804 (dev->gflags & (IFF_PROMISC |
5805 IFF_ALLMULTI));
5806
Stefan Rompfb00055a2006-03-20 17:09:11 -08005807 if (netif_running(dev)) {
5808 if (netif_oper_up(dev))
5809 flags |= IFF_RUNNING;
5810 if (netif_carrier_ok(dev))
5811 flags |= IFF_LOWER_UP;
5812 if (netif_dormant(dev))
5813 flags |= IFF_DORMANT;
5814 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005815
5816 return flags;
5817}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005818EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005819
Patrick McHardybd380812010-02-26 06:34:53 +00005820int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005821{
Eric Dumazetb536db92011-11-30 21:42:26 +00005822 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00005823 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005824
Patrick McHardy24023452007-07-14 18:51:31 -07005825 ASSERT_RTNL();
5826
Linus Torvalds1da177e2005-04-16 15:20:36 -07005827 /*
5828 * Set the flags on our device.
5829 */
5830
5831 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
5832 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
5833 IFF_AUTOMEDIA)) |
5834 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
5835 IFF_ALLMULTI));
5836
5837 /*
5838 * Load in the correct multicast list now the flags have changed.
5839 */
5840
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005841 if ((old_flags ^ flags) & IFF_MULTICAST)
5842 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07005843
Patrick McHardy4417da62007-06-27 01:28:10 -07005844 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005845
5846 /*
5847 * Have we downed the interface. We handle IFF_UP ourselves
5848 * according to user attempts to set it, rather than blindly
5849 * setting it.
5850 */
5851
5852 ret = 0;
Peter Pan(潘卫平)d215d102014-06-16 21:57:22 +08005853 if ((old_flags ^ flags) & IFF_UP)
Patrick McHardybd380812010-02-26 06:34:53 +00005854 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005855
Linus Torvalds1da177e2005-04-16 15:20:36 -07005856 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005857 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005858 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005859
Linus Torvalds1da177e2005-04-16 15:20:36 -07005860 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005861
5862 if (__dev_set_promiscuity(dev, inc, false) >= 0)
5863 if (dev->flags != old_flags)
5864 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005865 }
5866
5867 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
5868 is important. Some (broken) drivers set IFF_PROMISC, when
5869 IFF_ALLMULTI is requested not asking us and not reporting.
5870 */
5871 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005872 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
5873
Linus Torvalds1da177e2005-04-16 15:20:36 -07005874 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005875 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005876 }
5877
Patrick McHardybd380812010-02-26 06:34:53 +00005878 return ret;
5879}
5880
Nicolas Dichtela528c212013-09-25 12:02:44 +02005881void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
5882 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00005883{
5884 unsigned int changes = dev->flags ^ old_flags;
5885
Nicolas Dichtela528c212013-09-25 12:02:44 +02005886 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07005887 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02005888
Patrick McHardybd380812010-02-26 06:34:53 +00005889 if (changes & IFF_UP) {
5890 if (dev->flags & IFF_UP)
5891 call_netdevice_notifiers(NETDEV_UP, dev);
5892 else
5893 call_netdevice_notifiers(NETDEV_DOWN, dev);
5894 }
5895
5896 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00005897 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
5898 struct netdev_notifier_change_info change_info;
5899
5900 change_info.flags_changed = changes;
5901 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
5902 &change_info.info);
5903 }
Patrick McHardybd380812010-02-26 06:34:53 +00005904}
5905
5906/**
5907 * dev_change_flags - change device settings
5908 * @dev: device
5909 * @flags: device state flags
5910 *
5911 * Change settings on device based state flags. The flags are
5912 * in the userspace exported format.
5913 */
Eric Dumazetb536db92011-11-30 21:42:26 +00005914int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00005915{
Eric Dumazetb536db92011-11-30 21:42:26 +00005916 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005917 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00005918
5919 ret = __dev_change_flags(dev, flags);
5920 if (ret < 0)
5921 return ret;
5922
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005923 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02005924 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005925 return ret;
5926}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005927EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005928
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005929static int __dev_set_mtu(struct net_device *dev, int new_mtu)
5930{
5931 const struct net_device_ops *ops = dev->netdev_ops;
5932
5933 if (ops->ndo_change_mtu)
5934 return ops->ndo_change_mtu(dev, new_mtu);
5935
5936 dev->mtu = new_mtu;
5937 return 0;
5938}
5939
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005940/**
5941 * dev_set_mtu - Change maximum transfer unit
5942 * @dev: device
5943 * @new_mtu: new transfer unit
5944 *
5945 * Change the maximum transfer size of the network device.
5946 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005947int dev_set_mtu(struct net_device *dev, int new_mtu)
5948{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005949 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005950
5951 if (new_mtu == dev->mtu)
5952 return 0;
5953
5954 /* MTU must be positive. */
5955 if (new_mtu < 0)
5956 return -EINVAL;
5957
5958 if (!netif_device_present(dev))
5959 return -ENODEV;
5960
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01005961 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
5962 err = notifier_to_errno(err);
5963 if (err)
5964 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005965
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005966 orig_mtu = dev->mtu;
5967 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005968
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005969 if (!err) {
5970 err = call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
5971 err = notifier_to_errno(err);
5972 if (err) {
5973 /* setting mtu back and notifying everyone again,
5974 * so that they have a chance to revert changes.
5975 */
5976 __dev_set_mtu(dev, orig_mtu);
5977 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
5978 }
5979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005980 return err;
5981}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005982EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005983
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005984/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00005985 * dev_set_group - Change group this device belongs to
5986 * @dev: device
5987 * @new_group: group this device should belong to
5988 */
5989void dev_set_group(struct net_device *dev, int new_group)
5990{
5991 dev->group = new_group;
5992}
5993EXPORT_SYMBOL(dev_set_group);
5994
5995/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005996 * dev_set_mac_address - Change Media Access Control Address
5997 * @dev: device
5998 * @sa: new address
5999 *
6000 * Change the hardware (MAC) address of the device
6001 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
6003{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006004 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006005 int err;
6006
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006007 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006008 return -EOPNOTSUPP;
6009 if (sa->sa_family != dev->type)
6010 return -EINVAL;
6011 if (!netif_device_present(dev))
6012 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006013 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00006014 if (err)
6015 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00006016 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00006017 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04006018 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00006019 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006021EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022
Jiri Pirko4bf84c32012-12-27 23:49:37 +00006023/**
6024 * dev_change_carrier - Change device carrier
6025 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00006026 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00006027 *
6028 * Change device carrier
6029 */
6030int dev_change_carrier(struct net_device *dev, bool new_carrier)
6031{
6032 const struct net_device_ops *ops = dev->netdev_ops;
6033
6034 if (!ops->ndo_change_carrier)
6035 return -EOPNOTSUPP;
6036 if (!netif_device_present(dev))
6037 return -ENODEV;
6038 return ops->ndo_change_carrier(dev, new_carrier);
6039}
6040EXPORT_SYMBOL(dev_change_carrier);
6041
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02006043 * dev_get_phys_port_id - Get device physical port ID
6044 * @dev: device
6045 * @ppid: port ID
6046 *
6047 * Get device physical port ID
6048 */
6049int dev_get_phys_port_id(struct net_device *dev,
Jiri Pirko02637fc2014-11-28 14:34:16 +01006050 struct netdev_phys_item_id *ppid)
Jiri Pirko66b52b02013-07-29 18:16:49 +02006051{
6052 const struct net_device_ops *ops = dev->netdev_ops;
6053
6054 if (!ops->ndo_get_phys_port_id)
6055 return -EOPNOTSUPP;
6056 return ops->ndo_get_phys_port_id(dev, ppid);
6057}
6058EXPORT_SYMBOL(dev_get_phys_port_id);
6059
6060/**
David Aherndb24a902015-03-17 20:23:15 -06006061 * dev_get_phys_port_name - Get device physical port name
6062 * @dev: device
6063 * @name: port name
6064 *
6065 * Get device physical port name
6066 */
6067int dev_get_phys_port_name(struct net_device *dev,
6068 char *name, size_t len)
6069{
6070 const struct net_device_ops *ops = dev->netdev_ops;
6071
6072 if (!ops->ndo_get_phys_port_name)
6073 return -EOPNOTSUPP;
6074 return ops->ndo_get_phys_port_name(dev, name, len);
6075}
6076EXPORT_SYMBOL(dev_get_phys_port_name);
6077
6078/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006079 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07006080 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07006081 *
6082 * Returns a suitable unique value for a new device interface
6083 * number. The caller must hold the rtnl semaphore or the
6084 * dev_base_lock to be sure it remains unique.
6085 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07006086static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006087{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00006088 int ifindex = net->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006089 for (;;) {
6090 if (++ifindex <= 0)
6091 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006092 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00006093 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006094 }
6095}
6096
Linus Torvalds1da177e2005-04-16 15:20:36 -07006097/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08006098static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07006099DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006100
Stephen Hemminger6f05f622007-03-08 20:46:03 -08006101static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006103 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07006104 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105}
6106
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006107static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006108{
Krishna Kumare93737b2009-12-08 22:26:02 +00006109 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006110 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006111
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006112 BUG_ON(dev_boot_phase);
6113 ASSERT_RTNL();
6114
Krishna Kumare93737b2009-12-08 22:26:02 +00006115 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006116 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00006117 * for initialization unwind. Remove those
6118 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006119 */
6120 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006121 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
6122 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006123
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006124 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00006125 list_del(&dev->unreg_list);
6126 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006127 }
Eric Dumazet449f4542011-05-19 12:24:16 +00006128 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006129 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00006130 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006131
Octavian Purdila44345722010-12-13 12:44:07 +00006132 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006133 list_for_each_entry(dev, head, unreg_list)
6134 list_add_tail(&dev->close_list, &close_head);
David S. Miller99c4a262015-03-18 22:52:33 -04006135 dev_close_many(&close_head, true);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006136
Octavian Purdila44345722010-12-13 12:44:07 +00006137 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006138 /* And unlink it from device chain. */
6139 unlist_netdevice(dev);
6140
6141 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006142 }
6143
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006144 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006145
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006146 list_for_each_entry(dev, head, unreg_list) {
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006147 struct sk_buff *skb = NULL;
6148
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006149 /* Shutdown queueing discipline. */
6150 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006151
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006152
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006153 /* Notify protocols, that we are about to destroy
6154 this device. They should clean all the things.
6155 */
6156 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
6157
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006158 if (!dev->rtnl_link_ops ||
6159 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
6160 skb = rtmsg_ifinfo_build_skb(RTM_DELLINK, dev, ~0U,
6161 GFP_KERNEL);
6162
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006163 /*
6164 * Flush the unicast and multicast chains
6165 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006166 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00006167 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006168
6169 if (dev->netdev_ops->ndo_uninit)
6170 dev->netdev_ops->ndo_uninit(dev);
6171
Mahesh Bandewar395eea62014-12-03 13:46:24 -08006172 if (skb)
6173 rtmsg_ifinfo_send(skb, dev, GFP_KERNEL);
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07006174
Jiri Pirko9ff162a2013-01-03 22:48:49 +00006175 /* Notifier chain MUST detach us all upper devices. */
6176 WARN_ON(netdev_has_any_upper_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006177
6178 /* Remove entries from kobject tree */
6179 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00006180#ifdef CONFIG_XPS
6181 /* Remove XPS queueing entries */
6182 netif_reset_xps_queues_gt(dev, 0);
6183#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006184 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006185
Eric W. Biederman850a5452011-10-13 22:25:23 +00006186 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006187
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00006188 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006189 dev_put(dev);
6190}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006191
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006192static void rollback_registered(struct net_device *dev)
6193{
6194 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006195
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006196 list_add(&dev->unreg_list, &single);
6197 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00006198 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006199}
6200
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006201static netdev_features_t netdev_fix_features(struct net_device *dev,
6202 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07006203{
Michał Mirosław57422dc2011-01-22 12:14:12 +00006204 /* Fix illegal checksum combinations */
6205 if ((features & NETIF_F_HW_CSUM) &&
6206 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006207 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00006208 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
6209 }
6210
Herbert Xub63365a2008-10-23 01:11:29 -07006211 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00006212 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006213 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00006214 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07006215 }
6216
Pravin B Shelarec5f0612013-03-07 09:28:01 +00006217 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
6218 !(features & NETIF_F_IP_CSUM)) {
6219 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
6220 features &= ~NETIF_F_TSO;
6221 features &= ~NETIF_F_TSO_ECN;
6222 }
6223
6224 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
6225 !(features & NETIF_F_IPV6_CSUM)) {
6226 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
6227 features &= ~NETIF_F_TSO6;
6228 }
6229
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00006230 /* TSO ECN requires that TSO is present as well. */
6231 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
6232 features &= ~NETIF_F_TSO_ECN;
6233
Michał Mirosław212b5732011-02-15 16:59:16 +00006234 /* Software GSO depends on SG. */
6235 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006236 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00006237 features &= ~NETIF_F_GSO;
6238 }
6239
Michał Mirosławacd11302011-01-24 15:45:15 -08006240 /* UFO needs SG and checksumming */
Herbert Xub63365a2008-10-23 01:11:29 -07006241 if (features & NETIF_F_UFO) {
Michał Mirosław79032642010-11-30 06:38:00 +00006242 /* maybe split UFO into V4 and V6? */
6243 if (!((features & NETIF_F_GEN_CSUM) ||
6244 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))
6245 == (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006246 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08006247 "Dropping NETIF_F_UFO since no checksum offload features.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07006248 features &= ~NETIF_F_UFO;
6249 }
6250
6251 if (!(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04006252 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08006253 "Dropping NETIF_F_UFO since no NETIF_F_SG feature.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07006254 features &= ~NETIF_F_UFO;
6255 }
6256 }
6257
Jiri Pirkod0290212014-04-02 23:09:31 +02006258#ifdef CONFIG_NET_RX_BUSY_POLL
6259 if (dev->netdev_ops->ndo_busy_poll)
6260 features |= NETIF_F_BUSY_POLL;
6261 else
6262#endif
6263 features &= ~NETIF_F_BUSY_POLL;
6264
Herbert Xub63365a2008-10-23 01:11:29 -07006265 return features;
6266}
Herbert Xub63365a2008-10-23 01:11:29 -07006267
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006268int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00006269{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006270 netdev_features_t features;
Michał Mirosław5455c692011-02-15 16:59:17 +00006271 int err = 0;
6272
Michał Mirosław87267482011-04-12 09:56:38 +00006273 ASSERT_RTNL();
6274
Michał Mirosław5455c692011-02-15 16:59:17 +00006275 features = netdev_get_wanted_features(dev);
6276
6277 if (dev->netdev_ops->ndo_fix_features)
6278 features = dev->netdev_ops->ndo_fix_features(dev, features);
6279
6280 /* driver might be less strict about feature dependencies */
6281 features = netdev_fix_features(dev, features);
6282
6283 if (dev->features == features)
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006284 return 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00006285
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006286 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
6287 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00006288
6289 if (dev->netdev_ops->ndo_set_features)
6290 err = dev->netdev_ops->ndo_set_features(dev, features);
6291
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006292 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00006293 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006294 "set_features() failed (%d); wanted %pNF, left %pNF\n",
6295 err, &features, &dev->features);
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006296 return -1;
6297 }
6298
6299 if (!err)
6300 dev->features = features;
6301
6302 return 1;
6303}
6304
Michał Mirosławafe12cc2011-05-07 03:22:17 +00006305/**
6306 * netdev_update_features - recalculate device features
6307 * @dev: the device to check
6308 *
6309 * Recalculate dev->features set and send notifications if it
6310 * has changed. Should be called after driver or hardware dependent
6311 * conditions might have changed that influence the features.
6312 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006313void netdev_update_features(struct net_device *dev)
6314{
6315 if (__netdev_update_features(dev))
6316 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00006317}
6318EXPORT_SYMBOL(netdev_update_features);
6319
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00006321 * netdev_change_features - recalculate device features
6322 * @dev: the device to check
6323 *
6324 * Recalculate dev->features set and send notifications even
6325 * if they have not changed. Should be called instead of
6326 * netdev_update_features() if also dev->vlan_features might
6327 * have changed to allow the changes to be propagated to stacked
6328 * VLAN devices.
6329 */
6330void netdev_change_features(struct net_device *dev)
6331{
6332 __netdev_update_features(dev);
6333 netdev_features_change(dev);
6334}
6335EXPORT_SYMBOL(netdev_change_features);
6336
6337/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08006338 * netif_stacked_transfer_operstate - transfer operstate
6339 * @rootdev: the root or lower level device to transfer state from
6340 * @dev: the device to transfer operstate to
6341 *
6342 * Transfer operational state from root to device. This is normally
6343 * called when a stacking relationship exists between the root
6344 * device and the device(a leaf device).
6345 */
6346void netif_stacked_transfer_operstate(const struct net_device *rootdev,
6347 struct net_device *dev)
6348{
6349 if (rootdev->operstate == IF_OPER_DORMANT)
6350 netif_dormant_on(dev);
6351 else
6352 netif_dormant_off(dev);
6353
6354 if (netif_carrier_ok(rootdev)) {
6355 if (!netif_carrier_ok(dev))
6356 netif_carrier_on(dev);
6357 } else {
6358 if (netif_carrier_ok(dev))
6359 netif_carrier_off(dev);
6360 }
6361}
6362EXPORT_SYMBOL(netif_stacked_transfer_operstate);
6363
Michael Daltona953be52014-01-16 22:23:28 -08006364#ifdef CONFIG_SYSFS
Eric Dumazet1b4bf462010-09-23 17:26:35 +00006365static int netif_alloc_rx_queues(struct net_device *dev)
6366{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00006367 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00006368 struct netdev_rx_queue *rx;
Pankaj Gupta10595902015-01-12 11:41:28 +05306369 size_t sz = count * sizeof(*rx);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00006370
Tom Herbertbd25fa72010-10-18 18:00:16 +00006371 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00006372
Pankaj Gupta10595902015-01-12 11:41:28 +05306373 rx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
6374 if (!rx) {
6375 rx = vzalloc(sz);
6376 if (!rx)
6377 return -ENOMEM;
6378 }
Tom Herbertbd25fa72010-10-18 18:00:16 +00006379 dev->_rx = rx;
6380
Tom Herbertbd25fa72010-10-18 18:00:16 +00006381 for (i = 0; i < count; i++)
Tom Herbertfe822242010-11-09 10:47:38 +00006382 rx[i].dev = dev;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00006383 return 0;
6384}
Tom Herbertbf264142010-11-26 08:36:09 +00006385#endif
Eric Dumazet1b4bf462010-09-23 17:26:35 +00006386
Changli Gaoaa942102010-12-04 02:31:41 +00006387static void netdev_init_one_queue(struct net_device *dev,
6388 struct netdev_queue *queue, void *_unused)
6389{
6390 /* Initialize queue lock */
6391 spin_lock_init(&queue->_xmit_lock);
6392 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
6393 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00006394 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00006395 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00006396#ifdef CONFIG_BQL
6397 dql_init(&queue->dql, HZ);
6398#endif
Changli Gaoaa942102010-12-04 02:31:41 +00006399}
6400
Eric Dumazet60877a32013-06-20 01:15:51 -07006401static void netif_free_tx_queues(struct net_device *dev)
6402{
WANG Cong4cb28972014-06-02 15:55:22 -07006403 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07006404}
6405
Tom Herberte6484932010-10-18 18:04:39 +00006406static int netif_alloc_netdev_queues(struct net_device *dev)
6407{
6408 unsigned int count = dev->num_tx_queues;
6409 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07006410 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00006411
Eric Dumazet60877a32013-06-20 01:15:51 -07006412 BUG_ON(count < 1 || count > 0xffff);
Tom Herberte6484932010-10-18 18:04:39 +00006413
Eric Dumazet60877a32013-06-20 01:15:51 -07006414 tx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
6415 if (!tx) {
6416 tx = vzalloc(sz);
6417 if (!tx)
6418 return -ENOMEM;
6419 }
Tom Herberte6484932010-10-18 18:04:39 +00006420 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00006421
Tom Herberte6484932010-10-18 18:04:39 +00006422 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
6423 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00006424
6425 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00006426}
6427
Denys Vlasenkoa2029242015-05-11 21:17:53 +02006428void netif_tx_stop_all_queues(struct net_device *dev)
6429{
6430 unsigned int i;
6431
6432 for (i = 0; i < dev->num_tx_queues; i++) {
6433 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
6434 netif_tx_stop_queue(txq);
6435 }
6436}
6437EXPORT_SYMBOL(netif_tx_stop_all_queues);
6438
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08006439/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006440 * register_netdevice - register a network device
6441 * @dev: device to register
6442 *
6443 * Take a completed network device structure and add it to the kernel
6444 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
6445 * chain. 0 is returned on success. A negative errno code is returned
6446 * on a failure to set up the device, or if the name is a duplicate.
6447 *
6448 * Callers must hold the rtnl semaphore. You may want
6449 * register_netdev() instead of this.
6450 *
6451 * BUGS:
6452 * The locking appears insufficient to guarantee two parallel registers
6453 * will not get the same name.
6454 */
6455
6456int register_netdevice(struct net_device *dev)
6457{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006458 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006459 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460
6461 BUG_ON(dev_boot_phase);
6462 ASSERT_RTNL();
6463
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006464 might_sleep();
6465
Linus Torvalds1da177e2005-04-16 15:20:36 -07006466 /* When net_device's are persistent, this will be fatal. */
6467 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006468 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469
David S. Millerf1f28aa2008-07-15 00:08:33 -07006470 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07006471 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472
Gao feng828de4f2012-09-13 20:58:27 +00006473 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00006474 if (ret < 0)
6475 goto out;
6476
Linus Torvalds1da177e2005-04-16 15:20:36 -07006477 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006478 if (dev->netdev_ops->ndo_init) {
6479 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006480 if (ret) {
6481 if (ret > 0)
6482 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08006483 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006484 }
6485 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006486
Patrick McHardyf6469682013-04-19 02:04:27 +00006487 if (((dev->hw_features | dev->features) &
6488 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00006489 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
6490 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
6491 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
6492 ret = -EINVAL;
6493 goto err_uninit;
6494 }
6495
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00006496 ret = -EBUSY;
6497 if (!dev->ifindex)
6498 dev->ifindex = dev_new_index(net);
6499 else if (__dev_get_by_index(net, dev->ifindex))
6500 goto err_uninit;
6501
Michał Mirosław5455c692011-02-15 16:59:17 +00006502 /* Transfer changeable features to wanted_features and enable
6503 * software offloads (GSO and GRO).
6504 */
6505 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00006506 dev->features |= NETIF_F_SOFT_FEATURES;
6507 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006508
Michał Mirosław34324dc2011-11-15 15:29:55 +00006509 if (!(dev->flags & IFF_LOOPBACK)) {
6510 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07006511 }
6512
Michał Mirosław1180e7d2011-07-14 14:41:11 -07006513 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00006514 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07006515 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00006516
Pravin B Shelaree579672013-03-07 09:28:08 +00006517 /* Make NETIF_F_SG inheritable to tunnel devices.
6518 */
6519 dev->hw_enc_features |= NETIF_F_SG;
6520
Simon Horman0d89d202013-05-23 21:02:52 +00006521 /* Make NETIF_F_SG inheritable to MPLS.
6522 */
6523 dev->mpls_features |= NETIF_F_SG;
6524
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00006525 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
6526 ret = notifier_to_errno(ret);
6527 if (ret)
6528 goto err_uninit;
6529
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006530 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006531 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006532 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006533 dev->reg_state = NETREG_REGISTERED;
6534
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006535 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00006536
Linus Torvalds1da177e2005-04-16 15:20:36 -07006537 /*
6538 * Default initial state at registry is that the
6539 * device is present.
6540 */
6541
6542 set_bit(__LINK_STATE_PRESENT, &dev->state);
6543
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01006544 linkwatch_init_dev(dev);
6545
Linus Torvalds1da177e2005-04-16 15:20:36 -07006546 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006547 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006548 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04006549 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550
Jiri Pirko948b3372013-01-08 01:38:25 +00006551 /* If the device has permanent device address, driver should
6552 * set dev_addr and also addr_assign_type should be set to
6553 * NET_ADDR_PERM (default value).
6554 */
6555 if (dev->addr_assign_type == NET_ADDR_PERM)
6556 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
6557
Linus Torvalds1da177e2005-04-16 15:20:36 -07006558 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07006559 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07006560 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006561 if (ret) {
6562 rollback_registered(dev);
6563 dev->reg_state = NETREG_UNREGISTERED;
6564 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006565 /*
6566 * Prevent userspace races by waiting until the network
6567 * device is fully setup before sending notifications.
6568 */
Patrick McHardya2835762010-02-26 06:34:51 +00006569 if (!dev->rtnl_link_ops ||
6570 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006571 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006572
6573out:
6574 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006575
6576err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006577 if (dev->netdev_ops->ndo_uninit)
6578 dev->netdev_ops->ndo_uninit(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006579 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006580}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006581EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006582
6583/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006584 * init_dummy_netdev - init a dummy network device for NAPI
6585 * @dev: device to init
6586 *
6587 * This takes a network device structure and initialize the minimum
6588 * amount of fields so it can be used to schedule NAPI polls without
6589 * registering a full blown interface. This is to be used by drivers
6590 * that need to tie several hardware interfaces to a single NAPI
6591 * poll scheduler due to HW limitations.
6592 */
6593int init_dummy_netdev(struct net_device *dev)
6594{
6595 /* Clear everything. Note we don't initialize spinlocks
6596 * are they aren't supposed to be taken by any of the
6597 * NAPI code and this dummy netdev is supposed to be
6598 * only ever used for NAPI polls
6599 */
6600 memset(dev, 0, sizeof(struct net_device));
6601
6602 /* make sure we BUG if trying to hit standard
6603 * register/unregister code path
6604 */
6605 dev->reg_state = NETREG_DUMMY;
6606
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006607 /* NAPI wants this */
6608 INIT_LIST_HEAD(&dev->napi_list);
6609
6610 /* a dummy interface is started by default */
6611 set_bit(__LINK_STATE_PRESENT, &dev->state);
6612 set_bit(__LINK_STATE_START, &dev->state);
6613
Eric Dumazet29b44332010-10-11 10:22:12 +00006614 /* Note : We dont allocate pcpu_refcnt for dummy devices,
6615 * because users of this 'device' dont need to change
6616 * its refcount.
6617 */
6618
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006619 return 0;
6620}
6621EXPORT_SYMBOL_GPL(init_dummy_netdev);
6622
6623
6624/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006625 * register_netdev - register a network device
6626 * @dev: device to register
6627 *
6628 * Take a completed network device structure and add it to the kernel
6629 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
6630 * chain. 0 is returned on success. A negative errno code is returned
6631 * on a failure to set up the device, or if the name is a duplicate.
6632 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07006633 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07006634 * and expands the device name if you passed a format string to
6635 * alloc_netdev.
6636 */
6637int register_netdev(struct net_device *dev)
6638{
6639 int err;
6640
6641 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006642 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006643 rtnl_unlock();
6644 return err;
6645}
6646EXPORT_SYMBOL(register_netdev);
6647
Eric Dumazet29b44332010-10-11 10:22:12 +00006648int netdev_refcnt_read(const struct net_device *dev)
6649{
6650 int i, refcnt = 0;
6651
6652 for_each_possible_cpu(i)
6653 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
6654 return refcnt;
6655}
6656EXPORT_SYMBOL(netdev_refcnt_read);
6657
Ben Hutchings2c530402012-07-10 10:55:09 +00006658/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006659 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00006660 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661 *
6662 * This is called when unregistering network devices.
6663 *
6664 * Any protocol or device that holds a reference should register
6665 * for netdevice notification, and cleanup and put back the
6666 * reference if they receive an UNREGISTER event.
6667 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006668 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006669 */
6670static void netdev_wait_allrefs(struct net_device *dev)
6671{
6672 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00006673 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006674
Eric Dumazete014deb2009-11-17 05:59:21 +00006675 linkwatch_forget_dev(dev);
6676
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00006678 refcnt = netdev_refcnt_read(dev);
6679
6680 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006681 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08006682 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006683
6684 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07006685 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686
Eric Dumazet748e2d92012-08-22 21:50:59 +00006687 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006688 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00006689 rtnl_lock();
6690
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006691 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006692 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
6693 &dev->state)) {
6694 /* We must not have linkwatch events
6695 * pending on unregister. If this
6696 * happens, we simply run the queue
6697 * unscheduled, resulting in a noop
6698 * for this device.
6699 */
6700 linkwatch_run_queue();
6701 }
6702
Stephen Hemminger6756ae42006-03-20 22:23:58 -08006703 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006704
6705 rebroadcast_time = jiffies;
6706 }
6707
6708 msleep(250);
6709
Eric Dumazet29b44332010-10-11 10:22:12 +00006710 refcnt = netdev_refcnt_read(dev);
6711
Linus Torvalds1da177e2005-04-16 15:20:36 -07006712 if (time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006713 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
6714 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006715 warning_time = jiffies;
6716 }
6717 }
6718}
6719
6720/* The sequence is:
6721 *
6722 * rtnl_lock();
6723 * ...
6724 * register_netdevice(x1);
6725 * register_netdevice(x2);
6726 * ...
6727 * unregister_netdevice(y1);
6728 * unregister_netdevice(y2);
6729 * ...
6730 * rtnl_unlock();
6731 * free_netdev(y1);
6732 * free_netdev(y2);
6733 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07006734 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07006735 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006736 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07006737 * without deadlocking with linkwatch via keventd.
6738 * 2) Since we run with the RTNL semaphore not held, we can sleep
6739 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07006740 *
6741 * We must not return until all unregister events added during
6742 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006743 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006744void netdev_run_todo(void)
6745{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006746 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006747
Linus Torvalds1da177e2005-04-16 15:20:36 -07006748 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006749 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07006750
6751 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006752
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006753
6754 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00006755 if (!list_empty(&list))
6756 rcu_barrier();
6757
Linus Torvalds1da177e2005-04-16 15:20:36 -07006758 while (!list_empty(&list)) {
6759 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00006760 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006761 list_del(&dev->todo_list);
6762
Eric Dumazet748e2d92012-08-22 21:50:59 +00006763 rtnl_lock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006764 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Eric Dumazet748e2d92012-08-22 21:50:59 +00006765 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006766
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006767 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006768 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07006769 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006770 dump_stack();
6771 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006772 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006773
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006774 dev->reg_state = NETREG_UNREGISTERED;
6775
Changli Gao152102c2010-03-30 20:16:22 +00006776 on_each_cpu(flush_backlog, dev, 1);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07006777
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006778 netdev_wait_allrefs(dev);
6779
6780 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00006781 BUG_ON(netdev_refcnt_read(dev));
Salam Noureddine7866a622015-01-27 11:35:48 -08006782 BUG_ON(!list_empty(&dev->ptype_all));
6783 BUG_ON(!list_empty(&dev->ptype_specific));
Eric Dumazet33d480c2011-08-11 19:30:52 +00006784 WARN_ON(rcu_access_pointer(dev->ip_ptr));
6785 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
Ilpo Järvinen547b7922008-07-25 21:43:18 -07006786 WARN_ON(dev->dn_ptr);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006787
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006788 if (dev->destructor)
6789 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07006790
Eric W. Biederman50624c92013-09-23 21:19:49 -07006791 /* Report a network device has been unregistered */
6792 rtnl_lock();
6793 dev_net(dev)->dev_unreg_count--;
6794 __rtnl_unlock();
6795 wake_up(&netdev_unregistering_wq);
6796
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07006797 /* Free network device */
6798 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006800}
6801
Ben Hutchings3cfde792010-07-09 09:11:52 +00006802/* Convert net_device_stats to rtnl_link_stats64. They have the same
6803 * fields in the same order, with only the type differing.
6804 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006805void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
6806 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00006807{
6808#if BITS_PER_LONG == 64
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006809 BUILD_BUG_ON(sizeof(*stats64) != sizeof(*netdev_stats));
6810 memcpy(stats64, netdev_stats, sizeof(*stats64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00006811#else
6812 size_t i, n = sizeof(*stats64) / sizeof(u64);
6813 const unsigned long *src = (const unsigned long *)netdev_stats;
6814 u64 *dst = (u64 *)stats64;
6815
6816 BUILD_BUG_ON(sizeof(*netdev_stats) / sizeof(unsigned long) !=
6817 sizeof(*stats64) / sizeof(u64));
6818 for (i = 0; i < n; i++)
6819 dst[i] = src[i];
6820#endif
6821}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006822EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00006823
Eric Dumazetd83345a2009-11-16 03:36:51 +00006824/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006825 * dev_get_stats - get network device statistics
6826 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07006827 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006828 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00006829 * Get network statistics from device. Return @storage.
6830 * The device driver may provide its own method by setting
6831 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
6832 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006833 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00006834struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
6835 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00006836{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006837 const struct net_device_ops *ops = dev->netdev_ops;
6838
Eric Dumazet28172732010-07-07 14:58:56 -07006839 if (ops->ndo_get_stats64) {
6840 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006841 ops->ndo_get_stats64(dev, storage);
6842 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00006843 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006844 } else {
6845 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07006846 }
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006847 storage->rx_dropped += atomic_long_read(&dev->rx_dropped);
Eric Dumazet015f0682014-03-27 08:45:56 -07006848 storage->tx_dropped += atomic_long_read(&dev->tx_dropped);
Eric Dumazet28172732010-07-07 14:58:56 -07006849 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07006850}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006851EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07006852
Eric Dumazet24824a02010-10-02 06:11:55 +00006853struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07006854{
Eric Dumazet24824a02010-10-02 06:11:55 +00006855 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07006856
Eric Dumazet24824a02010-10-02 06:11:55 +00006857#ifdef CONFIG_NET_CLS_ACT
6858 if (queue)
6859 return queue;
6860 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
6861 if (!queue)
6862 return NULL;
6863 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet2ce1ee12015-02-04 13:37:44 -08006864 RCU_INIT_POINTER(queue->qdisc, &noop_qdisc);
Eric Dumazet24824a02010-10-02 06:11:55 +00006865 queue->qdisc_sleeping = &noop_qdisc;
6866 rcu_assign_pointer(dev->ingress_queue, queue);
6867#endif
6868 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07006869}
6870
Eric Dumazet2c60db02012-09-16 09:17:26 +00006871static const struct ethtool_ops default_ethtool_ops;
6872
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00006873void netdev_set_default_ethtool_ops(struct net_device *dev,
6874 const struct ethtool_ops *ops)
6875{
6876 if (dev->ethtool_ops == &default_ethtool_ops)
6877 dev->ethtool_ops = ops;
6878}
6879EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
6880
Eric Dumazet74d332c2013-10-30 13:10:44 -07006881void netdev_freemem(struct net_device *dev)
6882{
6883 char *addr = (char *)dev - dev->padded;
6884
WANG Cong4cb28972014-06-02 15:55:22 -07006885 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07006886}
6887
Linus Torvalds1da177e2005-04-16 15:20:36 -07006888/**
Tom Herbert36909ea2011-01-09 19:36:31 +00006889 * alloc_netdev_mqs - allocate network device
Tom Gundersenc835a672014-07-14 16:37:24 +02006890 * @sizeof_priv: size of private data to allocate space for
6891 * @name: device name format string
6892 * @name_assign_type: origin of device name
6893 * @setup: callback to initialize device
6894 * @txqs: the number of TX subqueues to allocate
6895 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07006896 *
6897 * Allocates a struct net_device with private data area for driver use
Li Zhong90e51ad2013-11-22 15:04:46 +08006898 * and performs basic initialization. Also allocates subqueue structs
Tom Herbert36909ea2011-01-09 19:36:31 +00006899 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006900 */
Tom Herbert36909ea2011-01-09 19:36:31 +00006901struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02006902 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00006903 void (*setup)(struct net_device *),
6904 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006905{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006906 struct net_device *dev;
Stephen Hemminger79439862008-07-21 13:28:44 -07006907 size_t alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006908 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006909
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07006910 BUG_ON(strlen(name) >= sizeof(dev->name));
6911
Tom Herbert36909ea2011-01-09 19:36:31 +00006912 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006913 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00006914 return NULL;
6915 }
6916
Michael Daltona953be52014-01-16 22:23:28 -08006917#ifdef CONFIG_SYSFS
Tom Herbert36909ea2011-01-09 19:36:31 +00006918 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006919 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00006920 return NULL;
6921 }
6922#endif
6923
David S. Millerfd2ea0a2008-07-17 01:56:23 -07006924 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07006925 if (sizeof_priv) {
6926 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006927 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07006928 alloc_size += sizeof_priv;
6929 }
6930 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006931 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006932
Eric Dumazet74d332c2013-10-30 13:10:44 -07006933 p = kzalloc(alloc_size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
6934 if (!p)
6935 p = vzalloc(alloc_size);
Joe Perches62b59422013-02-04 16:48:16 +00006936 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006937 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006938
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006939 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006940 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006941
Eric Dumazet29b44332010-10-11 10:22:12 +00006942 dev->pcpu_refcnt = alloc_percpu(int);
6943 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07006944 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006945
Linus Torvalds1da177e2005-04-16 15:20:36 -07006946 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00006947 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006948
Jiri Pirko22bedad32010-04-01 21:22:57 +00006949 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006950 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00006951
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09006952 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006953
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07006954 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00006955 dev->gso_max_segs = GSO_MAX_SEGS;
Eric Dumazetfcbeb972014-10-05 10:11:27 -07006956 dev->gso_min_segs = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006957
Herbert Xud565b0a2008-12-15 23:38:52 -08006958 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00006959 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006960 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00006961 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006962 INIT_LIST_HEAD(&dev->adj_list.upper);
6963 INIT_LIST_HEAD(&dev->adj_list.lower);
6964 INIT_LIST_HEAD(&dev->all_adj_list.upper);
6965 INIT_LIST_HEAD(&dev->all_adj_list.lower);
Salam Noureddine7866a622015-01-27 11:35:48 -08006966 INIT_LIST_HEAD(&dev->ptype_all);
6967 INIT_LIST_HEAD(&dev->ptype_specific);
Eric Dumazet02875872014-10-05 18:38:35 -07006968 dev->priv_flags = IFF_XMIT_DST_RELEASE | IFF_XMIT_DST_RELEASE_PERM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006969 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006970
6971 dev->num_tx_queues = txqs;
6972 dev->real_num_tx_queues = txqs;
6973 if (netif_alloc_netdev_queues(dev))
6974 goto free_all;
6975
Michael Daltona953be52014-01-16 22:23:28 -08006976#ifdef CONFIG_SYSFS
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006977 dev->num_rx_queues = rxqs;
6978 dev->real_num_rx_queues = rxqs;
6979 if (netif_alloc_rx_queues(dev))
6980 goto free_all;
6981#endif
6982
Linus Torvalds1da177e2005-04-16 15:20:36 -07006983 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02006984 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00006985 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00006986 if (!dev->ethtool_ops)
6987 dev->ethtool_ops = &default_ethtool_ops;
Pablo Neirae687ad62015-05-13 18:19:38 +02006988
6989 nf_hook_ingress_init(dev);
6990
Linus Torvalds1da177e2005-04-16 15:20:36 -07006991 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006992
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006993free_all:
6994 free_netdev(dev);
6995 return NULL;
6996
Eric Dumazet29b44332010-10-11 10:22:12 +00006997free_pcpu:
6998 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07006999free_dev:
7000 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00007001 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007002}
Tom Herbert36909ea2011-01-09 19:36:31 +00007003EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007004
7005/**
7006 * free_netdev - free network device
7007 * @dev: device
7008 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007009 * This function does the last stage of destroying an allocated device
7010 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007011 * If this is the last reference then it will be freed.
7012 */
7013void free_netdev(struct net_device *dev)
7014{
Herbert Xud565b0a2008-12-15 23:38:52 -08007015 struct napi_struct *p, *n;
7016
Eric Dumazet60877a32013-06-20 01:15:51 -07007017 netif_free_tx_queues(dev);
Michael Daltona953be52014-01-16 22:23:28 -08007018#ifdef CONFIG_SYSFS
Pankaj Gupta10595902015-01-12 11:41:28 +05307019 kvfree(dev->_rx);
Tom Herbertfe822242010-11-09 10:47:38 +00007020#endif
David S. Millere8a04642008-07-17 00:34:19 -07007021
Eric Dumazet33d480c2011-08-11 19:30:52 +00007022 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00007023
Jiri Pirkof001fde2009-05-05 02:48:28 +00007024 /* Flush device addresses */
7025 dev_addr_flush(dev);
7026
Herbert Xud565b0a2008-12-15 23:38:52 -08007027 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
7028 netif_napi_del(p);
7029
Eric Dumazet29b44332010-10-11 10:22:12 +00007030 free_percpu(dev->pcpu_refcnt);
7031 dev->pcpu_refcnt = NULL;
7032
Stephen Hemminger3041a062006-05-26 13:25:24 -07007033 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007034 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07007035 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007036 return;
7037 }
7038
7039 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
7040 dev->reg_state = NETREG_RELEASED;
7041
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07007042 /* will free via device release */
7043 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007044}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007045EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007046
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007047/**
7048 * synchronize_net - Synchronize with packet receive processing
7049 *
7050 * Wait for packets currently being received to be done.
7051 * Does not block later packets from starting.
7052 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09007053void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007054{
7055 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00007056 if (rtnl_is_locked())
7057 synchronize_rcu_expedited();
7058 else
7059 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007060}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07007061EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007062
7063/**
Eric Dumazet44a08732009-10-27 07:03:04 +00007064 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07007065 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00007066 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08007067 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07007068 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08007069 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00007070 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007071 *
7072 * Callers must hold the rtnl semaphore. You may want
7073 * unregister_netdev() instead of this.
7074 */
7075
Eric Dumazet44a08732009-10-27 07:03:04 +00007076void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007077{
Herbert Xua6620712007-12-12 19:21:56 -08007078 ASSERT_RTNL();
7079
Eric Dumazet44a08732009-10-27 07:03:04 +00007080 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00007081 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00007082 } else {
7083 rollback_registered(dev);
7084 /* Finish processing unregister after unlock */
7085 net_set_todo(dev);
7086 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007087}
Eric Dumazet44a08732009-10-27 07:03:04 +00007088EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007089
7090/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007091 * unregister_netdevice_many - unregister many devices
7092 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07007093 *
7094 * Note: As most callers use a stack allocated list_head,
7095 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007096 */
7097void unregister_netdevice_many(struct list_head *head)
7098{
7099 struct net_device *dev;
7100
7101 if (!list_empty(head)) {
7102 rollback_registered_many(head);
7103 list_for_each_entry(dev, head, unreg_list)
7104 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07007105 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007106 }
7107}
Eric Dumazet63c80992009-10-27 07:06:49 +00007108EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00007109
7110/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07007111 * unregister_netdev - remove device from the kernel
7112 * @dev: device
7113 *
7114 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08007115 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07007116 *
7117 * This is just a wrapper for unregister_netdevice that takes
7118 * the rtnl semaphore. In general you want to use this and not
7119 * unregister_netdevice.
7120 */
7121void unregister_netdev(struct net_device *dev)
7122{
7123 rtnl_lock();
7124 unregister_netdevice(dev);
7125 rtnl_unlock();
7126}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007127EXPORT_SYMBOL(unregister_netdev);
7128
Eric W. Biedermance286d32007-09-12 13:53:49 +02007129/**
7130 * dev_change_net_namespace - move device to different nethost namespace
7131 * @dev: device
7132 * @net: network namespace
7133 * @pat: If not NULL name pattern to try if the current device name
7134 * is already taken in the destination network namespace.
7135 *
7136 * This function shuts down a device interface and moves it
7137 * to a new network namespace. On success 0 is returned, on
7138 * a failure a netagive errno code is returned.
7139 *
7140 * Callers must hold the rtnl semaphore.
7141 */
7142
7143int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
7144{
Eric W. Biedermance286d32007-09-12 13:53:49 +02007145 int err;
7146
7147 ASSERT_RTNL();
7148
7149 /* Don't allow namespace local devices to be moved. */
7150 err = -EINVAL;
7151 if (dev->features & NETIF_F_NETNS_LOCAL)
7152 goto out;
7153
7154 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02007155 if (dev->reg_state != NETREG_REGISTERED)
7156 goto out;
7157
7158 /* Get out if there is nothing todo */
7159 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09007160 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02007161 goto out;
7162
7163 /* Pick the destination device name, and ensure
7164 * we can use it in the destination network namespace.
7165 */
7166 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00007167 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007168 /* We get here if we can't use the current device name */
7169 if (!pat)
7170 goto out;
Gao feng828de4f2012-09-13 20:58:27 +00007171 if (dev_get_valid_name(net, dev, pat) < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02007172 goto out;
7173 }
7174
7175 /*
7176 * And now a mini version of register_netdevice unregister_netdevice.
7177 */
7178
7179 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07007180 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007181
7182 /* And unlink it from device chain */
7183 err = -ENODEV;
7184 unlist_netdevice(dev);
7185
7186 synchronize_net();
7187
7188 /* Shutdown queueing discipline. */
7189 dev_shutdown(dev);
7190
7191 /* Notify protocols, that we are about to destroy
7192 this device. They should clean all the things.
David Lamparter3b27e102010-09-17 03:22:19 +00007193
7194 Note that dev->reg_state stays at NETREG_REGISTERED.
7195 This is wanted because this way 8021q and macvlan know
7196 the device is just moving and can keep their slaves up.
Eric W. Biedermance286d32007-09-12 13:53:49 +02007197 */
7198 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00007199 rcu_barrier();
7200 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007201 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007202
7203 /*
7204 * Flush the unicast and multicast chains
7205 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00007206 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00007207 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007208
Serge Hallyn4e66ae22012-12-03 16:17:12 +00007209 /* Send a netdev-removed uevent to the old namespace */
7210 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007211 netdev_adjacent_del_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00007212
Eric W. Biedermance286d32007-09-12 13:53:49 +02007213 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09007214 dev_net_set(dev, net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007215
Eric W. Biedermance286d32007-09-12 13:53:49 +02007216 /* If there is an ifindex conflict assign a new one */
Nicolas Dichtel7a66bbc2015-04-02 17:07:09 +02007217 if (__dev_get_by_index(net, dev->ifindex))
Eric W. Biedermance286d32007-09-12 13:53:49 +02007218 dev->ifindex = dev_new_index(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007219
Serge Hallyn4e66ae22012-12-03 16:17:12 +00007220 /* Send a netdev-add uevent to the new namespace */
7221 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
Alexander Y. Fomichev4c754312014-08-25 16:26:45 +04007222 netdev_adjacent_add_links(dev);
Serge Hallyn4e66ae22012-12-03 16:17:12 +00007223
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007224 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07007225 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007226 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007227
7228 /* Add the device back in the hashes */
7229 list_netdevice(dev);
7230
7231 /* Notify protocols, that a new device appeared. */
7232 call_netdevice_notifiers(NETDEV_REGISTER, dev);
7233
Eric W. Biedermand90a9092009-12-12 22:11:15 +00007234 /*
7235 * Prevent userspace races by waiting until the network
7236 * device is fully setup before sending notifications.
7237 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07007238 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00007239
Eric W. Biedermance286d32007-09-12 13:53:49 +02007240 synchronize_net();
7241 err = 0;
7242out:
7243 return err;
7244}
Johannes Berg463d0182009-07-14 00:33:35 +02007245EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007246
Linus Torvalds1da177e2005-04-16 15:20:36 -07007247static int dev_cpu_callback(struct notifier_block *nfb,
7248 unsigned long action,
7249 void *ocpu)
7250{
7251 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007252 struct sk_buff *skb;
7253 unsigned int cpu, oldcpu = (unsigned long)ocpu;
7254 struct softnet_data *sd, *oldsd;
7255
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07007256 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007257 return NOTIFY_OK;
7258
7259 local_irq_disable();
7260 cpu = smp_processor_id();
7261 sd = &per_cpu(softnet_data, cpu);
7262 oldsd = &per_cpu(softnet_data, oldcpu);
7263
7264 /* Find end of our completion_queue. */
7265 list_skb = &sd->completion_queue;
7266 while (*list_skb)
7267 list_skb = &(*list_skb)->next;
7268 /* Append completion queue from offline CPU. */
7269 *list_skb = oldsd->completion_queue;
7270 oldsd->completion_queue = NULL;
7271
Linus Torvalds1da177e2005-04-16 15:20:36 -07007272 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00007273 if (oldsd->output_queue) {
7274 *sd->output_queue_tailp = oldsd->output_queue;
7275 sd->output_queue_tailp = oldsd->output_queue_tailp;
7276 oldsd->output_queue = NULL;
7277 oldsd->output_queue_tailp = &oldsd->output_queue;
7278 }
Eric Dumazetac64da02015-01-15 17:04:22 -08007279 /* Append NAPI poll list from offline CPU, with one exception :
7280 * process_backlog() must be called by cpu owning percpu backlog.
7281 * We properly handle process_queue & input_pkt_queue later.
7282 */
7283 while (!list_empty(&oldsd->poll_list)) {
7284 struct napi_struct *napi = list_first_entry(&oldsd->poll_list,
7285 struct napi_struct,
7286 poll_list);
7287
7288 list_del_init(&napi->poll_list);
7289 if (napi->poll == process_backlog)
7290 napi->state = 0;
7291 else
7292 ____napi_schedule(sd, napi);
Heiko Carstens264524d2011-06-06 20:50:03 +00007293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007294
7295 raise_softirq_irqoff(NET_TX_SOFTIRQ);
7296 local_irq_enable();
7297
7298 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00007299 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08007300 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00007301 input_queue_head_incr(oldsd);
7302 }
Eric Dumazetac64da02015-01-15 17:04:22 -08007303 while ((skb = skb_dequeue(&oldsd->input_pkt_queue))) {
Eric Dumazet91e83132015-02-05 14:58:14 -08007304 netif_rx_ni(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00007305 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07007306 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07007307
7308 return NOTIFY_OK;
7309}
Linus Torvalds1da177e2005-04-16 15:20:36 -07007310
7311
Herbert Xu7f353bf2007-08-10 15:47:58 -07007312/**
Herbert Xub63365a2008-10-23 01:11:29 -07007313 * netdev_increment_features - increment feature set by one
7314 * @all: current feature set
7315 * @one: new feature set
7316 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07007317 *
7318 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07007319 * @one to the master device with current feature set @all. Will not
7320 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07007321 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00007322netdev_features_t netdev_increment_features(netdev_features_t all,
7323 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07007324{
Michał Mirosław1742f182011-04-22 06:31:16 +00007325 if (mask & NETIF_F_GEN_CSUM)
7326 mask |= NETIF_F_ALL_CSUM;
7327 mask |= NETIF_F_VLAN_CHALLENGED;
7328
7329 all |= one & (NETIF_F_ONE_FOR_ALL|NETIF_F_ALL_CSUM) & mask;
7330 all &= one | ~NETIF_F_ALL_FOR_ALL;
7331
Michał Mirosław1742f182011-04-22 06:31:16 +00007332 /* If one device supports hw checksumming, set for all. */
7333 if (all & NETIF_F_GEN_CSUM)
7334 all &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_GEN_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07007335
7336 return all;
7337}
Herbert Xub63365a2008-10-23 01:11:29 -07007338EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07007339
Baruch Siach430f03c2013-06-02 20:43:55 +00007340static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07007341{
7342 int i;
7343 struct hlist_head *hash;
7344
7345 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
7346 if (hash != NULL)
7347 for (i = 0; i < NETDEV_HASHENTRIES; i++)
7348 INIT_HLIST_HEAD(&hash[i]);
7349
7350 return hash;
7351}
7352
Eric W. Biederman881d9662007-09-17 11:56:21 -07007353/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07007354static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07007355{
Rustad, Mark D734b6542012-07-18 09:06:07 +00007356 if (net != &init_net)
7357 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07007358
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07007359 net->dev_name_head = netdev_create_hash();
7360 if (net->dev_name_head == NULL)
7361 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07007362
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07007363 net->dev_index_head = netdev_create_hash();
7364 if (net->dev_index_head == NULL)
7365 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07007366
7367 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07007368
7369err_idx:
7370 kfree(net->dev_name_head);
7371err_name:
7372 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07007373}
7374
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007375/**
7376 * netdev_drivername - network driver for the device
7377 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07007378 *
7379 * Determine network driver for device.
7380 */
David S. Miller3019de12011-06-06 16:41:33 -07007381const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07007382{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07007383 const struct device_driver *driver;
7384 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07007385 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07007386
7387 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07007388 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07007389 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07007390
7391 driver = parent->driver;
7392 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07007393 return driver->name;
7394 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07007395}
7396
Joe Perches6ea754e2014-09-22 11:10:50 -07007397static void __netdev_printk(const char *level, const struct net_device *dev,
7398 struct va_format *vaf)
Joe Perches256df2f2010-06-27 01:02:35 +00007399{
Joe Perchesb004ff42012-09-12 20:12:19 -07007400 if (dev && dev->dev.parent) {
Joe Perches6ea754e2014-09-22 11:10:50 -07007401 dev_printk_emit(level[1] - '0',
7402 dev->dev.parent,
7403 "%s %s %s%s: %pV",
7404 dev_driver_string(dev->dev.parent),
7405 dev_name(dev->dev.parent),
7406 netdev_name(dev), netdev_reg_state(dev),
7407 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07007408 } else if (dev) {
Joe Perches6ea754e2014-09-22 11:10:50 -07007409 printk("%s%s%s: %pV",
7410 level, netdev_name(dev), netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07007411 } else {
Joe Perches6ea754e2014-09-22 11:10:50 -07007412 printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07007413 }
Joe Perches256df2f2010-06-27 01:02:35 +00007414}
7415
Joe Perches6ea754e2014-09-22 11:10:50 -07007416void netdev_printk(const char *level, const struct net_device *dev,
7417 const char *format, ...)
Joe Perches256df2f2010-06-27 01:02:35 +00007418{
7419 struct va_format vaf;
7420 va_list args;
Joe Perches256df2f2010-06-27 01:02:35 +00007421
7422 va_start(args, format);
7423
7424 vaf.fmt = format;
7425 vaf.va = &args;
7426
Joe Perches6ea754e2014-09-22 11:10:50 -07007427 __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07007428
Joe Perches256df2f2010-06-27 01:02:35 +00007429 va_end(args);
Joe Perches256df2f2010-06-27 01:02:35 +00007430}
7431EXPORT_SYMBOL(netdev_printk);
7432
7433#define define_netdev_printk_level(func, level) \
Joe Perches6ea754e2014-09-22 11:10:50 -07007434void func(const struct net_device *dev, const char *fmt, ...) \
Joe Perches256df2f2010-06-27 01:02:35 +00007435{ \
Joe Perches256df2f2010-06-27 01:02:35 +00007436 struct va_format vaf; \
7437 va_list args; \
7438 \
7439 va_start(args, fmt); \
7440 \
7441 vaf.fmt = fmt; \
7442 vaf.va = &args; \
7443 \
Joe Perches6ea754e2014-09-22 11:10:50 -07007444 __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07007445 \
Joe Perches256df2f2010-06-27 01:02:35 +00007446 va_end(args); \
Joe Perches256df2f2010-06-27 01:02:35 +00007447} \
7448EXPORT_SYMBOL(func);
7449
7450define_netdev_printk_level(netdev_emerg, KERN_EMERG);
7451define_netdev_printk_level(netdev_alert, KERN_ALERT);
7452define_netdev_printk_level(netdev_crit, KERN_CRIT);
7453define_netdev_printk_level(netdev_err, KERN_ERR);
7454define_netdev_printk_level(netdev_warn, KERN_WARNING);
7455define_netdev_printk_level(netdev_notice, KERN_NOTICE);
7456define_netdev_printk_level(netdev_info, KERN_INFO);
7457
Pavel Emelyanov46650792007-10-08 20:38:39 -07007458static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07007459{
7460 kfree(net->dev_name_head);
7461 kfree(net->dev_index_head);
7462}
7463
Denis V. Lunev022cbae2007-11-13 03:23:50 -08007464static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07007465 .init = netdev_init,
7466 .exit = netdev_exit,
7467};
7468
Pavel Emelyanov46650792007-10-08 20:38:39 -07007469static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02007470{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007471 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02007472 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007473 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02007474 * initial network namespace
7475 */
7476 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007477 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007478 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007479 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02007480
7481 /* Ignore unmoveable devices (i.e. loopback) */
7482 if (dev->features & NETIF_F_NETNS_LOCAL)
7483 continue;
7484
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007485 /* Leave virtual devices for the generic cleanup */
7486 if (dev->rtnl_link_ops)
7487 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08007488
Lucas De Marchi25985ed2011-03-30 22:57:33 -03007489 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007490 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
7491 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007492 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007493 pr_emerg("%s: failed to move %s to init_net: %d\n",
7494 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007495 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02007496 }
7497 }
7498 rtnl_unlock();
7499}
7500
Eric W. Biederman50624c92013-09-23 21:19:49 -07007501static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
7502{
7503 /* Return with the rtnl_lock held when there are no network
7504 * devices unregistering in any network namespace in net_list.
7505 */
7506 struct net *net;
7507 bool unregistering;
Peter Zijlstraff960a72014-10-29 17:04:56 +01007508 DEFINE_WAIT_FUNC(wait, woken_wake_function);
Eric W. Biederman50624c92013-09-23 21:19:49 -07007509
Peter Zijlstraff960a72014-10-29 17:04:56 +01007510 add_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07007511 for (;;) {
Eric W. Biederman50624c92013-09-23 21:19:49 -07007512 unregistering = false;
7513 rtnl_lock();
7514 list_for_each_entry(net, net_list, exit_list) {
7515 if (net->dev_unreg_count > 0) {
7516 unregistering = true;
7517 break;
7518 }
7519 }
7520 if (!unregistering)
7521 break;
7522 __rtnl_unlock();
Peter Zijlstraff960a72014-10-29 17:04:56 +01007523
7524 wait_woken(&wait, TASK_UNINTERRUPTIBLE, MAX_SCHEDULE_TIMEOUT);
Eric W. Biederman50624c92013-09-23 21:19:49 -07007525 }
Peter Zijlstraff960a72014-10-29 17:04:56 +01007526 remove_wait_queue(&netdev_unregistering_wq, &wait);
Eric W. Biederman50624c92013-09-23 21:19:49 -07007527}
7528
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007529static void __net_exit default_device_exit_batch(struct list_head *net_list)
7530{
7531 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04007532 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007533 * Do this across as many network namespaces as possible to
7534 * improve batching efficiency.
7535 */
7536 struct net_device *dev;
7537 struct net *net;
7538 LIST_HEAD(dev_kill_list);
7539
Eric W. Biederman50624c92013-09-23 21:19:49 -07007540 /* To prevent network device cleanup code from dereferencing
7541 * loopback devices or network devices that have been freed
7542 * wait here for all pending unregistrations to complete,
7543 * before unregistring the loopback device and allowing the
7544 * network namespace be freed.
7545 *
7546 * The netdev todo list containing all network devices
7547 * unregistrations that happen in default_device_exit_batch
7548 * will run in the rtnl_unlock() at the end of
7549 * default_device_exit_batch.
7550 */
7551 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007552 list_for_each_entry(net, net_list, exit_list) {
7553 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02007554 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007555 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
7556 else
7557 unregister_netdevice_queue(dev, &dev_kill_list);
7558 }
7559 }
7560 unregister_netdevice_many(&dev_kill_list);
7561 rtnl_unlock();
7562}
7563
Denis V. Lunev022cbae2007-11-13 03:23:50 -08007564static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007565 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007566 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02007567};
7568
Linus Torvalds1da177e2005-04-16 15:20:36 -07007569/*
7570 * Initialize the DEV module. At boot time this walks the device list and
7571 * unhooks any devices that fail to initialise (normally hardware not
7572 * present) and leaves us with a valid list of present and active devices.
7573 *
7574 */
7575
7576/*
7577 * This is called single threaded during boot, so no need
7578 * to take the rtnl semaphore.
7579 */
7580static int __init net_dev_init(void)
7581{
7582 int i, rc = -ENOMEM;
7583
7584 BUG_ON(!dev_boot_phase);
7585
Linus Torvalds1da177e2005-04-16 15:20:36 -07007586 if (dev_proc_init())
7587 goto out;
7588
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007589 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07007590 goto out;
7591
7592 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08007593 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007594 INIT_LIST_HEAD(&ptype_base[i]);
7595
Vlad Yasevich62532da2012-11-15 08:49:10 +00007596 INIT_LIST_HEAD(&offload_base);
7597
Eric W. Biederman881d9662007-09-17 11:56:21 -07007598 if (register_pernet_subsys(&netdev_net_ops))
7599 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007600
7601 /*
7602 * Initialise the packet receive queues.
7603 */
7604
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07007605 for_each_possible_cpu(i) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007606 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007607
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007608 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07007609 skb_queue_head_init(&sd->process_queue);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007610 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00007611 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00007612#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007613 sd->csd.func = rps_trigger_softirq;
7614 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007615 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07007616#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00007617
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007618 sd->backlog.poll = process_backlog;
7619 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007620 }
7621
Linus Torvalds1da177e2005-04-16 15:20:36 -07007622 dev_boot_phase = 0;
7623
Eric W. Biederman505d4f72008-11-07 22:54:20 -08007624 /* The loopback device is special if any other network devices
7625 * is present in a network namespace the loopback device must
7626 * be present. Since we now dynamically allocate and free the
7627 * loopback device ensure this invariant is maintained by
7628 * keeping the loopback device as the first device on the
7629 * list of network devices. Ensuring the loopback devices
7630 * is the first device that appears and the last network device
7631 * that disappears.
7632 */
7633 if (register_pernet_device(&loopback_net_ops))
7634 goto out;
7635
7636 if (register_pernet_device(&default_device_ops))
7637 goto out;
7638
Carlos R. Mafra962cf362008-05-15 11:15:37 -03007639 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
7640 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007641
7642 hotcpu_notifier(dev_cpu_callback, 0);
7643 dst_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007644 rc = 0;
7645out:
7646 return rc;
7647}
7648
7649subsys_initcall(net_dev_init);