blob: e1b7cfaccd65243fea705868e6a7f8d784acef72 [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>
David S. Miller8f0f2222008-07-15 03:47:03 -0700121#include <linux/ipv6.h>
122#include <linux/in.h>
David S. Millerb6b2fed2008-07-21 09:48:06 -0700123#include <linux/jhash.h>
124#include <linux/random.h>
David S. Miller9cbc1cb2009-06-15 03:02:23 -0700125#include <trace/events/napi.h>
Koki Sanagicf66ba52010-08-23 18:45:02 +0900126#include <trace/events/net.h>
Koki Sanagi07dc22e2010-08-23 18:46:12 +0900127#include <trace/events/skb.h>
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +0000128#include <linux/pci.h>
Stephen Rothwellcaeda9b2010-09-16 21:39:16 -0700129#include <linux/inetdevice.h>
Ben Hutchingsc4454772011-01-19 11:03:53 +0000130#include <linux/cpu_rmap.h>
Ingo Molnarc5905af2012-02-24 08:31:31 +0100131#include <linux/static_key.h>
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300132#include <linux/hashtable.h>
Eric Dumazet60877a32013-06-20 01:15:51 -0700133#include <linux/vmalloc.h>
Michal Kubeček529d0482013-11-15 06:18:50 +0100134#include <linux/if_macvlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Pavel Emelyanov342709e2007-10-23 21:14:45 -0700136#include "net-sysfs.h"
137
Herbert Xud565b0a2008-12-15 23:38:52 -0800138/* Instead of increasing this, you should create a hash table. */
139#define MAX_GRO_SKBS 8
140
Herbert Xu5d38a072009-01-04 16:13:40 -0800141/* This should be increased if a protocol with a bigger head is added. */
142#define GRO_MAX_HEAD (MAX_HEADER + 128)
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144static DEFINE_SPINLOCK(ptype_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000145static DEFINE_SPINLOCK(offload_lock);
Cong Wang900ff8c2013-02-18 19:20:33 +0000146struct list_head ptype_base[PTYPE_HASH_SIZE] __read_mostly;
147struct list_head ptype_all __read_mostly; /* Taps */
Vlad Yasevich62532da2012-11-15 08:49:10 +0000148static struct list_head offload_base __read_mostly;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000150static int netif_rx_internal(struct sk_buff *skb);
Loic Prylli5495119462014-07-01 21:39:43 -0700151static int call_netdevice_notifiers_info(unsigned long val,
152 struct net_device *dev,
153 struct netdev_notifier_info *info);
Ben Hutchingsae78dbf2014-01-10 22:17:24 +0000154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/*
Pavel Emelianov7562f872007-05-03 15:13:45 -0700156 * The @dev_base_head list is protected by @dev_base_lock and the rtnl
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 * semaphore.
158 *
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800159 * Pure readers hold dev_base_lock for reading, or rcu_read_lock()
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 *
161 * Writers must hold the rtnl semaphore while they loop through the
Pavel Emelianov7562f872007-05-03 15:13:45 -0700162 * dev_base_head list, and hold dev_base_lock for writing when they do the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 * actual updates. This allows pure readers to access the list even
164 * while a writer is preparing to update it.
165 *
166 * To put it another way, dev_base_lock is held for writing only to
167 * protect against pure readers; the rtnl semaphore provides the
168 * protection against other writers.
169 *
170 * See, for example usages, register_netdevice() and
171 * unregister_netdevice(), which must be called with the rtnl
172 * semaphore held.
173 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174DEFINE_RWLOCK(dev_base_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175EXPORT_SYMBOL(dev_base_lock);
176
Eliezer Tamiraf12fa62013-06-10 11:39:41 +0300177/* protects napi_hash addition/deletion and napi_gen_id */
178static DEFINE_SPINLOCK(napi_hash_lock);
179
180static unsigned int napi_gen_id;
181static DEFINE_HASHTABLE(napi_hash, 8);
182
Thomas Gleixner18afa4b2013-07-23 16:13:17 +0200183static seqcount_t devnet_rename_seq;
Brian Haleyc91f6df2012-11-26 05:21:08 +0000184
Thomas Graf4e985ad2011-06-21 03:11:20 +0000185static inline void dev_base_seq_inc(struct net *net)
186{
187 while (++net->dev_base_seq == 0);
188}
189
Eric W. Biederman881d9662007-09-17 11:56:21 -0700190static inline struct hlist_head *dev_name_hash(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191{
Eric Dumazet95c96172012-04-15 05:58:06 +0000192 unsigned int hash = full_name_hash(name, strnlen(name, IFNAMSIZ));
193
stephen hemminger08e98972009-11-10 07:20:34 +0000194 return &net->dev_name_head[hash_32(hash, NETDEV_HASHBITS)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
Eric W. Biederman881d9662007-09-17 11:56:21 -0700197static inline struct hlist_head *dev_index_hash(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
Eric Dumazet7c28bd02009-10-24 06:13:17 -0700199 return &net->dev_index_head[ifindex & (NETDEV_HASHENTRIES - 1)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200}
201
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000202static inline void rps_lock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000203{
204#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000205 spin_lock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000206#endif
207}
208
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000209static inline void rps_unlock(struct softnet_data *sd)
Changli Gao152102c2010-03-30 20:16:22 +0000210{
211#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +0000212 spin_unlock(&sd->input_pkt_queue.lock);
Changli Gao152102c2010-03-30 20:16:22 +0000213#endif
214}
215
Eric W. Biedermance286d32007-09-12 13:53:49 +0200216/* Device list insertion */
dingtianhong53759be2013-04-17 22:17:50 +0000217static void list_netdevice(struct net_device *dev)
Eric W. Biedermance286d32007-09-12 13:53:49 +0200218{
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +0900219 struct net *net = dev_net(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200220
221 ASSERT_RTNL();
222
223 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800224 list_add_tail_rcu(&dev->dev_list, &net->dev_base_head);
Eric Dumazet72c95282009-10-30 07:11:27 +0000225 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000226 hlist_add_head_rcu(&dev->index_hlist,
227 dev_index_hash(net, dev->ifindex));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200228 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000229
230 dev_base_seq_inc(net);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200231}
232
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000233/* Device list removal
234 * caller must respect a RCU grace period before freeing/reusing dev
235 */
Eric W. Biedermance286d32007-09-12 13:53:49 +0200236static void unlist_netdevice(struct net_device *dev)
237{
238 ASSERT_RTNL();
239
240 /* Unlink dev from the device chain */
241 write_lock_bh(&dev_base_lock);
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800242 list_del_rcu(&dev->dev_list);
Eric Dumazet72c95282009-10-30 07:11:27 +0000243 hlist_del_rcu(&dev->name_hlist);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000244 hlist_del_rcu(&dev->index_hlist);
Eric W. Biedermance286d32007-09-12 13:53:49 +0200245 write_unlock_bh(&dev_base_lock);
Thomas Graf4e985ad2011-06-21 03:11:20 +0000246
247 dev_base_seq_inc(dev_net(dev));
Eric W. Biedermance286d32007-09-12 13:53:49 +0200248}
249
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250/*
251 * Our notifier list
252 */
253
Alan Sternf07d5b92006-05-09 15:23:03 -0700254static RAW_NOTIFIER_HEAD(netdev_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
256/*
257 * Device drivers call our routines to queue packets here. We empty the
258 * queue in the local softnet handler.
259 */
Stephen Hemmingerbea33482007-10-03 16:41:36 -0700260
Eric Dumazet9958da02010-04-17 04:17:02 +0000261DEFINE_PER_CPU_ALIGNED(struct softnet_data, softnet_data);
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700262EXPORT_PER_CPU_SYMBOL(softnet_data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
David S. Millercf508b12008-07-22 14:16:42 -0700264#ifdef CONFIG_LOCKDEP
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700265/*
David S. Millerc773e842008-07-08 23:13:53 -0700266 * register_netdevice() inits txq->_xmit_lock and sets lockdep class
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700267 * according to dev->type
268 */
269static const unsigned short netdev_lock_type[] =
270 {ARPHRD_NETROM, ARPHRD_ETHER, ARPHRD_EETHER, ARPHRD_AX25,
271 ARPHRD_PRONET, ARPHRD_CHAOS, ARPHRD_IEEE802, ARPHRD_ARCNET,
272 ARPHRD_APPLETLK, ARPHRD_DLCI, ARPHRD_ATM, ARPHRD_METRICOM,
273 ARPHRD_IEEE1394, ARPHRD_EUI64, ARPHRD_INFINIBAND, ARPHRD_SLIP,
274 ARPHRD_CSLIP, ARPHRD_SLIP6, ARPHRD_CSLIP6, ARPHRD_RSRVD,
275 ARPHRD_ADAPT, ARPHRD_ROSE, ARPHRD_X25, ARPHRD_HWX25,
276 ARPHRD_PPP, ARPHRD_CISCO, ARPHRD_LAPB, ARPHRD_DDCMP,
277 ARPHRD_RAWHDLC, ARPHRD_TUNNEL, ARPHRD_TUNNEL6, ARPHRD_FRAD,
278 ARPHRD_SKIP, ARPHRD_LOOPBACK, ARPHRD_LOCALTLK, ARPHRD_FDDI,
279 ARPHRD_BIF, ARPHRD_SIT, ARPHRD_IPDDP, ARPHRD_IPGRE,
280 ARPHRD_PIMREG, ARPHRD_HIPPI, ARPHRD_ASH, ARPHRD_ECONET,
281 ARPHRD_IRDA, ARPHRD_FCPP, ARPHRD_FCAL, ARPHRD_FCPL,
Paul Gortmaker211ed862012-05-10 17:14:35 -0400282 ARPHRD_FCFABRIC, ARPHRD_IEEE80211, ARPHRD_IEEE80211_PRISM,
283 ARPHRD_IEEE80211_RADIOTAP, ARPHRD_PHONET, ARPHRD_PHONET_PIPE,
284 ARPHRD_IEEE802154, ARPHRD_VOID, ARPHRD_NONE};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700285
Jan Engelhardt36cbd3d2009-08-05 10:42:58 -0700286static const char *const netdev_lock_name[] =
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700287 {"_xmit_NETROM", "_xmit_ETHER", "_xmit_EETHER", "_xmit_AX25",
288 "_xmit_PRONET", "_xmit_CHAOS", "_xmit_IEEE802", "_xmit_ARCNET",
289 "_xmit_APPLETLK", "_xmit_DLCI", "_xmit_ATM", "_xmit_METRICOM",
290 "_xmit_IEEE1394", "_xmit_EUI64", "_xmit_INFINIBAND", "_xmit_SLIP",
291 "_xmit_CSLIP", "_xmit_SLIP6", "_xmit_CSLIP6", "_xmit_RSRVD",
292 "_xmit_ADAPT", "_xmit_ROSE", "_xmit_X25", "_xmit_HWX25",
293 "_xmit_PPP", "_xmit_CISCO", "_xmit_LAPB", "_xmit_DDCMP",
294 "_xmit_RAWHDLC", "_xmit_TUNNEL", "_xmit_TUNNEL6", "_xmit_FRAD",
295 "_xmit_SKIP", "_xmit_LOOPBACK", "_xmit_LOCALTLK", "_xmit_FDDI",
296 "_xmit_BIF", "_xmit_SIT", "_xmit_IPDDP", "_xmit_IPGRE",
297 "_xmit_PIMREG", "_xmit_HIPPI", "_xmit_ASH", "_xmit_ECONET",
298 "_xmit_IRDA", "_xmit_FCPP", "_xmit_FCAL", "_xmit_FCPL",
Paul Gortmaker211ed862012-05-10 17:14:35 -0400299 "_xmit_FCFABRIC", "_xmit_IEEE80211", "_xmit_IEEE80211_PRISM",
300 "_xmit_IEEE80211_RADIOTAP", "_xmit_PHONET", "_xmit_PHONET_PIPE",
301 "_xmit_IEEE802154", "_xmit_VOID", "_xmit_NONE"};
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700302
303static struct lock_class_key netdev_xmit_lock_key[ARRAY_SIZE(netdev_lock_type)];
David S. Millercf508b12008-07-22 14:16:42 -0700304static struct lock_class_key netdev_addr_lock_key[ARRAY_SIZE(netdev_lock_type)];
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700305
306static inline unsigned short netdev_lock_pos(unsigned short dev_type)
307{
308 int i;
309
310 for (i = 0; i < ARRAY_SIZE(netdev_lock_type); i++)
311 if (netdev_lock_type[i] == dev_type)
312 return i;
313 /* the last key is used by default */
314 return ARRAY_SIZE(netdev_lock_type) - 1;
315}
316
David S. Millercf508b12008-07-22 14:16:42 -0700317static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
318 unsigned short dev_type)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700319{
320 int i;
321
322 i = netdev_lock_pos(dev_type);
323 lockdep_set_class_and_name(lock, &netdev_xmit_lock_key[i],
324 netdev_lock_name[i]);
325}
David S. Millercf508b12008-07-22 14:16:42 -0700326
327static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
328{
329 int i;
330
331 i = netdev_lock_pos(dev->type);
332 lockdep_set_class_and_name(&dev->addr_list_lock,
333 &netdev_addr_lock_key[i],
334 netdev_lock_name[i]);
335}
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700336#else
David S. Millercf508b12008-07-22 14:16:42 -0700337static inline void netdev_set_xmit_lockdep_class(spinlock_t *lock,
338 unsigned short dev_type)
339{
340}
341static inline void netdev_set_addr_lockdep_class(struct net_device *dev)
Jarek Poplawski723e98b2007-05-15 22:46:18 -0700342{
343}
344#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345
346/*******************************************************************************
347
348 Protocol management and registration routines
349
350*******************************************************************************/
351
352/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 * Add a protocol ID to the list. Now that the input handler is
354 * smarter we can dispense with all the messy stuff that used to be
355 * here.
356 *
357 * BEWARE!!! Protocol handlers, mangling input packets,
358 * MUST BE last in hash buckets and checking protocol handlers
359 * MUST start from promiscuous ptype_all chain in net_bh.
360 * It is true now, do not change it.
361 * Explanation follows: if protocol handler, mangling packet, will
362 * be the first on list, it is not able to sense, that packet
363 * is cloned and should be copied-on-write, so that it will
364 * change it and subsequent readers will get broken packet.
365 * --ANK (980803)
366 */
367
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000368static inline struct list_head *ptype_head(const struct packet_type *pt)
369{
370 if (pt->type == htons(ETH_P_ALL))
371 return &ptype_all;
372 else
373 return &ptype_base[ntohs(pt->type) & PTYPE_HASH_MASK];
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/**
377 * dev_add_pack - add packet handler
378 * @pt: packet type declaration
379 *
380 * Add a protocol handler to the networking stack. The passed &packet_type
381 * is linked into kernel lists and may not be freed until it has been
382 * removed from the kernel lists.
383 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900384 * This call does not sleep therefore it can not
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 * guarantee all CPU's that are in middle of receiving packets
386 * will see the new packet type (until the next received packet).
387 */
388
389void dev_add_pack(struct packet_type *pt)
390{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000391 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000393 spin_lock(&ptype_lock);
394 list_add_rcu(&pt->list, head);
395 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700397EXPORT_SYMBOL(dev_add_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399/**
400 * __dev_remove_pack - remove packet handler
401 * @pt: packet type declaration
402 *
403 * Remove a protocol handler that was previously added to the kernel
404 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
405 * from the kernel lists and can be freed or reused once this function
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900406 * returns.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407 *
408 * The packet type might still be in use by receivers
409 * and must not be freed until after all the CPU's have gone
410 * through a quiescent state.
411 */
412void __dev_remove_pack(struct packet_type *pt)
413{
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000414 struct list_head *head = ptype_head(pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 struct packet_type *pt1;
416
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000417 spin_lock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418
419 list_for_each_entry(pt1, head, list) {
420 if (pt == pt1) {
421 list_del_rcu(&pt->list);
422 goto out;
423 }
424 }
425
Joe Perches7b6cd1c2012-02-01 10:54:43 +0000426 pr_warn("dev_remove_pack: %p not found\n", pt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427out:
Eric Dumazetc07b68e2010-09-02 03:53:46 +0000428 spin_unlock(&ptype_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700430EXPORT_SYMBOL(__dev_remove_pack);
431
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432/**
433 * dev_remove_pack - remove packet handler
434 * @pt: packet type declaration
435 *
436 * Remove a protocol handler that was previously added to the kernel
437 * protocol handlers by dev_add_pack(). The passed &packet_type is removed
438 * from the kernel lists and can be freed or reused once this function
439 * returns.
440 *
441 * This call sleeps to guarantee that no CPU is looking at the packet
442 * type after return.
443 */
444void dev_remove_pack(struct packet_type *pt)
445{
446 __dev_remove_pack(pt);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +0900447
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 synchronize_net();
449}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700450EXPORT_SYMBOL(dev_remove_pack);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451
Vlad Yasevich62532da2012-11-15 08:49:10 +0000452
453/**
454 * dev_add_offload - register offload handlers
455 * @po: protocol offload declaration
456 *
457 * Add protocol offload handlers to the networking stack. The passed
458 * &proto_offload is linked into kernel lists and may not be freed until
459 * it has been removed from the kernel lists.
460 *
461 * This call does not sleep therefore it can not
462 * guarantee all CPU's that are in middle of receiving packets
463 * will see the new offload handlers (until the next received packet).
464 */
465void dev_add_offload(struct packet_offload *po)
466{
467 struct list_head *head = &offload_base;
468
469 spin_lock(&offload_lock);
470 list_add_rcu(&po->list, head);
471 spin_unlock(&offload_lock);
472}
473EXPORT_SYMBOL(dev_add_offload);
474
475/**
476 * __dev_remove_offload - remove offload handler
477 * @po: packet offload declaration
478 *
479 * Remove a protocol offload handler that was previously added to the
480 * kernel offload handlers by dev_add_offload(). The passed &offload_type
481 * is removed from the kernel lists and can be freed or reused once this
482 * function returns.
483 *
484 * The packet type might still be in use by receivers
485 * and must not be freed until after all the CPU's have gone
486 * through a quiescent state.
487 */
stephen hemminger1d143d92013-12-29 14:01:29 -0800488static void __dev_remove_offload(struct packet_offload *po)
Vlad Yasevich62532da2012-11-15 08:49:10 +0000489{
490 struct list_head *head = &offload_base;
491 struct packet_offload *po1;
492
Eric Dumazetc53aa502012-11-16 08:08:23 +0000493 spin_lock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000494
495 list_for_each_entry(po1, head, list) {
496 if (po == po1) {
497 list_del_rcu(&po->list);
498 goto out;
499 }
500 }
501
502 pr_warn("dev_remove_offload: %p not found\n", po);
503out:
Eric Dumazetc53aa502012-11-16 08:08:23 +0000504 spin_unlock(&offload_lock);
Vlad Yasevich62532da2012-11-15 08:49:10 +0000505}
Vlad Yasevich62532da2012-11-15 08:49:10 +0000506
507/**
508 * dev_remove_offload - remove packet offload handler
509 * @po: packet offload declaration
510 *
511 * Remove a packet offload handler that was previously added to the kernel
512 * offload handlers by dev_add_offload(). The passed &offload_type is
513 * removed from the kernel lists and can be freed or reused once this
514 * function returns.
515 *
516 * This call sleeps to guarantee that no CPU is looking at the packet
517 * type after return.
518 */
519void dev_remove_offload(struct packet_offload *po)
520{
521 __dev_remove_offload(po);
522
523 synchronize_net();
524}
525EXPORT_SYMBOL(dev_remove_offload);
526
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527/******************************************************************************
528
529 Device Boot-time Settings Routines
530
531*******************************************************************************/
532
533/* Boot time configuration table */
534static struct netdev_boot_setup dev_boot_setup[NETDEV_BOOT_SETUP_MAX];
535
536/**
537 * netdev_boot_setup_add - add new setup entry
538 * @name: name of the device
539 * @map: configured settings for the device
540 *
541 * Adds new setup entry to the dev_boot_setup list. The function
542 * returns 0 on error and 1 on success. This is a generic routine to
543 * all netdevices.
544 */
545static int netdev_boot_setup_add(char *name, struct ifmap *map)
546{
547 struct netdev_boot_setup *s;
548 int i;
549
550 s = dev_boot_setup;
551 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
552 if (s[i].name[0] == '\0' || s[i].name[0] == ' ') {
553 memset(s[i].name, 0, sizeof(s[i].name));
Wang Chen93b3cff2008-07-01 19:57:19 -0700554 strlcpy(s[i].name, name, IFNAMSIZ);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555 memcpy(&s[i].map, map, sizeof(s[i].map));
556 break;
557 }
558 }
559
560 return i >= NETDEV_BOOT_SETUP_MAX ? 0 : 1;
561}
562
563/**
564 * netdev_boot_setup_check - check boot time settings
565 * @dev: the netdevice
566 *
567 * Check boot time settings for the device.
568 * The found settings are set for the device to be used
569 * later in the device probing.
570 * Returns 0 if no settings found, 1 if they are.
571 */
572int netdev_boot_setup_check(struct net_device *dev)
573{
574 struct netdev_boot_setup *s = dev_boot_setup;
575 int i;
576
577 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++) {
578 if (s[i].name[0] != '\0' && s[i].name[0] != ' ' &&
Wang Chen93b3cff2008-07-01 19:57:19 -0700579 !strcmp(dev->name, s[i].name)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580 dev->irq = s[i].map.irq;
581 dev->base_addr = s[i].map.base_addr;
582 dev->mem_start = s[i].map.mem_start;
583 dev->mem_end = s[i].map.mem_end;
584 return 1;
585 }
586 }
587 return 0;
588}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700589EXPORT_SYMBOL(netdev_boot_setup_check);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590
591
592/**
593 * netdev_boot_base - get address from boot time settings
594 * @prefix: prefix for network device
595 * @unit: id for network device
596 *
597 * Check boot time settings for the base address of device.
598 * The found settings are set for the device to be used
599 * later in the device probing.
600 * Returns 0 if no settings found.
601 */
602unsigned long netdev_boot_base(const char *prefix, int unit)
603{
604 const struct netdev_boot_setup *s = dev_boot_setup;
605 char name[IFNAMSIZ];
606 int i;
607
608 sprintf(name, "%s%d", prefix, unit);
609
610 /*
611 * If device already registered then return base of 1
612 * to indicate not to probe for this interface
613 */
Eric W. Biederman881d9662007-09-17 11:56:21 -0700614 if (__dev_get_by_name(&init_net, name))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 return 1;
616
617 for (i = 0; i < NETDEV_BOOT_SETUP_MAX; i++)
618 if (!strcmp(name, s[i].name))
619 return s[i].map.base_addr;
620 return 0;
621}
622
623/*
624 * Saves at boot time configured settings for any netdevice.
625 */
626int __init netdev_boot_setup(char *str)
627{
628 int ints[5];
629 struct ifmap map;
630
631 str = get_options(str, ARRAY_SIZE(ints), ints);
632 if (!str || !*str)
633 return 0;
634
635 /* Save settings */
636 memset(&map, 0, sizeof(map));
637 if (ints[0] > 0)
638 map.irq = ints[1];
639 if (ints[0] > 1)
640 map.base_addr = ints[2];
641 if (ints[0] > 2)
642 map.mem_start = ints[3];
643 if (ints[0] > 3)
644 map.mem_end = ints[4];
645
646 /* Add new entry to the list */
647 return netdev_boot_setup_add(str, &map);
648}
649
650__setup("netdev=", netdev_boot_setup);
651
652/*******************************************************************************
653
654 Device Interface Subroutines
655
656*******************************************************************************/
657
658/**
659 * __dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700660 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 * @name: name to find
662 *
663 * Find an interface by name. Must be called under RTNL semaphore
664 * or @dev_base_lock. If the name is found a pointer to the device
665 * is returned. If the name is not found then %NULL is returned. The
666 * reference counters are not incremented so the caller must be
667 * careful with locks.
668 */
669
Eric W. Biederman881d9662007-09-17 11:56:21 -0700670struct net_device *__dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700672 struct net_device *dev;
673 struct hlist_head *head = dev_name_hash(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Sasha Levinb67bfe02013-02-27 17:06:00 -0800675 hlist_for_each_entry(dev, head, name_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 if (!strncmp(dev->name, name, IFNAMSIZ))
677 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700678
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 return NULL;
680}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700681EXPORT_SYMBOL(__dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683/**
Eric Dumazet72c95282009-10-30 07:11:27 +0000684 * dev_get_by_name_rcu - find a device by its name
685 * @net: the applicable net namespace
686 * @name: name to find
687 *
688 * Find an interface by name.
689 * If the name is found a pointer to the device is returned.
690 * If the name is not found then %NULL is returned.
691 * The reference counters are not incremented so the caller must be
692 * careful with locks. The caller must hold RCU lock.
693 */
694
695struct net_device *dev_get_by_name_rcu(struct net *net, const char *name)
696{
Eric Dumazet72c95282009-10-30 07:11:27 +0000697 struct net_device *dev;
698 struct hlist_head *head = dev_name_hash(net, name);
699
Sasha Levinb67bfe02013-02-27 17:06:00 -0800700 hlist_for_each_entry_rcu(dev, head, name_hlist)
Eric Dumazet72c95282009-10-30 07:11:27 +0000701 if (!strncmp(dev->name, name, IFNAMSIZ))
702 return dev;
703
704 return NULL;
705}
706EXPORT_SYMBOL(dev_get_by_name_rcu);
707
708/**
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 * dev_get_by_name - find a device by its name
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700710 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 * @name: name to find
712 *
713 * Find an interface by name. This can be called from any
714 * context and does its own locking. The returned handle has
715 * the usage count incremented and the caller must use dev_put() to
716 * release it when it is no longer needed. %NULL is returned if no
717 * matching device is found.
718 */
719
Eric W. Biederman881d9662007-09-17 11:56:21 -0700720struct net_device *dev_get_by_name(struct net *net, const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
722 struct net_device *dev;
723
Eric Dumazet72c95282009-10-30 07:11:27 +0000724 rcu_read_lock();
725 dev = dev_get_by_name_rcu(net, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 if (dev)
727 dev_hold(dev);
Eric Dumazet72c95282009-10-30 07:11:27 +0000728 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 return dev;
730}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700731EXPORT_SYMBOL(dev_get_by_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732
733/**
734 * __dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700735 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 * @ifindex: index of device
737 *
738 * Search for an interface by index. Returns %NULL if the device
739 * is not found or a pointer to the device. The device has not
740 * had its reference counter increased so the caller must be careful
741 * about locking. The caller must hold either the RTNL semaphore
742 * or @dev_base_lock.
743 */
744
Eric W. Biederman881d9662007-09-17 11:56:21 -0700745struct net_device *__dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700747 struct net_device *dev;
748 struct hlist_head *head = dev_index_hash(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Sasha Levinb67bfe02013-02-27 17:06:00 -0800750 hlist_for_each_entry(dev, head, index_hlist)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 if (dev->ifindex == ifindex)
752 return dev;
Eric Dumazet0bd8d532009-10-30 01:40:11 -0700753
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754 return NULL;
755}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700756EXPORT_SYMBOL(__dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000758/**
759 * dev_get_by_index_rcu - find a device by its ifindex
760 * @net: the applicable net namespace
761 * @ifindex: index of device
762 *
763 * Search for an interface by index. Returns %NULL if the device
764 * is not found or a pointer to the device. The device has not
765 * had its reference counter increased so the caller must be careful
766 * about locking. The caller must hold RCU lock.
767 */
768
769struct net_device *dev_get_by_index_rcu(struct net *net, int ifindex)
770{
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000771 struct net_device *dev;
772 struct hlist_head *head = dev_index_hash(net, ifindex);
773
Sasha Levinb67bfe02013-02-27 17:06:00 -0800774 hlist_for_each_entry_rcu(dev, head, index_hlist)
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000775 if (dev->ifindex == ifindex)
776 return dev;
777
778 return NULL;
779}
780EXPORT_SYMBOL(dev_get_by_index_rcu);
781
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782
783/**
784 * dev_get_by_index - find a device by its ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700785 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786 * @ifindex: index of device
787 *
788 * Search for an interface by index. Returns NULL if the device
789 * is not found or a pointer to the device. The device returned has
790 * had a reference added and the pointer is safe until the user calls
791 * dev_put to indicate they have finished with it.
792 */
793
Eric W. Biederman881d9662007-09-17 11:56:21 -0700794struct net_device *dev_get_by_index(struct net *net, int ifindex)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795{
796 struct net_device *dev;
797
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000798 rcu_read_lock();
799 dev = dev_get_by_index_rcu(net, ifindex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 if (dev)
801 dev_hold(dev);
Eric Dumazetfb699dfd2009-10-19 19:18:49 +0000802 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 return dev;
804}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700805EXPORT_SYMBOL(dev_get_by_index);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
807/**
Nicolas Schichan5dbe7c12013-06-26 17:23:42 +0200808 * netdev_get_name - get a netdevice name, knowing its ifindex.
809 * @net: network namespace
810 * @name: a pointer to the buffer where the name will be stored.
811 * @ifindex: the ifindex of the interface to get the name from.
812 *
813 * The use of raw_seqcount_begin() and cond_resched() before
814 * retrying is required as we want to give the writers a chance
815 * to complete when CONFIG_PREEMPT is not set.
816 */
817int netdev_get_name(struct net *net, char *name, int ifindex)
818{
819 struct net_device *dev;
820 unsigned int seq;
821
822retry:
823 seq = raw_seqcount_begin(&devnet_rename_seq);
824 rcu_read_lock();
825 dev = dev_get_by_index_rcu(net, ifindex);
826 if (!dev) {
827 rcu_read_unlock();
828 return -ENODEV;
829 }
830
831 strcpy(name, dev->name);
832 rcu_read_unlock();
833 if (read_seqcount_retry(&devnet_rename_seq, seq)) {
834 cond_resched();
835 goto retry;
836 }
837
838 return 0;
839}
840
841/**
Eric Dumazet941666c2010-12-05 01:23:53 +0000842 * dev_getbyhwaddr_rcu - find a device by its hardware address
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700843 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 * @type: media type of device
845 * @ha: hardware address
846 *
847 * Search for an interface by MAC address. Returns NULL if the device
Eric Dumazetc5066532011-01-24 13:16:16 -0800848 * is not found or a pointer to the device.
849 * The caller must hold RCU or RTNL.
Eric Dumazet941666c2010-12-05 01:23:53 +0000850 * The returned device has not had its ref count increased
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851 * and the caller must therefore be careful about locking
852 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853 */
854
Eric Dumazet941666c2010-12-05 01:23:53 +0000855struct net_device *dev_getbyhwaddr_rcu(struct net *net, unsigned short type,
856 const char *ha)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
858 struct net_device *dev;
859
Eric Dumazet941666c2010-12-05 01:23:53 +0000860 for_each_netdev_rcu(net, dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861 if (dev->type == type &&
862 !memcmp(dev->dev_addr, ha, dev->addr_len))
Pavel Emelianov7562f872007-05-03 15:13:45 -0700863 return dev;
864
865 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866}
Eric Dumazet941666c2010-12-05 01:23:53 +0000867EXPORT_SYMBOL(dev_getbyhwaddr_rcu);
Jochen Friedrichcf309e32005-09-22 04:44:55 -0300868
Eric W. Biederman881d9662007-09-17 11:56:21 -0700869struct net_device *__dev_getfirstbyhwtype(struct net *net, unsigned short type)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700870{
871 struct net_device *dev;
872
873 ASSERT_RTNL();
Eric W. Biederman881d9662007-09-17 11:56:21 -0700874 for_each_netdev(net, dev)
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700875 if (dev->type == type)
Pavel Emelianov7562f872007-05-03 15:13:45 -0700876 return dev;
877
878 return NULL;
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700879}
Patrick McHardy4e9cac22007-05-03 03:28:13 -0700880EXPORT_SYMBOL(__dev_getfirstbyhwtype);
881
Eric W. Biederman881d9662007-09-17 11:56:21 -0700882struct net_device *dev_getfirstbyhwtype(struct net *net, unsigned short type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000884 struct net_device *dev, *ret = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Eric Dumazet99fe3c32010-03-18 11:27:25 +0000886 rcu_read_lock();
887 for_each_netdev_rcu(net, dev)
888 if (dev->type == type) {
889 dev_hold(dev);
890 ret = dev;
891 break;
892 }
893 rcu_read_unlock();
894 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896EXPORT_SYMBOL(dev_getfirstbyhwtype);
897
898/**
Eric Dumazetbb69ae02010-06-07 11:42:13 +0000899 * dev_get_by_flags_rcu - find any device with given flags
Randy Dunlapc4ea43c2007-10-12 21:17:49 -0700900 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 * @if_flags: IFF_* values
902 * @mask: bitmask of bits in if_flags to check
903 *
904 * Search for any interface with the given flags. Returns NULL if a device
Eric Dumazetbb69ae02010-06-07 11:42:13 +0000905 * is not found or a pointer to the device. Must be called inside
906 * rcu_read_lock(), and result refcount is unchanged.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 */
908
Eric Dumazetbb69ae02010-06-07 11:42:13 +0000909struct net_device *dev_get_by_flags_rcu(struct net *net, unsigned short if_flags,
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700910 unsigned short mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Pavel Emelianov7562f872007-05-03 15:13:45 -0700912 struct net_device *dev, *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Pavel Emelianov7562f872007-05-03 15:13:45 -0700914 ret = NULL;
Eric Dumazetc6d14c82009-11-04 05:43:23 -0800915 for_each_netdev_rcu(net, dev) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700916 if (((dev->flags ^ if_flags) & mask) == 0) {
Pavel Emelianov7562f872007-05-03 15:13:45 -0700917 ret = dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 break;
919 }
920 }
Pavel Emelianov7562f872007-05-03 15:13:45 -0700921 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922}
Eric Dumazetbb69ae02010-06-07 11:42:13 +0000923EXPORT_SYMBOL(dev_get_by_flags_rcu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924
925/**
926 * dev_valid_name - check if name is okay for network device
927 * @name: name string
928 *
929 * Network device names need to be valid file names to
David S. Millerc7fa9d12006-08-15 16:34:13 -0700930 * to allow sysfs to work. We also disallow any kind of
931 * whitespace.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 */
David S. Miller95f050b2012-03-06 16:12:15 -0500933bool dev_valid_name(const char *name)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934{
David S. Millerc7fa9d12006-08-15 16:34:13 -0700935 if (*name == '\0')
David S. Miller95f050b2012-03-06 16:12:15 -0500936 return false;
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -0700937 if (strlen(name) >= IFNAMSIZ)
David S. Miller95f050b2012-03-06 16:12:15 -0500938 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -0700939 if (!strcmp(name, ".") || !strcmp(name, ".."))
David S. Miller95f050b2012-03-06 16:12:15 -0500940 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -0700941
942 while (*name) {
943 if (*name == '/' || isspace(*name))
David S. Miller95f050b2012-03-06 16:12:15 -0500944 return false;
David S. Millerc7fa9d12006-08-15 16:34:13 -0700945 name++;
946 }
David S. Miller95f050b2012-03-06 16:12:15 -0500947 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948}
Eric Dumazetd1b19df2009-09-03 01:29:39 -0700949EXPORT_SYMBOL(dev_valid_name);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950
951/**
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200952 * __dev_alloc_name - allocate a name for a device
953 * @net: network namespace to allocate the device name in
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 * @name: name format string
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200955 * @buf: scratch buffer and result name string
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 *
957 * Passed a format string - eg "lt%d" it will try and find a suitable
Stephen Hemminger3041a062006-05-26 13:25:24 -0700958 * id. It scans list of devices to build up a free map, then chooses
959 * the first empty slot. The caller must hold the dev_base or rtnl lock
960 * while allocating the name and adding the device in order to avoid
961 * duplicates.
962 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
963 * Returns the number of the unit assigned or a negative errno code.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 */
965
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200966static int __dev_alloc_name(struct net *net, const char *name, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967{
968 int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 const char *p;
970 const int max_netdevices = 8*PAGE_SIZE;
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700971 unsigned long *inuse;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 struct net_device *d;
973
974 p = strnchr(name, IFNAMSIZ-1, '%');
975 if (p) {
976 /*
977 * Verify the string as this thing may have come from
978 * the user. There must be either one "%d" and no other "%"
979 * characters.
980 */
981 if (p[1] != 'd' || strchr(p + 2, '%'))
982 return -EINVAL;
983
984 /* Use one page as a bit array of possible slots */
Stephen Hemmingercfcabdc2007-10-09 01:59:42 -0700985 inuse = (unsigned long *) get_zeroed_page(GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 if (!inuse)
987 return -ENOMEM;
988
Eric W. Biederman881d9662007-09-17 11:56:21 -0700989 for_each_netdev(net, d) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990 if (!sscanf(d->name, name, &i))
991 continue;
992 if (i < 0 || i >= max_netdevices)
993 continue;
994
995 /* avoid cases where sscanf is not exact inverse of printf */
Eric W. Biedermanb267b172007-09-12 13:48:45 +0200996 snprintf(buf, IFNAMSIZ, name, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 if (!strncmp(buf, d->name, IFNAMSIZ))
998 set_bit(i, inuse);
999 }
1000
1001 i = find_first_zero_bit(inuse, max_netdevices);
1002 free_page((unsigned long) inuse);
1003 }
1004
Octavian Purdilad9031022009-11-18 02:36:59 +00001005 if (buf != name)
1006 snprintf(buf, IFNAMSIZ, name, i);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001007 if (!__dev_get_by_name(net, buf))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009
1010 /* It is possible to run out of possible slots
1011 * when the name is long and there isn't enough space left
1012 * for the digits, or if all bits are used.
1013 */
1014 return -ENFILE;
1015}
1016
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001017/**
1018 * dev_alloc_name - allocate a name for a device
1019 * @dev: device
1020 * @name: name format string
1021 *
1022 * Passed a format string - eg "lt%d" it will try and find a suitable
1023 * id. It scans list of devices to build up a free map, then chooses
1024 * the first empty slot. The caller must hold the dev_base or rtnl lock
1025 * while allocating the name and adding the device in order to avoid
1026 * duplicates.
1027 * Limited to bits_per_byte * page size devices (ie 32K on most platforms).
1028 * Returns the number of the unit assigned or a negative errno code.
1029 */
1030
1031int dev_alloc_name(struct net_device *dev, const char *name)
1032{
1033 char buf[IFNAMSIZ];
1034 struct net *net;
1035 int ret;
1036
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001037 BUG_ON(!dev_net(dev));
1038 net = dev_net(dev);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001039 ret = __dev_alloc_name(net, name, buf);
1040 if (ret >= 0)
1041 strlcpy(dev->name, buf, IFNAMSIZ);
1042 return ret;
1043}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001044EXPORT_SYMBOL(dev_alloc_name);
Eric W. Biedermanb267b172007-09-12 13:48:45 +02001045
Gao feng828de4f2012-09-13 20:58:27 +00001046static int dev_alloc_name_ns(struct net *net,
1047 struct net_device *dev,
1048 const char *name)
Octavian Purdilad9031022009-11-18 02:36:59 +00001049{
Gao feng828de4f2012-09-13 20:58:27 +00001050 char buf[IFNAMSIZ];
1051 int ret;
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001052
Gao feng828de4f2012-09-13 20:58:27 +00001053 ret = __dev_alloc_name(net, name, buf);
1054 if (ret >= 0)
1055 strlcpy(dev->name, buf, IFNAMSIZ);
1056 return ret;
1057}
1058
1059static int dev_get_valid_name(struct net *net,
1060 struct net_device *dev,
1061 const char *name)
1062{
1063 BUG_ON(!net);
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001064
Octavian Purdilad9031022009-11-18 02:36:59 +00001065 if (!dev_valid_name(name))
1066 return -EINVAL;
1067
Jiri Pirko1c5cae82011-04-30 01:21:32 +00001068 if (strchr(name, '%'))
Gao feng828de4f2012-09-13 20:58:27 +00001069 return dev_alloc_name_ns(net, dev, name);
Octavian Purdilad9031022009-11-18 02:36:59 +00001070 else if (__dev_get_by_name(net, name))
1071 return -EEXIST;
Daniel Lezcano8ce6cebc2010-05-19 10:12:19 +00001072 else if (dev->name != name)
1073 strlcpy(dev->name, name, IFNAMSIZ);
Octavian Purdilad9031022009-11-18 02:36:59 +00001074
1075 return 0;
1076}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
1078/**
1079 * dev_change_name - change name of a device
1080 * @dev: device
1081 * @newname: name (or format string) must be at least IFNAMSIZ
1082 *
1083 * Change name of a device, can pass format strings "eth%d".
1084 * for wildcarding.
1085 */
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07001086int dev_change_name(struct net_device *dev, const char *newname)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Tom Gundersen238fa362014-07-14 16:37:23 +02001088 unsigned char old_assign_type;
Herbert Xufcc5a032007-07-30 17:03:38 -07001089 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001091 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001092 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
1094 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001095 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001097 net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 if (dev->flags & IFF_UP)
1099 return -EBUSY;
1100
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001101 write_seqcount_begin(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001102
1103 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001104 write_seqcount_end(&devnet_rename_seq);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001105 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001106 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001107
Herbert Xufcc5a032007-07-30 17:03:38 -07001108 memcpy(oldname, dev->name, IFNAMSIZ);
1109
Gao feng828de4f2012-09-13 20:58:27 +00001110 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001111 if (err < 0) {
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001112 write_seqcount_end(&devnet_rename_seq);
Octavian Purdilad9031022009-11-18 02:36:59 +00001113 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001114 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
Veaceslav Falico6fe82a32014-07-17 20:33:32 +02001116 if (oldname[0] && !strchr(oldname, '%'))
1117 netdev_info(dev, "renamed from %s\n", oldname);
1118
Tom Gundersen238fa362014-07-14 16:37:23 +02001119 old_assign_type = dev->name_assign_type;
1120 dev->name_assign_type = NET_NAME_RENAMED;
1121
Herbert Xufcc5a032007-07-30 17:03:38 -07001122rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001123 ret = device_rename(&dev->dev, dev->name);
1124 if (ret) {
1125 memcpy(dev->name, oldname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001126 dev->name_assign_type = old_assign_type;
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001127 write_seqcount_end(&devnet_rename_seq);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001128 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001129 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001130
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001131 write_seqcount_end(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001132
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001133 netdev_adjacent_rename_links(dev, oldname);
1134
Herbert Xu7f988ea2007-07-30 16:35:46 -07001135 write_lock_bh(&dev_base_lock);
Eric Dumazet372b2312011-05-17 13:56:59 -04001136 hlist_del_rcu(&dev->name_hlist);
Eric Dumazet72c95282009-10-30 07:11:27 +00001137 write_unlock_bh(&dev_base_lock);
1138
1139 synchronize_rcu();
1140
1141 write_lock_bh(&dev_base_lock);
1142 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -07001143 write_unlock_bh(&dev_base_lock);
1144
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001145 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001146 ret = notifier_to_errno(ret);
1147
1148 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001149 /* err >= 0 after dev_alloc_name() or stores the first errno */
1150 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001151 err = ret;
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001152 write_seqcount_begin(&devnet_rename_seq);
Herbert Xufcc5a032007-07-30 17:03:38 -07001153 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001154 memcpy(oldname, newname, IFNAMSIZ);
Tom Gundersen238fa362014-07-14 16:37:23 +02001155 dev->name_assign_type = old_assign_type;
1156 old_assign_type = NET_NAME_RENAMED;
Herbert Xufcc5a032007-07-30 17:03:38 -07001157 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001158 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001159 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001160 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001161 }
1162 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163
1164 return err;
1165}
1166
1167/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001168 * dev_set_alias - change ifalias of a device
1169 * @dev: device
1170 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001171 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001172 *
1173 * Set ifalias for a device,
1174 */
1175int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1176{
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001177 char *new_ifalias;
1178
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001179 ASSERT_RTNL();
1180
1181 if (len >= IFALIASZ)
1182 return -EINVAL;
1183
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001184 if (!len) {
Sachin Kamat388dfc22012-11-20 00:57:04 +00001185 kfree(dev->ifalias);
1186 dev->ifalias = NULL;
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001187 return 0;
1188 }
1189
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001190 new_ifalias = krealloc(dev->ifalias, len + 1, GFP_KERNEL);
1191 if (!new_ifalias)
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001192 return -ENOMEM;
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001193 dev->ifalias = new_ifalias;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001194
1195 strlcpy(dev->ifalias, alias, len+1);
1196 return len;
1197}
1198
1199
1200/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001201 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001202 * @dev: device to cause notification
1203 *
1204 * Called to indicate a device has changed features.
1205 */
1206void netdev_features_change(struct net_device *dev)
1207{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001208 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001209}
1210EXPORT_SYMBOL(netdev_features_change);
1211
1212/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 * netdev_state_change - device changes state
1214 * @dev: device to cause notification
1215 *
1216 * Called to indicate a device has changed state. This function calls
1217 * the notifier chains for netdev_chain and sends a NEWLINK message
1218 * to the routing socket.
1219 */
1220void netdev_state_change(struct net_device *dev)
1221{
1222 if (dev->flags & IFF_UP) {
Loic Prylli5495119462014-07-01 21:39:43 -07001223 struct netdev_notifier_change_info change_info;
1224
1225 change_info.flags_changed = 0;
1226 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
1227 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001228 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 }
1230}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001231EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232
Amerigo Wangee89bab2012-08-09 22:14:56 +00001233/**
1234 * netdev_notify_peers - notify network peers about existence of @dev
1235 * @dev: network device
1236 *
1237 * Generate traffic such that interested network peers are aware of
1238 * @dev, such as by generating a gratuitous ARP. This may be used when
1239 * a device wants to inform the rest of the network about some sort of
1240 * reconfiguration such as a failover event or virtual machine
1241 * migration.
1242 */
1243void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001244{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001245 rtnl_lock();
1246 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
1247 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001248}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001249EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001250
Patrick McHardybd380812010-02-26 06:34:53 +00001251static int __dev_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001253 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001254 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001256 ASSERT_RTNL();
1257
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 if (!netif_device_present(dev))
1259 return -ENODEV;
1260
Neil Hormanca99ca12013-02-05 08:05:43 +00001261 /* Block netpoll from trying to do any rx path servicing.
1262 * If we don't do this there is a chance ndo_poll_controller
1263 * or ndo_poll may be running while we open the device
1264 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001265 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001266
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001267 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1268 ret = notifier_to_errno(ret);
1269 if (ret)
1270 return ret;
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001273
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001274 if (ops->ndo_validate_addr)
1275 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001276
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001277 if (!ret && ops->ndo_open)
1278 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Eric W. Biederman66b55522014-03-27 15:39:03 -07001280 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001281
Jeff Garzikbada3392007-10-23 20:19:37 -07001282 if (ret)
1283 clear_bit(__LINK_STATE_START, &dev->state);
1284 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 dev->flags |= IFF_UP;
David S. Millerb4bd07c2009-02-06 22:06:43 -08001286 net_dmaengine_get();
Patrick McHardy4417da62007-06-27 01:28:10 -07001287 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001289 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 return ret;
1293}
Patrick McHardybd380812010-02-26 06:34:53 +00001294
1295/**
1296 * dev_open - prepare an interface for use.
1297 * @dev: device to open
1298 *
1299 * Takes a device from down to up state. The device's private open
1300 * function is invoked and then the multicast lists are loaded. Finally
1301 * the device is moved into the up state and a %NETDEV_UP message is
1302 * sent to the netdev notifier chain.
1303 *
1304 * Calling this function on an active interface is a nop. On a failure
1305 * a negative errno code is returned.
1306 */
1307int dev_open(struct net_device *dev)
1308{
1309 int ret;
1310
Patrick McHardybd380812010-02-26 06:34:53 +00001311 if (dev->flags & IFF_UP)
1312 return 0;
1313
Patrick McHardybd380812010-02-26 06:34:53 +00001314 ret = __dev_open(dev);
1315 if (ret < 0)
1316 return ret;
1317
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001318 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001319 call_netdevice_notifiers(NETDEV_UP, dev);
1320
1321 return ret;
1322}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001323EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324
Octavian Purdila44345722010-12-13 12:44:07 +00001325static int __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
Octavian Purdila44345722010-12-13 12:44:07 +00001327 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001328
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001329 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001330 might_sleep();
1331
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001332 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001333 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001334 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001335
Octavian Purdila44345722010-12-13 12:44:07 +00001336 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337
Octavian Purdila44345722010-12-13 12:44:07 +00001338 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339
Octavian Purdila44345722010-12-13 12:44:07 +00001340 /* Synchronize to scheduled poll. We cannot touch poll list, it
1341 * can be even on different cpu. So just clear netif_running().
1342 *
1343 * dev->stop() will invoke napi_disable() on all of it's
1344 * napi_struct instances on this device.
1345 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001346 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
Octavian Purdila44345722010-12-13 12:44:07 +00001349 dev_deactivate_many(head);
1350
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001351 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001352 const struct net_device_ops *ops = dev->netdev_ops;
1353
1354 /*
1355 * Call the device specific close. This cannot fail.
1356 * Only if device is UP
1357 *
1358 * We allow it to be called even after a DETACH hot-plug
1359 * event.
1360 */
1361 if (ops->ndo_stop)
1362 ops->ndo_stop(dev);
1363
Octavian Purdila44345722010-12-13 12:44:07 +00001364 dev->flags &= ~IFF_UP;
Octavian Purdila44345722010-12-13 12:44:07 +00001365 net_dmaengine_put();
Eric W. Biederman66b55522014-03-27 15:39:03 -07001366 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001367 }
1368
1369 return 0;
1370}
1371
1372static int __dev_close(struct net_device *dev)
1373{
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001374 int retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001375 LIST_HEAD(single);
1376
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001377 list_add(&dev->close_list, &single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001378 retval = __dev_close_many(&single);
1379 list_del(&single);
Neil Hormanca99ca12013-02-05 08:05:43 +00001380
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001381 return retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001382}
1383
Eric Dumazet3fbd8752011-01-19 21:23:22 +00001384static int dev_close_many(struct list_head *head)
Octavian Purdila44345722010-12-13 12:44:07 +00001385{
1386 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001387
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001388 /* Remove the devices that don't need to be closed */
1389 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001390 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001391 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001392
1393 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001394
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001395 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001396 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001397 call_netdevice_notifiers(NETDEV_DOWN, dev);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001398 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001399 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 return 0;
1402}
Patrick McHardybd380812010-02-26 06:34:53 +00001403
1404/**
1405 * dev_close - shutdown an interface.
1406 * @dev: device to shutdown
1407 *
1408 * This function moves an active device into down state. A
1409 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1410 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1411 * chain.
1412 */
1413int dev_close(struct net_device *dev)
1414{
Eric Dumazete14a5992011-05-10 12:26:06 -07001415 if (dev->flags & IFF_UP) {
1416 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001417
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001418 list_add(&dev->close_list, &single);
Eric Dumazete14a5992011-05-10 12:26:06 -07001419 dev_close_many(&single);
1420 list_del(&single);
1421 }
dingtianhongda6e3782013-05-27 19:53:31 +00001422 return 0;
Patrick McHardybd380812010-02-26 06:34:53 +00001423}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001424EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425
1426
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001427/**
1428 * dev_disable_lro - disable Large Receive Offload on a device
1429 * @dev: device
1430 *
1431 * Disable Large Receive Offload (LRO) on a net device. Must be
1432 * called under RTNL. This is needed if received packets may be
1433 * forwarded to another interface.
1434 */
1435void dev_disable_lro(struct net_device *dev)
1436{
Neil Hormanf11970e2011-05-24 08:31:09 +00001437 /*
1438 * If we're trying to disable lro on a vlan device
1439 * use the underlying physical device instead
1440 */
1441 if (is_vlan_dev(dev))
1442 dev = vlan_dev_real_dev(dev);
1443
Michal Kubeček529d0482013-11-15 06:18:50 +01001444 /* the same for macvlan devices */
1445 if (netif_is_macvlan(dev))
1446 dev = macvlan_dev_real_dev(dev);
1447
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001448 dev->wanted_features &= ~NETIF_F_LRO;
1449 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001450
Michał Mirosław22d59692011-04-21 12:42:15 +00001451 if (unlikely(dev->features & NETIF_F_LRO))
1452 netdev_WARN(dev, "failed to disable LRO!\n");
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001453}
1454EXPORT_SYMBOL(dev_disable_lro);
1455
Jiri Pirko351638e2013-05-28 01:30:21 +00001456static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1457 struct net_device *dev)
1458{
1459 struct netdev_notifier_info info;
1460
1461 netdev_notifier_info_init(&info, dev);
1462 return nb->notifier_call(nb, val, &info);
1463}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001464
Eric W. Biederman881d9662007-09-17 11:56:21 -07001465static int dev_boot_phase = 1;
1466
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467/**
1468 * register_netdevice_notifier - register a network notifier block
1469 * @nb: notifier
1470 *
1471 * Register a notifier to be called when network device events occur.
1472 * The notifier passed is linked into the kernel structures and must
1473 * not be reused until it has been unregistered. A negative errno code
1474 * is returned on a failure.
1475 *
1476 * When registered all registration and up events are replayed
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001477 * to the new notifier to allow device to have a race free
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 * view of the network device list.
1479 */
1480
1481int register_netdevice_notifier(struct notifier_block *nb)
1482{
1483 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001484 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001485 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 int err;
1487
1488 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001489 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001490 if (err)
1491 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001492 if (dev_boot_phase)
1493 goto unlock;
1494 for_each_net(net) {
1495 for_each_netdev(net, dev) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001496 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001497 err = notifier_to_errno(err);
1498 if (err)
1499 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
Eric W. Biederman881d9662007-09-17 11:56:21 -07001501 if (!(dev->flags & IFF_UP))
1502 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001503
Jiri Pirko351638e2013-05-28 01:30:21 +00001504 call_netdevice_notifier(nb, NETDEV_UP, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001505 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001507
1508unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 rtnl_unlock();
1510 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001511
1512rollback:
1513 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001514 for_each_net(net) {
1515 for_each_netdev(net, dev) {
1516 if (dev == last)
RongQing.Li8f891482011-11-30 23:43:07 -05001517 goto outroll;
Herbert Xufcc5a032007-07-30 17:03:38 -07001518
Eric W. Biederman881d9662007-09-17 11:56:21 -07001519 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001520 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1521 dev);
1522 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001523 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001524 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001525 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001526 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001527
RongQing.Li8f891482011-11-30 23:43:07 -05001528outroll:
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001529 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001530 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001532EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
1534/**
1535 * unregister_netdevice_notifier - unregister a network notifier block
1536 * @nb: notifier
1537 *
1538 * Unregister a notifier previously registered by
1539 * register_netdevice_notifier(). The notifier is unlinked into the
1540 * kernel structures and may then be reused. A negative errno code
1541 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001542 *
1543 * After unregistering unregister and down device events are synthesized
1544 * for all devices on the device list to the removed notifier to remove
1545 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 */
1547
1548int unregister_netdevice_notifier(struct notifier_block *nb)
1549{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001550 struct net_device *dev;
1551 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001552 int err;
1553
1554 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001555 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001556 if (err)
1557 goto unlock;
1558
1559 for_each_net(net) {
1560 for_each_netdev(net, dev) {
1561 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001562 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1563 dev);
1564 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001565 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001566 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001567 }
1568 }
1569unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001570 rtnl_unlock();
1571 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001573EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001576 * call_netdevice_notifiers_info - call all network notifier blocks
1577 * @val: value passed unmodified to notifier function
1578 * @dev: net_device pointer passed unmodified to notifier function
1579 * @info: notifier information data
1580 *
1581 * Call all network notifier blocks. Parameters and return value
1582 * are as for raw_notifier_call_chain().
1583 */
1584
stephen hemminger1d143d92013-12-29 14:01:29 -08001585static int call_netdevice_notifiers_info(unsigned long val,
1586 struct net_device *dev,
1587 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00001588{
1589 ASSERT_RTNL();
1590 netdev_notifier_info_init(info, dev);
1591 return raw_notifier_call_chain(&netdev_chain, val, info);
1592}
Jiri Pirko351638e2013-05-28 01:30:21 +00001593
1594/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 * call_netdevice_notifiers - call all network notifier blocks
1596 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001597 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 *
1599 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001600 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 */
1602
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001603int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604{
Jiri Pirko351638e2013-05-28 01:30:21 +00001605 struct netdev_notifier_info info;
1606
1607 return call_netdevice_notifiers_info(val, dev, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608}
stephen hemmingeredf947f2011-03-24 13:24:01 +00001609EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
Ingo Molnarc5905af2012-02-24 08:31:31 +01001611static struct static_key netstamp_needed __read_mostly;
Eric Dumazetb90e5792011-11-28 11:16:50 +00001612#ifdef HAVE_JUMP_LABEL
Ingo Molnarc5905af2012-02-24 08:31:31 +01001613/* We are not allowed to call static_key_slow_dec() from irq context
Eric Dumazetb90e5792011-11-28 11:16:50 +00001614 * If net_disable_timestamp() is called from irq context, defer the
Ingo Molnarc5905af2012-02-24 08:31:31 +01001615 * static_key_slow_dec() calls.
Eric Dumazetb90e5792011-11-28 11:16:50 +00001616 */
1617static atomic_t netstamp_needed_deferred;
1618#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619
1620void net_enable_timestamp(void)
1621{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001622#ifdef HAVE_JUMP_LABEL
1623 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
1624
1625 if (deferred) {
1626 while (--deferred)
Ingo Molnarc5905af2012-02-24 08:31:31 +01001627 static_key_slow_dec(&netstamp_needed);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001628 return;
1629 }
1630#endif
Ingo Molnarc5905af2012-02-24 08:31:31 +01001631 static_key_slow_inc(&netstamp_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001633EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
1635void net_disable_timestamp(void)
1636{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001637#ifdef HAVE_JUMP_LABEL
1638 if (in_interrupt()) {
1639 atomic_inc(&netstamp_needed_deferred);
1640 return;
1641 }
1642#endif
Ingo Molnarc5905af2012-02-24 08:31:31 +01001643 static_key_slow_dec(&netstamp_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001645EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Eric Dumazet3b098e22010-05-15 23:57:10 -07001647static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648{
Eric Dumazet588f0332011-11-15 04:12:55 +00001649 skb->tstamp.tv64 = 0;
Ingo Molnarc5905af2012-02-24 08:31:31 +01001650 if (static_key_false(&netstamp_needed))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001651 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652}
1653
Eric Dumazet588f0332011-11-15 04:12:55 +00001654#define net_timestamp_check(COND, SKB) \
Ingo Molnarc5905af2012-02-24 08:31:31 +01001655 if (static_key_false(&netstamp_needed)) { \
Eric Dumazet588f0332011-11-15 04:12:55 +00001656 if ((COND) && !(SKB)->tstamp.tv64) \
1657 __net_timestamp(SKB); \
1658 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07001659
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001660bool is_skb_forwardable(struct net_device *dev, struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001661{
1662 unsigned int len;
1663
1664 if (!(dev->flags & IFF_UP))
1665 return false;
1666
1667 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1668 if (skb->len <= len)
1669 return true;
1670
1671 /* if TSO is enabled, we don't care about the length as the packet
1672 * could be forwarded without being segmented before
1673 */
1674 if (skb_is_gso(skb))
1675 return true;
1676
1677 return false;
1678}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001679EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001680
Herbert Xua0265d22014-04-17 13:45:03 +08001681int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1682{
1683 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
1684 if (skb_copy_ubufs(skb, GFP_ATOMIC)) {
1685 atomic_long_inc(&dev->rx_dropped);
1686 kfree_skb(skb);
1687 return NET_RX_DROP;
1688 }
1689 }
1690
1691 if (unlikely(!is_skb_forwardable(dev, skb))) {
1692 atomic_long_inc(&dev->rx_dropped);
1693 kfree_skb(skb);
1694 return NET_RX_DROP;
1695 }
1696
1697 skb_scrub_packet(skb, true);
1698 skb->protocol = eth_type_trans(skb, dev);
1699
1700 return 0;
1701}
1702EXPORT_SYMBOL_GPL(__dev_forward_skb);
1703
Arnd Bergmann44540962009-11-26 06:07:08 +00001704/**
1705 * dev_forward_skb - loopback an skb to another netif
1706 *
1707 * @dev: destination network device
1708 * @skb: buffer to forward
1709 *
1710 * return values:
1711 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07001712 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00001713 *
1714 * dev_forward_skb can be used for injecting an skb from the
1715 * start_xmit function of one device into the receive queue
1716 * of another device.
1717 *
1718 * The receiving device may be in another namespace, so
1719 * we have to clear all information in the skb that could
1720 * impact namespace isolation.
1721 */
1722int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1723{
Herbert Xua0265d22014-04-17 13:45:03 +08001724 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00001725}
1726EXPORT_SYMBOL_GPL(dev_forward_skb);
1727
Changli Gao71d9dec2010-12-15 19:57:25 +00001728static inline int deliver_skb(struct sk_buff *skb,
1729 struct packet_type *pt_prev,
1730 struct net_device *orig_dev)
1731{
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00001732 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
1733 return -ENOMEM;
Changli Gao71d9dec2010-12-15 19:57:25 +00001734 atomic_inc(&skb->users);
1735 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1736}
1737
Eric Leblondc0de08d2012-08-16 22:02:58 +00001738static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1739{
Eric Leblonda3d744e2012-11-06 02:10:10 +00001740 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001741 return false;
1742
1743 if (ptype->id_match)
1744 return ptype->id_match(ptype, skb->sk);
1745 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
1746 return true;
1747
1748 return false;
1749}
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751/*
1752 * Support routine. Sends outgoing frames to any network
1753 * taps currently in use.
1754 */
1755
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001756static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757{
1758 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00001759 struct sk_buff *skb2 = NULL;
1760 struct packet_type *pt_prev = NULL;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001761
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 rcu_read_lock();
1763 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1764 /* Never send packets back to the socket
1765 * they originated from - MvS (miquels@drinkel.ow.org)
1766 */
1767 if ((ptype->dev == dev || !ptype->dev) &&
Eric Leblondc0de08d2012-08-16 22:02:58 +00001768 (!skb_loop_sk(ptype, skb))) {
Changli Gao71d9dec2010-12-15 19:57:25 +00001769 if (pt_prev) {
1770 deliver_skb(skb2, pt_prev, skb->dev);
1771 pt_prev = ptype;
1772 continue;
1773 }
1774
1775 skb2 = skb_clone(skb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 if (!skb2)
1777 break;
1778
Eric Dumazet70978182010-12-20 21:22:51 +00001779 net_timestamp_set(skb2);
1780
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 /* skb->nh should be correctly
1782 set by sender, so that the second statement is
1783 just protection against buggy protocols.
1784 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001785 skb_reset_mac_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001787 if (skb_network_header(skb2) < skb2->data ||
Simon Hormanced14f62013-05-28 20:34:25 +00001788 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00001789 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
1790 ntohs(skb2->protocol),
1791 dev->name);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07001792 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 }
1794
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001795 skb2->transport_header = skb2->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 skb2->pkt_type = PACKET_OUTGOING;
Changli Gao71d9dec2010-12-15 19:57:25 +00001797 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 }
1799 }
Changli Gao71d9dec2010-12-15 19:57:25 +00001800 if (pt_prev)
1801 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 rcu_read_unlock();
1803}
1804
Ben Hutchings2c530402012-07-10 10:55:09 +00001805/**
1806 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00001807 * @dev: Network device
1808 * @txq: number of queues available
1809 *
1810 * If real_num_tx_queues is changed the tc mappings may no longer be
1811 * valid. To resolve this verify the tc mapping remains valid and if
1812 * not NULL the mapping. With no priorities mapping to this
1813 * offset/count pair it will no longer be used. In the worst case TC0
1814 * is invalid nothing can be done so disable priority mappings. If is
1815 * expected that drivers will fix this mapping if they can before
1816 * calling netif_set_real_num_tx_queues.
1817 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00001818static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00001819{
1820 int i;
1821 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
1822
1823 /* If TC0 is invalidated disable TC mapping */
1824 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001825 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00001826 dev->num_tc = 0;
1827 return;
1828 }
1829
1830 /* Invalidated prio to tc mappings set to TC0 */
1831 for (i = 1; i < TC_BITMASK + 1; i++) {
1832 int q = netdev_get_prio_tc_map(dev, i);
1833
1834 tc = &dev->tc_to_txq[q];
1835 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001836 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
1837 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00001838 netdev_set_prio_tc_map(dev, i, 0);
1839 }
1840 }
1841}
1842
Alexander Duyck537c00d2013-01-10 08:57:02 +00001843#ifdef CONFIG_XPS
1844static DEFINE_MUTEX(xps_map_mutex);
1845#define xmap_dereference(P) \
1846 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
1847
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001848static struct xps_map *remove_xps_queue(struct xps_dev_maps *dev_maps,
1849 int cpu, u16 index)
1850{
1851 struct xps_map *map = NULL;
1852 int pos;
1853
1854 if (dev_maps)
1855 map = xmap_dereference(dev_maps->cpu_map[cpu]);
1856
1857 for (pos = 0; map && pos < map->len; pos++) {
1858 if (map->queues[pos] == index) {
1859 if (map->len > 1) {
1860 map->queues[pos] = map->queues[--map->len];
1861 } else {
1862 RCU_INIT_POINTER(dev_maps->cpu_map[cpu], NULL);
1863 kfree_rcu(map, rcu);
1864 map = NULL;
1865 }
1866 break;
1867 }
1868 }
1869
1870 return map;
1871}
1872
Alexander Duyck024e9672013-01-10 08:57:46 +00001873static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00001874{
1875 struct xps_dev_maps *dev_maps;
Alexander Duyck024e9672013-01-10 08:57:46 +00001876 int cpu, i;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001877 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001878
1879 mutex_lock(&xps_map_mutex);
1880 dev_maps = xmap_dereference(dev->xps_maps);
1881
1882 if (!dev_maps)
1883 goto out_no_maps;
1884
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001885 for_each_possible_cpu(cpu) {
Alexander Duyck024e9672013-01-10 08:57:46 +00001886 for (i = index; i < dev->num_tx_queues; i++) {
1887 if (!remove_xps_queue(dev_maps, cpu, i))
1888 break;
1889 }
1890 if (i == dev->num_tx_queues)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001891 active = true;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001892 }
1893
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001894 if (!active) {
Alexander Duyck537c00d2013-01-10 08:57:02 +00001895 RCU_INIT_POINTER(dev->xps_maps, NULL);
1896 kfree_rcu(dev_maps, rcu);
1897 }
1898
Alexander Duyck024e9672013-01-10 08:57:46 +00001899 for (i = index; i < dev->num_tx_queues; i++)
1900 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, i),
1901 NUMA_NO_NODE);
1902
Alexander Duyck537c00d2013-01-10 08:57:02 +00001903out_no_maps:
1904 mutex_unlock(&xps_map_mutex);
1905}
1906
Alexander Duyck01c5f862013-01-10 08:57:35 +00001907static struct xps_map *expand_xps_map(struct xps_map *map,
1908 int cpu, u16 index)
1909{
1910 struct xps_map *new_map;
1911 int alloc_len = XPS_MIN_MAP_ALLOC;
1912 int i, pos;
1913
1914 for (pos = 0; map && pos < map->len; pos++) {
1915 if (map->queues[pos] != index)
1916 continue;
1917 return map;
1918 }
1919
1920 /* Need to add queue to this CPU's existing map */
1921 if (map) {
1922 if (pos < map->alloc_len)
1923 return map;
1924
1925 alloc_len = map->alloc_len * 2;
1926 }
1927
1928 /* Need to allocate new map to store queue on this CPU's map */
1929 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
1930 cpu_to_node(cpu));
1931 if (!new_map)
1932 return NULL;
1933
1934 for (i = 0; i < pos; i++)
1935 new_map->queues[i] = map->queues[i];
1936 new_map->alloc_len = alloc_len;
1937 new_map->len = pos;
1938
1939 return new_map;
1940}
1941
Michael S. Tsirkin35735402013-10-02 09:14:06 +03001942int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
1943 u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00001944{
Alexander Duyck01c5f862013-01-10 08:57:35 +00001945 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001946 struct xps_map *map, *new_map;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001947 int maps_sz = max_t(unsigned int, XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES);
Alexander Duyck01c5f862013-01-10 08:57:35 +00001948 int cpu, numa_node_id = -2;
1949 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001950
1951 mutex_lock(&xps_map_mutex);
1952
1953 dev_maps = xmap_dereference(dev->xps_maps);
1954
Alexander Duyck01c5f862013-01-10 08:57:35 +00001955 /* allocate memory for queue storage */
1956 for_each_online_cpu(cpu) {
1957 if (!cpumask_test_cpu(cpu, mask))
1958 continue;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001959
Alexander Duyck01c5f862013-01-10 08:57:35 +00001960 if (!new_dev_maps)
1961 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00001962 if (!new_dev_maps) {
1963 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00001964 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00001965 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00001966
1967 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
1968 NULL;
1969
1970 map = expand_xps_map(map, cpu, index);
1971 if (!map)
1972 goto error;
1973
1974 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
1975 }
1976
1977 if (!new_dev_maps)
1978 goto out_no_new_maps;
1979
1980 for_each_possible_cpu(cpu) {
1981 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu)) {
1982 /* add queue to CPU maps */
1983 int pos = 0;
1984
1985 map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
1986 while ((pos < map->len) && (map->queues[pos] != index))
1987 pos++;
1988
1989 if (pos == map->len)
1990 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001991#ifdef CONFIG_NUMA
Alexander Duyck537c00d2013-01-10 08:57:02 +00001992 if (numa_node_id == -2)
1993 numa_node_id = cpu_to_node(cpu);
1994 else if (numa_node_id != cpu_to_node(cpu))
1995 numa_node_id = -1;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001996#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00001997 } else if (dev_maps) {
1998 /* fill in the new device map from the old device map */
1999 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2000 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00002001 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00002002
Alexander Duyck537c00d2013-01-10 08:57:02 +00002003 }
2004
Alexander Duyck01c5f862013-01-10 08:57:35 +00002005 rcu_assign_pointer(dev->xps_maps, new_dev_maps);
2006
Alexander Duyck537c00d2013-01-10 08:57:02 +00002007 /* Cleanup old maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00002008 if (dev_maps) {
2009 for_each_possible_cpu(cpu) {
2010 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2011 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2012 if (map && map != new_map)
2013 kfree_rcu(map, rcu);
2014 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002015
Alexander Duyck537c00d2013-01-10 08:57:02 +00002016 kfree_rcu(dev_maps, rcu);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002017 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002018
Alexander Duyck01c5f862013-01-10 08:57:35 +00002019 dev_maps = new_dev_maps;
2020 active = true;
2021
2022out_no_new_maps:
2023 /* update Tx queue numa node */
Alexander Duyck537c00d2013-01-10 08:57:02 +00002024 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2025 (numa_node_id >= 0) ? numa_node_id :
2026 NUMA_NO_NODE);
2027
Alexander Duyck01c5f862013-01-10 08:57:35 +00002028 if (!dev_maps)
2029 goto out_no_maps;
2030
2031 /* removes queue from unused CPUs */
2032 for_each_possible_cpu(cpu) {
2033 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu))
2034 continue;
2035
2036 if (remove_xps_queue(dev_maps, cpu, index))
2037 active = true;
2038 }
2039
2040 /* free map if not active */
2041 if (!active) {
2042 RCU_INIT_POINTER(dev->xps_maps, NULL);
2043 kfree_rcu(dev_maps, rcu);
2044 }
2045
2046out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002047 mutex_unlock(&xps_map_mutex);
2048
2049 return 0;
2050error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002051 /* remove any maps that we added */
2052 for_each_possible_cpu(cpu) {
2053 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2054 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2055 NULL;
2056 if (new_map && new_map != map)
2057 kfree(new_map);
2058 }
2059
Alexander Duyck537c00d2013-01-10 08:57:02 +00002060 mutex_unlock(&xps_map_mutex);
2061
Alexander Duyck537c00d2013-01-10 08:57:02 +00002062 kfree(new_dev_maps);
2063 return -ENOMEM;
2064}
2065EXPORT_SYMBOL(netif_set_xps_queue);
2066
2067#endif
John Fastabendf0796d52010-07-01 13:21:57 +00002068/*
2069 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
2070 * greater then real_num_tx_queues stale skbs on the qdisc must be flushed.
2071 */
Tom Herberte6484932010-10-18 18:04:39 +00002072int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002073{
Tom Herbert1d24eb42010-11-21 13:17:27 +00002074 int rc;
2075
Tom Herberte6484932010-10-18 18:04:39 +00002076 if (txq < 1 || txq > dev->num_tx_queues)
2077 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002078
Ben Hutchings5c565802011-02-15 19:39:21 +00002079 if (dev->reg_state == NETREG_REGISTERED ||
2080 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002081 ASSERT_RTNL();
2082
Tom Herbert1d24eb42010-11-21 13:17:27 +00002083 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2084 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002085 if (rc)
2086 return rc;
2087
John Fastabend4f57c082011-01-17 08:06:04 +00002088 if (dev->num_tc)
2089 netif_setup_tc(dev, txq);
2090
Alexander Duyck024e9672013-01-10 08:57:46 +00002091 if (txq < dev->real_num_tx_queues) {
Tom Herberte6484932010-10-18 18:04:39 +00002092 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002093#ifdef CONFIG_XPS
2094 netif_reset_xps_queues_gt(dev, txq);
2095#endif
2096 }
John Fastabendf0796d52010-07-01 13:21:57 +00002097 }
Tom Herberte6484932010-10-18 18:04:39 +00002098
2099 dev->real_num_tx_queues = txq;
2100 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002101}
2102EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002103
Michael Daltona953be52014-01-16 22:23:28 -08002104#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002105/**
2106 * netif_set_real_num_rx_queues - set actual number of RX queues used
2107 * @dev: Network device
2108 * @rxq: Actual number of RX queues
2109 *
2110 * This must be called either with the rtnl_lock held or before
2111 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002112 * negative error code. If called before registration, it always
2113 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002114 */
2115int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2116{
2117 int rc;
2118
Tom Herbertbd25fa72010-10-18 18:00:16 +00002119 if (rxq < 1 || rxq > dev->num_rx_queues)
2120 return -EINVAL;
2121
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002122 if (dev->reg_state == NETREG_REGISTERED) {
2123 ASSERT_RTNL();
2124
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002125 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2126 rxq);
2127 if (rc)
2128 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002129 }
2130
2131 dev->real_num_rx_queues = rxq;
2132 return 0;
2133}
2134EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2135#endif
2136
Ben Hutchings2c530402012-07-10 10:55:09 +00002137/**
2138 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002139 *
2140 * This routine should set an upper limit on the number of RSS queues
2141 * used by default by multiqueue devices.
2142 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002143int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002144{
2145 return min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
2146}
2147EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2148
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002149static inline void __netif_reschedule(struct Qdisc *q)
2150{
2151 struct softnet_data *sd;
2152 unsigned long flags;
2153
2154 local_irq_save(flags);
2155 sd = &__get_cpu_var(softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002156 q->next_sched = NULL;
2157 *sd->output_queue_tailp = q;
2158 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002159 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2160 local_irq_restore(flags);
2161}
2162
David S. Miller37437bb2008-07-16 02:15:04 -07002163void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002164{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002165 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2166 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002167}
2168EXPORT_SYMBOL(__netif_schedule);
2169
Eric Dumazete6247022013-12-05 04:45:08 -08002170struct dev_kfree_skb_cb {
2171 enum skb_free_reason reason;
2172};
2173
2174static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002175{
Eric Dumazete6247022013-12-05 04:45:08 -08002176 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002177}
Denis Vlasenko56079432006-03-29 15:57:29 -08002178
Eric Dumazete6247022013-12-05 04:45:08 -08002179void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2180{
2181 unsigned long flags;
2182
2183 if (likely(atomic_read(&skb->users) == 1)) {
2184 smp_rmb();
2185 atomic_set(&skb->users, 0);
2186 } else if (likely(!atomic_dec_and_test(&skb->users))) {
2187 return;
2188 }
2189 get_kfree_skb_cb(skb)->reason = reason;
2190 local_irq_save(flags);
2191 skb->next = __this_cpu_read(softnet_data.completion_queue);
2192 __this_cpu_write(softnet_data.completion_queue, skb);
2193 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2194 local_irq_restore(flags);
2195}
2196EXPORT_SYMBOL(__dev_kfree_skb_irq);
2197
2198void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002199{
2200 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002201 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002202 else
2203 dev_kfree_skb(skb);
2204}
Eric Dumazete6247022013-12-05 04:45:08 -08002205EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002206
2207
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002208/**
2209 * netif_device_detach - mark device as removed
2210 * @dev: network device
2211 *
2212 * Mark device as removed from system and therefore no longer available.
2213 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002214void netif_device_detach(struct net_device *dev)
2215{
2216 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2217 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002218 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002219 }
2220}
2221EXPORT_SYMBOL(netif_device_detach);
2222
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002223/**
2224 * netif_device_attach - mark device as attached
2225 * @dev: network device
2226 *
2227 * Mark device as attached from system and restart if needed.
2228 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002229void netif_device_attach(struct net_device *dev)
2230{
2231 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2232 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002233 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002234 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002235 }
2236}
2237EXPORT_SYMBOL(netif_device_attach);
2238
Ben Hutchings36c92472012-01-17 07:57:56 +00002239static void skb_warn_bad_offload(const struct sk_buff *skb)
2240{
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002241 static const netdev_features_t null_features = 0;
Ben Hutchings36c92472012-01-17 07:57:56 +00002242 struct net_device *dev = skb->dev;
2243 const char *driver = "";
2244
Ben Greearc846ad92013-04-19 10:45:52 +00002245 if (!net_ratelimit())
2246 return;
2247
Ben Hutchings36c92472012-01-17 07:57:56 +00002248 if (dev && dev->dev.parent)
2249 driver = dev_driver_string(dev->dev.parent);
2250
2251 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2252 "gso_type=%d ip_summed=%d\n",
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002253 driver, dev ? &dev->features : &null_features,
2254 skb->sk ? &skb->sk->sk_route_caps : &null_features,
Ben Hutchings36c92472012-01-17 07:57:56 +00002255 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2256 skb_shinfo(skb)->gso_type, skb->ip_summed);
2257}
2258
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259/*
2260 * Invalidate hardware checksum when packet is to be mangled, and
2261 * complete checksum manually on outgoing path.
2262 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002263int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264{
Al Virod3bc23e2006-11-14 21:24:49 -08002265 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002266 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
Patrick McHardy84fa7932006-08-29 16:44:56 -07002268 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002269 goto out_set_summed;
2270
2271 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002272 skb_warn_bad_offload(skb);
2273 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274 }
2275
Eric Dumazetcef401d2013-01-25 20:34:37 +00002276 /* Before computing a checksum, we should make sure no frag could
2277 * be modified by an external entity : checksum could be wrong.
2278 */
2279 if (skb_has_shared_frag(skb)) {
2280 ret = __skb_linearize(skb);
2281 if (ret)
2282 goto out;
2283 }
2284
Michał Mirosław55508d62010-12-14 15:24:08 +00002285 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002286 BUG_ON(offset >= skb_headlen(skb));
2287 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2288
2289 offset += skb->csum_offset;
2290 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2291
2292 if (skb_cloned(skb) &&
2293 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2295 if (ret)
2296 goto out;
2297 }
2298
Herbert Xua0308472007-10-15 01:47:15 -07002299 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
Herbert Xua430a432006-07-08 13:34:56 -07002300out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002302out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303 return ret;
2304}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002305EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
Vlad Yasevich53d64712014-03-27 17:26:18 -04002307__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002308{
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002309 unsigned int vlan_depth = skb->mac_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002310 __be16 type = skb->protocol;
2311
Pravin B Shelar19acc322013-05-07 20:41:07 +00002312 /* Tunnel gso handlers can set protocol to ethernet. */
2313 if (type == htons(ETH_P_TEB)) {
2314 struct ethhdr *eth;
2315
2316 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
2317 return 0;
2318
2319 eth = (struct ethhdr *)skb_mac_header(skb);
2320 type = eth->h_proto;
2321 }
2322
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002323 /* if skb->protocol is 802.1Q/AD then the header should already be
2324 * present at mac_len - VLAN_HLEN (if mac_len > 0), or at
2325 * ETH_HLEN otherwise
2326 */
2327 if (type == htons(ETH_P_8021Q) || type == htons(ETH_P_8021AD)) {
2328 if (vlan_depth) {
2329 if (unlikely(WARN_ON(vlan_depth < VLAN_HLEN)))
2330 return 0;
2331 vlan_depth -= VLAN_HLEN;
2332 } else {
2333 vlan_depth = ETH_HLEN;
2334 }
2335 do {
2336 struct vlan_hdr *vh;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002337
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002338 if (unlikely(!pskb_may_pull(skb,
2339 vlan_depth + VLAN_HLEN)))
2340 return 0;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002341
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002342 vh = (struct vlan_hdr *)(skb->data + vlan_depth);
2343 type = vh->h_vlan_encapsulated_proto;
2344 vlan_depth += VLAN_HLEN;
2345 } while (type == htons(ETH_P_8021Q) ||
2346 type == htons(ETH_P_8021AD));
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002347 }
2348
Vlad Yasevich53d64712014-03-27 17:26:18 -04002349 *depth = vlan_depth;
2350
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002351 return type;
2352}
2353
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002354/**
2355 * skb_mac_gso_segment - mac layer segmentation handler.
2356 * @skb: buffer to segment
2357 * @features: features for the output path (see dev->features)
2358 */
2359struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
2360 netdev_features_t features)
2361{
2362 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
2363 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04002364 int vlan_depth = skb->mac_len;
2365 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002366
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002367 if (unlikely(!type))
2368 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002369
Vlad Yasevich53d64712014-03-27 17:26:18 -04002370 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002371
2372 rcu_read_lock();
2373 list_for_each_entry_rcu(ptype, &offload_base, list) {
2374 if (ptype->type == type && ptype->callbacks.gso_segment) {
2375 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
2376 int err;
2377
2378 err = ptype->callbacks.gso_send_check(skb);
2379 segs = ERR_PTR(err);
2380 if (err || skb_gso_ok(skb, features))
2381 break;
2382 __skb_push(skb, (skb->data -
2383 skb_network_header(skb)));
2384 }
2385 segs = ptype->callbacks.gso_segment(skb, features);
2386 break;
2387 }
2388 }
2389 rcu_read_unlock();
2390
2391 __skb_push(skb, skb->data - skb_mac_header(skb));
2392
2393 return segs;
2394}
2395EXPORT_SYMBOL(skb_mac_gso_segment);
2396
2397
Cong Wang12b00042013-02-05 16:36:38 +00002398/* openvswitch calls this on rx path, so we need a different check.
2399 */
2400static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
2401{
2402 if (tx_path)
2403 return skb->ip_summed != CHECKSUM_PARTIAL;
2404 else
2405 return skb->ip_summed == CHECKSUM_NONE;
2406}
2407
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002408/**
Cong Wang12b00042013-02-05 16:36:38 +00002409 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002410 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002411 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00002412 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002413 *
2414 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07002415 *
2416 * It may return NULL if the skb requires no segmentation. This is
2417 * only possible when GSO is used for verifying header integrity.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002418 */
Cong Wang12b00042013-02-05 16:36:38 +00002419struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
2420 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002421{
Cong Wang12b00042013-02-05 16:36:38 +00002422 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002423 int err;
2424
Ben Hutchings36c92472012-01-17 07:57:56 +00002425 skb_warn_bad_offload(skb);
Herbert Xu67fd1a72009-01-19 16:26:44 -08002426
françois romieua40e0a62014-07-15 23:55:35 +02002427 err = skb_cow_head(skb, 0);
2428 if (err < 0)
Herbert Xua430a432006-07-08 13:34:56 -07002429 return ERR_PTR(err);
2430 }
2431
Pravin B Shelar68c33162013-02-14 14:02:41 +00002432 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07002433 SKB_GSO_CB(skb)->encap_level = 0;
2434
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002435 skb_reset_mac_header(skb);
2436 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002437
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002438 return skb_mac_gso_segment(skb, features);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002439}
Cong Wang12b00042013-02-05 16:36:38 +00002440EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002441
Herbert Xufb286bb2005-11-10 13:01:24 -08002442/* Take action when hardware reception checksum errors are detected. */
2443#ifdef CONFIG_BUG
2444void netdev_rx_csum_fault(struct net_device *dev)
2445{
2446 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002447 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08002448 dump_stack();
2449 }
2450}
2451EXPORT_SYMBOL(netdev_rx_csum_fault);
2452#endif
2453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454/* Actually, we should eliminate this check as soon as we know, that:
2455 * 1. IOMMU is present and allows to map all the memory.
2456 * 2. No high memory really exists on this machine.
2457 */
2458
Florian Westphalc1e756b2014-05-05 15:00:44 +02002459static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460{
Herbert Xu3d3a8532006-06-27 13:33:10 -07002461#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462 int i;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002463 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002464 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2465 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2466 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002467 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00002468 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002469 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002471 if (PCI_DMA_BUS_IS_PHYS) {
2472 struct device *pdev = dev->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
Eric Dumazet9092c652010-04-02 13:34:49 -07002474 if (!pdev)
2475 return 0;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002476 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002477 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2478 dma_addr_t addr = page_to_phys(skb_frag_page(frag));
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002479 if (!pdev->dma_mask || addr + PAGE_SIZE - 1 > *pdev->dma_mask)
2480 return 1;
2481 }
2482 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07002483#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 return 0;
2485}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002487struct dev_gso_cb {
2488 void (*destructor)(struct sk_buff *skb);
2489};
2490
2491#define DEV_GSO_CB(skb) ((struct dev_gso_cb *)(skb)->cb)
2492
2493static void dev_gso_skb_destructor(struct sk_buff *skb)
2494{
2495 struct dev_gso_cb *cb;
2496
Eric Dumazet289dccb2013-12-20 14:29:08 -08002497 kfree_skb_list(skb->next);
2498 skb->next = NULL;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002499
2500 cb = DEV_GSO_CB(skb);
2501 if (cb->destructor)
2502 cb->destructor(skb);
2503}
2504
2505/**
2506 * dev_gso_segment - Perform emulated hardware segmentation on skb.
2507 * @skb: buffer to segment
Jesse Gross91ecb632011-01-09 06:23:33 +00002508 * @features: device features as applicable to this skb
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002509 *
2510 * This function segments the given skb and stores the list of segments
2511 * in skb->next.
2512 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002513static int dev_gso_segment(struct sk_buff *skb, netdev_features_t features)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002514{
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002515 struct sk_buff *segs;
2516
Herbert Xu576a30e2006-06-27 13:22:38 -07002517 segs = skb_gso_segment(skb, features);
2518
2519 /* Verifying header integrity only. */
2520 if (!segs)
2521 return 0;
2522
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07002523 if (IS_ERR(segs))
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002524 return PTR_ERR(segs);
2525
2526 skb->next = segs;
2527 DEV_GSO_CB(skb)->destructor = skb->destructor;
2528 skb->destructor = dev_gso_skb_destructor;
2529
2530 return 0;
2531}
2532
Simon Horman3b392dd2014-06-04 08:53:17 +09002533/* If MPLS offload request, verify we are testing hardware MPLS features
2534 * instead of standard features for the netdev.
2535 */
2536#ifdef CONFIG_NET_MPLS_GSO
2537static netdev_features_t net_mpls_features(struct sk_buff *skb,
2538 netdev_features_t features,
2539 __be16 type)
2540{
2541 if (type == htons(ETH_P_MPLS_UC) || type == htons(ETH_P_MPLS_MC))
2542 features &= skb->dev->mpls_features;
2543
2544 return features;
2545}
2546#else
2547static netdev_features_t net_mpls_features(struct sk_buff *skb,
2548 netdev_features_t features,
2549 __be16 type)
2550{
2551 return features;
2552}
2553#endif
2554
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002555static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02002556 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00002557{
Vlad Yasevich53d64712014-03-27 17:26:18 -04002558 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09002559 __be16 type;
2560
2561 type = skb_network_protocol(skb, &tmp);
2562 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04002563
Ed Cashinc0d680e2012-09-19 15:49:00 +00002564 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09002565 !can_checksum_protocol(features, type)) {
Jesse Grossf01a5232011-01-09 06:23:31 +00002566 features &= ~NETIF_F_ALL_CSUM;
Florian Westphalc1e756b2014-05-05 15:00:44 +02002567 } else if (illegal_highdma(skb->dev, skb)) {
Jesse Grossf01a5232011-01-09 06:23:31 +00002568 features &= ~NETIF_F_SG;
2569 }
2570
2571 return features;
2572}
2573
Florian Westphalc1e756b2014-05-05 15:00:44 +02002574netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00002575{
2576 __be16 protocol = skb->protocol;
Florian Westphalc1e756b2014-05-05 15:00:44 +02002577 netdev_features_t features = skb->dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00002578
Florian Westphalc1e756b2014-05-05 15:00:44 +02002579 if (skb_shinfo(skb)->gso_segs > skb->dev->gso_max_segs)
Ben Hutchings30b678d2012-07-30 15:57:00 +00002580 features &= ~NETIF_F_GSO_MASK;
2581
Patrick McHardy8ad227f2013-04-19 02:04:31 +00002582 if (protocol == htons(ETH_P_8021Q) || protocol == htons(ETH_P_8021AD)) {
Jesse Gross58e998c2010-10-29 12:14:55 +00002583 struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data;
2584 protocol = veh->h_vlan_encapsulated_proto;
Jesse Grossf01a5232011-01-09 06:23:31 +00002585 } else if (!vlan_tx_tag_present(skb)) {
Florian Westphalc1e756b2014-05-05 15:00:44 +02002586 return harmonize_features(skb, features);
Jesse Grossf01a5232011-01-09 06:23:31 +00002587 }
Jesse Gross58e998c2010-10-29 12:14:55 +00002588
Florian Westphalc1e756b2014-05-05 15:00:44 +02002589 features &= (skb->dev->vlan_features | NETIF_F_HW_VLAN_CTAG_TX |
Patrick McHardy8ad227f2013-04-19 02:04:31 +00002590 NETIF_F_HW_VLAN_STAG_TX);
Jesse Grossf01a5232011-01-09 06:23:31 +00002591
Alexander Duyckcdbaa0b2013-07-10 17:05:06 -07002592 if (protocol == htons(ETH_P_8021Q) || protocol == htons(ETH_P_8021AD))
Jesse Grossf01a5232011-01-09 06:23:31 +00002593 features &= NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST |
Patrick McHardy8ad227f2013-04-19 02:04:31 +00002594 NETIF_F_GEN_CSUM | NETIF_F_HW_VLAN_CTAG_TX |
2595 NETIF_F_HW_VLAN_STAG_TX;
Alexander Duyckcdbaa0b2013-07-10 17:05:06 -07002596
Florian Westphalc1e756b2014-05-05 15:00:44 +02002597 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002598}
Florian Westphalc1e756b2014-05-05 15:00:44 +02002599EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002600
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002601int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
Jason Wangf663dd92014-01-10 16:18:26 +08002602 struct netdev_queue *txq)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002603{
Stephen Hemminger00829822008-11-20 20:14:53 -08002604 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy572a9d72009-11-10 06:14:14 +00002605 int rc = NETDEV_TX_OK;
Koki Sanagiec764bf2011-05-30 21:48:34 +00002606 unsigned int skb_len;
Stephen Hemminger00829822008-11-20 20:14:53 -08002607
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002608 if (likely(!skb->next)) {
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002609 netdev_features_t features;
Jesse Grossfc741212011-01-09 06:23:32 +00002610
Eric Dumazet93f154b2009-05-18 22:19:19 -07002611 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002612 * If device doesn't need skb->dst, release it right now while
Eric Dumazet93f154b2009-05-18 22:19:19 -07002613 * its hot in this cpu cache
2614 */
Eric Dumazetadf30902009-06-02 05:19:30 +00002615 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
2616 skb_dst_drop(skb);
2617
Jesse Grossfc741212011-01-09 06:23:32 +00002618 features = netif_skb_features(skb);
2619
Jesse Gross7b9c6092010-10-20 13:56:04 +00002620 if (vlan_tx_tag_present(skb) &&
Patrick McHardy86a9bad2013-04-19 02:04:30 +00002621 !vlan_hw_offload_capable(features, skb->vlan_proto)) {
2622 skb = __vlan_put_tag(skb, skb->vlan_proto,
2623 vlan_tx_tag_get(skb));
Jesse Gross7b9c6092010-10-20 13:56:04 +00002624 if (unlikely(!skb))
2625 goto out;
2626
2627 skb->vlan_tci = 0;
2628 }
2629
Alexander Duyckfc70fb62012-12-07 14:14:15 +00002630 /* If encapsulation offload request, verify we are testing
2631 * hardware encapsulation features instead of standard
2632 * features for the netdev
2633 */
2634 if (skb->encapsulation)
2635 features &= dev->hw_enc_features;
2636
Jesse Grossfc741212011-01-09 06:23:32 +00002637 if (netif_needs_gso(skb, features)) {
Jesse Gross91ecb632011-01-09 06:23:33 +00002638 if (unlikely(dev_gso_segment(skb, features)))
David S. Miller9ccb8972010-04-22 01:02:07 -07002639 goto out_kfree_skb;
2640 if (skb->next)
2641 goto gso;
John Fastabend6afff0c2010-06-16 14:18:12 +00002642 } else {
Jesse Gross02932ce2011-01-09 06:23:34 +00002643 if (skb_needs_linearize(skb, features) &&
John Fastabend6afff0c2010-06-16 14:18:12 +00002644 __skb_linearize(skb))
2645 goto out_kfree_skb;
2646
2647 /* If packet is not checksummed and device does not
2648 * support checksumming for this protocol, complete
2649 * checksumming here.
2650 */
2651 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Alexander Duyckfc70fb62012-12-07 14:14:15 +00002652 if (skb->encapsulation)
2653 skb_set_inner_transport_header(skb,
2654 skb_checksum_start_offset(skb));
2655 else
2656 skb_set_transport_header(skb,
2657 skb_checksum_start_offset(skb));
Jesse Gross03634662011-01-09 06:23:35 +00002658 if (!(features & NETIF_F_ALL_CSUM) &&
John Fastabend6afff0c2010-06-16 14:18:12 +00002659 skb_checksum_help(skb))
2660 goto out_kfree_skb;
2661 }
David S. Miller9ccb8972010-04-22 01:02:07 -07002662 }
2663
Eric Dumazetb40863c2012-09-18 20:44:49 +00002664 if (!list_empty(&ptype_all))
2665 dev_queue_xmit_nit(skb, dev);
2666
Koki Sanagiec764bf2011-05-30 21:48:34 +00002667 skb_len = skb->len;
Ben Hutchingsd87d04a2014-01-10 22:17:03 +00002668 trace_net_dev_start_xmit(skb, dev);
Ben Hutchings20567662014-01-10 22:16:30 +00002669 rc = ops->ndo_start_xmit(skb, dev);
Koki Sanagiec764bf2011-05-30 21:48:34 +00002670 trace_net_dev_xmit(skb, rc, dev, skb_len);
Jason Wangf663dd92014-01-10 16:18:26 +08002671 if (rc == NETDEV_TX_OK)
Eric Dumazet08baf562009-05-25 22:58:01 -07002672 txq_trans_update(txq);
Patrick Ohlyac45f602009-02-12 05:03:37 +00002673 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002674 }
2675
Herbert Xu576a30e2006-06-27 13:22:38 -07002676gso:
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002677 do {
2678 struct sk_buff *nskb = skb->next;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002679
2680 skb->next = nskb->next;
2681 nskb->next = NULL;
Krishna Kumar068a2de2009-12-09 20:59:58 +00002682
Eric Dumazetb40863c2012-09-18 20:44:49 +00002683 if (!list_empty(&ptype_all))
2684 dev_queue_xmit_nit(nskb, dev);
2685
Koki Sanagiec764bf2011-05-30 21:48:34 +00002686 skb_len = nskb->len;
Ben Hutchingsd87d04a2014-01-10 22:17:03 +00002687 trace_net_dev_start_xmit(nskb, dev);
Jason Wangf663dd92014-01-10 16:18:26 +08002688 rc = ops->ndo_start_xmit(nskb, dev);
Koki Sanagiec764bf2011-05-30 21:48:34 +00002689 trace_net_dev_xmit(nskb, rc, dev, skb_len);
Patrick McHardyec634fe2009-07-05 19:23:38 -07002690 if (unlikely(rc != NETDEV_TX_OK)) {
Patrick McHardy572a9d72009-11-10 06:14:14 +00002691 if (rc & ~NETDEV_TX_MASK)
2692 goto out_kfree_gso_skb;
Michael Chanf54d9e82006-06-25 23:57:04 -07002693 nskb->next = skb->next;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002694 skb->next = nskb;
2695 return rc;
2696 }
Eric Dumazet08baf562009-05-25 22:58:01 -07002697 txq_trans_update(txq);
Tom Herbert734664982011-11-28 16:32:44 +00002698 if (unlikely(netif_xmit_stopped(txq) && skb->next))
Michael Chanf54d9e82006-06-25 23:57:04 -07002699 return NETDEV_TX_BUSY;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002700 } while (skb->next);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002701
Patrick McHardy572a9d72009-11-10 06:14:14 +00002702out_kfree_gso_skb:
Sridhar Samudrala0c772152013-04-29 13:02:42 +00002703 if (likely(skb->next == NULL)) {
Patrick McHardy572a9d72009-11-10 06:14:14 +00002704 skb->destructor = DEV_GSO_CB(skb)->destructor;
Sridhar Samudrala0c772152013-04-29 13:02:42 +00002705 consume_skb(skb);
2706 return rc;
2707 }
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002708out_kfree_skb:
2709 kfree_skb(skb);
Jesse Gross7b9c6092010-10-20 13:56:04 +00002710out:
Patrick McHardy572a9d72009-11-10 06:14:14 +00002711 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002712}
John Fastabenda6cc0cf2013-11-06 09:54:46 -08002713EXPORT_SYMBOL_GPL(dev_hard_start_xmit);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002714
Eric Dumazet1def9232013-01-10 12:36:42 +00002715static void qdisc_pkt_len_init(struct sk_buff *skb)
2716{
2717 const struct skb_shared_info *shinfo = skb_shinfo(skb);
2718
2719 qdisc_skb_cb(skb)->pkt_len = skb->len;
2720
2721 /* To get more precise estimation of bytes sent on wire,
2722 * we add to pkt_len the headers size of all segments
2723 */
2724 if (shinfo->gso_size) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08002725 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00002726 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00002727
Eric Dumazet757b8b12013-01-15 21:14:21 -08002728 /* mac layer + network layer */
2729 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
2730
2731 /* + transport layer */
Eric Dumazet1def9232013-01-10 12:36:42 +00002732 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
2733 hdr_len += tcp_hdrlen(skb);
2734 else
2735 hdr_len += sizeof(struct udphdr);
Jason Wang15e5a032013-03-25 20:19:59 +00002736
2737 if (shinfo->gso_type & SKB_GSO_DODGY)
2738 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
2739 shinfo->gso_size);
2740
2741 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00002742 }
2743}
2744
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002745static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
2746 struct net_device *dev,
2747 struct netdev_queue *txq)
2748{
2749 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazeta2da5702011-01-20 03:48:19 +00002750 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002751 int rc;
2752
Eric Dumazet1def9232013-01-10 12:36:42 +00002753 qdisc_pkt_len_init(skb);
Eric Dumazeta2da5702011-01-20 03:48:19 +00002754 qdisc_calculate_pkt_len(skb, q);
Eric Dumazet79640a42010-06-02 05:09:29 -07002755 /*
2756 * Heuristic to force contended enqueues to serialize on a
2757 * separate lock before trying to get qdisc main lock.
Ying Xue9bf2b8c2014-06-26 15:56:31 +08002758 * This permits __QDISC___STATE_RUNNING owner to get the lock more
2759 * often and dequeue packets faster.
Eric Dumazet79640a42010-06-02 05:09:29 -07002760 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00002761 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07002762 if (unlikely(contended))
2763 spin_lock(&q->busylock);
2764
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002765 spin_lock(root_lock);
2766 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
2767 kfree_skb(skb);
2768 rc = NET_XMIT_DROP;
2769 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07002770 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002771 /*
2772 * This is a work-conserving queue; there are no old skbs
2773 * waiting to be sent out; and the qdisc is not running -
2774 * xmit the skb directly.
2775 */
Eric Dumazet7fee2262010-05-11 23:19:48 +00002776 if (!(dev->priv_flags & IFF_XMIT_DST_RELEASE))
2777 skb_dst_force(skb);
Eric Dumazetbfe0d022011-01-09 08:30:54 +00002778
Eric Dumazetbfe0d022011-01-09 08:30:54 +00002779 qdisc_bstats_update(q, skb);
2780
Eric Dumazet79640a42010-06-02 05:09:29 -07002781 if (sch_direct_xmit(skb, q, dev, txq, root_lock)) {
2782 if (unlikely(contended)) {
2783 spin_unlock(&q->busylock);
2784 contended = false;
2785 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002786 __qdisc_run(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07002787 } else
Eric Dumazetbc135b22010-06-02 03:23:51 -07002788 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002789
2790 rc = NET_XMIT_SUCCESS;
2791 } else {
Eric Dumazet7fee2262010-05-11 23:19:48 +00002792 skb_dst_force(skb);
Eric Dumazeta2da5702011-01-20 03:48:19 +00002793 rc = q->enqueue(skb, q) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07002794 if (qdisc_run_begin(q)) {
2795 if (unlikely(contended)) {
2796 spin_unlock(&q->busylock);
2797 contended = false;
2798 }
2799 __qdisc_run(q);
2800 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002801 }
2802 spin_unlock(root_lock);
Eric Dumazet79640a42010-06-02 05:09:29 -07002803 if (unlikely(contended))
2804 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002805 return rc;
2806}
2807
Daniel Borkmann86f85152013-12-29 17:27:11 +01002808#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00002809static void skb_update_prio(struct sk_buff *skb)
2810{
Igor Maravic6977a792011-11-25 07:44:54 +00002811 struct netprio_map *map = rcu_dereference_bh(skb->dev->priomap);
Neil Horman5bc14212011-11-22 05:10:51 +00002812
Eric Dumazet91c68ce2012-07-08 21:45:10 +00002813 if (!skb->priority && skb->sk && map) {
2814 unsigned int prioidx = skb->sk->sk_cgrp_prioidx;
2815
2816 if (prioidx < map->priomap_len)
2817 skb->priority = map->priomap[prioidx];
2818 }
Neil Horman5bc14212011-11-22 05:10:51 +00002819}
2820#else
2821#define skb_update_prio(skb)
2822#endif
2823
Eric Dumazet745e20f2010-09-29 13:23:09 -07002824static DEFINE_PER_CPU(int, xmit_recursion);
David S. Miller11a766c2010-10-25 12:51:55 -07002825#define RECURSION_LIMIT 10
Eric Dumazet745e20f2010-09-29 13:23:09 -07002826
Dave Jonesd29f7492008-07-22 14:09:06 -07002827/**
Michel Machado95603e22012-06-12 10:16:35 +00002828 * dev_loopback_xmit - loop back @skb
2829 * @skb: buffer to transmit
2830 */
2831int dev_loopback_xmit(struct sk_buff *skb)
2832{
2833 skb_reset_mac_header(skb);
2834 __skb_pull(skb, skb_network_offset(skb));
2835 skb->pkt_type = PACKET_LOOPBACK;
2836 skb->ip_summed = CHECKSUM_UNNECESSARY;
2837 WARN_ON(!skb_dst(skb));
2838 skb_dst_force(skb);
2839 netif_rx_ni(skb);
2840 return 0;
2841}
2842EXPORT_SYMBOL(dev_loopback_xmit);
2843
2844/**
Jason Wang9d08dd32014-01-20 11:25:13 +08002845 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07002846 * @skb: buffer to transmit
Jason Wang9d08dd32014-01-20 11:25:13 +08002847 * @accel_priv: private data used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07002848 *
2849 * Queue a buffer for transmission to a network device. The caller must
2850 * have set the device and priority and built the buffer before calling
2851 * this function. The function can be called from an interrupt.
2852 *
2853 * A negative errno code is returned on a failure. A success does not
2854 * guarantee the frame will be transmitted as it may be dropped due
2855 * to congestion or traffic shaping.
2856 *
2857 * -----------------------------------------------------------------------------------
2858 * I notice this method can also return errors from the queue disciplines,
2859 * including NET_XMIT_DROP, which is a positive value. So, errors can also
2860 * be positive.
2861 *
2862 * Regardless of the return value, the skb is consumed, so it is currently
2863 * difficult to retry a send to this method. (You can bump the ref count
2864 * before sending to hold a reference for retry if you are careful.)
2865 *
2866 * When calling this method, interrupts MUST be enabled. This is because
2867 * the BH enable code must have IRQs enabled so that it will not deadlock.
2868 * --BLG
2869 */
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05302870static int __dev_queue_xmit(struct sk_buff *skb, void *accel_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871{
2872 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07002873 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002874 struct Qdisc *q;
2875 int rc = -ENOMEM;
2876
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00002877 skb_reset_mac_header(skb);
2878
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002879 /* Disable soft irqs for various locks below. Also
2880 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002882 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
Neil Horman5bc14212011-11-22 05:10:51 +00002884 skb_update_prio(skb);
2885
Jason Wangf663dd92014-01-10 16:18:26 +08002886 txq = netdev_pick_tx(dev, skb, accel_priv);
Paul E. McKenneya898def2010-02-22 17:04:49 -08002887 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07002888
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889#ifdef CONFIG_NET_CLS_ACT
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002890 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891#endif
Koki Sanagicf66ba52010-08-23 18:45:02 +09002892 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002894 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07002895 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 }
2897
2898 /* The device has no queue. Common case for software devices:
2899 loopback, all the sorts of tunnels...
2900
Herbert Xu932ff272006-06-09 12:20:56 -07002901 Really, it is unlikely that netif_tx_lock protection is necessary
2902 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 counters.)
2904 However, it is possible, that they rely on protection
2905 made by us here.
2906
2907 Check this and shot the lock. It is not prone from deadlocks.
2908 Either shot noqueue qdisc, it is even simpler 8)
2909 */
2910 if (dev->flags & IFF_UP) {
2911 int cpu = smp_processor_id(); /* ok because BHs are off */
2912
David S. Millerc773e842008-07-08 23:13:53 -07002913 if (txq->xmit_lock_owner != cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Eric Dumazet745e20f2010-09-29 13:23:09 -07002915 if (__this_cpu_read(xmit_recursion) > RECURSION_LIMIT)
2916 goto recursion_alert;
2917
David S. Millerc773e842008-07-08 23:13:53 -07002918 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
Tom Herbert734664982011-11-28 16:32:44 +00002920 if (!netif_xmit_stopped(txq)) {
Eric Dumazet745e20f2010-09-29 13:23:09 -07002921 __this_cpu_inc(xmit_recursion);
Jason Wangf663dd92014-01-10 16:18:26 +08002922 rc = dev_hard_start_xmit(skb, dev, txq);
Eric Dumazet745e20f2010-09-29 13:23:09 -07002923 __this_cpu_dec(xmit_recursion);
Patrick McHardy572a9d72009-11-10 06:14:14 +00002924 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07002925 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 goto out;
2927 }
2928 }
David S. Millerc773e842008-07-08 23:13:53 -07002929 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00002930 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
2931 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 } else {
2933 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07002934 * unfortunately
2935 */
2936recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00002937 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
2938 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939 }
2940 }
2941
2942 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07002943 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
Eric Dumazet015f0682014-03-27 08:45:56 -07002945 atomic_long_inc(&dev->tx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 kfree_skb(skb);
2947 return rc;
2948out:
Herbert Xud4828d82006-06-22 02:28:18 -07002949 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 return rc;
2951}
Jason Wangf663dd92014-01-10 16:18:26 +08002952
2953int dev_queue_xmit(struct sk_buff *skb)
2954{
2955 return __dev_queue_xmit(skb, NULL);
2956}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002957EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Jason Wangf663dd92014-01-10 16:18:26 +08002959int dev_queue_xmit_accel(struct sk_buff *skb, void *accel_priv)
2960{
2961 return __dev_queue_xmit(skb, accel_priv);
2962}
2963EXPORT_SYMBOL(dev_queue_xmit_accel);
2964
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
2966/*=======================================================================
2967 Receiver routines
2968 =======================================================================*/
2969
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07002970int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00002971EXPORT_SYMBOL(netdev_max_backlog);
2972
Eric Dumazet3b098e22010-05-15 23:57:10 -07002973int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07002974int netdev_budget __read_mostly = 300;
2975int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07002977/* Called with irq disabled */
2978static inline void ____napi_schedule(struct softnet_data *sd,
2979 struct napi_struct *napi)
2980{
2981 list_add_tail(&napi->poll_list, &sd->poll_list);
2982 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
2983}
2984
Eric Dumazetdf334542010-03-24 19:13:54 +00002985#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07002986
2987/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00002988struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07002989EXPORT_SYMBOL(rps_sock_flow_table);
2990
Ingo Molnarc5905af2012-02-24 08:31:31 +01002991struct static_key rps_needed __read_mostly;
Eric Dumazetadc93002011-11-17 03:13:26 +00002992
Ben Hutchingsc4454772011-01-19 11:03:53 +00002993static struct rps_dev_flow *
2994set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
2995 struct rps_dev_flow *rflow, u16 next_cpu)
2996{
Ben Hutchings09994d12011-10-03 04:42:46 +00002997 if (next_cpu != RPS_NO_CPU) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00002998#ifdef CONFIG_RFS_ACCEL
2999 struct netdev_rx_queue *rxqueue;
3000 struct rps_dev_flow_table *flow_table;
3001 struct rps_dev_flow *old_rflow;
3002 u32 flow_id;
3003 u16 rxq_index;
3004 int rc;
3005
3006 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00003007 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
3008 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00003009 goto out;
3010 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
3011 if (rxq_index == skb_get_rx_queue(skb))
3012 goto out;
3013
3014 rxqueue = dev->_rx + rxq_index;
3015 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3016 if (!flow_table)
3017 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07003018 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003019 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
3020 rxq_index, flow_id);
3021 if (rc < 0)
3022 goto out;
3023 old_rflow = rflow;
3024 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00003025 rflow->filter = rc;
3026 if (old_rflow->filter == rflow->filter)
3027 old_rflow->filter = RPS_NO_FILTER;
3028 out:
3029#endif
3030 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00003031 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003032 }
3033
Ben Hutchings09994d12011-10-03 04:42:46 +00003034 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003035 return rflow;
3036}
3037
Tom Herbert0a9627f2010-03-16 08:03:29 +00003038/*
3039 * get_rps_cpu is called from netif_receive_skb and returns the target
3040 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003041 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00003042 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003043static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3044 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003045{
Tom Herbert0a9627f2010-03-16 08:03:29 +00003046 struct netdev_rx_queue *rxqueue;
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003047 struct rps_map *map;
Tom Herbertfec5e652010-04-16 16:01:27 -07003048 struct rps_dev_flow_table *flow_table;
3049 struct rps_sock_flow_table *sock_flow_table;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003050 int cpu = -1;
Tom Herbertfec5e652010-04-16 16:01:27 -07003051 u16 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07003052 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003053
Tom Herbert0a9627f2010-03-16 08:03:29 +00003054 if (skb_rx_queue_recorded(skb)) {
3055 u16 index = skb_get_rx_queue(skb);
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003056 if (unlikely(index >= dev->real_num_rx_queues)) {
3057 WARN_ONCE(dev->real_num_rx_queues > 1,
3058 "%s received packet on queue %u, but number "
3059 "of RX queues is %u\n",
3060 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003061 goto done;
3062 }
3063 rxqueue = dev->_rx + index;
3064 } else
3065 rxqueue = dev->_rx;
3066
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003067 map = rcu_dereference(rxqueue->rps_map);
3068 if (map) {
Tom Herbert85875232011-01-31 16:23:42 -08003069 if (map->len == 1 &&
Eric Dumazet33d480c2011-08-11 19:30:52 +00003070 !rcu_access_pointer(rxqueue->rps_flow_table)) {
Changli Gao6febfca2010-09-03 23:12:37 +00003071 tcpu = map->cpus[0];
3072 if (cpu_online(tcpu))
3073 cpu = tcpu;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003074 goto done;
Eric Dumazetb249dcb2010-04-19 21:56:38 +00003075 }
Eric Dumazet33d480c2011-08-11 19:30:52 +00003076 } else if (!rcu_access_pointer(rxqueue->rps_flow_table)) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00003077 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003078 }
3079
Changli Gao2d47b452010-08-17 19:00:56 +00003080 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07003081 hash = skb_get_hash(skb);
3082 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003083 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003084
Tom Herbertfec5e652010-04-16 16:01:27 -07003085 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3086 sock_flow_table = rcu_dereference(rps_sock_flow_table);
3087 if (flow_table && sock_flow_table) {
3088 u16 next_cpu;
3089 struct rps_dev_flow *rflow;
3090
Tom Herbert61b905d2014-03-24 15:34:47 -07003091 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07003092 tcpu = rflow->cpu;
3093
Tom Herbert61b905d2014-03-24 15:34:47 -07003094 next_cpu = sock_flow_table->ents[hash & sock_flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07003095
3096 /*
3097 * If the desired CPU (where last recvmsg was done) is
3098 * different from current CPU (one in the rx-queue flow
3099 * table entry), switch if one of the following holds:
3100 * - Current CPU is unset (equal to RPS_NO_CPU).
3101 * - Current CPU is offline.
3102 * - The current CPU's queue tail has advanced beyond the
3103 * last packet that was enqueued using this table entry.
3104 * This guarantees that all previous packets for the flow
3105 * have been dequeued, thus preserving in order delivery.
3106 */
3107 if (unlikely(tcpu != next_cpu) &&
3108 (tcpu == RPS_NO_CPU || !cpu_online(tcpu) ||
3109 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00003110 rflow->last_qtail)) >= 0)) {
3111 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003112 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00003113 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00003114
Tom Herbertfec5e652010-04-16 16:01:27 -07003115 if (tcpu != RPS_NO_CPU && cpu_online(tcpu)) {
3116 *rflowp = rflow;
3117 cpu = tcpu;
3118 goto done;
3119 }
3120 }
3121
Tom Herbert0a9627f2010-03-16 08:03:29 +00003122 if (map) {
Tom Herbert61b905d2014-03-24 15:34:47 -07003123 tcpu = map->cpus[((u64) hash * map->len) >> 32];
Tom Herbert0a9627f2010-03-16 08:03:29 +00003124
3125 if (cpu_online(tcpu)) {
3126 cpu = tcpu;
3127 goto done;
3128 }
3129 }
3130
3131done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00003132 return cpu;
3133}
3134
Ben Hutchingsc4454772011-01-19 11:03:53 +00003135#ifdef CONFIG_RFS_ACCEL
3136
3137/**
3138 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
3139 * @dev: Device on which the filter was set
3140 * @rxq_index: RX queue index
3141 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
3142 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
3143 *
3144 * Drivers that implement ndo_rx_flow_steer() should periodically call
3145 * this function for each installed filter and remove the filters for
3146 * which it returns %true.
3147 */
3148bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
3149 u32 flow_id, u16 filter_id)
3150{
3151 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
3152 struct rps_dev_flow_table *flow_table;
3153 struct rps_dev_flow *rflow;
3154 bool expire = true;
3155 int cpu;
3156
3157 rcu_read_lock();
3158 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3159 if (flow_table && flow_id <= flow_table->mask) {
3160 rflow = &flow_table->flows[flow_id];
3161 cpu = ACCESS_ONCE(rflow->cpu);
3162 if (rflow->filter == filter_id && cpu != RPS_NO_CPU &&
3163 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
3164 rflow->last_qtail) <
3165 (int)(10 * flow_table->mask)))
3166 expire = false;
3167 }
3168 rcu_read_unlock();
3169 return expire;
3170}
3171EXPORT_SYMBOL(rps_may_expire_flow);
3172
3173#endif /* CONFIG_RFS_ACCEL */
3174
Tom Herbert0a9627f2010-03-16 08:03:29 +00003175/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003176static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003177{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003178 struct softnet_data *sd = data;
3179
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003180 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00003181 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003182}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003183
Tom Herbertfec5e652010-04-16 16:01:27 -07003184#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00003185
3186/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003187 * Check if this softnet_data structure is another cpu one
3188 * If yes, queue it to our IPI list and return 1
3189 * If no, return 0
3190 */
3191static int rps_ipi_queued(struct softnet_data *sd)
3192{
3193#ifdef CONFIG_RPS
3194 struct softnet_data *mysd = &__get_cpu_var(softnet_data);
3195
3196 if (sd != mysd) {
3197 sd->rps_ipi_next = mysd->rps_ipi_list;
3198 mysd->rps_ipi_list = sd;
3199
3200 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3201 return 1;
3202 }
3203#endif /* CONFIG_RPS */
3204 return 0;
3205}
3206
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003207#ifdef CONFIG_NET_FLOW_LIMIT
3208int netdev_flow_limit_table_len __read_mostly = (1 << 12);
3209#endif
3210
3211static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
3212{
3213#ifdef CONFIG_NET_FLOW_LIMIT
3214 struct sd_flow_limit *fl;
3215 struct softnet_data *sd;
3216 unsigned int old_flow, new_flow;
3217
3218 if (qlen < (netdev_max_backlog >> 1))
3219 return false;
3220
3221 sd = &__get_cpu_var(softnet_data);
3222
3223 rcu_read_lock();
3224 fl = rcu_dereference(sd->flow_limit);
3225 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08003226 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003227 old_flow = fl->history[fl->history_head];
3228 fl->history[fl->history_head] = new_flow;
3229
3230 fl->history_head++;
3231 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
3232
3233 if (likely(fl->buckets[old_flow]))
3234 fl->buckets[old_flow]--;
3235
3236 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
3237 fl->count++;
3238 rcu_read_unlock();
3239 return true;
3240 }
3241 }
3242 rcu_read_unlock();
3243#endif
3244 return false;
3245}
3246
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003247/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00003248 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
3249 * queue (may be a remote CPU queue).
3250 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003251static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
3252 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003253{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003254 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003255 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003256 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003257
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003258 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003259
3260 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003261
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003262 rps_lock(sd);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003263 qlen = skb_queue_len(&sd->input_pkt_queue);
3264 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Changli Gao6e7676c2010-04-27 15:07:33 -07003265 if (skb_queue_len(&sd->input_pkt_queue)) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00003266enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003267 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003268 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003269 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00003270 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003271 return NET_RX_SUCCESS;
3272 }
3273
Eric Dumazetebda37c22010-05-06 23:51:21 +00003274 /* Schedule NAPI for backlog device
3275 * We can use non atomic operation since we own the queue lock
3276 */
3277 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003278 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003279 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003280 }
3281 goto enqueue;
3282 }
3283
Changli Gaodee42872010-05-02 05:42:16 +00003284 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003285 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003286
Tom Herbert0a9627f2010-03-16 08:03:29 +00003287 local_irq_restore(flags);
3288
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003289 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003290 kfree_skb(skb);
3291 return NET_RX_DROP;
3292}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003294static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003296 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297
Eric Dumazet588f0332011-11-15 04:12:55 +00003298 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
Koki Sanagicf66ba52010-08-23 18:45:02 +09003300 trace_netif_rx(skb);
Eric Dumazetdf334542010-03-24 19:13:54 +00003301#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003302 if (static_key_false(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003303 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003304 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003305
Changli Gaocece1942010-08-07 20:35:43 -07003306 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003307 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003308
3309 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003310 if (cpu < 0)
3311 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07003312
3313 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3314
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003315 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07003316 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00003317 } else
3318#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07003319 {
3320 unsigned int qtail;
3321 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
3322 put_cpu();
3323 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003324 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003326
3327/**
3328 * netif_rx - post buffer to the network code
3329 * @skb: buffer to post
3330 *
3331 * This function receives a packet from a device driver and queues it for
3332 * the upper (protocol) levels to process. It always succeeds. The buffer
3333 * may be dropped during processing for congestion control or by the
3334 * protocol layers.
3335 *
3336 * return values:
3337 * NET_RX_SUCCESS (no congestion)
3338 * NET_RX_DROP (packet was dropped)
3339 *
3340 */
3341
3342int netif_rx(struct sk_buff *skb)
3343{
3344 trace_netif_rx_entry(skb);
3345
3346 return netif_rx_internal(skb);
3347}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003348EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349
3350int netif_rx_ni(struct sk_buff *skb)
3351{
3352 int err;
3353
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003354 trace_netif_rx_ni_entry(skb);
3355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003357 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 if (local_softirq_pending())
3359 do_softirq();
3360 preempt_enable();
3361
3362 return err;
3363}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364EXPORT_SYMBOL(netif_rx_ni);
3365
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366static void net_tx_action(struct softirq_action *h)
3367{
3368 struct softnet_data *sd = &__get_cpu_var(softnet_data);
3369
3370 if (sd->completion_queue) {
3371 struct sk_buff *clist;
3372
3373 local_irq_disable();
3374 clist = sd->completion_queue;
3375 sd->completion_queue = NULL;
3376 local_irq_enable();
3377
3378 while (clist) {
3379 struct sk_buff *skb = clist;
3380 clist = clist->next;
3381
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003382 WARN_ON(atomic_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08003383 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
3384 trace_consume_skb(skb);
3385 else
3386 trace_kfree_skb(skb, net_tx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387 __kfree_skb(skb);
3388 }
3389 }
3390
3391 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07003392 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
3394 local_irq_disable();
3395 head = sd->output_queue;
3396 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00003397 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 local_irq_enable();
3399
3400 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07003401 struct Qdisc *q = head;
3402 spinlock_t *root_lock;
3403
Linus Torvalds1da177e2005-04-16 15:20:36 -07003404 head = head->next_sched;
3405
David S. Miller5fb66222008-08-02 20:02:43 -07003406 root_lock = qdisc_lock(q);
David S. Miller37437bb2008-07-16 02:15:04 -07003407 if (spin_trylock(root_lock)) {
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003408 smp_mb__before_atomic();
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003409 clear_bit(__QDISC_STATE_SCHED,
3410 &q->state);
David S. Miller37437bb2008-07-16 02:15:04 -07003411 qdisc_run(q);
3412 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 } else {
David S. Miller195648b2008-08-19 04:00:36 -07003414 if (!test_bit(__QDISC_STATE_DEACTIVATED,
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07003415 &q->state)) {
David S. Miller195648b2008-08-19 04:00:36 -07003416 __netif_reschedule(q);
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07003417 } else {
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003418 smp_mb__before_atomic();
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07003419 clear_bit(__QDISC_STATE_SCHED,
3420 &q->state);
3421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 }
3423 }
3424 }
3425}
3426
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003427#if (defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)) && \
3428 (defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE))
Michał Mirosławda678292009-06-05 05:35:28 +00003429/* This hook is defined here for ATM LANE */
3430int (*br_fdb_test_addr_hook)(struct net_device *dev,
3431 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07003432EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00003433#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435#ifdef CONFIG_NET_CLS_ACT
3436/* TODO: Maybe we should just force sch_ingress to be compiled in
3437 * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions
3438 * a compare and 2 stores extra right now if we dont have it on
3439 * but have CONFIG_NET_CLS_ACT
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003440 * NOTE: This doesn't stop any functionality; if you dont have
3441 * the ingress scheduler, you just can't add policies on ingress.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 *
3443 */
Eric Dumazet24824a02010-10-02 06:11:55 +00003444static int ing_filter(struct sk_buff *skb, struct netdev_queue *rxq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003446 struct net_device *dev = skb->dev;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003447 u32 ttl = G_TC_RTTL(skb->tc_verd);
David S. Miller555353c2008-07-08 17:33:13 -07003448 int result = TC_ACT_OK;
3449 struct Qdisc *q;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003450
Stephen Hemmingerde384832010-08-01 00:33:23 -07003451 if (unlikely(MAX_RED_LOOP < ttl++)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003452 net_warn_ratelimited("Redir loop detected Dropping packet (%d->%d)\n",
3453 skb->skb_iif, dev->ifindex);
Herbert Xuf697c3e2007-10-14 00:38:47 -07003454 return TC_ACT_SHOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455 }
3456
Herbert Xuf697c3e2007-10-14 00:38:47 -07003457 skb->tc_verd = SET_TC_RTTL(skb->tc_verd, ttl);
3458 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
3459
David S. Miller83874002008-07-17 00:53:03 -07003460 q = rxq->qdisc;
David S. Miller8d50b532008-07-30 02:37:46 -07003461 if (q != &noop_qdisc) {
David S. Miller83874002008-07-17 00:53:03 -07003462 spin_lock(qdisc_lock(q));
David S. Millera9312ae2008-08-17 21:51:03 -07003463 if (likely(!test_bit(__QDISC_STATE_DEACTIVATED, &q->state)))
3464 result = qdisc_enqueue_root(skb, q);
David S. Miller83874002008-07-17 00:53:03 -07003465 spin_unlock(qdisc_lock(q));
3466 }
Herbert Xuf697c3e2007-10-14 00:38:47 -07003467
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 return result;
3469}
Herbert Xuf697c3e2007-10-14 00:38:47 -07003470
3471static inline struct sk_buff *handle_ing(struct sk_buff *skb,
3472 struct packet_type **pt_prev,
3473 int *ret, struct net_device *orig_dev)
3474{
Eric Dumazet24824a02010-10-02 06:11:55 +00003475 struct netdev_queue *rxq = rcu_dereference(skb->dev->ingress_queue);
3476
3477 if (!rxq || rxq->qdisc == &noop_qdisc)
Herbert Xuf697c3e2007-10-14 00:38:47 -07003478 goto out;
3479
3480 if (*pt_prev) {
3481 *ret = deliver_skb(skb, *pt_prev, orig_dev);
3482 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003483 }
3484
Eric Dumazet24824a02010-10-02 06:11:55 +00003485 switch (ing_filter(skb, rxq)) {
Herbert Xuf697c3e2007-10-14 00:38:47 -07003486 case TC_ACT_SHOT:
3487 case TC_ACT_STOLEN:
3488 kfree_skb(skb);
3489 return NULL;
3490 }
3491
3492out:
3493 skb->tc_verd = 0;
3494 return skb;
3495}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496#endif
3497
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003498/**
3499 * netdev_rx_handler_register - register receive handler
3500 * @dev: device to register a handler for
3501 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00003502 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003503 *
Masanari Iidae2278672014-02-18 22:54:36 +09003504 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003505 * called from __netif_receive_skb. A negative errno code is returned
3506 * on a failure.
3507 *
3508 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003509 *
3510 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003511 */
3512int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00003513 rx_handler_func_t *rx_handler,
3514 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003515{
3516 ASSERT_RTNL();
3517
3518 if (dev->rx_handler)
3519 return -EBUSY;
3520
Eric Dumazet00cfec32013-03-29 03:01:22 +00003521 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00003522 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003523 rcu_assign_pointer(dev->rx_handler, rx_handler);
3524
3525 return 0;
3526}
3527EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
3528
3529/**
3530 * netdev_rx_handler_unregister - unregister receive handler
3531 * @dev: device to unregister a handler from
3532 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00003533 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003534 *
3535 * The caller must hold the rtnl_mutex.
3536 */
3537void netdev_rx_handler_unregister(struct net_device *dev)
3538{
3539
3540 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003541 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00003542 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
3543 * section has a guarantee to see a non NULL rx_handler_data
3544 * as well.
3545 */
3546 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003547 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003548}
3549EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
3550
Mel Gormanb4b9e352012-07-31 16:44:26 -07003551/*
3552 * Limit the use of PFMEMALLOC reserves to those protocols that implement
3553 * the special handling of PFMEMALLOC skbs.
3554 */
3555static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
3556{
3557 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07003558 case htons(ETH_P_ARP):
3559 case htons(ETH_P_IP):
3560 case htons(ETH_P_IPV6):
3561 case htons(ETH_P_8021Q):
3562 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07003563 return true;
3564 default:
3565 return false;
3566 }
3567}
3568
David S. Miller9754e292013-02-14 15:57:38 -05003569static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570{
3571 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003572 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07003573 struct net_device *orig_dev;
David S. Miller63d8ea72011-02-28 10:48:59 -08003574 struct net_device *null_or_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003575 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576 int ret = NET_RX_DROP;
Al Viro252e3342006-11-14 20:48:11 -08003577 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578
Eric Dumazet588f0332011-11-15 04:12:55 +00003579 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07003580
Koki Sanagicf66ba52010-08-23 18:45:02 +09003581 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08003582
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07003583 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00003584
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07003585 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00003586 if (!skb_transport_header_was_set(skb))
3587 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00003588 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589
3590 pt_prev = NULL;
3591
3592 rcu_read_lock();
3593
David S. Miller63d8ea72011-02-28 10:48:59 -08003594another_round:
David S. Millerb6858172012-07-23 16:27:54 -07003595 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08003596
3597 __this_cpu_inc(softnet_data.processed);
3598
Patrick McHardy8ad227f2013-04-19 02:04:31 +00003599 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
3600 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Jiri Pirkobcc6d472011-04-07 19:48:33 +00003601 skb = vlan_untag(skb);
3602 if (unlikely(!skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07003603 goto unlock;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00003604 }
3605
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606#ifdef CONFIG_NET_CLS_ACT
3607 if (skb->tc_verd & TC_NCLS) {
3608 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
3609 goto ncls;
3610 }
3611#endif
3612
David S. Miller9754e292013-02-14 15:57:38 -05003613 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07003614 goto skip_taps;
3615
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 list_for_each_entry_rcu(ptype, &ptype_all, list) {
David S. Miller63d8ea72011-02-28 10:48:59 -08003617 if (!ptype->dev || ptype->dev == skb->dev) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003618 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07003619 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 pt_prev = ptype;
3621 }
3622 }
3623
Mel Gormanb4b9e352012-07-31 16:44:26 -07003624skip_taps:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625#ifdef CONFIG_NET_CLS_ACT
Herbert Xuf697c3e2007-10-14 00:38:47 -07003626 skb = handle_ing(skb, &pt_prev, &ret, orig_dev);
3627 if (!skb)
Mel Gormanb4b9e352012-07-31 16:44:26 -07003628 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629ncls:
3630#endif
3631
David S. Miller9754e292013-02-14 15:57:38 -05003632 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07003633 goto drop;
3634
John Fastabend24257172011-10-10 09:16:41 +00003635 if (vlan_tx_tag_present(skb)) {
3636 if (pt_prev) {
3637 ret = deliver_skb(skb, pt_prev, orig_dev);
3638 pt_prev = NULL;
3639 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00003640 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00003641 goto another_round;
3642 else if (unlikely(!skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07003643 goto unlock;
John Fastabend24257172011-10-10 09:16:41 +00003644 }
3645
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00003646 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003647 if (rx_handler) {
3648 if (pt_prev) {
3649 ret = deliver_skb(skb, pt_prev, orig_dev);
3650 pt_prev = NULL;
3651 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003652 switch (rx_handler(&skb)) {
3653 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00003654 ret = NET_RX_SUCCESS;
Mel Gormanb4b9e352012-07-31 16:44:26 -07003655 goto unlock;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003656 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08003657 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003658 case RX_HANDLER_EXACT:
3659 deliver_exact = true;
3660 case RX_HANDLER_PASS:
3661 break;
3662 default:
3663 BUG();
3664 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003665 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666
Eric Dumazetd4b812d2013-07-18 07:19:26 -07003667 if (unlikely(vlan_tx_tag_present(skb))) {
3668 if (vlan_tx_tag_get_id(skb))
3669 skb->pkt_type = PACKET_OTHERHOST;
3670 /* Note: we might in the future use prio bits
3671 * and set skb->priority like in vlan_do_receive()
3672 * For the time being, just ignore Priority Code Point
3673 */
3674 skb->vlan_tci = 0;
3675 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00003676
David S. Miller63d8ea72011-02-28 10:48:59 -08003677 /* deliver only exact match when indicated */
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003678 null_or_dev = deliver_exact ? skb->dev : NULL;
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00003679
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 type = skb->protocol;
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08003681 list_for_each_entry_rcu(ptype,
3682 &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
David S. Miller63d8ea72011-02-28 10:48:59 -08003683 if (ptype->type == type &&
Jiri Pirkoe3f48d32011-02-28 20:26:31 +00003684 (ptype->dev == null_or_dev || ptype->dev == skb->dev ||
3685 ptype->dev == orig_dev)) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003686 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07003687 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 pt_prev = ptype;
3689 }
3690 }
3691
3692 if (pt_prev) {
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00003693 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00003694 goto drop;
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00003695 else
3696 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07003698drop:
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003699 atomic_long_inc(&skb->dev->rx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 kfree_skb(skb);
3701 /* Jamal, now you will not able to escape explaining
3702 * me how you were going to use this. :-)
3703 */
3704 ret = NET_RX_DROP;
3705 }
3706
Mel Gormanb4b9e352012-07-31 16:44:26 -07003707unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708 rcu_read_unlock();
David S. Miller9754e292013-02-14 15:57:38 -05003709 return ret;
3710}
3711
3712static int __netif_receive_skb(struct sk_buff *skb)
3713{
3714 int ret;
3715
3716 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
3717 unsigned long pflags = current->flags;
3718
3719 /*
3720 * PFMEMALLOC skbs are special, they should
3721 * - be delivered to SOCK_MEMALLOC sockets only
3722 * - stay away from userspace
3723 * - have bounded memory usage
3724 *
3725 * Use PF_MEMALLOC as this saves us from propagating the allocation
3726 * context down to all allocation sites.
3727 */
3728 current->flags |= PF_MEMALLOC;
3729 ret = __netif_receive_skb_core(skb, true);
3730 tsk_restore_flags(current, pflags, PF_MEMALLOC);
3731 } else
3732 ret = __netif_receive_skb_core(skb, false);
3733
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 return ret;
3735}
Tom Herbert0a9627f2010-03-16 08:03:29 +00003736
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003737static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003738{
Eric Dumazet588f0332011-11-15 04:12:55 +00003739 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07003740
Richard Cochranc1f19b52010-07-17 08:49:36 +00003741 if (skb_defer_rx_timestamp(skb))
3742 return NET_RX_SUCCESS;
3743
Eric Dumazetdf334542010-03-24 19:13:54 +00003744#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003745 if (static_key_false(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07003746 struct rps_dev_flow voidflow, *rflow = &voidflow;
3747 int cpu, ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003748
Eric Dumazet3b098e22010-05-15 23:57:10 -07003749 rcu_read_lock();
Tom Herbert0a9627f2010-03-16 08:03:29 +00003750
Eric Dumazet3b098e22010-05-15 23:57:10 -07003751 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07003752
Eric Dumazet3b098e22010-05-15 23:57:10 -07003753 if (cpu >= 0) {
3754 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3755 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00003756 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07003757 }
Eric Dumazetadc93002011-11-17 03:13:26 +00003758 rcu_read_unlock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003759 }
Tom Herbert1e94d722010-03-18 17:45:44 -07003760#endif
Eric Dumazetadc93002011-11-17 03:13:26 +00003761 return __netif_receive_skb(skb);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003762}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003763
3764/**
3765 * netif_receive_skb - process receive buffer from network
3766 * @skb: buffer to process
3767 *
3768 * netif_receive_skb() is the main receive data processing function.
3769 * It always succeeds. The buffer may be dropped during processing
3770 * for congestion control or by the protocol layers.
3771 *
3772 * This function may only be called from softirq context and interrupts
3773 * should be enabled.
3774 *
3775 * Return values (usually ignored):
3776 * NET_RX_SUCCESS: no congestion
3777 * NET_RX_DROP: packet was dropped
3778 */
3779int netif_receive_skb(struct sk_buff *skb)
3780{
3781 trace_netif_receive_skb_entry(skb);
3782
3783 return netif_receive_skb_internal(skb);
3784}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003785EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
Eric Dumazet88751272010-04-19 05:07:33 +00003787/* Network device is going away, flush any packets still pending
3788 * Called with irqs disabled.
3789 */
Changli Gao152102c2010-03-30 20:16:22 +00003790static void flush_backlog(void *arg)
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003791{
Changli Gao152102c2010-03-30 20:16:22 +00003792 struct net_device *dev = arg;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003793 struct softnet_data *sd = &__get_cpu_var(softnet_data);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003794 struct sk_buff *skb, *tmp;
3795
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003796 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07003797 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003798 if (skb->dev == dev) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003799 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003800 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003801 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003802 }
Changli Gao6e7676c2010-04-27 15:07:33 -07003803 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003804 rps_unlock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07003805
3806 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
3807 if (skb->dev == dev) {
3808 __skb_unlink(skb, &sd->process_queue);
3809 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003810 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07003811 }
3812 }
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003813}
3814
Herbert Xud565b0a2008-12-15 23:38:52 -08003815static int napi_gro_complete(struct sk_buff *skb)
3816{
Vlad Yasevich22061d82012-11-15 08:49:11 +00003817 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08003818 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00003819 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08003820 int err = -ENOENT;
3821
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003822 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
3823
Herbert Xufc59f9a2009-04-14 15:11:06 -07003824 if (NAPI_GRO_CB(skb)->count == 1) {
3825 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08003826 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07003827 }
Herbert Xud565b0a2008-12-15 23:38:52 -08003828
3829 rcu_read_lock();
3830 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00003831 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08003832 continue;
3833
Jerry Chu299603e82013-12-11 20:53:45 -08003834 err = ptype->callbacks.gro_complete(skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08003835 break;
3836 }
3837 rcu_read_unlock();
3838
3839 if (err) {
3840 WARN_ON(&ptype->list == head);
3841 kfree_skb(skb);
3842 return NET_RX_SUCCESS;
3843 }
3844
3845out:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003846 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08003847}
3848
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00003849/* napi->gro_list contains packets ordered by age.
3850 * youngest packets at the head of it.
3851 * Complete skbs in reverse order to reduce latencies.
3852 */
3853void napi_gro_flush(struct napi_struct *napi, bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08003854{
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00003855 struct sk_buff *skb, *prev = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08003856
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00003857 /* scan list and build reverse chain */
3858 for (skb = napi->gro_list; skb != NULL; skb = skb->next) {
3859 skb->prev = prev;
3860 prev = skb;
Herbert Xud565b0a2008-12-15 23:38:52 -08003861 }
3862
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00003863 for (skb = prev; skb; skb = prev) {
3864 skb->next = NULL;
3865
3866 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
3867 return;
3868
3869 prev = skb->prev;
3870 napi_gro_complete(skb);
3871 napi->gro_count--;
3872 }
3873
Herbert Xud565b0a2008-12-15 23:38:52 -08003874 napi->gro_list = NULL;
3875}
Eric Dumazet86cac582010-08-31 18:25:32 +00003876EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08003877
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003878static void gro_list_prepare(struct napi_struct *napi, struct sk_buff *skb)
3879{
3880 struct sk_buff *p;
3881 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08003882 u32 hash = skb_get_hash_raw(skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003883
3884 for (p = napi->gro_list; p; p = p->next) {
3885 unsigned long diffs;
3886
Tom Herbert0b4cec82014-01-15 08:58:06 -08003887 NAPI_GRO_CB(p)->flush = 0;
3888
3889 if (hash != skb_get_hash_raw(p)) {
3890 NAPI_GRO_CB(p)->same_flow = 0;
3891 continue;
3892 }
3893
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003894 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
3895 diffs |= p->vlan_tci ^ skb->vlan_tci;
3896 if (maclen == ETH_HLEN)
3897 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07003898 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003899 else if (!diffs)
3900 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07003901 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003902 maclen);
3903 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003904 }
3905}
3906
Jerry Chu299603e82013-12-11 20:53:45 -08003907static void skb_gro_reset_offset(struct sk_buff *skb)
3908{
3909 const struct skb_shared_info *pinfo = skb_shinfo(skb);
3910 const skb_frag_t *frag0 = &pinfo->frags[0];
3911
3912 NAPI_GRO_CB(skb)->data_offset = 0;
3913 NAPI_GRO_CB(skb)->frag0 = NULL;
3914 NAPI_GRO_CB(skb)->frag0_len = 0;
3915
3916 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
3917 pinfo->nr_frags &&
3918 !PageHighMem(skb_frag_page(frag0))) {
3919 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
3920 NAPI_GRO_CB(skb)->frag0_len = skb_frag_size(frag0);
Herbert Xud565b0a2008-12-15 23:38:52 -08003921 }
3922}
3923
Eric Dumazeta50e2332014-03-29 21:28:21 -07003924static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
3925{
3926 struct skb_shared_info *pinfo = skb_shinfo(skb);
3927
3928 BUG_ON(skb->end - skb->tail < grow);
3929
3930 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
3931
3932 skb->data_len -= grow;
3933 skb->tail += grow;
3934
3935 pinfo->frags[0].page_offset += grow;
3936 skb_frag_size_sub(&pinfo->frags[0], grow);
3937
3938 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
3939 skb_frag_unref(skb, 0);
3940 memmove(pinfo->frags, pinfo->frags + 1,
3941 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
3942 }
3943}
3944
Rami Rosenbb728822012-11-28 21:55:25 +00003945static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08003946{
3947 struct sk_buff **pp = NULL;
Vlad Yasevich22061d82012-11-15 08:49:11 +00003948 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08003949 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00003950 struct list_head *head = &offload_base;
Herbert Xu0da2afd52008-12-26 14:57:42 -08003951 int same_flow;
Ben Hutchings5b252f02009-10-29 07:17:09 +00003952 enum gro_result ret;
Eric Dumazeta50e2332014-03-29 21:28:21 -07003953 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08003954
Eric W. Biederman9c62a682014-03-14 20:51:52 -07003955 if (!(skb->dev->features & NETIF_F_GRO))
Herbert Xud565b0a2008-12-15 23:38:52 -08003956 goto normal;
3957
David S. Miller21dc3302010-08-23 00:13:46 -07003958 if (skb_is_gso(skb) || skb_has_frag_list(skb))
Herbert Xuf17f5c92009-01-14 14:36:12 -08003959 goto normal;
3960
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003961 gro_list_prepare(napi, skb);
Jerry Chubf5a7552014-01-07 10:23:19 -08003962 NAPI_GRO_CB(skb)->csum = skb->csum; /* Needed for CHECKSUM_COMPLETE */
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003963
Herbert Xud565b0a2008-12-15 23:38:52 -08003964 rcu_read_lock();
3965 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00003966 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08003967 continue;
3968
Herbert Xu86911732009-01-29 14:19:50 +00003969 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00003970 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08003971 NAPI_GRO_CB(skb)->same_flow = 0;
3972 NAPI_GRO_CB(skb)->flush = 0;
Herbert Xu5d38a072009-01-04 16:13:40 -08003973 NAPI_GRO_CB(skb)->free = 0;
Or Gerlitzb582ef02014-01-20 13:59:19 +02003974 NAPI_GRO_CB(skb)->udp_mark = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08003975
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00003976 pp = ptype->callbacks.gro_receive(&napi->gro_list, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08003977 break;
3978 }
3979 rcu_read_unlock();
3980
3981 if (&ptype->list == head)
3982 goto normal;
3983
Herbert Xu0da2afd52008-12-26 14:57:42 -08003984 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00003985 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08003986
Herbert Xud565b0a2008-12-15 23:38:52 -08003987 if (pp) {
3988 struct sk_buff *nskb = *pp;
3989
3990 *pp = nskb->next;
3991 nskb->next = NULL;
3992 napi_gro_complete(nskb);
Herbert Xu4ae55442009-02-08 18:00:36 +00003993 napi->gro_count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08003994 }
3995
Herbert Xu0da2afd52008-12-26 14:57:42 -08003996 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08003997 goto ok;
3998
Eric Dumazet600adc12014-01-09 14:12:19 -08003999 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08004000 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08004001
Eric Dumazet600adc12014-01-09 14:12:19 -08004002 if (unlikely(napi->gro_count >= MAX_GRO_SKBS)) {
4003 struct sk_buff *nskb = napi->gro_list;
4004
4005 /* locate the end of the list to select the 'oldest' flow */
4006 while (nskb->next) {
4007 pp = &nskb->next;
4008 nskb = *pp;
4009 }
4010 *pp = NULL;
4011 nskb->next = NULL;
4012 napi_gro_complete(nskb);
4013 } else {
4014 napi->gro_count++;
4015 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004016 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004017 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07004018 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00004019 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004020 skb->next = napi->gro_list;
4021 napi->gro_list = skb;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004022 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08004023
Herbert Xuad0f9902009-02-01 01:24:55 -08004024pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004025 grow = skb_gro_offset(skb) - skb_headlen(skb);
4026 if (grow > 0)
4027 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08004028ok:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004029 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08004030
4031normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08004032 ret = GRO_NORMAL;
4033 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08004034}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004035
Jerry Chubf5a7552014-01-07 10:23:19 -08004036struct packet_offload *gro_find_receive_by_type(__be16 type)
4037{
4038 struct list_head *offload_head = &offload_base;
4039 struct packet_offload *ptype;
4040
4041 list_for_each_entry_rcu(ptype, offload_head, list) {
4042 if (ptype->type != type || !ptype->callbacks.gro_receive)
4043 continue;
4044 return ptype;
4045 }
4046 return NULL;
4047}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004048EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08004049
4050struct packet_offload *gro_find_complete_by_type(__be16 type)
4051{
4052 struct list_head *offload_head = &offload_base;
4053 struct packet_offload *ptype;
4054
4055 list_for_each_entry_rcu(ptype, offload_head, list) {
4056 if (ptype->type != type || !ptype->callbacks.gro_complete)
4057 continue;
4058 return ptype;
4059 }
4060 return NULL;
4061}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004062EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004063
Rami Rosenbb728822012-11-28 21:55:25 +00004064static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08004065{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004066 switch (ret) {
4067 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004068 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004069 ret = GRO_DROP;
4070 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004071
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004072 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08004073 kfree_skb(skb);
4074 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004075
Eric Dumazetdaa86542012-04-19 07:07:40 +00004076 case GRO_MERGED_FREE:
Eric Dumazetd7e88832012-04-30 08:10:34 +00004077 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4078 kmem_cache_free(skbuff_head_cache, skb);
4079 else
4080 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00004081 break;
4082
Ben Hutchings5b252f02009-10-29 07:17:09 +00004083 case GRO_HELD:
4084 case GRO_MERGED:
4085 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004086 }
4087
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004088 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004089}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004090
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004091gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004092{
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004093 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00004094
Eric Dumazeta50e2332014-03-29 21:28:21 -07004095 skb_gro_reset_offset(skb);
4096
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004097 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004098}
4099EXPORT_SYMBOL(napi_gro_receive);
4100
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00004101static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004102{
Herbert Xu96e93ea2009-01-06 10:49:34 -08004103 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00004104 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
4105 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Jesse Gross3701e512010-10-20 13:56:06 +00004106 skb->vlan_tci = 0;
Herbert Xu66c46d72011-01-29 20:44:54 -08004107 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08004108 skb->skb_iif = 0;
Jerry Chuc3caf112014-07-14 15:54:46 -07004109 skb->encapsulation = 0;
4110 skb_shinfo(skb)->gso_type = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07004111 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Herbert Xu96e93ea2009-01-06 10:49:34 -08004112
4113 napi->skb = skb;
4114}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004115
Herbert Xu76620aa2009-04-16 02:02:07 -07004116struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08004117{
Herbert Xu5d38a072009-01-04 16:13:40 -08004118 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004119
4120 if (!skb) {
Eric Dumazet89d71a62009-10-13 05:34:20 +00004121 skb = netdev_alloc_skb_ip_align(napi->dev, GRO_MAX_HEAD);
Eric Dumazet84b9cd62013-12-05 21:44:27 -08004122 napi->skb = skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004123 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004124 return skb;
4125}
Herbert Xu76620aa2009-04-16 02:02:07 -07004126EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004127
Eric Dumazeta50e2332014-03-29 21:28:21 -07004128static gro_result_t napi_frags_finish(struct napi_struct *napi,
4129 struct sk_buff *skb,
4130 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004131{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004132 switch (ret) {
4133 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004134 case GRO_HELD:
4135 __skb_push(skb, ETH_HLEN);
4136 skb->protocol = eth_type_trans(skb, skb->dev);
4137 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004138 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00004139 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004140
4141 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004142 case GRO_MERGED_FREE:
4143 napi_reuse_skb(napi, skb);
4144 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004145
4146 case GRO_MERGED:
4147 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004148 }
4149
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004150 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004151}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004152
Eric Dumazeta50e2332014-03-29 21:28:21 -07004153/* Upper GRO stack assumes network header starts at gro_offset=0
4154 * Drivers could call both napi_gro_frags() and napi_gro_receive()
4155 * We copy ethernet header into skb->data to have a common layout.
4156 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00004157static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004158{
Herbert Xu76620aa2009-04-16 02:02:07 -07004159 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004160 const struct ethhdr *eth;
4161 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07004162
4163 napi->skb = NULL;
4164
Eric Dumazeta50e2332014-03-29 21:28:21 -07004165 skb_reset_mac_header(skb);
4166 skb_gro_reset_offset(skb);
4167
4168 eth = skb_gro_header_fast(skb, 0);
4169 if (unlikely(skb_gro_header_hard(skb, hlen))) {
4170 eth = skb_gro_header_slow(skb, hlen, 0);
4171 if (unlikely(!eth)) {
4172 napi_reuse_skb(napi, skb);
4173 return NULL;
4174 }
4175 } else {
4176 gro_pull_from_frag0(skb, hlen);
4177 NAPI_GRO_CB(skb)->frag0 += hlen;
4178 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07004179 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07004180 __skb_pull(skb, hlen);
4181
4182 /*
4183 * This works because the only protocols we care about don't require
4184 * special handling.
4185 * We'll fix it up properly in napi_frags_finish()
4186 */
4187 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07004188
Herbert Xu76620aa2009-04-16 02:02:07 -07004189 return skb;
4190}
Herbert Xu76620aa2009-04-16 02:02:07 -07004191
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004192gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07004193{
4194 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004195
4196 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004197 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08004198
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004199 trace_napi_gro_frags_entry(skb);
4200
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004201 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08004202}
4203EXPORT_SYMBOL(napi_gro_frags);
4204
Eric Dumazete326bed2010-04-22 00:22:45 -07004205/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08004206 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07004207 * Note: called with local irq disabled, but exits with local irq enabled.
4208 */
4209static void net_rps_action_and_irq_enable(struct softnet_data *sd)
4210{
4211#ifdef CONFIG_RPS
4212 struct softnet_data *remsd = sd->rps_ipi_list;
4213
4214 if (remsd) {
4215 sd->rps_ipi_list = NULL;
4216
4217 local_irq_enable();
4218
4219 /* Send pending IPI's to kick RPS processing on remote cpus. */
4220 while (remsd) {
4221 struct softnet_data *next = remsd->rps_ipi_next;
4222
4223 if (cpu_online(remsd->cpu))
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +01004224 smp_call_function_single_async(remsd->cpu,
Frederic Weisbeckerfce8ad12014-02-24 16:40:01 +01004225 &remsd->csd);
Eric Dumazete326bed2010-04-22 00:22:45 -07004226 remsd = next;
4227 }
4228 } else
4229#endif
4230 local_irq_enable();
4231}
4232
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004233static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234{
4235 int work = 0;
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004236 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237
Eric Dumazete326bed2010-04-22 00:22:45 -07004238#ifdef CONFIG_RPS
4239 /* Check if we have pending ipi, its better to send them now,
4240 * not waiting net_rx_action() end.
4241 */
4242 if (sd->rps_ipi_list) {
4243 local_irq_disable();
4244 net_rps_action_and_irq_enable(sd);
4245 }
4246#endif
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004247 napi->weight = weight_p;
Changli Gao6e7676c2010-04-27 15:07:33 -07004248 local_irq_disable();
Tom Herbert11ef7a82014-06-30 09:50:40 -07004249 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251
Changli Gao6e7676c2010-04-27 15:07:33 -07004252 while ((skb = __skb_dequeue(&sd->process_queue))) {
Eric Dumazete4008272010-04-05 15:42:39 -07004253 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004254 __netif_receive_skb(skb);
Changli Gao6e7676c2010-04-27 15:07:33 -07004255 local_irq_disable();
Tom Herbert76cc8b12010-05-20 18:37:59 +00004256 input_queue_head_incr(sd);
4257 if (++work >= quota) {
4258 local_irq_enable();
4259 return work;
4260 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004261 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
Changli Gao6e7676c2010-04-27 15:07:33 -07004263 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07004264 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004265 /*
4266 * Inline a custom version of __napi_complete().
4267 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07004268 * and NAPI_STATE_SCHED is the only possible flag set
4269 * on backlog.
4270 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004271 * and we dont need an smp_mb() memory barrier.
4272 */
4273 list_del(&napi->poll_list);
4274 napi->state = 0;
Tom Herbert11ef7a82014-06-30 09:50:40 -07004275 rps_unlock(sd);
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004276
Tom Herbert11ef7a82014-06-30 09:50:40 -07004277 break;
Changli Gao6e7676c2010-04-27 15:07:33 -07004278 }
Tom Herbert11ef7a82014-06-30 09:50:40 -07004279
4280 skb_queue_splice_tail_init(&sd->input_pkt_queue,
4281 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07004282 rps_unlock(sd);
4283 }
4284 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004286 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287}
4288
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004289/**
4290 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07004291 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004292 *
4293 * The entry's receive function will be scheduled to run
4294 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08004295void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004296{
4297 unsigned long flags;
4298
4299 local_irq_save(flags);
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004300 ____napi_schedule(&__get_cpu_var(softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004301 local_irq_restore(flags);
4302}
4303EXPORT_SYMBOL(__napi_schedule);
4304
Herbert Xud565b0a2008-12-15 23:38:52 -08004305void __napi_complete(struct napi_struct *n)
4306{
4307 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
4308 BUG_ON(n->gro_list);
4309
4310 list_del(&n->poll_list);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004311 smp_mb__before_atomic();
Herbert Xud565b0a2008-12-15 23:38:52 -08004312 clear_bit(NAPI_STATE_SCHED, &n->state);
4313}
4314EXPORT_SYMBOL(__napi_complete);
4315
4316void napi_complete(struct napi_struct *n)
4317{
4318 unsigned long flags;
4319
4320 /*
4321 * don't let napi dequeue from the cpu poll list
4322 * just in case its running on a different cpu
4323 */
4324 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
4325 return;
4326
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004327 napi_gro_flush(n, false);
Herbert Xud565b0a2008-12-15 23:38:52 -08004328 local_irq_save(flags);
4329 __napi_complete(n);
4330 local_irq_restore(flags);
4331}
4332EXPORT_SYMBOL(napi_complete);
4333
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03004334/* must be called under rcu_read_lock(), as we dont take a reference */
4335struct napi_struct *napi_by_id(unsigned int napi_id)
4336{
4337 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
4338 struct napi_struct *napi;
4339
4340 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
4341 if (napi->napi_id == napi_id)
4342 return napi;
4343
4344 return NULL;
4345}
4346EXPORT_SYMBOL_GPL(napi_by_id);
4347
4348void napi_hash_add(struct napi_struct *napi)
4349{
4350 if (!test_and_set_bit(NAPI_STATE_HASHED, &napi->state)) {
4351
4352 spin_lock(&napi_hash_lock);
4353
4354 /* 0 is not a valid id, we also skip an id that is taken
4355 * we expect both events to be extremely rare
4356 */
4357 napi->napi_id = 0;
4358 while (!napi->napi_id) {
4359 napi->napi_id = ++napi_gen_id;
4360 if (napi_by_id(napi->napi_id))
4361 napi->napi_id = 0;
4362 }
4363
4364 hlist_add_head_rcu(&napi->napi_hash_node,
4365 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
4366
4367 spin_unlock(&napi_hash_lock);
4368 }
4369}
4370EXPORT_SYMBOL_GPL(napi_hash_add);
4371
4372/* Warning : caller is responsible to make sure rcu grace period
4373 * is respected before freeing memory containing @napi
4374 */
4375void napi_hash_del(struct napi_struct *napi)
4376{
4377 spin_lock(&napi_hash_lock);
4378
4379 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state))
4380 hlist_del_rcu(&napi->napi_hash_node);
4381
4382 spin_unlock(&napi_hash_lock);
4383}
4384EXPORT_SYMBOL_GPL(napi_hash_del);
4385
Herbert Xud565b0a2008-12-15 23:38:52 -08004386void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
4387 int (*poll)(struct napi_struct *, int), int weight)
4388{
4389 INIT_LIST_HEAD(&napi->poll_list);
Herbert Xu4ae55442009-02-08 18:00:36 +00004390 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004391 napi->gro_list = NULL;
Herbert Xu5d38a072009-01-04 16:13:40 -08004392 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004393 napi->poll = poll;
Eric Dumazet82dc3c62013-03-05 15:57:22 +00004394 if (weight > NAPI_POLL_WEIGHT)
4395 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
4396 weight, dev->name);
Herbert Xud565b0a2008-12-15 23:38:52 -08004397 napi->weight = weight;
4398 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08004399 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08004400#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08004401 spin_lock_init(&napi->poll_lock);
4402 napi->poll_owner = -1;
4403#endif
4404 set_bit(NAPI_STATE_SCHED, &napi->state);
4405}
4406EXPORT_SYMBOL(netif_napi_add);
4407
4408void netif_napi_del(struct napi_struct *napi)
4409{
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08004410 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07004411 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08004412
Eric Dumazet289dccb2013-12-20 14:29:08 -08004413 kfree_skb_list(napi->gro_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08004414 napi->gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00004415 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004416}
4417EXPORT_SYMBOL(netif_napi_del);
4418
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419static void net_rx_action(struct softirq_action *h)
4420{
Eric Dumazete326bed2010-04-22 00:22:45 -07004421 struct softnet_data *sd = &__get_cpu_var(softnet_data);
Stephen Hemminger24f8b232008-11-03 17:14:38 -08004422 unsigned long time_limit = jiffies + 2;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07004423 int budget = netdev_budget;
Matt Mackall53fb95d2005-08-11 19:27:43 -07004424 void *have;
4425
Linus Torvalds1da177e2005-04-16 15:20:36 -07004426 local_irq_disable();
4427
Eric Dumazete326bed2010-04-22 00:22:45 -07004428 while (!list_empty(&sd->poll_list)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004429 struct napi_struct *n;
4430 int work, weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004431
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004432 /* If softirq window is exhuasted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08004433 * Allow this to run for 2 jiffies since which will allow
4434 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004435 */
Eric Dumazetd1f41b62013-03-05 07:15:13 +00004436 if (unlikely(budget <= 0 || time_after_eq(jiffies, time_limit)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 goto softnet_break;
4438
4439 local_irq_enable();
4440
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004441 /* Even though interrupts have been re-enabled, this
4442 * access is safe because interrupts can only add new
4443 * entries to the tail of this list, and only ->poll()
4444 * calls can remove this head entry from the list.
4445 */
Eric Dumazete326bed2010-04-22 00:22:45 -07004446 n = list_first_entry(&sd->poll_list, struct napi_struct, poll_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004447
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004448 have = netpoll_poll_lock(n);
4449
4450 weight = n->weight;
4451
David S. Miller0a7606c2007-10-29 21:28:47 -07004452 /* This NAPI_STATE_SCHED test is for avoiding a race
4453 * with netpoll's poll_napi(). Only the entity which
4454 * obtains the lock and sees NAPI_STATE_SCHED set will
4455 * actually make the ->poll() call. Therefore we avoid
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004456 * accidentally calling ->poll() when NAPI is not scheduled.
David S. Miller0a7606c2007-10-29 21:28:47 -07004457 */
4458 work = 0;
Neil Horman4ea7e382009-05-21 07:36:08 +00004459 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
David S. Miller0a7606c2007-10-29 21:28:47 -07004460 work = n->poll(n, weight);
Neil Horman4ea7e382009-05-21 07:36:08 +00004461 trace_napi_poll(n);
4462 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004463
4464 WARN_ON_ONCE(work > weight);
4465
4466 budget -= work;
4467
4468 local_irq_disable();
4469
4470 /* Drivers must not modify the NAPI state if they
4471 * consume the entire weight. In such cases this code
4472 * still "owns" the NAPI instance and therefore can
4473 * move the instance around on the list at-will.
4474 */
David S. Millerfed17f32008-01-07 21:00:40 -08004475 if (unlikely(work == weight)) {
Herbert Xuff780cd2009-06-26 19:27:04 -07004476 if (unlikely(napi_disable_pending(n))) {
4477 local_irq_enable();
4478 napi_complete(n);
4479 local_irq_disable();
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004480 } else {
4481 if (n->gro_list) {
4482 /* flush too old packets
4483 * If HZ < 1000, flush all packets.
4484 */
4485 local_irq_enable();
4486 napi_gro_flush(n, HZ >= 1000);
4487 local_irq_disable();
4488 }
Eric Dumazete326bed2010-04-22 00:22:45 -07004489 list_move_tail(&n->poll_list, &sd->poll_list);
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004490 }
David S. Millerfed17f32008-01-07 21:00:40 -08004491 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004492
4493 netpoll_poll_unlock(have);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 }
4495out:
Eric Dumazete326bed2010-04-22 00:22:45 -07004496 net_rps_action_and_irq_enable(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004497
Chris Leechdb217332006-06-17 21:24:58 -07004498#ifdef CONFIG_NET_DMA
4499 /*
4500 * There may not be any more sk_buffs coming right now, so push
4501 * any pending DMA copies to hardware
4502 */
Dan Williams2ba05622009-01-06 11:38:14 -07004503 dma_issue_pending_all();
Chris Leechdb217332006-06-17 21:24:58 -07004504#endif
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004505
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506 return;
4507
4508softnet_break:
Changli Gaodee42872010-05-02 05:42:16 +00004509 sd->time_squeeze++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4511 goto out;
4512}
4513
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004514struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004515 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004516
4517 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004518 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004519
Veaceslav Falico5d261912013-08-28 23:25:05 +02004520 /* counter for the number of times this device was added to us */
4521 u16 ref_nr;
4522
Veaceslav Falico402dae92013-09-25 09:20:09 +02004523 /* private field for the users */
4524 void *private;
4525
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004526 struct list_head list;
4527 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004528};
4529
Veaceslav Falico5d261912013-08-28 23:25:05 +02004530static struct netdev_adjacent *__netdev_find_adj(struct net_device *dev,
4531 struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004532 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004533{
Veaceslav Falico5d261912013-08-28 23:25:05 +02004534 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004535
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004536 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02004537 if (adj->dev == adj_dev)
4538 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004539 }
4540 return NULL;
4541}
4542
4543/**
4544 * netdev_has_upper_dev - Check if device is linked to an upper device
4545 * @dev: device
4546 * @upper_dev: upper device to check
4547 *
4548 * Find out if a device is linked to specified upper device and return true
4549 * in case it is. Note that this checks only immediate upper device,
4550 * not through a complete stack of devices. The caller must hold the RTNL lock.
4551 */
4552bool netdev_has_upper_dev(struct net_device *dev,
4553 struct net_device *upper_dev)
4554{
4555 ASSERT_RTNL();
4556
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004557 return __netdev_find_adj(dev, upper_dev, &dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004558}
4559EXPORT_SYMBOL(netdev_has_upper_dev);
4560
4561/**
4562 * netdev_has_any_upper_dev - Check if device is linked to some device
4563 * @dev: device
4564 *
4565 * Find out if a device is linked to an upper device and return true in case
4566 * it is. The caller must hold the RTNL lock.
4567 */
stephen hemminger1d143d92013-12-29 14:01:29 -08004568static bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004569{
4570 ASSERT_RTNL();
4571
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004572 return !list_empty(&dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004573}
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004574
4575/**
4576 * netdev_master_upper_dev_get - Get master upper device
4577 * @dev: device
4578 *
4579 * Find a master upper device and return pointer to it or NULL in case
4580 * it's not there. The caller must hold the RTNL lock.
4581 */
4582struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
4583{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004584 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004585
4586 ASSERT_RTNL();
4587
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004588 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004589 return NULL;
4590
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004591 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004592 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004593 if (likely(upper->master))
4594 return upper->dev;
4595 return NULL;
4596}
4597EXPORT_SYMBOL(netdev_master_upper_dev_get);
4598
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02004599void *netdev_adjacent_get_private(struct list_head *adj_list)
4600{
4601 struct netdev_adjacent *adj;
4602
4603 adj = list_entry(adj_list, struct netdev_adjacent, list);
4604
4605 return adj->private;
4606}
4607EXPORT_SYMBOL(netdev_adjacent_get_private);
4608
Veaceslav Falico31088a12013-09-25 09:20:12 +02004609/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04004610 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
4611 * @dev: device
4612 * @iter: list_head ** of the current position
4613 *
4614 * Gets the next device from the dev's upper list, starting from iter
4615 * position. The caller must hold RCU read lock.
4616 */
4617struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
4618 struct list_head **iter)
4619{
4620 struct netdev_adjacent *upper;
4621
4622 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
4623
4624 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4625
4626 if (&upper->list == &dev->adj_list.upper)
4627 return NULL;
4628
4629 *iter = &upper->list;
4630
4631 return upper->dev;
4632}
4633EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
4634
4635/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02004636 * netdev_all_upper_get_next_dev_rcu - Get the next dev from upper list
Veaceslav Falico48311f42013-08-28 23:25:07 +02004637 * @dev: device
4638 * @iter: list_head ** of the current position
4639 *
4640 * Gets the next device from the dev's upper list, starting from iter
4641 * position. The caller must hold RCU read lock.
4642 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004643struct net_device *netdev_all_upper_get_next_dev_rcu(struct net_device *dev,
4644 struct list_head **iter)
Veaceslav Falico48311f42013-08-28 23:25:07 +02004645{
4646 struct netdev_adjacent *upper;
4647
John Fastabend85328242013-11-26 06:33:52 +00004648 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
Veaceslav Falico48311f42013-08-28 23:25:07 +02004649
4650 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4651
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004652 if (&upper->list == &dev->all_adj_list.upper)
Veaceslav Falico48311f42013-08-28 23:25:07 +02004653 return NULL;
4654
4655 *iter = &upper->list;
4656
4657 return upper->dev;
4658}
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004659EXPORT_SYMBOL(netdev_all_upper_get_next_dev_rcu);
Veaceslav Falico48311f42013-08-28 23:25:07 +02004660
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004661/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02004662 * netdev_lower_get_next_private - Get the next ->private from the
4663 * lower neighbour list
4664 * @dev: device
4665 * @iter: list_head ** of the current position
4666 *
4667 * Gets the next netdev_adjacent->private from the dev's lower neighbour
4668 * list, starting from iter position. The caller must hold either hold the
4669 * RTNL lock or its own locking that guarantees that the neighbour lower
4670 * list will remain unchainged.
4671 */
4672void *netdev_lower_get_next_private(struct net_device *dev,
4673 struct list_head **iter)
4674{
4675 struct netdev_adjacent *lower;
4676
4677 lower = list_entry(*iter, struct netdev_adjacent, list);
4678
4679 if (&lower->list == &dev->adj_list.lower)
4680 return NULL;
4681
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02004682 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02004683
4684 return lower->private;
4685}
4686EXPORT_SYMBOL(netdev_lower_get_next_private);
4687
4688/**
4689 * netdev_lower_get_next_private_rcu - Get the next ->private from the
4690 * lower neighbour list, RCU
4691 * variant
4692 * @dev: device
4693 * @iter: list_head ** of the current position
4694 *
4695 * Gets the next netdev_adjacent->private from the dev's lower neighbour
4696 * list, starting from iter position. The caller must hold RCU read lock.
4697 */
4698void *netdev_lower_get_next_private_rcu(struct net_device *dev,
4699 struct list_head **iter)
4700{
4701 struct netdev_adjacent *lower;
4702
4703 WARN_ON_ONCE(!rcu_read_lock_held());
4704
4705 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4706
4707 if (&lower->list == &dev->adj_list.lower)
4708 return NULL;
4709
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02004710 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02004711
4712 return lower->private;
4713}
4714EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
4715
4716/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04004717 * netdev_lower_get_next - Get the next device from the lower neighbour
4718 * list
4719 * @dev: device
4720 * @iter: list_head ** of the current position
4721 *
4722 * Gets the next netdev_adjacent from the dev's lower neighbour
4723 * list, starting from iter position. The caller must hold RTNL lock or
4724 * its own locking that guarantees that the neighbour lower
4725 * list will remain unchainged.
4726 */
4727void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
4728{
4729 struct netdev_adjacent *lower;
4730
4731 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
4732
4733 if (&lower->list == &dev->adj_list.lower)
4734 return NULL;
4735
4736 *iter = &lower->list;
4737
4738 return lower->dev;
4739}
4740EXPORT_SYMBOL(netdev_lower_get_next);
4741
4742/**
dingtianhonge001bfa2013-12-13 10:19:55 +08004743 * netdev_lower_get_first_private_rcu - Get the first ->private from the
4744 * lower neighbour list, RCU
4745 * variant
4746 * @dev: device
4747 *
4748 * Gets the first netdev_adjacent->private from the dev's lower neighbour
4749 * list. The caller must hold RCU read lock.
4750 */
4751void *netdev_lower_get_first_private_rcu(struct net_device *dev)
4752{
4753 struct netdev_adjacent *lower;
4754
4755 lower = list_first_or_null_rcu(&dev->adj_list.lower,
4756 struct netdev_adjacent, list);
4757 if (lower)
4758 return lower->private;
4759 return NULL;
4760}
4761EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
4762
4763/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004764 * netdev_master_upper_dev_get_rcu - Get master upper device
4765 * @dev: device
4766 *
4767 * Find a master upper device and return pointer to it or NULL in case
4768 * it's not there. The caller must hold the RCU read lock.
4769 */
4770struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
4771{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004772 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004773
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004774 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004775 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004776 if (upper && likely(upper->master))
4777 return upper->dev;
4778 return NULL;
4779}
4780EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
4781
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05304782static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004783 struct net_device *adj_dev,
4784 struct list_head *dev_list)
4785{
4786 char linkname[IFNAMSIZ+7];
4787 sprintf(linkname, dev_list == &dev->adj_list.upper ?
4788 "upper_%s" : "lower_%s", adj_dev->name);
4789 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
4790 linkname);
4791}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05304792static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004793 char *name,
4794 struct list_head *dev_list)
4795{
4796 char linkname[IFNAMSIZ+7];
4797 sprintf(linkname, dev_list == &dev->adj_list.upper ?
4798 "upper_%s" : "lower_%s", name);
4799 sysfs_remove_link(&(dev->dev.kobj), linkname);
4800}
4801
4802#define netdev_adjacent_is_neigh_list(dev, dev_list) \
4803 (dev_list == &dev->adj_list.upper || \
4804 dev_list == &dev->adj_list.lower)
4805
Veaceslav Falico5d261912013-08-28 23:25:05 +02004806static int __netdev_adjacent_dev_insert(struct net_device *dev,
4807 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02004808 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004809 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004810{
4811 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004812 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004813
Veaceslav Falico7863c052013-09-25 09:20:06 +02004814 adj = __netdev_find_adj(dev, adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004815
4816 if (adj) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02004817 adj->ref_nr++;
4818 return 0;
4819 }
4820
4821 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
4822 if (!adj)
4823 return -ENOMEM;
4824
4825 adj->dev = adj_dev;
4826 adj->master = master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004827 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02004828 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004829 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004830
4831 pr_debug("dev_hold for %s, because of link added from %s to %s\n",
4832 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004833
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004834 if (netdev_adjacent_is_neigh_list(dev, dev_list)) {
4835 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004836 if (ret)
4837 goto free_adj;
4838 }
4839
Veaceslav Falico7863c052013-09-25 09:20:06 +02004840 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004841 if (master) {
4842 ret = sysfs_create_link(&(dev->dev.kobj),
4843 &(adj_dev->dev.kobj), "master");
4844 if (ret)
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004845 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004846
Veaceslav Falico7863c052013-09-25 09:20:06 +02004847 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004848 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02004849 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004850 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02004851
4852 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004853
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004854remove_symlinks:
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004855 if (netdev_adjacent_is_neigh_list(dev, dev_list))
4856 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004857free_adj:
4858 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02004859 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004860
4861 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004862}
4863
stephen hemminger1d143d92013-12-29 14:01:29 -08004864static void __netdev_adjacent_dev_remove(struct net_device *dev,
4865 struct net_device *adj_dev,
4866 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004867{
4868 struct netdev_adjacent *adj;
4869
Veaceslav Falico7863c052013-09-25 09:20:06 +02004870 adj = __netdev_find_adj(dev, adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004871
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004872 if (!adj) {
4873 pr_err("tried to remove device %s from %s\n",
4874 dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004875 BUG();
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004876 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02004877
4878 if (adj->ref_nr > 1) {
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004879 pr_debug("%s to %s ref_nr-- = %d\n", dev->name, adj_dev->name,
4880 adj->ref_nr-1);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004881 adj->ref_nr--;
4882 return;
4883 }
4884
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004885 if (adj->master)
4886 sysfs_remove_link(&(dev->dev.kobj), "master");
4887
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004888 if (netdev_adjacent_is_neigh_list(dev, dev_list))
4889 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004890
Veaceslav Falico5d261912013-08-28 23:25:05 +02004891 list_del_rcu(&adj->list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004892 pr_debug("dev_put for %s, because link removed from %s to %s\n",
4893 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004894 dev_put(adj_dev);
4895 kfree_rcu(adj, rcu);
4896}
4897
stephen hemminger1d143d92013-12-29 14:01:29 -08004898static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
4899 struct net_device *upper_dev,
4900 struct list_head *up_list,
4901 struct list_head *down_list,
4902 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004903{
4904 int ret;
4905
Veaceslav Falico402dae92013-09-25 09:20:09 +02004906 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list, private,
4907 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004908 if (ret)
4909 return ret;
4910
Veaceslav Falico402dae92013-09-25 09:20:09 +02004911 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list, private,
4912 false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004913 if (ret) {
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004914 __netdev_adjacent_dev_remove(dev, upper_dev, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004915 return ret;
4916 }
4917
4918 return 0;
4919}
4920
stephen hemminger1d143d92013-12-29 14:01:29 -08004921static int __netdev_adjacent_dev_link(struct net_device *dev,
4922 struct net_device *upper_dev)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004923{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004924 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
4925 &dev->all_adj_list.upper,
4926 &upper_dev->all_adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004927 NULL, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004928}
4929
stephen hemminger1d143d92013-12-29 14:01:29 -08004930static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
4931 struct net_device *upper_dev,
4932 struct list_head *up_list,
4933 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004934{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004935 __netdev_adjacent_dev_remove(dev, upper_dev, up_list);
4936 __netdev_adjacent_dev_remove(upper_dev, dev, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004937}
4938
stephen hemminger1d143d92013-12-29 14:01:29 -08004939static void __netdev_adjacent_dev_unlink(struct net_device *dev,
4940 struct net_device *upper_dev)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004941{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004942 __netdev_adjacent_dev_unlink_lists(dev, upper_dev,
4943 &dev->all_adj_list.upper,
4944 &upper_dev->all_adj_list.lower);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004945}
4946
stephen hemminger1d143d92013-12-29 14:01:29 -08004947static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
4948 struct net_device *upper_dev,
4949 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004950{
4951 int ret = __netdev_adjacent_dev_link(dev, upper_dev);
4952
4953 if (ret)
4954 return ret;
4955
4956 ret = __netdev_adjacent_dev_link_lists(dev, upper_dev,
4957 &dev->adj_list.upper,
4958 &upper_dev->adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004959 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004960 if (ret) {
4961 __netdev_adjacent_dev_unlink(dev, upper_dev);
4962 return ret;
4963 }
4964
4965 return 0;
4966}
4967
stephen hemminger1d143d92013-12-29 14:01:29 -08004968static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
4969 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004970{
4971 __netdev_adjacent_dev_unlink(dev, upper_dev);
4972 __netdev_adjacent_dev_unlink_lists(dev, upper_dev,
4973 &dev->adj_list.upper,
4974 &upper_dev->adj_list.lower);
4975}
Veaceslav Falico5d261912013-08-28 23:25:05 +02004976
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004977static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004978 struct net_device *upper_dev, bool master,
4979 void *private)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004980{
Veaceslav Falico5d261912013-08-28 23:25:05 +02004981 struct netdev_adjacent *i, *j, *to_i, *to_j;
4982 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004983
4984 ASSERT_RTNL();
4985
4986 if (dev == upper_dev)
4987 return -EBUSY;
4988
4989 /* To prevent loops, check if dev is not upper device to upper_dev. */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004990 if (__netdev_find_adj(upper_dev, dev, &upper_dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004991 return -EBUSY;
4992
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004993 if (__netdev_find_adj(dev, upper_dev, &dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004994 return -EEXIST;
4995
4996 if (master && netdev_master_upper_dev_get(dev))
4997 return -EBUSY;
4998
Veaceslav Falico402dae92013-09-25 09:20:09 +02004999 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, private,
5000 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005001 if (ret)
5002 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005003
Veaceslav Falico5d261912013-08-28 23:25:05 +02005004 /* Now that we linked these devs, make all the upper_dev's
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005005 * all_adj_list.upper visible to every dev's all_adj_list.lower an
Veaceslav Falico5d261912013-08-28 23:25:05 +02005006 * versa, and don't forget the devices itself. All of these
5007 * links are non-neighbours.
5008 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005009 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5010 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
5011 pr_debug("Interlinking %s with %s, non-neighbour\n",
5012 i->dev->name, j->dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005013 ret = __netdev_adjacent_dev_link(i->dev, j->dev);
5014 if (ret)
5015 goto rollback_mesh;
5016 }
5017 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005018
Veaceslav Falico5d261912013-08-28 23:25:05 +02005019 /* add dev to every upper_dev's upper device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005020 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
5021 pr_debug("linking %s's upper device %s with %s\n",
5022 upper_dev->name, i->dev->name, dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005023 ret = __netdev_adjacent_dev_link(dev, i->dev);
5024 if (ret)
5025 goto rollback_upper_mesh;
5026 }
5027
5028 /* add upper_dev to every dev's lower device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005029 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5030 pr_debug("linking %s's lower device %s with %s\n", dev->name,
5031 i->dev->name, upper_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005032 ret = __netdev_adjacent_dev_link(i->dev, upper_dev);
5033 if (ret)
5034 goto rollback_lower_mesh;
5035 }
5036
Jiri Pirko42e52bf2013-05-25 04:12:10 +00005037 call_netdevice_notifiers(NETDEV_CHANGEUPPER, dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005038 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005039
5040rollback_lower_mesh:
5041 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005042 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005043 if (i == to_i)
5044 break;
5045 __netdev_adjacent_dev_unlink(i->dev, upper_dev);
5046 }
5047
5048 i = NULL;
5049
5050rollback_upper_mesh:
5051 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005052 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005053 if (i == to_i)
5054 break;
5055 __netdev_adjacent_dev_unlink(dev, i->dev);
5056 }
5057
5058 i = j = NULL;
5059
5060rollback_mesh:
5061 to_i = i;
5062 to_j = j;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005063 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5064 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005065 if (i == to_i && j == to_j)
5066 break;
5067 __netdev_adjacent_dev_unlink(i->dev, j->dev);
5068 }
5069 if (i == to_i)
5070 break;
5071 }
5072
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005073 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005074
5075 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005076}
5077
5078/**
5079 * netdev_upper_dev_link - Add a link to the upper device
5080 * @dev: device
5081 * @upper_dev: new upper device
5082 *
5083 * Adds a link to device which is upper to this one. The caller must hold
5084 * the RTNL lock. On a failure a negative errno code is returned.
5085 * On success the reference counts are adjusted and the function
5086 * returns zero.
5087 */
5088int netdev_upper_dev_link(struct net_device *dev,
5089 struct net_device *upper_dev)
5090{
Veaceslav Falico402dae92013-09-25 09:20:09 +02005091 return __netdev_upper_dev_link(dev, upper_dev, false, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005092}
5093EXPORT_SYMBOL(netdev_upper_dev_link);
5094
5095/**
5096 * netdev_master_upper_dev_link - Add a master link to the upper device
5097 * @dev: device
5098 * @upper_dev: new upper device
5099 *
5100 * Adds a link to device which is upper to this one. In this case, only
5101 * one master upper device can be linked, although other non-master devices
5102 * might be linked as well. The caller must hold the RTNL lock.
5103 * On a failure a negative errno code is returned. On success the reference
5104 * counts are adjusted and the function returns zero.
5105 */
5106int netdev_master_upper_dev_link(struct net_device *dev,
5107 struct net_device *upper_dev)
5108{
Veaceslav Falico402dae92013-09-25 09:20:09 +02005109 return __netdev_upper_dev_link(dev, upper_dev, true, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005110}
5111EXPORT_SYMBOL(netdev_master_upper_dev_link);
5112
Veaceslav Falico402dae92013-09-25 09:20:09 +02005113int netdev_master_upper_dev_link_private(struct net_device *dev,
5114 struct net_device *upper_dev,
5115 void *private)
5116{
5117 return __netdev_upper_dev_link(dev, upper_dev, true, private);
5118}
5119EXPORT_SYMBOL(netdev_master_upper_dev_link_private);
5120
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005121/**
5122 * netdev_upper_dev_unlink - Removes a link to upper device
5123 * @dev: device
5124 * @upper_dev: new upper device
5125 *
5126 * Removes a link to device which is upper to this one. The caller must hold
5127 * the RTNL lock.
5128 */
5129void netdev_upper_dev_unlink(struct net_device *dev,
5130 struct net_device *upper_dev)
5131{
Veaceslav Falico5d261912013-08-28 23:25:05 +02005132 struct netdev_adjacent *i, *j;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005133 ASSERT_RTNL();
5134
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005135 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005136
5137 /* Here is the tricky part. We must remove all dev's lower
5138 * devices from all upper_dev's upper devices and vice
5139 * versa, to maintain the graph relationship.
5140 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005141 list_for_each_entry(i, &dev->all_adj_list.lower, list)
5142 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005143 __netdev_adjacent_dev_unlink(i->dev, j->dev);
5144
5145 /* remove also the devices itself from lower/upper device
5146 * list
5147 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005148 list_for_each_entry(i, &dev->all_adj_list.lower, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005149 __netdev_adjacent_dev_unlink(i->dev, upper_dev);
5150
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005151 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005152 __netdev_adjacent_dev_unlink(dev, i->dev);
5153
Jiri Pirko42e52bf2013-05-25 04:12:10 +00005154 call_netdevice_notifiers(NETDEV_CHANGEUPPER, dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005155}
5156EXPORT_SYMBOL(netdev_upper_dev_unlink);
5157
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005158void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02005159{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005160 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02005161
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005162 list_for_each_entry(iter, &dev->adj_list.upper, list) {
5163 netdev_adjacent_sysfs_del(iter->dev, oldname,
5164 &iter->dev->adj_list.lower);
5165 netdev_adjacent_sysfs_add(iter->dev, dev,
5166 &iter->dev->adj_list.lower);
5167 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02005168
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005169 list_for_each_entry(iter, &dev->adj_list.lower, list) {
5170 netdev_adjacent_sysfs_del(iter->dev, oldname,
5171 &iter->dev->adj_list.upper);
5172 netdev_adjacent_sysfs_add(iter->dev, dev,
5173 &iter->dev->adj_list.upper);
5174 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02005175}
Veaceslav Falico402dae92013-09-25 09:20:09 +02005176
5177void *netdev_lower_dev_get_private(struct net_device *dev,
5178 struct net_device *lower_dev)
5179{
5180 struct netdev_adjacent *lower;
5181
5182 if (!lower_dev)
5183 return NULL;
5184 lower = __netdev_find_adj(dev, lower_dev, &dev->adj_list.lower);
5185 if (!lower)
5186 return NULL;
5187
5188 return lower->private;
5189}
5190EXPORT_SYMBOL(netdev_lower_dev_get_private);
5191
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005192
5193int dev_get_nest_level(struct net_device *dev,
5194 bool (*type_check)(struct net_device *dev))
5195{
5196 struct net_device *lower = NULL;
5197 struct list_head *iter;
5198 int max_nest = -1;
5199 int nest;
5200
5201 ASSERT_RTNL();
5202
5203 netdev_for_each_lower_dev(dev, lower, iter) {
5204 nest = dev_get_nest_level(lower, type_check);
5205 if (max_nest < nest)
5206 max_nest = nest;
5207 }
5208
5209 if (type_check(dev))
5210 max_nest++;
5211
5212 return max_nest;
5213}
5214EXPORT_SYMBOL(dev_get_nest_level);
5215
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005216static void dev_change_rx_flags(struct net_device *dev, int flags)
5217{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005218 const struct net_device_ops *ops = dev->netdev_ops;
5219
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05005220 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005221 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005222}
5223
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005224static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07005225{
Eric Dumazetb536db92011-11-30 21:42:26 +00005226 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06005227 kuid_t uid;
5228 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07005229
Patrick McHardy24023452007-07-14 18:51:31 -07005230 ASSERT_RTNL();
5231
Wang Chendad9b332008-06-18 01:48:28 -07005232 dev->flags |= IFF_PROMISC;
5233 dev->promiscuity += inc;
5234 if (dev->promiscuity == 0) {
5235 /*
5236 * Avoid overflow.
5237 * If inc causes overflow, untouch promisc and return error.
5238 */
5239 if (inc < 0)
5240 dev->flags &= ~IFF_PROMISC;
5241 else {
5242 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005243 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
5244 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07005245 return -EOVERFLOW;
5246 }
5247 }
Patrick McHardy4417da62007-06-27 01:28:10 -07005248 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005249 pr_info("device %s %s promiscuous mode\n",
5250 dev->name,
5251 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11005252 if (audit_enabled) {
5253 current_uid_gid(&uid, &gid);
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05005254 audit_log(current->audit_context, GFP_ATOMIC,
5255 AUDIT_ANOM_PROMISCUOUS,
5256 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
5257 dev->name, (dev->flags & IFF_PROMISC),
5258 (old_flags & IFF_PROMISC),
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07005259 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06005260 from_kuid(&init_user_ns, uid),
5261 from_kgid(&init_user_ns, gid),
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05005262 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11005263 }
Patrick McHardy24023452007-07-14 18:51:31 -07005264
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005265 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07005266 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005267 if (notify)
5268 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07005269 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07005270}
5271
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272/**
5273 * dev_set_promiscuity - update promiscuity count on a device
5274 * @dev: device
5275 * @inc: modifier
5276 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07005277 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005278 * remains above zero the interface remains promiscuous. Once it hits zero
5279 * the device reverts back to normal filtering operation. A negative inc
5280 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07005281 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282 */
Wang Chendad9b332008-06-18 01:48:28 -07005283int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284{
Eric Dumazetb536db92011-11-30 21:42:26 +00005285 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07005286 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005287
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005288 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07005289 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07005290 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07005291 if (dev->flags != old_flags)
5292 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07005293 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005295EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005297static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005299 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005300
Patrick McHardy24023452007-07-14 18:51:31 -07005301 ASSERT_RTNL();
5302
Linus Torvalds1da177e2005-04-16 15:20:36 -07005303 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07005304 dev->allmulti += inc;
5305 if (dev->allmulti == 0) {
5306 /*
5307 * Avoid overflow.
5308 * If inc causes overflow, untouch allmulti and return error.
5309 */
5310 if (inc < 0)
5311 dev->flags &= ~IFF_ALLMULTI;
5312 else {
5313 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005314 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
5315 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07005316 return -EOVERFLOW;
5317 }
5318 }
Patrick McHardy24023452007-07-14 18:51:31 -07005319 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005320 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07005321 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005322 if (notify)
5323 __dev_notify_flags(dev, old_flags,
5324 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07005325 }
Wang Chendad9b332008-06-18 01:48:28 -07005326 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07005327}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005328
5329/**
5330 * dev_set_allmulti - update allmulti count on a device
5331 * @dev: device
5332 * @inc: modifier
5333 *
5334 * Add or remove reception of all multicast frames to a device. While the
5335 * count in the device remains above zero the interface remains listening
5336 * to all interfaces. Once it hits zero the device reverts back to normal
5337 * filtering operation. A negative @inc value is used to drop the counter
5338 * when releasing a resource needing all multicasts.
5339 * Return 0 if successful or a negative errno code on error.
5340 */
5341
5342int dev_set_allmulti(struct net_device *dev, int inc)
5343{
5344 return __dev_set_allmulti(dev, inc, true);
5345}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005346EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07005347
5348/*
5349 * Upload unicast and multicast address lists to device and
5350 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08005351 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07005352 * are present.
5353 */
5354void __dev_set_rx_mode(struct net_device *dev)
5355{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005356 const struct net_device_ops *ops = dev->netdev_ops;
5357
Patrick McHardy4417da62007-06-27 01:28:10 -07005358 /* dev_open will call this function so the list will stay sane. */
5359 if (!(dev->flags&IFF_UP))
5360 return;
5361
5362 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09005363 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07005364
Jiri Pirko01789342011-08-16 06:29:00 +00005365 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07005366 /* Unicast addresses changes may only happen under the rtnl,
5367 * therefore calling __dev_set_promiscuity here is safe.
5368 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08005369 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005370 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07005371 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08005372 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005373 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07005374 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07005375 }
Patrick McHardy4417da62007-06-27 01:28:10 -07005376 }
Jiri Pirko01789342011-08-16 06:29:00 +00005377
5378 if (ops->ndo_set_rx_mode)
5379 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07005380}
5381
5382void dev_set_rx_mode(struct net_device *dev)
5383{
David S. Millerb9e40852008-07-15 00:15:08 -07005384 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07005385 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07005386 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005387}
5388
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005389/**
5390 * dev_get_flags - get flags reported to userspace
5391 * @dev: device
5392 *
5393 * Get the combination of flag bits exported through APIs to userspace.
5394 */
Eric Dumazet95c96172012-04-15 05:58:06 +00005395unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396{
Eric Dumazet95c96172012-04-15 05:58:06 +00005397 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005398
5399 flags = (dev->flags & ~(IFF_PROMISC |
5400 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08005401 IFF_RUNNING |
5402 IFF_LOWER_UP |
5403 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07005404 (dev->gflags & (IFF_PROMISC |
5405 IFF_ALLMULTI));
5406
Stefan Rompfb00055a2006-03-20 17:09:11 -08005407 if (netif_running(dev)) {
5408 if (netif_oper_up(dev))
5409 flags |= IFF_RUNNING;
5410 if (netif_carrier_ok(dev))
5411 flags |= IFF_LOWER_UP;
5412 if (netif_dormant(dev))
5413 flags |= IFF_DORMANT;
5414 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415
5416 return flags;
5417}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005418EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419
Patrick McHardybd380812010-02-26 06:34:53 +00005420int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005421{
Eric Dumazetb536db92011-11-30 21:42:26 +00005422 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00005423 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005424
Patrick McHardy24023452007-07-14 18:51:31 -07005425 ASSERT_RTNL();
5426
Linus Torvalds1da177e2005-04-16 15:20:36 -07005427 /*
5428 * Set the flags on our device.
5429 */
5430
5431 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
5432 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
5433 IFF_AUTOMEDIA)) |
5434 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
5435 IFF_ALLMULTI));
5436
5437 /*
5438 * Load in the correct multicast list now the flags have changed.
5439 */
5440
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005441 if ((old_flags ^ flags) & IFF_MULTICAST)
5442 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07005443
Patrick McHardy4417da62007-06-27 01:28:10 -07005444 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005445
5446 /*
5447 * Have we downed the interface. We handle IFF_UP ourselves
5448 * according to user attempts to set it, rather than blindly
5449 * setting it.
5450 */
5451
5452 ret = 0;
Peter Pan(潘卫平)d215d102014-06-16 21:57:22 +08005453 if ((old_flags ^ flags) & IFF_UP)
Patrick McHardybd380812010-02-26 06:34:53 +00005454 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005455
Linus Torvalds1da177e2005-04-16 15:20:36 -07005456 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005457 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005458 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005459
Linus Torvalds1da177e2005-04-16 15:20:36 -07005460 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005461
5462 if (__dev_set_promiscuity(dev, inc, false) >= 0)
5463 if (dev->flags != old_flags)
5464 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005465 }
5466
5467 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
5468 is important. Some (broken) drivers set IFF_PROMISC, when
5469 IFF_ALLMULTI is requested not asking us and not reporting.
5470 */
5471 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005472 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
5473
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005475 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005476 }
5477
Patrick McHardybd380812010-02-26 06:34:53 +00005478 return ret;
5479}
5480
Nicolas Dichtela528c212013-09-25 12:02:44 +02005481void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
5482 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00005483{
5484 unsigned int changes = dev->flags ^ old_flags;
5485
Nicolas Dichtela528c212013-09-25 12:02:44 +02005486 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07005487 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02005488
Patrick McHardybd380812010-02-26 06:34:53 +00005489 if (changes & IFF_UP) {
5490 if (dev->flags & IFF_UP)
5491 call_netdevice_notifiers(NETDEV_UP, dev);
5492 else
5493 call_netdevice_notifiers(NETDEV_DOWN, dev);
5494 }
5495
5496 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00005497 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
5498 struct netdev_notifier_change_info change_info;
5499
5500 change_info.flags_changed = changes;
5501 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
5502 &change_info.info);
5503 }
Patrick McHardybd380812010-02-26 06:34:53 +00005504}
5505
5506/**
5507 * dev_change_flags - change device settings
5508 * @dev: device
5509 * @flags: device state flags
5510 *
5511 * Change settings on device based state flags. The flags are
5512 * in the userspace exported format.
5513 */
Eric Dumazetb536db92011-11-30 21:42:26 +00005514int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00005515{
Eric Dumazetb536db92011-11-30 21:42:26 +00005516 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005517 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00005518
5519 ret = __dev_change_flags(dev, flags);
5520 if (ret < 0)
5521 return ret;
5522
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005523 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02005524 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005525 return ret;
5526}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005527EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005528
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005529static int __dev_set_mtu(struct net_device *dev, int new_mtu)
5530{
5531 const struct net_device_ops *ops = dev->netdev_ops;
5532
5533 if (ops->ndo_change_mtu)
5534 return ops->ndo_change_mtu(dev, new_mtu);
5535
5536 dev->mtu = new_mtu;
5537 return 0;
5538}
5539
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005540/**
5541 * dev_set_mtu - Change maximum transfer unit
5542 * @dev: device
5543 * @new_mtu: new transfer unit
5544 *
5545 * Change the maximum transfer size of the network device.
5546 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005547int dev_set_mtu(struct net_device *dev, int new_mtu)
5548{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005549 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005550
5551 if (new_mtu == dev->mtu)
5552 return 0;
5553
5554 /* MTU must be positive. */
5555 if (new_mtu < 0)
5556 return -EINVAL;
5557
5558 if (!netif_device_present(dev))
5559 return -ENODEV;
5560
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01005561 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
5562 err = notifier_to_errno(err);
5563 if (err)
5564 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005565
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005566 orig_mtu = dev->mtu;
5567 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005568
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005569 if (!err) {
5570 err = call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
5571 err = notifier_to_errno(err);
5572 if (err) {
5573 /* setting mtu back and notifying everyone again,
5574 * so that they have a chance to revert changes.
5575 */
5576 __dev_set_mtu(dev, orig_mtu);
5577 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
5578 }
5579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005580 return err;
5581}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005582EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005583
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005584/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00005585 * dev_set_group - Change group this device belongs to
5586 * @dev: device
5587 * @new_group: group this device should belong to
5588 */
5589void dev_set_group(struct net_device *dev, int new_group)
5590{
5591 dev->group = new_group;
5592}
5593EXPORT_SYMBOL(dev_set_group);
5594
5595/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005596 * dev_set_mac_address - Change Media Access Control Address
5597 * @dev: device
5598 * @sa: new address
5599 *
5600 * Change the hardware (MAC) address of the device
5601 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005602int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
5603{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005604 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005605 int err;
5606
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005607 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005608 return -EOPNOTSUPP;
5609 if (sa->sa_family != dev->type)
5610 return -EINVAL;
5611 if (!netif_device_present(dev))
5612 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005613 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00005614 if (err)
5615 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00005616 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00005617 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04005618 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00005619 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005621EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005622
Jiri Pirko4bf84c32012-12-27 23:49:37 +00005623/**
5624 * dev_change_carrier - Change device carrier
5625 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00005626 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00005627 *
5628 * Change device carrier
5629 */
5630int dev_change_carrier(struct net_device *dev, bool new_carrier)
5631{
5632 const struct net_device_ops *ops = dev->netdev_ops;
5633
5634 if (!ops->ndo_change_carrier)
5635 return -EOPNOTSUPP;
5636 if (!netif_device_present(dev))
5637 return -ENODEV;
5638 return ops->ndo_change_carrier(dev, new_carrier);
5639}
5640EXPORT_SYMBOL(dev_change_carrier);
5641
Linus Torvalds1da177e2005-04-16 15:20:36 -07005642/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02005643 * dev_get_phys_port_id - Get device physical port ID
5644 * @dev: device
5645 * @ppid: port ID
5646 *
5647 * Get device physical port ID
5648 */
5649int dev_get_phys_port_id(struct net_device *dev,
5650 struct netdev_phys_port_id *ppid)
5651{
5652 const struct net_device_ops *ops = dev->netdev_ops;
5653
5654 if (!ops->ndo_get_phys_port_id)
5655 return -EOPNOTSUPP;
5656 return ops->ndo_get_phys_port_id(dev, ppid);
5657}
5658EXPORT_SYMBOL(dev_get_phys_port_id);
5659
5660/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005662 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663 *
5664 * Returns a suitable unique value for a new device interface
5665 * number. The caller must hold the rtnl semaphore or the
5666 * dev_base_lock to be sure it remains unique.
5667 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07005668static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00005670 int ifindex = net->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671 for (;;) {
5672 if (++ifindex <= 0)
5673 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07005674 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00005675 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676 }
5677}
5678
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08005680static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07005681DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682
Stephen Hemminger6f05f622007-03-08 20:46:03 -08005683static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005684{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07005686 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005687}
5688
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005689static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005690{
Krishna Kumare93737b2009-12-08 22:26:02 +00005691 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07005692 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005693
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005694 BUG_ON(dev_boot_phase);
5695 ASSERT_RTNL();
5696
Krishna Kumare93737b2009-12-08 22:26:02 +00005697 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005698 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00005699 * for initialization unwind. Remove those
5700 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005701 */
5702 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005703 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
5704 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005705
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005706 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00005707 list_del(&dev->unreg_list);
5708 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005709 }
Eric Dumazet449f4542011-05-19 12:24:16 +00005710 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005711 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00005712 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005713
Octavian Purdila44345722010-12-13 12:44:07 +00005714 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07005715 list_for_each_entry(dev, head, unreg_list)
5716 list_add_tail(&dev->close_list, &close_head);
5717 dev_close_many(&close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005718
Octavian Purdila44345722010-12-13 12:44:07 +00005719 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005720 /* And unlink it from device chain. */
5721 unlist_netdevice(dev);
5722
5723 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005724 }
5725
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005726 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005727
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005728 list_for_each_entry(dev, head, unreg_list) {
5729 /* Shutdown queueing discipline. */
5730 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005731
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005732
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005733 /* Notify protocols, that we are about to destroy
5734 this device. They should clean all the things.
5735 */
5736 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
5737
5738 /*
5739 * Flush the unicast and multicast chains
5740 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00005741 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005742 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005743
5744 if (dev->netdev_ops->ndo_uninit)
5745 dev->netdev_ops->ndo_uninit(dev);
5746
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07005747 if (!dev->rtnl_link_ops ||
5748 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
5749 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
5750
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005751 /* Notifier chain MUST detach us all upper devices. */
5752 WARN_ON(netdev_has_any_upper_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005753
5754 /* Remove entries from kobject tree */
5755 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00005756#ifdef CONFIG_XPS
5757 /* Remove XPS queueing entries */
5758 netif_reset_xps_queues_gt(dev, 0);
5759#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005760 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005761
Eric W. Biederman850a5452011-10-13 22:25:23 +00005762 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005763
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00005764 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005765 dev_put(dev);
5766}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005767
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005768static void rollback_registered(struct net_device *dev)
5769{
5770 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005771
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005772 list_add(&dev->unreg_list, &single);
5773 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00005774 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005775}
5776
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005777static netdev_features_t netdev_fix_features(struct net_device *dev,
5778 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07005779{
Michał Mirosław57422dc2011-01-22 12:14:12 +00005780 /* Fix illegal checksum combinations */
5781 if ((features & NETIF_F_HW_CSUM) &&
5782 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005783 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00005784 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
5785 }
5786
Herbert Xub63365a2008-10-23 01:11:29 -07005787 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00005788 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005789 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00005790 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07005791 }
5792
Pravin B Shelarec5f0612013-03-07 09:28:01 +00005793 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
5794 !(features & NETIF_F_IP_CSUM)) {
5795 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
5796 features &= ~NETIF_F_TSO;
5797 features &= ~NETIF_F_TSO_ECN;
5798 }
5799
5800 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
5801 !(features & NETIF_F_IPV6_CSUM)) {
5802 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
5803 features &= ~NETIF_F_TSO6;
5804 }
5805
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00005806 /* TSO ECN requires that TSO is present as well. */
5807 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
5808 features &= ~NETIF_F_TSO_ECN;
5809
Michał Mirosław212b5732011-02-15 16:59:16 +00005810 /* Software GSO depends on SG. */
5811 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005812 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00005813 features &= ~NETIF_F_GSO;
5814 }
5815
Michał Mirosławacd11302011-01-24 15:45:15 -08005816 /* UFO needs SG and checksumming */
Herbert Xub63365a2008-10-23 01:11:29 -07005817 if (features & NETIF_F_UFO) {
Michał Mirosław79032642010-11-30 06:38:00 +00005818 /* maybe split UFO into V4 and V6? */
5819 if (!((features & NETIF_F_GEN_CSUM) ||
5820 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))
5821 == (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005822 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08005823 "Dropping NETIF_F_UFO since no checksum offload features.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07005824 features &= ~NETIF_F_UFO;
5825 }
5826
5827 if (!(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005828 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08005829 "Dropping NETIF_F_UFO since no NETIF_F_SG feature.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07005830 features &= ~NETIF_F_UFO;
5831 }
5832 }
5833
Jiri Pirkod0290212014-04-02 23:09:31 +02005834#ifdef CONFIG_NET_RX_BUSY_POLL
5835 if (dev->netdev_ops->ndo_busy_poll)
5836 features |= NETIF_F_BUSY_POLL;
5837 else
5838#endif
5839 features &= ~NETIF_F_BUSY_POLL;
5840
Herbert Xub63365a2008-10-23 01:11:29 -07005841 return features;
5842}
Herbert Xub63365a2008-10-23 01:11:29 -07005843
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005844int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00005845{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005846 netdev_features_t features;
Michał Mirosław5455c692011-02-15 16:59:17 +00005847 int err = 0;
5848
Michał Mirosław87267482011-04-12 09:56:38 +00005849 ASSERT_RTNL();
5850
Michał Mirosław5455c692011-02-15 16:59:17 +00005851 features = netdev_get_wanted_features(dev);
5852
5853 if (dev->netdev_ops->ndo_fix_features)
5854 features = dev->netdev_ops->ndo_fix_features(dev, features);
5855
5856 /* driver might be less strict about feature dependencies */
5857 features = netdev_fix_features(dev, features);
5858
5859 if (dev->features == features)
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005860 return 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00005861
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005862 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
5863 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00005864
5865 if (dev->netdev_ops->ndo_set_features)
5866 err = dev->netdev_ops->ndo_set_features(dev, features);
5867
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005868 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00005869 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005870 "set_features() failed (%d); wanted %pNF, left %pNF\n",
5871 err, &features, &dev->features);
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005872 return -1;
5873 }
5874
5875 if (!err)
5876 dev->features = features;
5877
5878 return 1;
5879}
5880
Michał Mirosławafe12cc2011-05-07 03:22:17 +00005881/**
5882 * netdev_update_features - recalculate device features
5883 * @dev: the device to check
5884 *
5885 * Recalculate dev->features set and send notifications if it
5886 * has changed. Should be called after driver or hardware dependent
5887 * conditions might have changed that influence the features.
5888 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005889void netdev_update_features(struct net_device *dev)
5890{
5891 if (__netdev_update_features(dev))
5892 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00005893}
5894EXPORT_SYMBOL(netdev_update_features);
5895
Linus Torvalds1da177e2005-04-16 15:20:36 -07005896/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00005897 * netdev_change_features - recalculate device features
5898 * @dev: the device to check
5899 *
5900 * Recalculate dev->features set and send notifications even
5901 * if they have not changed. Should be called instead of
5902 * netdev_update_features() if also dev->vlan_features might
5903 * have changed to allow the changes to be propagated to stacked
5904 * VLAN devices.
5905 */
5906void netdev_change_features(struct net_device *dev)
5907{
5908 __netdev_update_features(dev);
5909 netdev_features_change(dev);
5910}
5911EXPORT_SYMBOL(netdev_change_features);
5912
5913/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08005914 * netif_stacked_transfer_operstate - transfer operstate
5915 * @rootdev: the root or lower level device to transfer state from
5916 * @dev: the device to transfer operstate to
5917 *
5918 * Transfer operational state from root to device. This is normally
5919 * called when a stacking relationship exists between the root
5920 * device and the device(a leaf device).
5921 */
5922void netif_stacked_transfer_operstate(const struct net_device *rootdev,
5923 struct net_device *dev)
5924{
5925 if (rootdev->operstate == IF_OPER_DORMANT)
5926 netif_dormant_on(dev);
5927 else
5928 netif_dormant_off(dev);
5929
5930 if (netif_carrier_ok(rootdev)) {
5931 if (!netif_carrier_ok(dev))
5932 netif_carrier_on(dev);
5933 } else {
5934 if (netif_carrier_ok(dev))
5935 netif_carrier_off(dev);
5936 }
5937}
5938EXPORT_SYMBOL(netif_stacked_transfer_operstate);
5939
Michael Daltona953be52014-01-16 22:23:28 -08005940#ifdef CONFIG_SYSFS
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005941static int netif_alloc_rx_queues(struct net_device *dev)
5942{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005943 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00005944 struct netdev_rx_queue *rx;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005945
Tom Herbertbd25fa72010-10-18 18:00:16 +00005946 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005947
Tom Herbertbd25fa72010-10-18 18:00:16 +00005948 rx = kcalloc(count, sizeof(struct netdev_rx_queue), GFP_KERNEL);
Joe Perches62b59422013-02-04 16:48:16 +00005949 if (!rx)
Tom Herbertbd25fa72010-10-18 18:00:16 +00005950 return -ENOMEM;
Joe Perches62b59422013-02-04 16:48:16 +00005951
Tom Herbertbd25fa72010-10-18 18:00:16 +00005952 dev->_rx = rx;
5953
Tom Herbertbd25fa72010-10-18 18:00:16 +00005954 for (i = 0; i < count; i++)
Tom Herbertfe822242010-11-09 10:47:38 +00005955 rx[i].dev = dev;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005956 return 0;
5957}
Tom Herbertbf264142010-11-26 08:36:09 +00005958#endif
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005959
Changli Gaoaa942102010-12-04 02:31:41 +00005960static void netdev_init_one_queue(struct net_device *dev,
5961 struct netdev_queue *queue, void *_unused)
5962{
5963 /* Initialize queue lock */
5964 spin_lock_init(&queue->_xmit_lock);
5965 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
5966 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00005967 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00005968 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00005969#ifdef CONFIG_BQL
5970 dql_init(&queue->dql, HZ);
5971#endif
Changli Gaoaa942102010-12-04 02:31:41 +00005972}
5973
Eric Dumazet60877a32013-06-20 01:15:51 -07005974static void netif_free_tx_queues(struct net_device *dev)
5975{
WANG Cong4cb28972014-06-02 15:55:22 -07005976 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07005977}
5978
Tom Herberte6484932010-10-18 18:04:39 +00005979static int netif_alloc_netdev_queues(struct net_device *dev)
5980{
5981 unsigned int count = dev->num_tx_queues;
5982 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07005983 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00005984
Eric Dumazet60877a32013-06-20 01:15:51 -07005985 BUG_ON(count < 1 || count > 0xffff);
Tom Herberte6484932010-10-18 18:04:39 +00005986
Eric Dumazet60877a32013-06-20 01:15:51 -07005987 tx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
5988 if (!tx) {
5989 tx = vzalloc(sz);
5990 if (!tx)
5991 return -ENOMEM;
5992 }
Tom Herberte6484932010-10-18 18:04:39 +00005993 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00005994
Tom Herberte6484932010-10-18 18:04:39 +00005995 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
5996 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00005997
5998 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00005999}
6000
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08006001/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006002 * register_netdevice - register a network device
6003 * @dev: device to register
6004 *
6005 * Take a completed network device structure and add it to the kernel
6006 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
6007 * chain. 0 is returned on success. A negative errno code is returned
6008 * on a failure to set up the device, or if the name is a duplicate.
6009 *
6010 * Callers must hold the rtnl semaphore. You may want
6011 * register_netdev() instead of this.
6012 *
6013 * BUGS:
6014 * The locking appears insufficient to guarantee two parallel registers
6015 * will not get the same name.
6016 */
6017
6018int register_netdevice(struct net_device *dev)
6019{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006021 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006022
6023 BUG_ON(dev_boot_phase);
6024 ASSERT_RTNL();
6025
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006026 might_sleep();
6027
Linus Torvalds1da177e2005-04-16 15:20:36 -07006028 /* When net_device's are persistent, this will be fatal. */
6029 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006030 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006031
David S. Millerf1f28aa2008-07-15 00:08:33 -07006032 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07006033 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006034
Linus Torvalds1da177e2005-04-16 15:20:36 -07006035 dev->iflink = -1;
6036
Gao feng828de4f2012-09-13 20:58:27 +00006037 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00006038 if (ret < 0)
6039 goto out;
6040
Linus Torvalds1da177e2005-04-16 15:20:36 -07006041 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006042 if (dev->netdev_ops->ndo_init) {
6043 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006044 if (ret) {
6045 if (ret > 0)
6046 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08006047 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006048 }
6049 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006050
Patrick McHardyf6469682013-04-19 02:04:27 +00006051 if (((dev->hw_features | dev->features) &
6052 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00006053 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
6054 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
6055 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
6056 ret = -EINVAL;
6057 goto err_uninit;
6058 }
6059
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00006060 ret = -EBUSY;
6061 if (!dev->ifindex)
6062 dev->ifindex = dev_new_index(net);
6063 else if (__dev_get_by_index(net, dev->ifindex))
6064 goto err_uninit;
6065
Linus Torvalds1da177e2005-04-16 15:20:36 -07006066 if (dev->iflink == -1)
6067 dev->iflink = dev->ifindex;
6068
Michał Mirosław5455c692011-02-15 16:59:17 +00006069 /* Transfer changeable features to wanted_features and enable
6070 * software offloads (GSO and GRO).
6071 */
6072 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00006073 dev->features |= NETIF_F_SOFT_FEATURES;
6074 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006075
Michał Mirosław34324dc2011-11-15 15:29:55 +00006076 if (!(dev->flags & IFF_LOOPBACK)) {
6077 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07006078 }
6079
Michał Mirosław1180e7d2011-07-14 14:41:11 -07006080 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00006081 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07006082 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00006083
Pravin B Shelaree579672013-03-07 09:28:08 +00006084 /* Make NETIF_F_SG inheritable to tunnel devices.
6085 */
6086 dev->hw_enc_features |= NETIF_F_SG;
6087
Simon Horman0d89d202013-05-23 21:02:52 +00006088 /* Make NETIF_F_SG inheritable to MPLS.
6089 */
6090 dev->mpls_features |= NETIF_F_SG;
6091
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00006092 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
6093 ret = notifier_to_errno(ret);
6094 if (ret)
6095 goto err_uninit;
6096
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006097 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006098 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006099 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006100 dev->reg_state = NETREG_REGISTERED;
6101
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006102 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00006103
Linus Torvalds1da177e2005-04-16 15:20:36 -07006104 /*
6105 * Default initial state at registry is that the
6106 * device is present.
6107 */
6108
6109 set_bit(__LINK_STATE_PRESENT, &dev->state);
6110
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01006111 linkwatch_init_dev(dev);
6112
Linus Torvalds1da177e2005-04-16 15:20:36 -07006113 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006114 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006115 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04006116 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117
Jiri Pirko948b3372013-01-08 01:38:25 +00006118 /* If the device has permanent device address, driver should
6119 * set dev_addr and also addr_assign_type should be set to
6120 * NET_ADDR_PERM (default value).
6121 */
6122 if (dev->addr_assign_type == NET_ADDR_PERM)
6123 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
6124
Linus Torvalds1da177e2005-04-16 15:20:36 -07006125 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07006126 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07006127 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006128 if (ret) {
6129 rollback_registered(dev);
6130 dev->reg_state = NETREG_UNREGISTERED;
6131 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006132 /*
6133 * Prevent userspace races by waiting until the network
6134 * device is fully setup before sending notifications.
6135 */
Patrick McHardya2835762010-02-26 06:34:51 +00006136 if (!dev->rtnl_link_ops ||
6137 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006138 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139
6140out:
6141 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006142
6143err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006144 if (dev->netdev_ops->ndo_uninit)
6145 dev->netdev_ops->ndo_uninit(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006146 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006148EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006149
6150/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006151 * init_dummy_netdev - init a dummy network device for NAPI
6152 * @dev: device to init
6153 *
6154 * This takes a network device structure and initialize the minimum
6155 * amount of fields so it can be used to schedule NAPI polls without
6156 * registering a full blown interface. This is to be used by drivers
6157 * that need to tie several hardware interfaces to a single NAPI
6158 * poll scheduler due to HW limitations.
6159 */
6160int init_dummy_netdev(struct net_device *dev)
6161{
6162 /* Clear everything. Note we don't initialize spinlocks
6163 * are they aren't supposed to be taken by any of the
6164 * NAPI code and this dummy netdev is supposed to be
6165 * only ever used for NAPI polls
6166 */
6167 memset(dev, 0, sizeof(struct net_device));
6168
6169 /* make sure we BUG if trying to hit standard
6170 * register/unregister code path
6171 */
6172 dev->reg_state = NETREG_DUMMY;
6173
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006174 /* NAPI wants this */
6175 INIT_LIST_HEAD(&dev->napi_list);
6176
6177 /* a dummy interface is started by default */
6178 set_bit(__LINK_STATE_PRESENT, &dev->state);
6179 set_bit(__LINK_STATE_START, &dev->state);
6180
Eric Dumazet29b44332010-10-11 10:22:12 +00006181 /* Note : We dont allocate pcpu_refcnt for dummy devices,
6182 * because users of this 'device' dont need to change
6183 * its refcount.
6184 */
6185
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006186 return 0;
6187}
6188EXPORT_SYMBOL_GPL(init_dummy_netdev);
6189
6190
6191/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006192 * register_netdev - register a network device
6193 * @dev: device to register
6194 *
6195 * Take a completed network device structure and add it to the kernel
6196 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
6197 * chain. 0 is returned on success. A negative errno code is returned
6198 * on a failure to set up the device, or if the name is a duplicate.
6199 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07006200 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201 * and expands the device name if you passed a format string to
6202 * alloc_netdev.
6203 */
6204int register_netdev(struct net_device *dev)
6205{
6206 int err;
6207
6208 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006209 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006210 rtnl_unlock();
6211 return err;
6212}
6213EXPORT_SYMBOL(register_netdev);
6214
Eric Dumazet29b44332010-10-11 10:22:12 +00006215int netdev_refcnt_read(const struct net_device *dev)
6216{
6217 int i, refcnt = 0;
6218
6219 for_each_possible_cpu(i)
6220 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
6221 return refcnt;
6222}
6223EXPORT_SYMBOL(netdev_refcnt_read);
6224
Ben Hutchings2c530402012-07-10 10:55:09 +00006225/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00006227 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228 *
6229 * This is called when unregistering network devices.
6230 *
6231 * Any protocol or device that holds a reference should register
6232 * for netdevice notification, and cleanup and put back the
6233 * reference if they receive an UNREGISTER event.
6234 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006235 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236 */
6237static void netdev_wait_allrefs(struct net_device *dev)
6238{
6239 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00006240 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006241
Eric Dumazete014deb2009-11-17 05:59:21 +00006242 linkwatch_forget_dev(dev);
6243
Linus Torvalds1da177e2005-04-16 15:20:36 -07006244 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00006245 refcnt = netdev_refcnt_read(dev);
6246
6247 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08006249 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006250
6251 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07006252 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006253
Eric Dumazet748e2d92012-08-22 21:50:59 +00006254 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006255 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00006256 rtnl_lock();
6257
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006258 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006259 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
6260 &dev->state)) {
6261 /* We must not have linkwatch events
6262 * pending on unregister. If this
6263 * happens, we simply run the queue
6264 * unscheduled, resulting in a noop
6265 * for this device.
6266 */
6267 linkwatch_run_queue();
6268 }
6269
Stephen Hemminger6756ae42006-03-20 22:23:58 -08006270 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271
6272 rebroadcast_time = jiffies;
6273 }
6274
6275 msleep(250);
6276
Eric Dumazet29b44332010-10-11 10:22:12 +00006277 refcnt = netdev_refcnt_read(dev);
6278
Linus Torvalds1da177e2005-04-16 15:20:36 -07006279 if (time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006280 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
6281 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006282 warning_time = jiffies;
6283 }
6284 }
6285}
6286
6287/* The sequence is:
6288 *
6289 * rtnl_lock();
6290 * ...
6291 * register_netdevice(x1);
6292 * register_netdevice(x2);
6293 * ...
6294 * unregister_netdevice(y1);
6295 * unregister_netdevice(y2);
6296 * ...
6297 * rtnl_unlock();
6298 * free_netdev(y1);
6299 * free_netdev(y2);
6300 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07006301 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006303 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07006304 * without deadlocking with linkwatch via keventd.
6305 * 2) Since we run with the RTNL semaphore not held, we can sleep
6306 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07006307 *
6308 * We must not return until all unregister events added during
6309 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006310 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006311void netdev_run_todo(void)
6312{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006313 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006314
Linus Torvalds1da177e2005-04-16 15:20:36 -07006315 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006316 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07006317
6318 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006319
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006320
6321 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00006322 if (!list_empty(&list))
6323 rcu_barrier();
6324
Linus Torvalds1da177e2005-04-16 15:20:36 -07006325 while (!list_empty(&list)) {
6326 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00006327 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328 list_del(&dev->todo_list);
6329
Eric Dumazet748e2d92012-08-22 21:50:59 +00006330 rtnl_lock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006331 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Eric Dumazet748e2d92012-08-22 21:50:59 +00006332 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006333
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006334 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006335 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07006336 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006337 dump_stack();
6338 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006339 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006340
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006341 dev->reg_state = NETREG_UNREGISTERED;
6342
Changli Gao152102c2010-03-30 20:16:22 +00006343 on_each_cpu(flush_backlog, dev, 1);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07006344
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006345 netdev_wait_allrefs(dev);
6346
6347 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00006348 BUG_ON(netdev_refcnt_read(dev));
Eric Dumazet33d480c2011-08-11 19:30:52 +00006349 WARN_ON(rcu_access_pointer(dev->ip_ptr));
6350 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
Ilpo Järvinen547b7922008-07-25 21:43:18 -07006351 WARN_ON(dev->dn_ptr);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006352
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006353 if (dev->destructor)
6354 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07006355
Eric W. Biederman50624c92013-09-23 21:19:49 -07006356 /* Report a network device has been unregistered */
6357 rtnl_lock();
6358 dev_net(dev)->dev_unreg_count--;
6359 __rtnl_unlock();
6360 wake_up(&netdev_unregistering_wq);
6361
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07006362 /* Free network device */
6363 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006364 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006365}
6366
Ben Hutchings3cfde792010-07-09 09:11:52 +00006367/* Convert net_device_stats to rtnl_link_stats64. They have the same
6368 * fields in the same order, with only the type differing.
6369 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006370void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
6371 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00006372{
6373#if BITS_PER_LONG == 64
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006374 BUILD_BUG_ON(sizeof(*stats64) != sizeof(*netdev_stats));
6375 memcpy(stats64, netdev_stats, sizeof(*stats64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00006376#else
6377 size_t i, n = sizeof(*stats64) / sizeof(u64);
6378 const unsigned long *src = (const unsigned long *)netdev_stats;
6379 u64 *dst = (u64 *)stats64;
6380
6381 BUILD_BUG_ON(sizeof(*netdev_stats) / sizeof(unsigned long) !=
6382 sizeof(*stats64) / sizeof(u64));
6383 for (i = 0; i < n; i++)
6384 dst[i] = src[i];
6385#endif
6386}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006387EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00006388
Eric Dumazetd83345a2009-11-16 03:36:51 +00006389/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006390 * dev_get_stats - get network device statistics
6391 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07006392 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006393 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00006394 * Get network statistics from device. Return @storage.
6395 * The device driver may provide its own method by setting
6396 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
6397 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006398 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00006399struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
6400 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00006401{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006402 const struct net_device_ops *ops = dev->netdev_ops;
6403
Eric Dumazet28172732010-07-07 14:58:56 -07006404 if (ops->ndo_get_stats64) {
6405 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006406 ops->ndo_get_stats64(dev, storage);
6407 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00006408 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006409 } else {
6410 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07006411 }
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006412 storage->rx_dropped += atomic_long_read(&dev->rx_dropped);
Eric Dumazet015f0682014-03-27 08:45:56 -07006413 storage->tx_dropped += atomic_long_read(&dev->tx_dropped);
Eric Dumazet28172732010-07-07 14:58:56 -07006414 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07006415}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006416EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07006417
Eric Dumazet24824a02010-10-02 06:11:55 +00006418struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07006419{
Eric Dumazet24824a02010-10-02 06:11:55 +00006420 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07006421
Eric Dumazet24824a02010-10-02 06:11:55 +00006422#ifdef CONFIG_NET_CLS_ACT
6423 if (queue)
6424 return queue;
6425 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
6426 if (!queue)
6427 return NULL;
6428 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet24824a02010-10-02 06:11:55 +00006429 queue->qdisc = &noop_qdisc;
6430 queue->qdisc_sleeping = &noop_qdisc;
6431 rcu_assign_pointer(dev->ingress_queue, queue);
6432#endif
6433 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07006434}
6435
Eric Dumazet2c60db02012-09-16 09:17:26 +00006436static const struct ethtool_ops default_ethtool_ops;
6437
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00006438void netdev_set_default_ethtool_ops(struct net_device *dev,
6439 const struct ethtool_ops *ops)
6440{
6441 if (dev->ethtool_ops == &default_ethtool_ops)
6442 dev->ethtool_ops = ops;
6443}
6444EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
6445
Eric Dumazet74d332c2013-10-30 13:10:44 -07006446void netdev_freemem(struct net_device *dev)
6447{
6448 char *addr = (char *)dev - dev->padded;
6449
WANG Cong4cb28972014-06-02 15:55:22 -07006450 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07006451}
6452
Linus Torvalds1da177e2005-04-16 15:20:36 -07006453/**
Tom Herbert36909ea2011-01-09 19:36:31 +00006454 * alloc_netdev_mqs - allocate network device
Tom Gundersenc835a672014-07-14 16:37:24 +02006455 * @sizeof_priv: size of private data to allocate space for
6456 * @name: device name format string
6457 * @name_assign_type: origin of device name
6458 * @setup: callback to initialize device
6459 * @txqs: the number of TX subqueues to allocate
6460 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461 *
6462 * Allocates a struct net_device with private data area for driver use
Li Zhong90e51ad2013-11-22 15:04:46 +08006463 * and performs basic initialization. Also allocates subqueue structs
Tom Herbert36909ea2011-01-09 19:36:31 +00006464 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006465 */
Tom Herbert36909ea2011-01-09 19:36:31 +00006466struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02006467 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00006468 void (*setup)(struct net_device *),
6469 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006470{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006471 struct net_device *dev;
Stephen Hemminger79439862008-07-21 13:28:44 -07006472 size_t alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006473 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006474
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07006475 BUG_ON(strlen(name) >= sizeof(dev->name));
6476
Tom Herbert36909ea2011-01-09 19:36:31 +00006477 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006478 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00006479 return NULL;
6480 }
6481
Michael Daltona953be52014-01-16 22:23:28 -08006482#ifdef CONFIG_SYSFS
Tom Herbert36909ea2011-01-09 19:36:31 +00006483 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006484 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00006485 return NULL;
6486 }
6487#endif
6488
David S. Millerfd2ea0a2008-07-17 01:56:23 -07006489 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07006490 if (sizeof_priv) {
6491 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006492 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07006493 alloc_size += sizeof_priv;
6494 }
6495 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006496 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006497
Eric Dumazet74d332c2013-10-30 13:10:44 -07006498 p = kzalloc(alloc_size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
6499 if (!p)
6500 p = vzalloc(alloc_size);
Joe Perches62b59422013-02-04 16:48:16 +00006501 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006502 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006504 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006505 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006506
Eric Dumazet29b44332010-10-11 10:22:12 +00006507 dev->pcpu_refcnt = alloc_percpu(int);
6508 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07006509 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006510
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00006512 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006513
Jiri Pirko22bedad32010-04-01 21:22:57 +00006514 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006515 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00006516
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09006517 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006518
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07006519 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00006520 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521
Herbert Xud565b0a2008-12-15 23:38:52 -08006522 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00006523 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006524 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00006525 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006526 INIT_LIST_HEAD(&dev->adj_list.upper);
6527 INIT_LIST_HEAD(&dev->adj_list.lower);
6528 INIT_LIST_HEAD(&dev->all_adj_list.upper);
6529 INIT_LIST_HEAD(&dev->all_adj_list.lower);
Eric Dumazet93f154b2009-05-18 22:19:19 -07006530 dev->priv_flags = IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006531 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006532
6533 dev->num_tx_queues = txqs;
6534 dev->real_num_tx_queues = txqs;
6535 if (netif_alloc_netdev_queues(dev))
6536 goto free_all;
6537
Michael Daltona953be52014-01-16 22:23:28 -08006538#ifdef CONFIG_SYSFS
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006539 dev->num_rx_queues = rxqs;
6540 dev->real_num_rx_queues = rxqs;
6541 if (netif_alloc_rx_queues(dev))
6542 goto free_all;
6543#endif
6544
Linus Torvalds1da177e2005-04-16 15:20:36 -07006545 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02006546 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00006547 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00006548 if (!dev->ethtool_ops)
6549 dev->ethtool_ops = &default_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006551
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006552free_all:
6553 free_netdev(dev);
6554 return NULL;
6555
Eric Dumazet29b44332010-10-11 10:22:12 +00006556free_pcpu:
6557 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07006558free_dev:
6559 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006560 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561}
Tom Herbert36909ea2011-01-09 19:36:31 +00006562EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006563
6564/**
6565 * free_netdev - free network device
6566 * @dev: device
6567 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006568 * This function does the last stage of destroying an allocated device
6569 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006570 * If this is the last reference then it will be freed.
6571 */
6572void free_netdev(struct net_device *dev)
6573{
Herbert Xud565b0a2008-12-15 23:38:52 -08006574 struct napi_struct *p, *n;
6575
Denis V. Lunevf3005d72008-04-16 02:02:18 -07006576 release_net(dev_net(dev));
6577
Eric Dumazet60877a32013-06-20 01:15:51 -07006578 netif_free_tx_queues(dev);
Michael Daltona953be52014-01-16 22:23:28 -08006579#ifdef CONFIG_SYSFS
Tom Herbertfe822242010-11-09 10:47:38 +00006580 kfree(dev->_rx);
6581#endif
David S. Millere8a04642008-07-17 00:34:19 -07006582
Eric Dumazet33d480c2011-08-11 19:30:52 +00006583 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00006584
Jiri Pirkof001fde2009-05-05 02:48:28 +00006585 /* Flush device addresses */
6586 dev_addr_flush(dev);
6587
Herbert Xud565b0a2008-12-15 23:38:52 -08006588 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
6589 netif_napi_del(p);
6590
Eric Dumazet29b44332010-10-11 10:22:12 +00006591 free_percpu(dev->pcpu_refcnt);
6592 dev->pcpu_refcnt = NULL;
6593
Stephen Hemminger3041a062006-05-26 13:25:24 -07006594 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07006596 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006597 return;
6598 }
6599
6600 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
6601 dev->reg_state = NETREG_RELEASED;
6602
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07006603 /* will free via device release */
6604 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006605}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006606EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006607
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006608/**
6609 * synchronize_net - Synchronize with packet receive processing
6610 *
6611 * Wait for packets currently being received to be done.
6612 * Does not block later packets from starting.
6613 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006614void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615{
6616 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00006617 if (rtnl_is_locked())
6618 synchronize_rcu_expedited();
6619 else
6620 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006622EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006623
6624/**
Eric Dumazet44a08732009-10-27 07:03:04 +00006625 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07006626 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00006627 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08006628 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006629 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08006630 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00006631 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006632 *
6633 * Callers must hold the rtnl semaphore. You may want
6634 * unregister_netdev() instead of this.
6635 */
6636
Eric Dumazet44a08732009-10-27 07:03:04 +00006637void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006638{
Herbert Xua6620712007-12-12 19:21:56 -08006639 ASSERT_RTNL();
6640
Eric Dumazet44a08732009-10-27 07:03:04 +00006641 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00006642 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00006643 } else {
6644 rollback_registered(dev);
6645 /* Finish processing unregister after unlock */
6646 net_set_todo(dev);
6647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648}
Eric Dumazet44a08732009-10-27 07:03:04 +00006649EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006650
6651/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006652 * unregister_netdevice_many - unregister many devices
6653 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07006654 *
6655 * Note: As most callers use a stack allocated list_head,
6656 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006657 */
6658void unregister_netdevice_many(struct list_head *head)
6659{
6660 struct net_device *dev;
6661
6662 if (!list_empty(head)) {
6663 rollback_registered_many(head);
6664 list_for_each_entry(dev, head, unreg_list)
6665 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07006666 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006667 }
6668}
Eric Dumazet63c80992009-10-27 07:06:49 +00006669EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006670
6671/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006672 * unregister_netdev - remove device from the kernel
6673 * @dev: device
6674 *
6675 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08006676 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677 *
6678 * This is just a wrapper for unregister_netdevice that takes
6679 * the rtnl semaphore. In general you want to use this and not
6680 * unregister_netdevice.
6681 */
6682void unregister_netdev(struct net_device *dev)
6683{
6684 rtnl_lock();
6685 unregister_netdevice(dev);
6686 rtnl_unlock();
6687}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006688EXPORT_SYMBOL(unregister_netdev);
6689
Eric W. Biedermance286d32007-09-12 13:53:49 +02006690/**
6691 * dev_change_net_namespace - move device to different nethost namespace
6692 * @dev: device
6693 * @net: network namespace
6694 * @pat: If not NULL name pattern to try if the current device name
6695 * is already taken in the destination network namespace.
6696 *
6697 * This function shuts down a device interface and moves it
6698 * to a new network namespace. On success 0 is returned, on
6699 * a failure a netagive errno code is returned.
6700 *
6701 * Callers must hold the rtnl semaphore.
6702 */
6703
6704int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
6705{
Eric W. Biedermance286d32007-09-12 13:53:49 +02006706 int err;
6707
6708 ASSERT_RTNL();
6709
6710 /* Don't allow namespace local devices to be moved. */
6711 err = -EINVAL;
6712 if (dev->features & NETIF_F_NETNS_LOCAL)
6713 goto out;
6714
6715 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02006716 if (dev->reg_state != NETREG_REGISTERED)
6717 goto out;
6718
6719 /* Get out if there is nothing todo */
6720 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09006721 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02006722 goto out;
6723
6724 /* Pick the destination device name, and ensure
6725 * we can use it in the destination network namespace.
6726 */
6727 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00006728 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02006729 /* We get here if we can't use the current device name */
6730 if (!pat)
6731 goto out;
Gao feng828de4f2012-09-13 20:58:27 +00006732 if (dev_get_valid_name(net, dev, pat) < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02006733 goto out;
6734 }
6735
6736 /*
6737 * And now a mini version of register_netdevice unregister_netdevice.
6738 */
6739
6740 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07006741 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006742
6743 /* And unlink it from device chain */
6744 err = -ENODEV;
6745 unlist_netdevice(dev);
6746
6747 synchronize_net();
6748
6749 /* Shutdown queueing discipline. */
6750 dev_shutdown(dev);
6751
6752 /* Notify protocols, that we are about to destroy
6753 this device. They should clean all the things.
David Lamparter3b27e102010-09-17 03:22:19 +00006754
6755 Note that dev->reg_state stays at NETREG_REGISTERED.
6756 This is wanted because this way 8021q and macvlan know
6757 the device is just moving and can keep their slaves up.
Eric W. Biedermance286d32007-09-12 13:53:49 +02006758 */
6759 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00006760 rcu_barrier();
6761 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006762 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006763
6764 /*
6765 * Flush the unicast and multicast chains
6766 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006767 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00006768 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006769
Serge Hallyn4e66ae22012-12-03 16:17:12 +00006770 /* Send a netdev-removed uevent to the old namespace */
6771 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
6772
Eric W. Biedermance286d32007-09-12 13:53:49 +02006773 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09006774 dev_net_set(dev, net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006775
Eric W. Biedermance286d32007-09-12 13:53:49 +02006776 /* If there is an ifindex conflict assign a new one */
6777 if (__dev_get_by_index(net, dev->ifindex)) {
6778 int iflink = (dev->iflink == dev->ifindex);
6779 dev->ifindex = dev_new_index(net);
6780 if (iflink)
6781 dev->iflink = dev->ifindex;
6782 }
6783
Serge Hallyn4e66ae22012-12-03 16:17:12 +00006784 /* Send a netdev-add uevent to the new namespace */
6785 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
6786
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006787 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07006788 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006789 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006790
6791 /* Add the device back in the hashes */
6792 list_netdevice(dev);
6793
6794 /* Notify protocols, that a new device appeared. */
6795 call_netdevice_notifiers(NETDEV_REGISTER, dev);
6796
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006797 /*
6798 * Prevent userspace races by waiting until the network
6799 * device is fully setup before sending notifications.
6800 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006801 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006802
Eric W. Biedermance286d32007-09-12 13:53:49 +02006803 synchronize_net();
6804 err = 0;
6805out:
6806 return err;
6807}
Johannes Berg463d0182009-07-14 00:33:35 +02006808EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006809
Linus Torvalds1da177e2005-04-16 15:20:36 -07006810static int dev_cpu_callback(struct notifier_block *nfb,
6811 unsigned long action,
6812 void *ocpu)
6813{
6814 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006815 struct sk_buff *skb;
6816 unsigned int cpu, oldcpu = (unsigned long)ocpu;
6817 struct softnet_data *sd, *oldsd;
6818
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006819 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006820 return NOTIFY_OK;
6821
6822 local_irq_disable();
6823 cpu = smp_processor_id();
6824 sd = &per_cpu(softnet_data, cpu);
6825 oldsd = &per_cpu(softnet_data, oldcpu);
6826
6827 /* Find end of our completion_queue. */
6828 list_skb = &sd->completion_queue;
6829 while (*list_skb)
6830 list_skb = &(*list_skb)->next;
6831 /* Append completion queue from offline CPU. */
6832 *list_skb = oldsd->completion_queue;
6833 oldsd->completion_queue = NULL;
6834
Linus Torvalds1da177e2005-04-16 15:20:36 -07006835 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00006836 if (oldsd->output_queue) {
6837 *sd->output_queue_tailp = oldsd->output_queue;
6838 sd->output_queue_tailp = oldsd->output_queue_tailp;
6839 oldsd->output_queue = NULL;
6840 oldsd->output_queue_tailp = &oldsd->output_queue;
6841 }
Heiko Carstens264524d2011-06-06 20:50:03 +00006842 /* Append NAPI poll list from offline CPU. */
6843 if (!list_empty(&oldsd->poll_list)) {
6844 list_splice_init(&oldsd->poll_list, &sd->poll_list);
6845 raise_softirq_irqoff(NET_RX_SOFTIRQ);
6846 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006847
6848 raise_softirq_irqoff(NET_TX_SOFTIRQ);
6849 local_irq_enable();
6850
6851 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00006852 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006853 netif_rx_internal(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00006854 input_queue_head_incr(oldsd);
6855 }
Tom Herbertfec5e652010-04-16 16:01:27 -07006856 while ((skb = __skb_dequeue(&oldsd->input_pkt_queue))) {
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006857 netif_rx_internal(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00006858 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07006859 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006860
6861 return NOTIFY_OK;
6862}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006863
6864
Herbert Xu7f353bf2007-08-10 15:47:58 -07006865/**
Herbert Xub63365a2008-10-23 01:11:29 -07006866 * netdev_increment_features - increment feature set by one
6867 * @all: current feature set
6868 * @one: new feature set
6869 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07006870 *
6871 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07006872 * @one to the master device with current feature set @all. Will not
6873 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07006874 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006875netdev_features_t netdev_increment_features(netdev_features_t all,
6876 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07006877{
Michał Mirosław1742f182011-04-22 06:31:16 +00006878 if (mask & NETIF_F_GEN_CSUM)
6879 mask |= NETIF_F_ALL_CSUM;
6880 mask |= NETIF_F_VLAN_CHALLENGED;
6881
6882 all |= one & (NETIF_F_ONE_FOR_ALL|NETIF_F_ALL_CSUM) & mask;
6883 all &= one | ~NETIF_F_ALL_FOR_ALL;
6884
Michał Mirosław1742f182011-04-22 06:31:16 +00006885 /* If one device supports hw checksumming, set for all. */
6886 if (all & NETIF_F_GEN_CSUM)
6887 all &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_GEN_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07006888
6889 return all;
6890}
Herbert Xub63365a2008-10-23 01:11:29 -07006891EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07006892
Baruch Siach430f03c2013-06-02 20:43:55 +00006893static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006894{
6895 int i;
6896 struct hlist_head *hash;
6897
6898 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
6899 if (hash != NULL)
6900 for (i = 0; i < NETDEV_HASHENTRIES; i++)
6901 INIT_HLIST_HEAD(&hash[i]);
6902
6903 return hash;
6904}
6905
Eric W. Biederman881d9662007-09-17 11:56:21 -07006906/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07006907static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07006908{
Rustad, Mark D734b6542012-07-18 09:06:07 +00006909 if (net != &init_net)
6910 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07006911
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006912 net->dev_name_head = netdev_create_hash();
6913 if (net->dev_name_head == NULL)
6914 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006915
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006916 net->dev_index_head = netdev_create_hash();
6917 if (net->dev_index_head == NULL)
6918 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006919
6920 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006921
6922err_idx:
6923 kfree(net->dev_name_head);
6924err_name:
6925 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006926}
6927
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006928/**
6929 * netdev_drivername - network driver for the device
6930 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006931 *
6932 * Determine network driver for device.
6933 */
David S. Miller3019de12011-06-06 16:41:33 -07006934const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07006935{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07006936 const struct device_driver *driver;
6937 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07006938 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07006939
6940 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07006941 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07006942 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07006943
6944 driver = parent->driver;
6945 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07006946 return driver->name;
6947 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07006948}
6949
Joe Perchesb004ff42012-09-12 20:12:19 -07006950static int __netdev_printk(const char *level, const struct net_device *dev,
Joe Perches256df2f2010-06-27 01:02:35 +00006951 struct va_format *vaf)
6952{
6953 int r;
6954
Joe Perchesb004ff42012-09-12 20:12:19 -07006955 if (dev && dev->dev.parent) {
Joe Perches666f3552012-09-12 20:14:11 -07006956 r = dev_printk_emit(level[1] - '0',
6957 dev->dev.parent,
Veaceslav Falicoccc7f492014-07-17 19:46:10 +02006958 "%s %s %s%s: %pV",
Joe Perches666f3552012-09-12 20:14:11 -07006959 dev_driver_string(dev->dev.parent),
6960 dev_name(dev->dev.parent),
Veaceslav Falicoccc7f492014-07-17 19:46:10 +02006961 netdev_name(dev), netdev_reg_state(dev),
6962 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07006963 } else if (dev) {
Veaceslav Falicoccc7f492014-07-17 19:46:10 +02006964 r = printk("%s%s%s: %pV", level, netdev_name(dev),
6965 netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07006966 } else {
Joe Perches256df2f2010-06-27 01:02:35 +00006967 r = printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07006968 }
Joe Perches256df2f2010-06-27 01:02:35 +00006969
6970 return r;
6971}
6972
6973int netdev_printk(const char *level, const struct net_device *dev,
6974 const char *format, ...)
6975{
6976 struct va_format vaf;
6977 va_list args;
6978 int r;
6979
6980 va_start(args, format);
6981
6982 vaf.fmt = format;
6983 vaf.va = &args;
6984
6985 r = __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07006986
Joe Perches256df2f2010-06-27 01:02:35 +00006987 va_end(args);
6988
6989 return r;
6990}
6991EXPORT_SYMBOL(netdev_printk);
6992
6993#define define_netdev_printk_level(func, level) \
6994int func(const struct net_device *dev, const char *fmt, ...) \
6995{ \
6996 int r; \
6997 struct va_format vaf; \
6998 va_list args; \
6999 \
7000 va_start(args, fmt); \
7001 \
7002 vaf.fmt = fmt; \
7003 vaf.va = &args; \
7004 \
7005 r = __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07007006 \
Joe Perches256df2f2010-06-27 01:02:35 +00007007 va_end(args); \
7008 \
7009 return r; \
7010} \
7011EXPORT_SYMBOL(func);
7012
7013define_netdev_printk_level(netdev_emerg, KERN_EMERG);
7014define_netdev_printk_level(netdev_alert, KERN_ALERT);
7015define_netdev_printk_level(netdev_crit, KERN_CRIT);
7016define_netdev_printk_level(netdev_err, KERN_ERR);
7017define_netdev_printk_level(netdev_warn, KERN_WARNING);
7018define_netdev_printk_level(netdev_notice, KERN_NOTICE);
7019define_netdev_printk_level(netdev_info, KERN_INFO);
7020
Pavel Emelyanov46650792007-10-08 20:38:39 -07007021static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07007022{
7023 kfree(net->dev_name_head);
7024 kfree(net->dev_index_head);
7025}
7026
Denis V. Lunev022cbae2007-11-13 03:23:50 -08007027static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07007028 .init = netdev_init,
7029 .exit = netdev_exit,
7030};
7031
Pavel Emelyanov46650792007-10-08 20:38:39 -07007032static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02007033{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007034 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02007035 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007036 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02007037 * initial network namespace
7038 */
7039 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007040 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007041 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007042 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02007043
7044 /* Ignore unmoveable devices (i.e. loopback) */
7045 if (dev->features & NETIF_F_NETNS_LOCAL)
7046 continue;
7047
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007048 /* Leave virtual devices for the generic cleanup */
7049 if (dev->rtnl_link_ops)
7050 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08007051
Lucas De Marchi25985ed2011-03-30 22:57:33 -03007052 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007053 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
7054 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007055 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007056 pr_emerg("%s: failed to move %s to init_net: %d\n",
7057 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007058 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02007059 }
7060 }
7061 rtnl_unlock();
7062}
7063
Eric W. Biederman50624c92013-09-23 21:19:49 -07007064static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
7065{
7066 /* Return with the rtnl_lock held when there are no network
7067 * devices unregistering in any network namespace in net_list.
7068 */
7069 struct net *net;
7070 bool unregistering;
7071 DEFINE_WAIT(wait);
7072
7073 for (;;) {
7074 prepare_to_wait(&netdev_unregistering_wq, &wait,
7075 TASK_UNINTERRUPTIBLE);
7076 unregistering = false;
7077 rtnl_lock();
7078 list_for_each_entry(net, net_list, exit_list) {
7079 if (net->dev_unreg_count > 0) {
7080 unregistering = true;
7081 break;
7082 }
7083 }
7084 if (!unregistering)
7085 break;
7086 __rtnl_unlock();
7087 schedule();
7088 }
7089 finish_wait(&netdev_unregistering_wq, &wait);
7090}
7091
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007092static void __net_exit default_device_exit_batch(struct list_head *net_list)
7093{
7094 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04007095 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007096 * Do this across as many network namespaces as possible to
7097 * improve batching efficiency.
7098 */
7099 struct net_device *dev;
7100 struct net *net;
7101 LIST_HEAD(dev_kill_list);
7102
Eric W. Biederman50624c92013-09-23 21:19:49 -07007103 /* To prevent network device cleanup code from dereferencing
7104 * loopback devices or network devices that have been freed
7105 * wait here for all pending unregistrations to complete,
7106 * before unregistring the loopback device and allowing the
7107 * network namespace be freed.
7108 *
7109 * The netdev todo list containing all network devices
7110 * unregistrations that happen in default_device_exit_batch
7111 * will run in the rtnl_unlock() at the end of
7112 * default_device_exit_batch.
7113 */
7114 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007115 list_for_each_entry(net, net_list, exit_list) {
7116 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02007117 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007118 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
7119 else
7120 unregister_netdevice_queue(dev, &dev_kill_list);
7121 }
7122 }
7123 unregister_netdevice_many(&dev_kill_list);
7124 rtnl_unlock();
7125}
7126
Denis V. Lunev022cbae2007-11-13 03:23:50 -08007127static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007128 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007129 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02007130};
7131
Linus Torvalds1da177e2005-04-16 15:20:36 -07007132/*
7133 * Initialize the DEV module. At boot time this walks the device list and
7134 * unhooks any devices that fail to initialise (normally hardware not
7135 * present) and leaves us with a valid list of present and active devices.
7136 *
7137 */
7138
7139/*
7140 * This is called single threaded during boot, so no need
7141 * to take the rtnl semaphore.
7142 */
7143static int __init net_dev_init(void)
7144{
7145 int i, rc = -ENOMEM;
7146
7147 BUG_ON(!dev_boot_phase);
7148
Linus Torvalds1da177e2005-04-16 15:20:36 -07007149 if (dev_proc_init())
7150 goto out;
7151
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007152 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07007153 goto out;
7154
7155 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08007156 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157 INIT_LIST_HEAD(&ptype_base[i]);
7158
Vlad Yasevich62532da2012-11-15 08:49:10 +00007159 INIT_LIST_HEAD(&offload_base);
7160
Eric W. Biederman881d9662007-09-17 11:56:21 -07007161 if (register_pernet_subsys(&netdev_net_ops))
7162 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007163
7164 /*
7165 * Initialise the packet receive queues.
7166 */
7167
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07007168 for_each_possible_cpu(i) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007169 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007170
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007171 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07007172 skb_queue_head_init(&sd->process_queue);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007173 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00007174 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00007175#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007176 sd->csd.func = rps_trigger_softirq;
7177 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007178 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07007179#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00007180
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007181 sd->backlog.poll = process_backlog;
7182 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007183 }
7184
Linus Torvalds1da177e2005-04-16 15:20:36 -07007185 dev_boot_phase = 0;
7186
Eric W. Biederman505d4f72008-11-07 22:54:20 -08007187 /* The loopback device is special if any other network devices
7188 * is present in a network namespace the loopback device must
7189 * be present. Since we now dynamically allocate and free the
7190 * loopback device ensure this invariant is maintained by
7191 * keeping the loopback device as the first device on the
7192 * list of network devices. Ensuring the loopback devices
7193 * is the first device that appears and the last network device
7194 * that disappears.
7195 */
7196 if (register_pernet_device(&loopback_net_ops))
7197 goto out;
7198
7199 if (register_pernet_device(&default_device_ops))
7200 goto out;
7201
Carlos R. Mafra962cf362008-05-15 11:15:37 -03007202 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
7203 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007204
7205 hotcpu_notifier(dev_cpu_callback, 0);
7206 dst_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007207 rc = 0;
7208out:
7209 return rc;
7210}
7211
7212subsys_initcall(net_dev_init);