blob: e52a3788d18d3a0e4b6956265d20441f2d2dd764 [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;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07004109 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Herbert Xu96e93ea2009-01-06 10:49:34 -08004110
4111 napi->skb = skb;
4112}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004113
Herbert Xu76620aa2009-04-16 02:02:07 -07004114struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08004115{
Herbert Xu5d38a072009-01-04 16:13:40 -08004116 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004117
4118 if (!skb) {
Eric Dumazet89d71a62009-10-13 05:34:20 +00004119 skb = netdev_alloc_skb_ip_align(napi->dev, GRO_MAX_HEAD);
Eric Dumazet84b9cd62013-12-05 21:44:27 -08004120 napi->skb = skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004121 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004122 return skb;
4123}
Herbert Xu76620aa2009-04-16 02:02:07 -07004124EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004125
Eric Dumazeta50e2332014-03-29 21:28:21 -07004126static gro_result_t napi_frags_finish(struct napi_struct *napi,
4127 struct sk_buff *skb,
4128 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004129{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004130 switch (ret) {
4131 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004132 case GRO_HELD:
4133 __skb_push(skb, ETH_HLEN);
4134 skb->protocol = eth_type_trans(skb, skb->dev);
4135 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004136 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00004137 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004138
4139 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004140 case GRO_MERGED_FREE:
4141 napi_reuse_skb(napi, skb);
4142 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004143
4144 case GRO_MERGED:
4145 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004146 }
4147
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004148 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004149}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004150
Eric Dumazeta50e2332014-03-29 21:28:21 -07004151/* Upper GRO stack assumes network header starts at gro_offset=0
4152 * Drivers could call both napi_gro_frags() and napi_gro_receive()
4153 * We copy ethernet header into skb->data to have a common layout.
4154 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00004155static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004156{
Herbert Xu76620aa2009-04-16 02:02:07 -07004157 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004158 const struct ethhdr *eth;
4159 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07004160
4161 napi->skb = NULL;
4162
Eric Dumazeta50e2332014-03-29 21:28:21 -07004163 skb_reset_mac_header(skb);
4164 skb_gro_reset_offset(skb);
4165
4166 eth = skb_gro_header_fast(skb, 0);
4167 if (unlikely(skb_gro_header_hard(skb, hlen))) {
4168 eth = skb_gro_header_slow(skb, hlen, 0);
4169 if (unlikely(!eth)) {
4170 napi_reuse_skb(napi, skb);
4171 return NULL;
4172 }
4173 } else {
4174 gro_pull_from_frag0(skb, hlen);
4175 NAPI_GRO_CB(skb)->frag0 += hlen;
4176 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07004177 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07004178 __skb_pull(skb, hlen);
4179
4180 /*
4181 * This works because the only protocols we care about don't require
4182 * special handling.
4183 * We'll fix it up properly in napi_frags_finish()
4184 */
4185 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07004186
Herbert Xu76620aa2009-04-16 02:02:07 -07004187 return skb;
4188}
Herbert Xu76620aa2009-04-16 02:02:07 -07004189
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004190gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07004191{
4192 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004193
4194 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004195 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08004196
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004197 trace_napi_gro_frags_entry(skb);
4198
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004199 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08004200}
4201EXPORT_SYMBOL(napi_gro_frags);
4202
Eric Dumazete326bed2010-04-22 00:22:45 -07004203/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08004204 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07004205 * Note: called with local irq disabled, but exits with local irq enabled.
4206 */
4207static void net_rps_action_and_irq_enable(struct softnet_data *sd)
4208{
4209#ifdef CONFIG_RPS
4210 struct softnet_data *remsd = sd->rps_ipi_list;
4211
4212 if (remsd) {
4213 sd->rps_ipi_list = NULL;
4214
4215 local_irq_enable();
4216
4217 /* Send pending IPI's to kick RPS processing on remote cpus. */
4218 while (remsd) {
4219 struct softnet_data *next = remsd->rps_ipi_next;
4220
4221 if (cpu_online(remsd->cpu))
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +01004222 smp_call_function_single_async(remsd->cpu,
Frederic Weisbeckerfce8ad12014-02-24 16:40:01 +01004223 &remsd->csd);
Eric Dumazete326bed2010-04-22 00:22:45 -07004224 remsd = next;
4225 }
4226 } else
4227#endif
4228 local_irq_enable();
4229}
4230
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004231static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004232{
4233 int work = 0;
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004234 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004235
Eric Dumazete326bed2010-04-22 00:22:45 -07004236#ifdef CONFIG_RPS
4237 /* Check if we have pending ipi, its better to send them now,
4238 * not waiting net_rx_action() end.
4239 */
4240 if (sd->rps_ipi_list) {
4241 local_irq_disable();
4242 net_rps_action_and_irq_enable(sd);
4243 }
4244#endif
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004245 napi->weight = weight_p;
Changli Gao6e7676c2010-04-27 15:07:33 -07004246 local_irq_disable();
Tom Herbert11ef7a82014-06-30 09:50:40 -07004247 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
Changli Gao6e7676c2010-04-27 15:07:33 -07004250 while ((skb = __skb_dequeue(&sd->process_queue))) {
Eric Dumazete4008272010-04-05 15:42:39 -07004251 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004252 __netif_receive_skb(skb);
Changli Gao6e7676c2010-04-27 15:07:33 -07004253 local_irq_disable();
Tom Herbert76cc8b12010-05-20 18:37:59 +00004254 input_queue_head_incr(sd);
4255 if (++work >= quota) {
4256 local_irq_enable();
4257 return work;
4258 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004259 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
Changli Gao6e7676c2010-04-27 15:07:33 -07004261 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07004262 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004263 /*
4264 * Inline a custom version of __napi_complete().
4265 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07004266 * and NAPI_STATE_SCHED is the only possible flag set
4267 * on backlog.
4268 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004269 * and we dont need an smp_mb() memory barrier.
4270 */
4271 list_del(&napi->poll_list);
4272 napi->state = 0;
Tom Herbert11ef7a82014-06-30 09:50:40 -07004273 rps_unlock(sd);
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004274
Tom Herbert11ef7a82014-06-30 09:50:40 -07004275 break;
Changli Gao6e7676c2010-04-27 15:07:33 -07004276 }
Tom Herbert11ef7a82014-06-30 09:50:40 -07004277
4278 skb_queue_splice_tail_init(&sd->input_pkt_queue,
4279 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07004280 rps_unlock(sd);
4281 }
4282 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004284 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285}
4286
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004287/**
4288 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07004289 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004290 *
4291 * The entry's receive function will be scheduled to run
4292 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08004293void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004294{
4295 unsigned long flags;
4296
4297 local_irq_save(flags);
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004298 ____napi_schedule(&__get_cpu_var(softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004299 local_irq_restore(flags);
4300}
4301EXPORT_SYMBOL(__napi_schedule);
4302
Herbert Xud565b0a2008-12-15 23:38:52 -08004303void __napi_complete(struct napi_struct *n)
4304{
4305 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
4306 BUG_ON(n->gro_list);
4307
4308 list_del(&n->poll_list);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004309 smp_mb__before_atomic();
Herbert Xud565b0a2008-12-15 23:38:52 -08004310 clear_bit(NAPI_STATE_SCHED, &n->state);
4311}
4312EXPORT_SYMBOL(__napi_complete);
4313
4314void napi_complete(struct napi_struct *n)
4315{
4316 unsigned long flags;
4317
4318 /*
4319 * don't let napi dequeue from the cpu poll list
4320 * just in case its running on a different cpu
4321 */
4322 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
4323 return;
4324
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004325 napi_gro_flush(n, false);
Herbert Xud565b0a2008-12-15 23:38:52 -08004326 local_irq_save(flags);
4327 __napi_complete(n);
4328 local_irq_restore(flags);
4329}
4330EXPORT_SYMBOL(napi_complete);
4331
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03004332/* must be called under rcu_read_lock(), as we dont take a reference */
4333struct napi_struct *napi_by_id(unsigned int napi_id)
4334{
4335 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
4336 struct napi_struct *napi;
4337
4338 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
4339 if (napi->napi_id == napi_id)
4340 return napi;
4341
4342 return NULL;
4343}
4344EXPORT_SYMBOL_GPL(napi_by_id);
4345
4346void napi_hash_add(struct napi_struct *napi)
4347{
4348 if (!test_and_set_bit(NAPI_STATE_HASHED, &napi->state)) {
4349
4350 spin_lock(&napi_hash_lock);
4351
4352 /* 0 is not a valid id, we also skip an id that is taken
4353 * we expect both events to be extremely rare
4354 */
4355 napi->napi_id = 0;
4356 while (!napi->napi_id) {
4357 napi->napi_id = ++napi_gen_id;
4358 if (napi_by_id(napi->napi_id))
4359 napi->napi_id = 0;
4360 }
4361
4362 hlist_add_head_rcu(&napi->napi_hash_node,
4363 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
4364
4365 spin_unlock(&napi_hash_lock);
4366 }
4367}
4368EXPORT_SYMBOL_GPL(napi_hash_add);
4369
4370/* Warning : caller is responsible to make sure rcu grace period
4371 * is respected before freeing memory containing @napi
4372 */
4373void napi_hash_del(struct napi_struct *napi)
4374{
4375 spin_lock(&napi_hash_lock);
4376
4377 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state))
4378 hlist_del_rcu(&napi->napi_hash_node);
4379
4380 spin_unlock(&napi_hash_lock);
4381}
4382EXPORT_SYMBOL_GPL(napi_hash_del);
4383
Herbert Xud565b0a2008-12-15 23:38:52 -08004384void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
4385 int (*poll)(struct napi_struct *, int), int weight)
4386{
4387 INIT_LIST_HEAD(&napi->poll_list);
Herbert Xu4ae55442009-02-08 18:00:36 +00004388 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004389 napi->gro_list = NULL;
Herbert Xu5d38a072009-01-04 16:13:40 -08004390 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004391 napi->poll = poll;
Eric Dumazet82dc3c62013-03-05 15:57:22 +00004392 if (weight > NAPI_POLL_WEIGHT)
4393 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
4394 weight, dev->name);
Herbert Xud565b0a2008-12-15 23:38:52 -08004395 napi->weight = weight;
4396 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08004397 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08004398#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08004399 spin_lock_init(&napi->poll_lock);
4400 napi->poll_owner = -1;
4401#endif
4402 set_bit(NAPI_STATE_SCHED, &napi->state);
4403}
4404EXPORT_SYMBOL(netif_napi_add);
4405
4406void netif_napi_del(struct napi_struct *napi)
4407{
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08004408 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07004409 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08004410
Eric Dumazet289dccb2013-12-20 14:29:08 -08004411 kfree_skb_list(napi->gro_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08004412 napi->gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00004413 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004414}
4415EXPORT_SYMBOL(netif_napi_del);
4416
Linus Torvalds1da177e2005-04-16 15:20:36 -07004417static void net_rx_action(struct softirq_action *h)
4418{
Eric Dumazete326bed2010-04-22 00:22:45 -07004419 struct softnet_data *sd = &__get_cpu_var(softnet_data);
Stephen Hemminger24f8b232008-11-03 17:14:38 -08004420 unsigned long time_limit = jiffies + 2;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07004421 int budget = netdev_budget;
Matt Mackall53fb95d2005-08-11 19:27:43 -07004422 void *have;
4423
Linus Torvalds1da177e2005-04-16 15:20:36 -07004424 local_irq_disable();
4425
Eric Dumazete326bed2010-04-22 00:22:45 -07004426 while (!list_empty(&sd->poll_list)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004427 struct napi_struct *n;
4428 int work, weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004430 /* If softirq window is exhuasted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08004431 * Allow this to run for 2 jiffies since which will allow
4432 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004433 */
Eric Dumazetd1f41b62013-03-05 07:15:13 +00004434 if (unlikely(budget <= 0 || time_after_eq(jiffies, time_limit)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435 goto softnet_break;
4436
4437 local_irq_enable();
4438
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004439 /* Even though interrupts have been re-enabled, this
4440 * access is safe because interrupts can only add new
4441 * entries to the tail of this list, and only ->poll()
4442 * calls can remove this head entry from the list.
4443 */
Eric Dumazete326bed2010-04-22 00:22:45 -07004444 n = list_first_entry(&sd->poll_list, struct napi_struct, poll_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004445
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004446 have = netpoll_poll_lock(n);
4447
4448 weight = n->weight;
4449
David S. Miller0a7606c2007-10-29 21:28:47 -07004450 /* This NAPI_STATE_SCHED test is for avoiding a race
4451 * with netpoll's poll_napi(). Only the entity which
4452 * obtains the lock and sees NAPI_STATE_SCHED set will
4453 * actually make the ->poll() call. Therefore we avoid
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004454 * accidentally calling ->poll() when NAPI is not scheduled.
David S. Miller0a7606c2007-10-29 21:28:47 -07004455 */
4456 work = 0;
Neil Horman4ea7e382009-05-21 07:36:08 +00004457 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
David S. Miller0a7606c2007-10-29 21:28:47 -07004458 work = n->poll(n, weight);
Neil Horman4ea7e382009-05-21 07:36:08 +00004459 trace_napi_poll(n);
4460 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004461
4462 WARN_ON_ONCE(work > weight);
4463
4464 budget -= work;
4465
4466 local_irq_disable();
4467
4468 /* Drivers must not modify the NAPI state if they
4469 * consume the entire weight. In such cases this code
4470 * still "owns" the NAPI instance and therefore can
4471 * move the instance around on the list at-will.
4472 */
David S. Millerfed17f32008-01-07 21:00:40 -08004473 if (unlikely(work == weight)) {
Herbert Xuff780cd2009-06-26 19:27:04 -07004474 if (unlikely(napi_disable_pending(n))) {
4475 local_irq_enable();
4476 napi_complete(n);
4477 local_irq_disable();
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004478 } else {
4479 if (n->gro_list) {
4480 /* flush too old packets
4481 * If HZ < 1000, flush all packets.
4482 */
4483 local_irq_enable();
4484 napi_gro_flush(n, HZ >= 1000);
4485 local_irq_disable();
4486 }
Eric Dumazete326bed2010-04-22 00:22:45 -07004487 list_move_tail(&n->poll_list, &sd->poll_list);
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004488 }
David S. Millerfed17f32008-01-07 21:00:40 -08004489 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004490
4491 netpoll_poll_unlock(have);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004492 }
4493out:
Eric Dumazete326bed2010-04-22 00:22:45 -07004494 net_rps_action_and_irq_enable(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004495
Chris Leechdb217332006-06-17 21:24:58 -07004496#ifdef CONFIG_NET_DMA
4497 /*
4498 * There may not be any more sk_buffs coming right now, so push
4499 * any pending DMA copies to hardware
4500 */
Dan Williams2ba05622009-01-06 11:38:14 -07004501 dma_issue_pending_all();
Chris Leechdb217332006-06-17 21:24:58 -07004502#endif
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004503
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504 return;
4505
4506softnet_break:
Changli Gaodee42872010-05-02 05:42:16 +00004507 sd->time_squeeze++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004508 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4509 goto out;
4510}
4511
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004512struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004513 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004514
4515 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004516 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004517
Veaceslav Falico5d261912013-08-28 23:25:05 +02004518 /* counter for the number of times this device was added to us */
4519 u16 ref_nr;
4520
Veaceslav Falico402dae92013-09-25 09:20:09 +02004521 /* private field for the users */
4522 void *private;
4523
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004524 struct list_head list;
4525 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004526};
4527
Veaceslav Falico5d261912013-08-28 23:25:05 +02004528static struct netdev_adjacent *__netdev_find_adj(struct net_device *dev,
4529 struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004530 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004531{
Veaceslav Falico5d261912013-08-28 23:25:05 +02004532 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004533
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004534 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02004535 if (adj->dev == adj_dev)
4536 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004537 }
4538 return NULL;
4539}
4540
4541/**
4542 * netdev_has_upper_dev - Check if device is linked to an upper device
4543 * @dev: device
4544 * @upper_dev: upper device to check
4545 *
4546 * Find out if a device is linked to specified upper device and return true
4547 * in case it is. Note that this checks only immediate upper device,
4548 * not through a complete stack of devices. The caller must hold the RTNL lock.
4549 */
4550bool netdev_has_upper_dev(struct net_device *dev,
4551 struct net_device *upper_dev)
4552{
4553 ASSERT_RTNL();
4554
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004555 return __netdev_find_adj(dev, upper_dev, &dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004556}
4557EXPORT_SYMBOL(netdev_has_upper_dev);
4558
4559/**
4560 * netdev_has_any_upper_dev - Check if device is linked to some device
4561 * @dev: device
4562 *
4563 * Find out if a device is linked to an upper device and return true in case
4564 * it is. The caller must hold the RTNL lock.
4565 */
stephen hemminger1d143d92013-12-29 14:01:29 -08004566static bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004567{
4568 ASSERT_RTNL();
4569
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004570 return !list_empty(&dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004571}
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004572
4573/**
4574 * netdev_master_upper_dev_get - Get master upper device
4575 * @dev: device
4576 *
4577 * Find a master upper device and return pointer to it or NULL in case
4578 * it's not there. The caller must hold the RTNL lock.
4579 */
4580struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
4581{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004582 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004583
4584 ASSERT_RTNL();
4585
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004586 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004587 return NULL;
4588
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004589 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004590 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004591 if (likely(upper->master))
4592 return upper->dev;
4593 return NULL;
4594}
4595EXPORT_SYMBOL(netdev_master_upper_dev_get);
4596
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02004597void *netdev_adjacent_get_private(struct list_head *adj_list)
4598{
4599 struct netdev_adjacent *adj;
4600
4601 adj = list_entry(adj_list, struct netdev_adjacent, list);
4602
4603 return adj->private;
4604}
4605EXPORT_SYMBOL(netdev_adjacent_get_private);
4606
Veaceslav Falico31088a12013-09-25 09:20:12 +02004607/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04004608 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
4609 * @dev: device
4610 * @iter: list_head ** of the current position
4611 *
4612 * Gets the next device from the dev's upper list, starting from iter
4613 * position. The caller must hold RCU read lock.
4614 */
4615struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
4616 struct list_head **iter)
4617{
4618 struct netdev_adjacent *upper;
4619
4620 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
4621
4622 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4623
4624 if (&upper->list == &dev->adj_list.upper)
4625 return NULL;
4626
4627 *iter = &upper->list;
4628
4629 return upper->dev;
4630}
4631EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
4632
4633/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02004634 * netdev_all_upper_get_next_dev_rcu - Get the next dev from upper list
Veaceslav Falico48311f42013-08-28 23:25:07 +02004635 * @dev: device
4636 * @iter: list_head ** of the current position
4637 *
4638 * Gets the next device from the dev's upper list, starting from iter
4639 * position. The caller must hold RCU read lock.
4640 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004641struct net_device *netdev_all_upper_get_next_dev_rcu(struct net_device *dev,
4642 struct list_head **iter)
Veaceslav Falico48311f42013-08-28 23:25:07 +02004643{
4644 struct netdev_adjacent *upper;
4645
John Fastabend85328242013-11-26 06:33:52 +00004646 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
Veaceslav Falico48311f42013-08-28 23:25:07 +02004647
4648 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4649
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004650 if (&upper->list == &dev->all_adj_list.upper)
Veaceslav Falico48311f42013-08-28 23:25:07 +02004651 return NULL;
4652
4653 *iter = &upper->list;
4654
4655 return upper->dev;
4656}
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004657EXPORT_SYMBOL(netdev_all_upper_get_next_dev_rcu);
Veaceslav Falico48311f42013-08-28 23:25:07 +02004658
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004659/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02004660 * netdev_lower_get_next_private - Get the next ->private from the
4661 * lower neighbour list
4662 * @dev: device
4663 * @iter: list_head ** of the current position
4664 *
4665 * Gets the next netdev_adjacent->private from the dev's lower neighbour
4666 * list, starting from iter position. The caller must hold either hold the
4667 * RTNL lock or its own locking that guarantees that the neighbour lower
4668 * list will remain unchainged.
4669 */
4670void *netdev_lower_get_next_private(struct net_device *dev,
4671 struct list_head **iter)
4672{
4673 struct netdev_adjacent *lower;
4674
4675 lower = list_entry(*iter, struct netdev_adjacent, list);
4676
4677 if (&lower->list == &dev->adj_list.lower)
4678 return NULL;
4679
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02004680 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02004681
4682 return lower->private;
4683}
4684EXPORT_SYMBOL(netdev_lower_get_next_private);
4685
4686/**
4687 * netdev_lower_get_next_private_rcu - Get the next ->private from the
4688 * lower neighbour list, RCU
4689 * variant
4690 * @dev: device
4691 * @iter: list_head ** of the current position
4692 *
4693 * Gets the next netdev_adjacent->private from the dev's lower neighbour
4694 * list, starting from iter position. The caller must hold RCU read lock.
4695 */
4696void *netdev_lower_get_next_private_rcu(struct net_device *dev,
4697 struct list_head **iter)
4698{
4699 struct netdev_adjacent *lower;
4700
4701 WARN_ON_ONCE(!rcu_read_lock_held());
4702
4703 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4704
4705 if (&lower->list == &dev->adj_list.lower)
4706 return NULL;
4707
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02004708 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02004709
4710 return lower->private;
4711}
4712EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
4713
4714/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04004715 * netdev_lower_get_next - Get the next device from the lower neighbour
4716 * list
4717 * @dev: device
4718 * @iter: list_head ** of the current position
4719 *
4720 * Gets the next netdev_adjacent from the dev's lower neighbour
4721 * list, starting from iter position. The caller must hold RTNL lock or
4722 * its own locking that guarantees that the neighbour lower
4723 * list will remain unchainged.
4724 */
4725void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
4726{
4727 struct netdev_adjacent *lower;
4728
4729 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
4730
4731 if (&lower->list == &dev->adj_list.lower)
4732 return NULL;
4733
4734 *iter = &lower->list;
4735
4736 return lower->dev;
4737}
4738EXPORT_SYMBOL(netdev_lower_get_next);
4739
4740/**
dingtianhonge001bfa2013-12-13 10:19:55 +08004741 * netdev_lower_get_first_private_rcu - Get the first ->private from the
4742 * lower neighbour list, RCU
4743 * variant
4744 * @dev: device
4745 *
4746 * Gets the first netdev_adjacent->private from the dev's lower neighbour
4747 * list. The caller must hold RCU read lock.
4748 */
4749void *netdev_lower_get_first_private_rcu(struct net_device *dev)
4750{
4751 struct netdev_adjacent *lower;
4752
4753 lower = list_first_or_null_rcu(&dev->adj_list.lower,
4754 struct netdev_adjacent, list);
4755 if (lower)
4756 return lower->private;
4757 return NULL;
4758}
4759EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
4760
4761/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004762 * netdev_master_upper_dev_get_rcu - Get master upper device
4763 * @dev: device
4764 *
4765 * Find a master upper device and return pointer to it or NULL in case
4766 * it's not there. The caller must hold the RCU read lock.
4767 */
4768struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
4769{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004770 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004771
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004772 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004773 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004774 if (upper && likely(upper->master))
4775 return upper->dev;
4776 return NULL;
4777}
4778EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
4779
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05304780static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004781 struct net_device *adj_dev,
4782 struct list_head *dev_list)
4783{
4784 char linkname[IFNAMSIZ+7];
4785 sprintf(linkname, dev_list == &dev->adj_list.upper ?
4786 "upper_%s" : "lower_%s", adj_dev->name);
4787 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
4788 linkname);
4789}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05304790static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004791 char *name,
4792 struct list_head *dev_list)
4793{
4794 char linkname[IFNAMSIZ+7];
4795 sprintf(linkname, dev_list == &dev->adj_list.upper ?
4796 "upper_%s" : "lower_%s", name);
4797 sysfs_remove_link(&(dev->dev.kobj), linkname);
4798}
4799
4800#define netdev_adjacent_is_neigh_list(dev, dev_list) \
4801 (dev_list == &dev->adj_list.upper || \
4802 dev_list == &dev->adj_list.lower)
4803
Veaceslav Falico5d261912013-08-28 23:25:05 +02004804static int __netdev_adjacent_dev_insert(struct net_device *dev,
4805 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02004806 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004807 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004808{
4809 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004810 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004811
Veaceslav Falico7863c052013-09-25 09:20:06 +02004812 adj = __netdev_find_adj(dev, adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004813
4814 if (adj) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02004815 adj->ref_nr++;
4816 return 0;
4817 }
4818
4819 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
4820 if (!adj)
4821 return -ENOMEM;
4822
4823 adj->dev = adj_dev;
4824 adj->master = master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004825 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02004826 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004827 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004828
4829 pr_debug("dev_hold for %s, because of link added from %s to %s\n",
4830 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004831
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004832 if (netdev_adjacent_is_neigh_list(dev, dev_list)) {
4833 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004834 if (ret)
4835 goto free_adj;
4836 }
4837
Veaceslav Falico7863c052013-09-25 09:20:06 +02004838 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004839 if (master) {
4840 ret = sysfs_create_link(&(dev->dev.kobj),
4841 &(adj_dev->dev.kobj), "master");
4842 if (ret)
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004843 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004844
Veaceslav Falico7863c052013-09-25 09:20:06 +02004845 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004846 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02004847 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004848 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02004849
4850 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004851
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004852remove_symlinks:
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004853 if (netdev_adjacent_is_neigh_list(dev, dev_list))
4854 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004855free_adj:
4856 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02004857 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004858
4859 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004860}
4861
stephen hemminger1d143d92013-12-29 14:01:29 -08004862static void __netdev_adjacent_dev_remove(struct net_device *dev,
4863 struct net_device *adj_dev,
4864 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004865{
4866 struct netdev_adjacent *adj;
4867
Veaceslav Falico7863c052013-09-25 09:20:06 +02004868 adj = __netdev_find_adj(dev, adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004869
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004870 if (!adj) {
4871 pr_err("tried to remove device %s from %s\n",
4872 dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004873 BUG();
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004874 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02004875
4876 if (adj->ref_nr > 1) {
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004877 pr_debug("%s to %s ref_nr-- = %d\n", dev->name, adj_dev->name,
4878 adj->ref_nr-1);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004879 adj->ref_nr--;
4880 return;
4881 }
4882
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004883 if (adj->master)
4884 sysfs_remove_link(&(dev->dev.kobj), "master");
4885
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004886 if (netdev_adjacent_is_neigh_list(dev, dev_list))
4887 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004888
Veaceslav Falico5d261912013-08-28 23:25:05 +02004889 list_del_rcu(&adj->list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004890 pr_debug("dev_put for %s, because link removed from %s to %s\n",
4891 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004892 dev_put(adj_dev);
4893 kfree_rcu(adj, rcu);
4894}
4895
stephen hemminger1d143d92013-12-29 14:01:29 -08004896static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
4897 struct net_device *upper_dev,
4898 struct list_head *up_list,
4899 struct list_head *down_list,
4900 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004901{
4902 int ret;
4903
Veaceslav Falico402dae92013-09-25 09:20:09 +02004904 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list, private,
4905 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004906 if (ret)
4907 return ret;
4908
Veaceslav Falico402dae92013-09-25 09:20:09 +02004909 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list, private,
4910 false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004911 if (ret) {
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004912 __netdev_adjacent_dev_remove(dev, upper_dev, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004913 return ret;
4914 }
4915
4916 return 0;
4917}
4918
stephen hemminger1d143d92013-12-29 14:01:29 -08004919static int __netdev_adjacent_dev_link(struct net_device *dev,
4920 struct net_device *upper_dev)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004921{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004922 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
4923 &dev->all_adj_list.upper,
4924 &upper_dev->all_adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004925 NULL, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004926}
4927
stephen hemminger1d143d92013-12-29 14:01:29 -08004928static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
4929 struct net_device *upper_dev,
4930 struct list_head *up_list,
4931 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004932{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004933 __netdev_adjacent_dev_remove(dev, upper_dev, up_list);
4934 __netdev_adjacent_dev_remove(upper_dev, dev, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004935}
4936
stephen hemminger1d143d92013-12-29 14:01:29 -08004937static void __netdev_adjacent_dev_unlink(struct net_device *dev,
4938 struct net_device *upper_dev)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004939{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004940 __netdev_adjacent_dev_unlink_lists(dev, upper_dev,
4941 &dev->all_adj_list.upper,
4942 &upper_dev->all_adj_list.lower);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004943}
4944
stephen hemminger1d143d92013-12-29 14:01:29 -08004945static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
4946 struct net_device *upper_dev,
4947 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004948{
4949 int ret = __netdev_adjacent_dev_link(dev, upper_dev);
4950
4951 if (ret)
4952 return ret;
4953
4954 ret = __netdev_adjacent_dev_link_lists(dev, upper_dev,
4955 &dev->adj_list.upper,
4956 &upper_dev->adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004957 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004958 if (ret) {
4959 __netdev_adjacent_dev_unlink(dev, upper_dev);
4960 return ret;
4961 }
4962
4963 return 0;
4964}
4965
stephen hemminger1d143d92013-12-29 14:01:29 -08004966static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
4967 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004968{
4969 __netdev_adjacent_dev_unlink(dev, upper_dev);
4970 __netdev_adjacent_dev_unlink_lists(dev, upper_dev,
4971 &dev->adj_list.upper,
4972 &upper_dev->adj_list.lower);
4973}
Veaceslav Falico5d261912013-08-28 23:25:05 +02004974
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004975static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004976 struct net_device *upper_dev, bool master,
4977 void *private)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004978{
Veaceslav Falico5d261912013-08-28 23:25:05 +02004979 struct netdev_adjacent *i, *j, *to_i, *to_j;
4980 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004981
4982 ASSERT_RTNL();
4983
4984 if (dev == upper_dev)
4985 return -EBUSY;
4986
4987 /* To prevent loops, check if dev is not upper device to upper_dev. */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004988 if (__netdev_find_adj(upper_dev, dev, &upper_dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004989 return -EBUSY;
4990
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004991 if (__netdev_find_adj(dev, upper_dev, &dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004992 return -EEXIST;
4993
4994 if (master && netdev_master_upper_dev_get(dev))
4995 return -EBUSY;
4996
Veaceslav Falico402dae92013-09-25 09:20:09 +02004997 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, private,
4998 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004999 if (ret)
5000 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005001
Veaceslav Falico5d261912013-08-28 23:25:05 +02005002 /* Now that we linked these devs, make all the upper_dev's
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005003 * all_adj_list.upper visible to every dev's all_adj_list.lower an
Veaceslav Falico5d261912013-08-28 23:25:05 +02005004 * versa, and don't forget the devices itself. All of these
5005 * links are non-neighbours.
5006 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005007 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5008 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
5009 pr_debug("Interlinking %s with %s, non-neighbour\n",
5010 i->dev->name, j->dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005011 ret = __netdev_adjacent_dev_link(i->dev, j->dev);
5012 if (ret)
5013 goto rollback_mesh;
5014 }
5015 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005016
Veaceslav Falico5d261912013-08-28 23:25:05 +02005017 /* add dev to every upper_dev's upper device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005018 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
5019 pr_debug("linking %s's upper device %s with %s\n",
5020 upper_dev->name, i->dev->name, dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005021 ret = __netdev_adjacent_dev_link(dev, i->dev);
5022 if (ret)
5023 goto rollback_upper_mesh;
5024 }
5025
5026 /* add upper_dev to every dev's lower device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005027 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5028 pr_debug("linking %s's lower device %s with %s\n", dev->name,
5029 i->dev->name, upper_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005030 ret = __netdev_adjacent_dev_link(i->dev, upper_dev);
5031 if (ret)
5032 goto rollback_lower_mesh;
5033 }
5034
Jiri Pirko42e52bf2013-05-25 04:12:10 +00005035 call_netdevice_notifiers(NETDEV_CHANGEUPPER, dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005036 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005037
5038rollback_lower_mesh:
5039 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005040 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005041 if (i == to_i)
5042 break;
5043 __netdev_adjacent_dev_unlink(i->dev, upper_dev);
5044 }
5045
5046 i = NULL;
5047
5048rollback_upper_mesh:
5049 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005050 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005051 if (i == to_i)
5052 break;
5053 __netdev_adjacent_dev_unlink(dev, i->dev);
5054 }
5055
5056 i = j = NULL;
5057
5058rollback_mesh:
5059 to_i = i;
5060 to_j = j;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005061 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5062 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005063 if (i == to_i && j == to_j)
5064 break;
5065 __netdev_adjacent_dev_unlink(i->dev, j->dev);
5066 }
5067 if (i == to_i)
5068 break;
5069 }
5070
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005071 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005072
5073 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005074}
5075
5076/**
5077 * netdev_upper_dev_link - Add a link to the upper device
5078 * @dev: device
5079 * @upper_dev: new upper device
5080 *
5081 * Adds a link to device which is upper to this one. The caller must hold
5082 * the RTNL lock. On a failure a negative errno code is returned.
5083 * On success the reference counts are adjusted and the function
5084 * returns zero.
5085 */
5086int netdev_upper_dev_link(struct net_device *dev,
5087 struct net_device *upper_dev)
5088{
Veaceslav Falico402dae92013-09-25 09:20:09 +02005089 return __netdev_upper_dev_link(dev, upper_dev, false, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005090}
5091EXPORT_SYMBOL(netdev_upper_dev_link);
5092
5093/**
5094 * netdev_master_upper_dev_link - Add a master link to the upper device
5095 * @dev: device
5096 * @upper_dev: new upper device
5097 *
5098 * Adds a link to device which is upper to this one. In this case, only
5099 * one master upper device can be linked, although other non-master devices
5100 * might be linked as well. The caller must hold the RTNL lock.
5101 * On a failure a negative errno code is returned. On success the reference
5102 * counts are adjusted and the function returns zero.
5103 */
5104int netdev_master_upper_dev_link(struct net_device *dev,
5105 struct net_device *upper_dev)
5106{
Veaceslav Falico402dae92013-09-25 09:20:09 +02005107 return __netdev_upper_dev_link(dev, upper_dev, true, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005108}
5109EXPORT_SYMBOL(netdev_master_upper_dev_link);
5110
Veaceslav Falico402dae92013-09-25 09:20:09 +02005111int netdev_master_upper_dev_link_private(struct net_device *dev,
5112 struct net_device *upper_dev,
5113 void *private)
5114{
5115 return __netdev_upper_dev_link(dev, upper_dev, true, private);
5116}
5117EXPORT_SYMBOL(netdev_master_upper_dev_link_private);
5118
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005119/**
5120 * netdev_upper_dev_unlink - Removes a link to upper device
5121 * @dev: device
5122 * @upper_dev: new upper device
5123 *
5124 * Removes a link to device which is upper to this one. The caller must hold
5125 * the RTNL lock.
5126 */
5127void netdev_upper_dev_unlink(struct net_device *dev,
5128 struct net_device *upper_dev)
5129{
Veaceslav Falico5d261912013-08-28 23:25:05 +02005130 struct netdev_adjacent *i, *j;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005131 ASSERT_RTNL();
5132
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005133 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005134
5135 /* Here is the tricky part. We must remove all dev's lower
5136 * devices from all upper_dev's upper devices and vice
5137 * versa, to maintain the graph relationship.
5138 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005139 list_for_each_entry(i, &dev->all_adj_list.lower, list)
5140 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005141 __netdev_adjacent_dev_unlink(i->dev, j->dev);
5142
5143 /* remove also the devices itself from lower/upper device
5144 * list
5145 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005146 list_for_each_entry(i, &dev->all_adj_list.lower, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005147 __netdev_adjacent_dev_unlink(i->dev, upper_dev);
5148
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005149 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005150 __netdev_adjacent_dev_unlink(dev, i->dev);
5151
Jiri Pirko42e52bf2013-05-25 04:12:10 +00005152 call_netdevice_notifiers(NETDEV_CHANGEUPPER, dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005153}
5154EXPORT_SYMBOL(netdev_upper_dev_unlink);
5155
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005156void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02005157{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005158 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02005159
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005160 list_for_each_entry(iter, &dev->adj_list.upper, list) {
5161 netdev_adjacent_sysfs_del(iter->dev, oldname,
5162 &iter->dev->adj_list.lower);
5163 netdev_adjacent_sysfs_add(iter->dev, dev,
5164 &iter->dev->adj_list.lower);
5165 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02005166
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005167 list_for_each_entry(iter, &dev->adj_list.lower, list) {
5168 netdev_adjacent_sysfs_del(iter->dev, oldname,
5169 &iter->dev->adj_list.upper);
5170 netdev_adjacent_sysfs_add(iter->dev, dev,
5171 &iter->dev->adj_list.upper);
5172 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02005173}
Veaceslav Falico402dae92013-09-25 09:20:09 +02005174
5175void *netdev_lower_dev_get_private(struct net_device *dev,
5176 struct net_device *lower_dev)
5177{
5178 struct netdev_adjacent *lower;
5179
5180 if (!lower_dev)
5181 return NULL;
5182 lower = __netdev_find_adj(dev, lower_dev, &dev->adj_list.lower);
5183 if (!lower)
5184 return NULL;
5185
5186 return lower->private;
5187}
5188EXPORT_SYMBOL(netdev_lower_dev_get_private);
5189
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005190
5191int dev_get_nest_level(struct net_device *dev,
5192 bool (*type_check)(struct net_device *dev))
5193{
5194 struct net_device *lower = NULL;
5195 struct list_head *iter;
5196 int max_nest = -1;
5197 int nest;
5198
5199 ASSERT_RTNL();
5200
5201 netdev_for_each_lower_dev(dev, lower, iter) {
5202 nest = dev_get_nest_level(lower, type_check);
5203 if (max_nest < nest)
5204 max_nest = nest;
5205 }
5206
5207 if (type_check(dev))
5208 max_nest++;
5209
5210 return max_nest;
5211}
5212EXPORT_SYMBOL(dev_get_nest_level);
5213
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005214static void dev_change_rx_flags(struct net_device *dev, int flags)
5215{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005216 const struct net_device_ops *ops = dev->netdev_ops;
5217
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05005218 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005219 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005220}
5221
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005222static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07005223{
Eric Dumazetb536db92011-11-30 21:42:26 +00005224 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06005225 kuid_t uid;
5226 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07005227
Patrick McHardy24023452007-07-14 18:51:31 -07005228 ASSERT_RTNL();
5229
Wang Chendad9b332008-06-18 01:48:28 -07005230 dev->flags |= IFF_PROMISC;
5231 dev->promiscuity += inc;
5232 if (dev->promiscuity == 0) {
5233 /*
5234 * Avoid overflow.
5235 * If inc causes overflow, untouch promisc and return error.
5236 */
5237 if (inc < 0)
5238 dev->flags &= ~IFF_PROMISC;
5239 else {
5240 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005241 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
5242 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07005243 return -EOVERFLOW;
5244 }
5245 }
Patrick McHardy4417da62007-06-27 01:28:10 -07005246 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005247 pr_info("device %s %s promiscuous mode\n",
5248 dev->name,
5249 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11005250 if (audit_enabled) {
5251 current_uid_gid(&uid, &gid);
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05005252 audit_log(current->audit_context, GFP_ATOMIC,
5253 AUDIT_ANOM_PROMISCUOUS,
5254 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
5255 dev->name, (dev->flags & IFF_PROMISC),
5256 (old_flags & IFF_PROMISC),
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07005257 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06005258 from_kuid(&init_user_ns, uid),
5259 from_kgid(&init_user_ns, gid),
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05005260 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11005261 }
Patrick McHardy24023452007-07-14 18:51:31 -07005262
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005263 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07005264 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005265 if (notify)
5266 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07005267 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07005268}
5269
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270/**
5271 * dev_set_promiscuity - update promiscuity count on a device
5272 * @dev: device
5273 * @inc: modifier
5274 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07005275 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005276 * remains above zero the interface remains promiscuous. Once it hits zero
5277 * the device reverts back to normal filtering operation. A negative inc
5278 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07005279 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005280 */
Wang Chendad9b332008-06-18 01:48:28 -07005281int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282{
Eric Dumazetb536db92011-11-30 21:42:26 +00005283 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07005284 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005285
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005286 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07005287 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07005288 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07005289 if (dev->flags != old_flags)
5290 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07005291 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005292}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005293EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005294
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005295static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005296{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005297 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005298
Patrick McHardy24023452007-07-14 18:51:31 -07005299 ASSERT_RTNL();
5300
Linus Torvalds1da177e2005-04-16 15:20:36 -07005301 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07005302 dev->allmulti += inc;
5303 if (dev->allmulti == 0) {
5304 /*
5305 * Avoid overflow.
5306 * If inc causes overflow, untouch allmulti and return error.
5307 */
5308 if (inc < 0)
5309 dev->flags &= ~IFF_ALLMULTI;
5310 else {
5311 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005312 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
5313 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07005314 return -EOVERFLOW;
5315 }
5316 }
Patrick McHardy24023452007-07-14 18:51:31 -07005317 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005318 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07005319 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005320 if (notify)
5321 __dev_notify_flags(dev, old_flags,
5322 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07005323 }
Wang Chendad9b332008-06-18 01:48:28 -07005324 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07005325}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005326
5327/**
5328 * dev_set_allmulti - update allmulti count on a device
5329 * @dev: device
5330 * @inc: modifier
5331 *
5332 * Add or remove reception of all multicast frames to a device. While the
5333 * count in the device remains above zero the interface remains listening
5334 * to all interfaces. Once it hits zero the device reverts back to normal
5335 * filtering operation. A negative @inc value is used to drop the counter
5336 * when releasing a resource needing all multicasts.
5337 * Return 0 if successful or a negative errno code on error.
5338 */
5339
5340int dev_set_allmulti(struct net_device *dev, int inc)
5341{
5342 return __dev_set_allmulti(dev, inc, true);
5343}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005344EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07005345
5346/*
5347 * Upload unicast and multicast address lists to device and
5348 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08005349 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07005350 * are present.
5351 */
5352void __dev_set_rx_mode(struct net_device *dev)
5353{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005354 const struct net_device_ops *ops = dev->netdev_ops;
5355
Patrick McHardy4417da62007-06-27 01:28:10 -07005356 /* dev_open will call this function so the list will stay sane. */
5357 if (!(dev->flags&IFF_UP))
5358 return;
5359
5360 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09005361 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07005362
Jiri Pirko01789342011-08-16 06:29:00 +00005363 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07005364 /* Unicast addresses changes may only happen under the rtnl,
5365 * therefore calling __dev_set_promiscuity here is safe.
5366 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08005367 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005368 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07005369 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08005370 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005371 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07005372 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07005373 }
Patrick McHardy4417da62007-06-27 01:28:10 -07005374 }
Jiri Pirko01789342011-08-16 06:29:00 +00005375
5376 if (ops->ndo_set_rx_mode)
5377 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07005378}
5379
5380void dev_set_rx_mode(struct net_device *dev)
5381{
David S. Millerb9e40852008-07-15 00:15:08 -07005382 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07005383 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07005384 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005385}
5386
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005387/**
5388 * dev_get_flags - get flags reported to userspace
5389 * @dev: device
5390 *
5391 * Get the combination of flag bits exported through APIs to userspace.
5392 */
Eric Dumazet95c96172012-04-15 05:58:06 +00005393unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005394{
Eric Dumazet95c96172012-04-15 05:58:06 +00005395 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005396
5397 flags = (dev->flags & ~(IFF_PROMISC |
5398 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08005399 IFF_RUNNING |
5400 IFF_LOWER_UP |
5401 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07005402 (dev->gflags & (IFF_PROMISC |
5403 IFF_ALLMULTI));
5404
Stefan Rompfb00055a2006-03-20 17:09:11 -08005405 if (netif_running(dev)) {
5406 if (netif_oper_up(dev))
5407 flags |= IFF_RUNNING;
5408 if (netif_carrier_ok(dev))
5409 flags |= IFF_LOWER_UP;
5410 if (netif_dormant(dev))
5411 flags |= IFF_DORMANT;
5412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005413
5414 return flags;
5415}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005416EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005417
Patrick McHardybd380812010-02-26 06:34:53 +00005418int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005419{
Eric Dumazetb536db92011-11-30 21:42:26 +00005420 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00005421 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005422
Patrick McHardy24023452007-07-14 18:51:31 -07005423 ASSERT_RTNL();
5424
Linus Torvalds1da177e2005-04-16 15:20:36 -07005425 /*
5426 * Set the flags on our device.
5427 */
5428
5429 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
5430 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
5431 IFF_AUTOMEDIA)) |
5432 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
5433 IFF_ALLMULTI));
5434
5435 /*
5436 * Load in the correct multicast list now the flags have changed.
5437 */
5438
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005439 if ((old_flags ^ flags) & IFF_MULTICAST)
5440 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07005441
Patrick McHardy4417da62007-06-27 01:28:10 -07005442 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443
5444 /*
5445 * Have we downed the interface. We handle IFF_UP ourselves
5446 * according to user attempts to set it, rather than blindly
5447 * setting it.
5448 */
5449
5450 ret = 0;
Peter Pan(潘卫平)d215d102014-06-16 21:57:22 +08005451 if ((old_flags ^ flags) & IFF_UP)
Patrick McHardybd380812010-02-26 06:34:53 +00005452 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005453
Linus Torvalds1da177e2005-04-16 15:20:36 -07005454 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005455 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005456 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005457
Linus Torvalds1da177e2005-04-16 15:20:36 -07005458 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005459
5460 if (__dev_set_promiscuity(dev, inc, false) >= 0)
5461 if (dev->flags != old_flags)
5462 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005463 }
5464
5465 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
5466 is important. Some (broken) drivers set IFF_PROMISC, when
5467 IFF_ALLMULTI is requested not asking us and not reporting.
5468 */
5469 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005470 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
5471
Linus Torvalds1da177e2005-04-16 15:20:36 -07005472 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005473 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005474 }
5475
Patrick McHardybd380812010-02-26 06:34:53 +00005476 return ret;
5477}
5478
Nicolas Dichtela528c212013-09-25 12:02:44 +02005479void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
5480 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00005481{
5482 unsigned int changes = dev->flags ^ old_flags;
5483
Nicolas Dichtela528c212013-09-25 12:02:44 +02005484 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07005485 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02005486
Patrick McHardybd380812010-02-26 06:34:53 +00005487 if (changes & IFF_UP) {
5488 if (dev->flags & IFF_UP)
5489 call_netdevice_notifiers(NETDEV_UP, dev);
5490 else
5491 call_netdevice_notifiers(NETDEV_DOWN, dev);
5492 }
5493
5494 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00005495 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
5496 struct netdev_notifier_change_info change_info;
5497
5498 change_info.flags_changed = changes;
5499 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
5500 &change_info.info);
5501 }
Patrick McHardybd380812010-02-26 06:34:53 +00005502}
5503
5504/**
5505 * dev_change_flags - change device settings
5506 * @dev: device
5507 * @flags: device state flags
5508 *
5509 * Change settings on device based state flags. The flags are
5510 * in the userspace exported format.
5511 */
Eric Dumazetb536db92011-11-30 21:42:26 +00005512int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00005513{
Eric Dumazetb536db92011-11-30 21:42:26 +00005514 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005515 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00005516
5517 ret = __dev_change_flags(dev, flags);
5518 if (ret < 0)
5519 return ret;
5520
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005521 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02005522 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005523 return ret;
5524}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005525EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005526
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005527static int __dev_set_mtu(struct net_device *dev, int new_mtu)
5528{
5529 const struct net_device_ops *ops = dev->netdev_ops;
5530
5531 if (ops->ndo_change_mtu)
5532 return ops->ndo_change_mtu(dev, new_mtu);
5533
5534 dev->mtu = new_mtu;
5535 return 0;
5536}
5537
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005538/**
5539 * dev_set_mtu - Change maximum transfer unit
5540 * @dev: device
5541 * @new_mtu: new transfer unit
5542 *
5543 * Change the maximum transfer size of the network device.
5544 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005545int dev_set_mtu(struct net_device *dev, int new_mtu)
5546{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005547 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005548
5549 if (new_mtu == dev->mtu)
5550 return 0;
5551
5552 /* MTU must be positive. */
5553 if (new_mtu < 0)
5554 return -EINVAL;
5555
5556 if (!netif_device_present(dev))
5557 return -ENODEV;
5558
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01005559 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
5560 err = notifier_to_errno(err);
5561 if (err)
5562 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005563
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005564 orig_mtu = dev->mtu;
5565 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005566
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005567 if (!err) {
5568 err = call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
5569 err = notifier_to_errno(err);
5570 if (err) {
5571 /* setting mtu back and notifying everyone again,
5572 * so that they have a chance to revert changes.
5573 */
5574 __dev_set_mtu(dev, orig_mtu);
5575 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
5576 }
5577 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005578 return err;
5579}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005580EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005581
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005582/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00005583 * dev_set_group - Change group this device belongs to
5584 * @dev: device
5585 * @new_group: group this device should belong to
5586 */
5587void dev_set_group(struct net_device *dev, int new_group)
5588{
5589 dev->group = new_group;
5590}
5591EXPORT_SYMBOL(dev_set_group);
5592
5593/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005594 * dev_set_mac_address - Change Media Access Control Address
5595 * @dev: device
5596 * @sa: new address
5597 *
5598 * Change the hardware (MAC) address of the device
5599 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
5601{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005602 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005603 int err;
5604
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005605 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005606 return -EOPNOTSUPP;
5607 if (sa->sa_family != dev->type)
5608 return -EINVAL;
5609 if (!netif_device_present(dev))
5610 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005611 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00005612 if (err)
5613 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00005614 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00005615 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04005616 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00005617 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005618}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005619EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005620
Jiri Pirko4bf84c32012-12-27 23:49:37 +00005621/**
5622 * dev_change_carrier - Change device carrier
5623 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00005624 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00005625 *
5626 * Change device carrier
5627 */
5628int dev_change_carrier(struct net_device *dev, bool new_carrier)
5629{
5630 const struct net_device_ops *ops = dev->netdev_ops;
5631
5632 if (!ops->ndo_change_carrier)
5633 return -EOPNOTSUPP;
5634 if (!netif_device_present(dev))
5635 return -ENODEV;
5636 return ops->ndo_change_carrier(dev, new_carrier);
5637}
5638EXPORT_SYMBOL(dev_change_carrier);
5639
Linus Torvalds1da177e2005-04-16 15:20:36 -07005640/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02005641 * dev_get_phys_port_id - Get device physical port ID
5642 * @dev: device
5643 * @ppid: port ID
5644 *
5645 * Get device physical port ID
5646 */
5647int dev_get_phys_port_id(struct net_device *dev,
5648 struct netdev_phys_port_id *ppid)
5649{
5650 const struct net_device_ops *ops = dev->netdev_ops;
5651
5652 if (!ops->ndo_get_phys_port_id)
5653 return -EOPNOTSUPP;
5654 return ops->ndo_get_phys_port_id(dev, ppid);
5655}
5656EXPORT_SYMBOL(dev_get_phys_port_id);
5657
5658/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005659 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005660 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661 *
5662 * Returns a suitable unique value for a new device interface
5663 * number. The caller must hold the rtnl semaphore or the
5664 * dev_base_lock to be sure it remains unique.
5665 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07005666static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005667{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00005668 int ifindex = net->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005669 for (;;) {
5670 if (++ifindex <= 0)
5671 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07005672 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00005673 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674 }
5675}
5676
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08005678static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07005679DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005680
Stephen Hemminger6f05f622007-03-08 20:46:03 -08005681static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005682{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005683 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07005684 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005685}
5686
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005687static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005688{
Krishna Kumare93737b2009-12-08 22:26:02 +00005689 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07005690 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005691
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005692 BUG_ON(dev_boot_phase);
5693 ASSERT_RTNL();
5694
Krishna Kumare93737b2009-12-08 22:26:02 +00005695 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005696 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00005697 * for initialization unwind. Remove those
5698 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005699 */
5700 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005701 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
5702 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005703
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005704 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00005705 list_del(&dev->unreg_list);
5706 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005707 }
Eric Dumazet449f4542011-05-19 12:24:16 +00005708 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005709 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00005710 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005711
Octavian Purdila44345722010-12-13 12:44:07 +00005712 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07005713 list_for_each_entry(dev, head, unreg_list)
5714 list_add_tail(&dev->close_list, &close_head);
5715 dev_close_many(&close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005716
Octavian Purdila44345722010-12-13 12:44:07 +00005717 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005718 /* And unlink it from device chain. */
5719 unlist_netdevice(dev);
5720
5721 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005722 }
5723
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005724 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005725
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005726 list_for_each_entry(dev, head, unreg_list) {
5727 /* Shutdown queueing discipline. */
5728 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005729
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005730
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005731 /* Notify protocols, that we are about to destroy
5732 this device. They should clean all the things.
5733 */
5734 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
5735
5736 /*
5737 * Flush the unicast and multicast chains
5738 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00005739 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005740 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005741
5742 if (dev->netdev_ops->ndo_uninit)
5743 dev->netdev_ops->ndo_uninit(dev);
5744
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07005745 if (!dev->rtnl_link_ops ||
5746 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
5747 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
5748
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005749 /* Notifier chain MUST detach us all upper devices. */
5750 WARN_ON(netdev_has_any_upper_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005751
5752 /* Remove entries from kobject tree */
5753 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00005754#ifdef CONFIG_XPS
5755 /* Remove XPS queueing entries */
5756 netif_reset_xps_queues_gt(dev, 0);
5757#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005758 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005759
Eric W. Biederman850a5452011-10-13 22:25:23 +00005760 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005761
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00005762 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005763 dev_put(dev);
5764}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005765
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005766static void rollback_registered(struct net_device *dev)
5767{
5768 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005769
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005770 list_add(&dev->unreg_list, &single);
5771 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00005772 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005773}
5774
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005775static netdev_features_t netdev_fix_features(struct net_device *dev,
5776 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07005777{
Michał Mirosław57422dc2011-01-22 12:14:12 +00005778 /* Fix illegal checksum combinations */
5779 if ((features & NETIF_F_HW_CSUM) &&
5780 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005781 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00005782 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
5783 }
5784
Herbert Xub63365a2008-10-23 01:11:29 -07005785 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00005786 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005787 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00005788 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07005789 }
5790
Pravin B Shelarec5f0612013-03-07 09:28:01 +00005791 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
5792 !(features & NETIF_F_IP_CSUM)) {
5793 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
5794 features &= ~NETIF_F_TSO;
5795 features &= ~NETIF_F_TSO_ECN;
5796 }
5797
5798 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
5799 !(features & NETIF_F_IPV6_CSUM)) {
5800 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
5801 features &= ~NETIF_F_TSO6;
5802 }
5803
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00005804 /* TSO ECN requires that TSO is present as well. */
5805 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
5806 features &= ~NETIF_F_TSO_ECN;
5807
Michał Mirosław212b5732011-02-15 16:59:16 +00005808 /* Software GSO depends on SG. */
5809 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005810 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00005811 features &= ~NETIF_F_GSO;
5812 }
5813
Michał Mirosławacd11302011-01-24 15:45:15 -08005814 /* UFO needs SG and checksumming */
Herbert Xub63365a2008-10-23 01:11:29 -07005815 if (features & NETIF_F_UFO) {
Michał Mirosław79032642010-11-30 06:38:00 +00005816 /* maybe split UFO into V4 and V6? */
5817 if (!((features & NETIF_F_GEN_CSUM) ||
5818 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))
5819 == (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005820 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08005821 "Dropping NETIF_F_UFO since no checksum offload features.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07005822 features &= ~NETIF_F_UFO;
5823 }
5824
5825 if (!(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005826 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08005827 "Dropping NETIF_F_UFO since no NETIF_F_SG feature.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07005828 features &= ~NETIF_F_UFO;
5829 }
5830 }
5831
Jiri Pirkod0290212014-04-02 23:09:31 +02005832#ifdef CONFIG_NET_RX_BUSY_POLL
5833 if (dev->netdev_ops->ndo_busy_poll)
5834 features |= NETIF_F_BUSY_POLL;
5835 else
5836#endif
5837 features &= ~NETIF_F_BUSY_POLL;
5838
Herbert Xub63365a2008-10-23 01:11:29 -07005839 return features;
5840}
Herbert Xub63365a2008-10-23 01:11:29 -07005841
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005842int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00005843{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005844 netdev_features_t features;
Michał Mirosław5455c692011-02-15 16:59:17 +00005845 int err = 0;
5846
Michał Mirosław87267482011-04-12 09:56:38 +00005847 ASSERT_RTNL();
5848
Michał Mirosław5455c692011-02-15 16:59:17 +00005849 features = netdev_get_wanted_features(dev);
5850
5851 if (dev->netdev_ops->ndo_fix_features)
5852 features = dev->netdev_ops->ndo_fix_features(dev, features);
5853
5854 /* driver might be less strict about feature dependencies */
5855 features = netdev_fix_features(dev, features);
5856
5857 if (dev->features == features)
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005858 return 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00005859
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005860 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
5861 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00005862
5863 if (dev->netdev_ops->ndo_set_features)
5864 err = dev->netdev_ops->ndo_set_features(dev, features);
5865
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005866 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00005867 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005868 "set_features() failed (%d); wanted %pNF, left %pNF\n",
5869 err, &features, &dev->features);
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005870 return -1;
5871 }
5872
5873 if (!err)
5874 dev->features = features;
5875
5876 return 1;
5877}
5878
Michał Mirosławafe12cc2011-05-07 03:22:17 +00005879/**
5880 * netdev_update_features - recalculate device features
5881 * @dev: the device to check
5882 *
5883 * Recalculate dev->features set and send notifications if it
5884 * has changed. Should be called after driver or hardware dependent
5885 * conditions might have changed that influence the features.
5886 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005887void netdev_update_features(struct net_device *dev)
5888{
5889 if (__netdev_update_features(dev))
5890 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00005891}
5892EXPORT_SYMBOL(netdev_update_features);
5893
Linus Torvalds1da177e2005-04-16 15:20:36 -07005894/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00005895 * netdev_change_features - recalculate device features
5896 * @dev: the device to check
5897 *
5898 * Recalculate dev->features set and send notifications even
5899 * if they have not changed. Should be called instead of
5900 * netdev_update_features() if also dev->vlan_features might
5901 * have changed to allow the changes to be propagated to stacked
5902 * VLAN devices.
5903 */
5904void netdev_change_features(struct net_device *dev)
5905{
5906 __netdev_update_features(dev);
5907 netdev_features_change(dev);
5908}
5909EXPORT_SYMBOL(netdev_change_features);
5910
5911/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08005912 * netif_stacked_transfer_operstate - transfer operstate
5913 * @rootdev: the root or lower level device to transfer state from
5914 * @dev: the device to transfer operstate to
5915 *
5916 * Transfer operational state from root to device. This is normally
5917 * called when a stacking relationship exists between the root
5918 * device and the device(a leaf device).
5919 */
5920void netif_stacked_transfer_operstate(const struct net_device *rootdev,
5921 struct net_device *dev)
5922{
5923 if (rootdev->operstate == IF_OPER_DORMANT)
5924 netif_dormant_on(dev);
5925 else
5926 netif_dormant_off(dev);
5927
5928 if (netif_carrier_ok(rootdev)) {
5929 if (!netif_carrier_ok(dev))
5930 netif_carrier_on(dev);
5931 } else {
5932 if (netif_carrier_ok(dev))
5933 netif_carrier_off(dev);
5934 }
5935}
5936EXPORT_SYMBOL(netif_stacked_transfer_operstate);
5937
Michael Daltona953be52014-01-16 22:23:28 -08005938#ifdef CONFIG_SYSFS
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005939static int netif_alloc_rx_queues(struct net_device *dev)
5940{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005941 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00005942 struct netdev_rx_queue *rx;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005943
Tom Herbertbd25fa72010-10-18 18:00:16 +00005944 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005945
Tom Herbertbd25fa72010-10-18 18:00:16 +00005946 rx = kcalloc(count, sizeof(struct netdev_rx_queue), GFP_KERNEL);
Joe Perches62b59422013-02-04 16:48:16 +00005947 if (!rx)
Tom Herbertbd25fa72010-10-18 18:00:16 +00005948 return -ENOMEM;
Joe Perches62b59422013-02-04 16:48:16 +00005949
Tom Herbertbd25fa72010-10-18 18:00:16 +00005950 dev->_rx = rx;
5951
Tom Herbertbd25fa72010-10-18 18:00:16 +00005952 for (i = 0; i < count; i++)
Tom Herbertfe822242010-11-09 10:47:38 +00005953 rx[i].dev = dev;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005954 return 0;
5955}
Tom Herbertbf264142010-11-26 08:36:09 +00005956#endif
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005957
Changli Gaoaa942102010-12-04 02:31:41 +00005958static void netdev_init_one_queue(struct net_device *dev,
5959 struct netdev_queue *queue, void *_unused)
5960{
5961 /* Initialize queue lock */
5962 spin_lock_init(&queue->_xmit_lock);
5963 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
5964 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00005965 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00005966 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00005967#ifdef CONFIG_BQL
5968 dql_init(&queue->dql, HZ);
5969#endif
Changli Gaoaa942102010-12-04 02:31:41 +00005970}
5971
Eric Dumazet60877a32013-06-20 01:15:51 -07005972static void netif_free_tx_queues(struct net_device *dev)
5973{
WANG Cong4cb28972014-06-02 15:55:22 -07005974 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07005975}
5976
Tom Herberte6484932010-10-18 18:04:39 +00005977static int netif_alloc_netdev_queues(struct net_device *dev)
5978{
5979 unsigned int count = dev->num_tx_queues;
5980 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07005981 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00005982
Eric Dumazet60877a32013-06-20 01:15:51 -07005983 BUG_ON(count < 1 || count > 0xffff);
Tom Herberte6484932010-10-18 18:04:39 +00005984
Eric Dumazet60877a32013-06-20 01:15:51 -07005985 tx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
5986 if (!tx) {
5987 tx = vzalloc(sz);
5988 if (!tx)
5989 return -ENOMEM;
5990 }
Tom Herberte6484932010-10-18 18:04:39 +00005991 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00005992
Tom Herberte6484932010-10-18 18:04:39 +00005993 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
5994 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00005995
5996 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00005997}
5998
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08005999/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006000 * register_netdevice - register a network device
6001 * @dev: device to register
6002 *
6003 * Take a completed network device structure and add it to the kernel
6004 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
6005 * chain. 0 is returned on success. A negative errno code is returned
6006 * on a failure to set up the device, or if the name is a duplicate.
6007 *
6008 * Callers must hold the rtnl semaphore. You may want
6009 * register_netdev() instead of this.
6010 *
6011 * BUGS:
6012 * The locking appears insufficient to guarantee two parallel registers
6013 * will not get the same name.
6014 */
6015
6016int register_netdevice(struct net_device *dev)
6017{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006018 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006019 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020
6021 BUG_ON(dev_boot_phase);
6022 ASSERT_RTNL();
6023
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006024 might_sleep();
6025
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026 /* When net_device's are persistent, this will be fatal. */
6027 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006028 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006029
David S. Millerf1f28aa2008-07-15 00:08:33 -07006030 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07006031 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006032
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033 dev->iflink = -1;
6034
Gao feng828de4f2012-09-13 20:58:27 +00006035 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00006036 if (ret < 0)
6037 goto out;
6038
Linus Torvalds1da177e2005-04-16 15:20:36 -07006039 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006040 if (dev->netdev_ops->ndo_init) {
6041 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006042 if (ret) {
6043 if (ret > 0)
6044 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08006045 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006046 }
6047 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006048
Patrick McHardyf6469682013-04-19 02:04:27 +00006049 if (((dev->hw_features | dev->features) &
6050 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00006051 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
6052 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
6053 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
6054 ret = -EINVAL;
6055 goto err_uninit;
6056 }
6057
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00006058 ret = -EBUSY;
6059 if (!dev->ifindex)
6060 dev->ifindex = dev_new_index(net);
6061 else if (__dev_get_by_index(net, dev->ifindex))
6062 goto err_uninit;
6063
Linus Torvalds1da177e2005-04-16 15:20:36 -07006064 if (dev->iflink == -1)
6065 dev->iflink = dev->ifindex;
6066
Michał Mirosław5455c692011-02-15 16:59:17 +00006067 /* Transfer changeable features to wanted_features and enable
6068 * software offloads (GSO and GRO).
6069 */
6070 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00006071 dev->features |= NETIF_F_SOFT_FEATURES;
6072 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006073
Michał Mirosław34324dc2011-11-15 15:29:55 +00006074 if (!(dev->flags & IFF_LOOPBACK)) {
6075 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07006076 }
6077
Michał Mirosław1180e7d2011-07-14 14:41:11 -07006078 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00006079 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07006080 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00006081
Pravin B Shelaree579672013-03-07 09:28:08 +00006082 /* Make NETIF_F_SG inheritable to tunnel devices.
6083 */
6084 dev->hw_enc_features |= NETIF_F_SG;
6085
Simon Horman0d89d202013-05-23 21:02:52 +00006086 /* Make NETIF_F_SG inheritable to MPLS.
6087 */
6088 dev->mpls_features |= NETIF_F_SG;
6089
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00006090 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
6091 ret = notifier_to_errno(ret);
6092 if (ret)
6093 goto err_uninit;
6094
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006095 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006096 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006097 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006098 dev->reg_state = NETREG_REGISTERED;
6099
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006100 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00006101
Linus Torvalds1da177e2005-04-16 15:20:36 -07006102 /*
6103 * Default initial state at registry is that the
6104 * device is present.
6105 */
6106
6107 set_bit(__LINK_STATE_PRESENT, &dev->state);
6108
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01006109 linkwatch_init_dev(dev);
6110
Linus Torvalds1da177e2005-04-16 15:20:36 -07006111 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006112 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006113 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04006114 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006115
Jiri Pirko948b3372013-01-08 01:38:25 +00006116 /* If the device has permanent device address, driver should
6117 * set dev_addr and also addr_assign_type should be set to
6118 * NET_ADDR_PERM (default value).
6119 */
6120 if (dev->addr_assign_type == NET_ADDR_PERM)
6121 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
6122
Linus Torvalds1da177e2005-04-16 15:20:36 -07006123 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07006124 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07006125 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006126 if (ret) {
6127 rollback_registered(dev);
6128 dev->reg_state = NETREG_UNREGISTERED;
6129 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006130 /*
6131 * Prevent userspace races by waiting until the network
6132 * device is fully setup before sending notifications.
6133 */
Patrick McHardya2835762010-02-26 06:34:51 +00006134 if (!dev->rtnl_link_ops ||
6135 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006136 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006137
6138out:
6139 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006140
6141err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006142 if (dev->netdev_ops->ndo_uninit)
6143 dev->netdev_ops->ndo_uninit(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006144 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006145}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006146EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006147
6148/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006149 * init_dummy_netdev - init a dummy network device for NAPI
6150 * @dev: device to init
6151 *
6152 * This takes a network device structure and initialize the minimum
6153 * amount of fields so it can be used to schedule NAPI polls without
6154 * registering a full blown interface. This is to be used by drivers
6155 * that need to tie several hardware interfaces to a single NAPI
6156 * poll scheduler due to HW limitations.
6157 */
6158int init_dummy_netdev(struct net_device *dev)
6159{
6160 /* Clear everything. Note we don't initialize spinlocks
6161 * are they aren't supposed to be taken by any of the
6162 * NAPI code and this dummy netdev is supposed to be
6163 * only ever used for NAPI polls
6164 */
6165 memset(dev, 0, sizeof(struct net_device));
6166
6167 /* make sure we BUG if trying to hit standard
6168 * register/unregister code path
6169 */
6170 dev->reg_state = NETREG_DUMMY;
6171
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006172 /* NAPI wants this */
6173 INIT_LIST_HEAD(&dev->napi_list);
6174
6175 /* a dummy interface is started by default */
6176 set_bit(__LINK_STATE_PRESENT, &dev->state);
6177 set_bit(__LINK_STATE_START, &dev->state);
6178
Eric Dumazet29b44332010-10-11 10:22:12 +00006179 /* Note : We dont allocate pcpu_refcnt for dummy devices,
6180 * because users of this 'device' dont need to change
6181 * its refcount.
6182 */
6183
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006184 return 0;
6185}
6186EXPORT_SYMBOL_GPL(init_dummy_netdev);
6187
6188
6189/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006190 * register_netdev - register a network device
6191 * @dev: device to register
6192 *
6193 * Take a completed network device structure and add it to the kernel
6194 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
6195 * chain. 0 is returned on success. A negative errno code is returned
6196 * on a failure to set up the device, or if the name is a duplicate.
6197 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07006198 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07006199 * and expands the device name if you passed a format string to
6200 * alloc_netdev.
6201 */
6202int register_netdev(struct net_device *dev)
6203{
6204 int err;
6205
6206 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006207 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006208 rtnl_unlock();
6209 return err;
6210}
6211EXPORT_SYMBOL(register_netdev);
6212
Eric Dumazet29b44332010-10-11 10:22:12 +00006213int netdev_refcnt_read(const struct net_device *dev)
6214{
6215 int i, refcnt = 0;
6216
6217 for_each_possible_cpu(i)
6218 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
6219 return refcnt;
6220}
6221EXPORT_SYMBOL(netdev_refcnt_read);
6222
Ben Hutchings2c530402012-07-10 10:55:09 +00006223/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006224 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00006225 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07006226 *
6227 * This is called when unregistering network devices.
6228 *
6229 * Any protocol or device that holds a reference should register
6230 * for netdevice notification, and cleanup and put back the
6231 * reference if they receive an UNREGISTER event.
6232 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006233 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006234 */
6235static void netdev_wait_allrefs(struct net_device *dev)
6236{
6237 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00006238 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006239
Eric Dumazete014deb2009-11-17 05:59:21 +00006240 linkwatch_forget_dev(dev);
6241
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00006243 refcnt = netdev_refcnt_read(dev);
6244
6245 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006246 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08006247 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006248
6249 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07006250 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251
Eric Dumazet748e2d92012-08-22 21:50:59 +00006252 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006253 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00006254 rtnl_lock();
6255
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006256 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006257 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
6258 &dev->state)) {
6259 /* We must not have linkwatch events
6260 * pending on unregister. If this
6261 * happens, we simply run the queue
6262 * unscheduled, resulting in a noop
6263 * for this device.
6264 */
6265 linkwatch_run_queue();
6266 }
6267
Stephen Hemminger6756ae42006-03-20 22:23:58 -08006268 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006269
6270 rebroadcast_time = jiffies;
6271 }
6272
6273 msleep(250);
6274
Eric Dumazet29b44332010-10-11 10:22:12 +00006275 refcnt = netdev_refcnt_read(dev);
6276
Linus Torvalds1da177e2005-04-16 15:20:36 -07006277 if (time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006278 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
6279 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006280 warning_time = jiffies;
6281 }
6282 }
6283}
6284
6285/* The sequence is:
6286 *
6287 * rtnl_lock();
6288 * ...
6289 * register_netdevice(x1);
6290 * register_netdevice(x2);
6291 * ...
6292 * unregister_netdevice(y1);
6293 * unregister_netdevice(y2);
6294 * ...
6295 * rtnl_unlock();
6296 * free_netdev(y1);
6297 * free_netdev(y2);
6298 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07006299 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07006300 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006301 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302 * without deadlocking with linkwatch via keventd.
6303 * 2) Since we run with the RTNL semaphore not held, we can sleep
6304 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07006305 *
6306 * We must not return until all unregister events added during
6307 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006308 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006309void netdev_run_todo(void)
6310{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006311 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006312
Linus Torvalds1da177e2005-04-16 15:20:36 -07006313 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006314 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07006315
6316 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006317
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006318
6319 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00006320 if (!list_empty(&list))
6321 rcu_barrier();
6322
Linus Torvalds1da177e2005-04-16 15:20:36 -07006323 while (!list_empty(&list)) {
6324 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00006325 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006326 list_del(&dev->todo_list);
6327
Eric Dumazet748e2d92012-08-22 21:50:59 +00006328 rtnl_lock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006329 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Eric Dumazet748e2d92012-08-22 21:50:59 +00006330 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006331
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006332 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006333 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07006334 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006335 dump_stack();
6336 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006337 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006338
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006339 dev->reg_state = NETREG_UNREGISTERED;
6340
Changli Gao152102c2010-03-30 20:16:22 +00006341 on_each_cpu(flush_backlog, dev, 1);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07006342
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006343 netdev_wait_allrefs(dev);
6344
6345 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00006346 BUG_ON(netdev_refcnt_read(dev));
Eric Dumazet33d480c2011-08-11 19:30:52 +00006347 WARN_ON(rcu_access_pointer(dev->ip_ptr));
6348 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
Ilpo Järvinen547b7922008-07-25 21:43:18 -07006349 WARN_ON(dev->dn_ptr);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006350
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006351 if (dev->destructor)
6352 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07006353
Eric W. Biederman50624c92013-09-23 21:19:49 -07006354 /* Report a network device has been unregistered */
6355 rtnl_lock();
6356 dev_net(dev)->dev_unreg_count--;
6357 __rtnl_unlock();
6358 wake_up(&netdev_unregistering_wq);
6359
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07006360 /* Free network device */
6361 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006362 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006363}
6364
Ben Hutchings3cfde792010-07-09 09:11:52 +00006365/* Convert net_device_stats to rtnl_link_stats64. They have the same
6366 * fields in the same order, with only the type differing.
6367 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006368void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
6369 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00006370{
6371#if BITS_PER_LONG == 64
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006372 BUILD_BUG_ON(sizeof(*stats64) != sizeof(*netdev_stats));
6373 memcpy(stats64, netdev_stats, sizeof(*stats64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00006374#else
6375 size_t i, n = sizeof(*stats64) / sizeof(u64);
6376 const unsigned long *src = (const unsigned long *)netdev_stats;
6377 u64 *dst = (u64 *)stats64;
6378
6379 BUILD_BUG_ON(sizeof(*netdev_stats) / sizeof(unsigned long) !=
6380 sizeof(*stats64) / sizeof(u64));
6381 for (i = 0; i < n; i++)
6382 dst[i] = src[i];
6383#endif
6384}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006385EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00006386
Eric Dumazetd83345a2009-11-16 03:36:51 +00006387/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006388 * dev_get_stats - get network device statistics
6389 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07006390 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006391 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00006392 * Get network statistics from device. Return @storage.
6393 * The device driver may provide its own method by setting
6394 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
6395 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006396 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00006397struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
6398 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00006399{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006400 const struct net_device_ops *ops = dev->netdev_ops;
6401
Eric Dumazet28172732010-07-07 14:58:56 -07006402 if (ops->ndo_get_stats64) {
6403 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006404 ops->ndo_get_stats64(dev, storage);
6405 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00006406 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006407 } else {
6408 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07006409 }
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006410 storage->rx_dropped += atomic_long_read(&dev->rx_dropped);
Eric Dumazet015f0682014-03-27 08:45:56 -07006411 storage->tx_dropped += atomic_long_read(&dev->tx_dropped);
Eric Dumazet28172732010-07-07 14:58:56 -07006412 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07006413}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006414EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07006415
Eric Dumazet24824a02010-10-02 06:11:55 +00006416struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07006417{
Eric Dumazet24824a02010-10-02 06:11:55 +00006418 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07006419
Eric Dumazet24824a02010-10-02 06:11:55 +00006420#ifdef CONFIG_NET_CLS_ACT
6421 if (queue)
6422 return queue;
6423 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
6424 if (!queue)
6425 return NULL;
6426 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet24824a02010-10-02 06:11:55 +00006427 queue->qdisc = &noop_qdisc;
6428 queue->qdisc_sleeping = &noop_qdisc;
6429 rcu_assign_pointer(dev->ingress_queue, queue);
6430#endif
6431 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07006432}
6433
Eric Dumazet2c60db02012-09-16 09:17:26 +00006434static const struct ethtool_ops default_ethtool_ops;
6435
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00006436void netdev_set_default_ethtool_ops(struct net_device *dev,
6437 const struct ethtool_ops *ops)
6438{
6439 if (dev->ethtool_ops == &default_ethtool_ops)
6440 dev->ethtool_ops = ops;
6441}
6442EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
6443
Eric Dumazet74d332c2013-10-30 13:10:44 -07006444void netdev_freemem(struct net_device *dev)
6445{
6446 char *addr = (char *)dev - dev->padded;
6447
WANG Cong4cb28972014-06-02 15:55:22 -07006448 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07006449}
6450
Linus Torvalds1da177e2005-04-16 15:20:36 -07006451/**
Tom Herbert36909ea2011-01-09 19:36:31 +00006452 * alloc_netdev_mqs - allocate network device
Tom Gundersenc835a672014-07-14 16:37:24 +02006453 * @sizeof_priv: size of private data to allocate space for
6454 * @name: device name format string
6455 * @name_assign_type: origin of device name
6456 * @setup: callback to initialize device
6457 * @txqs: the number of TX subqueues to allocate
6458 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07006459 *
6460 * Allocates a struct net_device with private data area for driver use
Li Zhong90e51ad2013-11-22 15:04:46 +08006461 * and performs basic initialization. Also allocates subqueue structs
Tom Herbert36909ea2011-01-09 19:36:31 +00006462 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006463 */
Tom Herbert36909ea2011-01-09 19:36:31 +00006464struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
Tom Gundersenc835a672014-07-14 16:37:24 +02006465 unsigned char name_assign_type,
Tom Herbert36909ea2011-01-09 19:36:31 +00006466 void (*setup)(struct net_device *),
6467 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006468{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006469 struct net_device *dev;
Stephen Hemminger79439862008-07-21 13:28:44 -07006470 size_t alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006471 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006472
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07006473 BUG_ON(strlen(name) >= sizeof(dev->name));
6474
Tom Herbert36909ea2011-01-09 19:36:31 +00006475 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006476 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00006477 return NULL;
6478 }
6479
Michael Daltona953be52014-01-16 22:23:28 -08006480#ifdef CONFIG_SYSFS
Tom Herbert36909ea2011-01-09 19:36:31 +00006481 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006482 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00006483 return NULL;
6484 }
6485#endif
6486
David S. Millerfd2ea0a2008-07-17 01:56:23 -07006487 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07006488 if (sizeof_priv) {
6489 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006490 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07006491 alloc_size += sizeof_priv;
6492 }
6493 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006494 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495
Eric Dumazet74d332c2013-10-30 13:10:44 -07006496 p = kzalloc(alloc_size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
6497 if (!p)
6498 p = vzalloc(alloc_size);
Joe Perches62b59422013-02-04 16:48:16 +00006499 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006500 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006502 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006504
Eric Dumazet29b44332010-10-11 10:22:12 +00006505 dev->pcpu_refcnt = alloc_percpu(int);
6506 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07006507 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006508
Linus Torvalds1da177e2005-04-16 15:20:36 -07006509 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00006510 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511
Jiri Pirko22bedad32010-04-01 21:22:57 +00006512 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006513 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00006514
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09006515 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006516
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07006517 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00006518 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006519
Herbert Xud565b0a2008-12-15 23:38:52 -08006520 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00006521 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006522 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00006523 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006524 INIT_LIST_HEAD(&dev->adj_list.upper);
6525 INIT_LIST_HEAD(&dev->adj_list.lower);
6526 INIT_LIST_HEAD(&dev->all_adj_list.upper);
6527 INIT_LIST_HEAD(&dev->all_adj_list.lower);
Eric Dumazet93f154b2009-05-18 22:19:19 -07006528 dev->priv_flags = IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006529 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006530
6531 dev->num_tx_queues = txqs;
6532 dev->real_num_tx_queues = txqs;
6533 if (netif_alloc_netdev_queues(dev))
6534 goto free_all;
6535
Michael Daltona953be52014-01-16 22:23:28 -08006536#ifdef CONFIG_SYSFS
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006537 dev->num_rx_queues = rxqs;
6538 dev->real_num_rx_queues = rxqs;
6539 if (netif_alloc_rx_queues(dev))
6540 goto free_all;
6541#endif
6542
Linus Torvalds1da177e2005-04-16 15:20:36 -07006543 strcpy(dev->name, name);
Tom Gundersenc835a672014-07-14 16:37:24 +02006544 dev->name_assign_type = name_assign_type;
Vlad Dogarucbda10f2011-01-13 23:38:30 +00006545 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00006546 if (!dev->ethtool_ops)
6547 dev->ethtool_ops = &default_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006548 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006549
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006550free_all:
6551 free_netdev(dev);
6552 return NULL;
6553
Eric Dumazet29b44332010-10-11 10:22:12 +00006554free_pcpu:
6555 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07006556free_dev:
6557 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006558 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559}
Tom Herbert36909ea2011-01-09 19:36:31 +00006560EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006561
6562/**
6563 * free_netdev - free network device
6564 * @dev: device
6565 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006566 * This function does the last stage of destroying an allocated device
6567 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006568 * If this is the last reference then it will be freed.
6569 */
6570void free_netdev(struct net_device *dev)
6571{
Herbert Xud565b0a2008-12-15 23:38:52 -08006572 struct napi_struct *p, *n;
6573
Denis V. Lunevf3005d72008-04-16 02:02:18 -07006574 release_net(dev_net(dev));
6575
Eric Dumazet60877a32013-06-20 01:15:51 -07006576 netif_free_tx_queues(dev);
Michael Daltona953be52014-01-16 22:23:28 -08006577#ifdef CONFIG_SYSFS
Tom Herbertfe822242010-11-09 10:47:38 +00006578 kfree(dev->_rx);
6579#endif
David S. Millere8a04642008-07-17 00:34:19 -07006580
Eric Dumazet33d480c2011-08-11 19:30:52 +00006581 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00006582
Jiri Pirkof001fde2009-05-05 02:48:28 +00006583 /* Flush device addresses */
6584 dev_addr_flush(dev);
6585
Herbert Xud565b0a2008-12-15 23:38:52 -08006586 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
6587 netif_napi_del(p);
6588
Eric Dumazet29b44332010-10-11 10:22:12 +00006589 free_percpu(dev->pcpu_refcnt);
6590 dev->pcpu_refcnt = NULL;
6591
Stephen Hemminger3041a062006-05-26 13:25:24 -07006592 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006593 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07006594 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006595 return;
6596 }
6597
6598 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
6599 dev->reg_state = NETREG_RELEASED;
6600
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07006601 /* will free via device release */
6602 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006603}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006604EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006605
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006606/**
6607 * synchronize_net - Synchronize with packet receive processing
6608 *
6609 * Wait for packets currently being received to be done.
6610 * Does not block later packets from starting.
6611 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006612void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006613{
6614 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00006615 if (rtnl_is_locked())
6616 synchronize_rcu_expedited();
6617 else
6618 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006619}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006620EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621
6622/**
Eric Dumazet44a08732009-10-27 07:03:04 +00006623 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07006624 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00006625 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08006626 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08006628 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00006629 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006630 *
6631 * Callers must hold the rtnl semaphore. You may want
6632 * unregister_netdev() instead of this.
6633 */
6634
Eric Dumazet44a08732009-10-27 07:03:04 +00006635void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006636{
Herbert Xua6620712007-12-12 19:21:56 -08006637 ASSERT_RTNL();
6638
Eric Dumazet44a08732009-10-27 07:03:04 +00006639 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00006640 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00006641 } else {
6642 rollback_registered(dev);
6643 /* Finish processing unregister after unlock */
6644 net_set_todo(dev);
6645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006646}
Eric Dumazet44a08732009-10-27 07:03:04 +00006647EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006648
6649/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006650 * unregister_netdevice_many - unregister many devices
6651 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07006652 *
6653 * Note: As most callers use a stack allocated list_head,
6654 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006655 */
6656void unregister_netdevice_many(struct list_head *head)
6657{
6658 struct net_device *dev;
6659
6660 if (!list_empty(head)) {
6661 rollback_registered_many(head);
6662 list_for_each_entry(dev, head, unreg_list)
6663 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07006664 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006665 }
6666}
Eric Dumazet63c80992009-10-27 07:06:49 +00006667EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006668
6669/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006670 * unregister_netdev - remove device from the kernel
6671 * @dev: device
6672 *
6673 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08006674 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006675 *
6676 * This is just a wrapper for unregister_netdevice that takes
6677 * the rtnl semaphore. In general you want to use this and not
6678 * unregister_netdevice.
6679 */
6680void unregister_netdev(struct net_device *dev)
6681{
6682 rtnl_lock();
6683 unregister_netdevice(dev);
6684 rtnl_unlock();
6685}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006686EXPORT_SYMBOL(unregister_netdev);
6687
Eric W. Biedermance286d32007-09-12 13:53:49 +02006688/**
6689 * dev_change_net_namespace - move device to different nethost namespace
6690 * @dev: device
6691 * @net: network namespace
6692 * @pat: If not NULL name pattern to try if the current device name
6693 * is already taken in the destination network namespace.
6694 *
6695 * This function shuts down a device interface and moves it
6696 * to a new network namespace. On success 0 is returned, on
6697 * a failure a netagive errno code is returned.
6698 *
6699 * Callers must hold the rtnl semaphore.
6700 */
6701
6702int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
6703{
Eric W. Biedermance286d32007-09-12 13:53:49 +02006704 int err;
6705
6706 ASSERT_RTNL();
6707
6708 /* Don't allow namespace local devices to be moved. */
6709 err = -EINVAL;
6710 if (dev->features & NETIF_F_NETNS_LOCAL)
6711 goto out;
6712
6713 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02006714 if (dev->reg_state != NETREG_REGISTERED)
6715 goto out;
6716
6717 /* Get out if there is nothing todo */
6718 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09006719 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02006720 goto out;
6721
6722 /* Pick the destination device name, and ensure
6723 * we can use it in the destination network namespace.
6724 */
6725 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00006726 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02006727 /* We get here if we can't use the current device name */
6728 if (!pat)
6729 goto out;
Gao feng828de4f2012-09-13 20:58:27 +00006730 if (dev_get_valid_name(net, dev, pat) < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02006731 goto out;
6732 }
6733
6734 /*
6735 * And now a mini version of register_netdevice unregister_netdevice.
6736 */
6737
6738 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07006739 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006740
6741 /* And unlink it from device chain */
6742 err = -ENODEV;
6743 unlist_netdevice(dev);
6744
6745 synchronize_net();
6746
6747 /* Shutdown queueing discipline. */
6748 dev_shutdown(dev);
6749
6750 /* Notify protocols, that we are about to destroy
6751 this device. They should clean all the things.
David Lamparter3b27e102010-09-17 03:22:19 +00006752
6753 Note that dev->reg_state stays at NETREG_REGISTERED.
6754 This is wanted because this way 8021q and macvlan know
6755 the device is just moving and can keep their slaves up.
Eric W. Biedermance286d32007-09-12 13:53:49 +02006756 */
6757 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00006758 rcu_barrier();
6759 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006760 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006761
6762 /*
6763 * Flush the unicast and multicast chains
6764 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006765 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00006766 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006767
Serge Hallyn4e66ae22012-12-03 16:17:12 +00006768 /* Send a netdev-removed uevent to the old namespace */
6769 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
6770
Eric W. Biedermance286d32007-09-12 13:53:49 +02006771 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09006772 dev_net_set(dev, net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006773
Eric W. Biedermance286d32007-09-12 13:53:49 +02006774 /* If there is an ifindex conflict assign a new one */
6775 if (__dev_get_by_index(net, dev->ifindex)) {
6776 int iflink = (dev->iflink == dev->ifindex);
6777 dev->ifindex = dev_new_index(net);
6778 if (iflink)
6779 dev->iflink = dev->ifindex;
6780 }
6781
Serge Hallyn4e66ae22012-12-03 16:17:12 +00006782 /* Send a netdev-add uevent to the new namespace */
6783 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
6784
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006785 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07006786 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006787 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006788
6789 /* Add the device back in the hashes */
6790 list_netdevice(dev);
6791
6792 /* Notify protocols, that a new device appeared. */
6793 call_netdevice_notifiers(NETDEV_REGISTER, dev);
6794
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006795 /*
6796 * Prevent userspace races by waiting until the network
6797 * device is fully setup before sending notifications.
6798 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006799 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006800
Eric W. Biedermance286d32007-09-12 13:53:49 +02006801 synchronize_net();
6802 err = 0;
6803out:
6804 return err;
6805}
Johannes Berg463d0182009-07-14 00:33:35 +02006806EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006807
Linus Torvalds1da177e2005-04-16 15:20:36 -07006808static int dev_cpu_callback(struct notifier_block *nfb,
6809 unsigned long action,
6810 void *ocpu)
6811{
6812 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006813 struct sk_buff *skb;
6814 unsigned int cpu, oldcpu = (unsigned long)ocpu;
6815 struct softnet_data *sd, *oldsd;
6816
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006817 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006818 return NOTIFY_OK;
6819
6820 local_irq_disable();
6821 cpu = smp_processor_id();
6822 sd = &per_cpu(softnet_data, cpu);
6823 oldsd = &per_cpu(softnet_data, oldcpu);
6824
6825 /* Find end of our completion_queue. */
6826 list_skb = &sd->completion_queue;
6827 while (*list_skb)
6828 list_skb = &(*list_skb)->next;
6829 /* Append completion queue from offline CPU. */
6830 *list_skb = oldsd->completion_queue;
6831 oldsd->completion_queue = NULL;
6832
Linus Torvalds1da177e2005-04-16 15:20:36 -07006833 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00006834 if (oldsd->output_queue) {
6835 *sd->output_queue_tailp = oldsd->output_queue;
6836 sd->output_queue_tailp = oldsd->output_queue_tailp;
6837 oldsd->output_queue = NULL;
6838 oldsd->output_queue_tailp = &oldsd->output_queue;
6839 }
Heiko Carstens264524d2011-06-06 20:50:03 +00006840 /* Append NAPI poll list from offline CPU. */
6841 if (!list_empty(&oldsd->poll_list)) {
6842 list_splice_init(&oldsd->poll_list, &sd->poll_list);
6843 raise_softirq_irqoff(NET_RX_SOFTIRQ);
6844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006845
6846 raise_softirq_irqoff(NET_TX_SOFTIRQ);
6847 local_irq_enable();
6848
6849 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00006850 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006851 netif_rx_internal(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00006852 input_queue_head_incr(oldsd);
6853 }
Tom Herbertfec5e652010-04-16 16:01:27 -07006854 while ((skb = __skb_dequeue(&oldsd->input_pkt_queue))) {
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006855 netif_rx_internal(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00006856 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07006857 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006858
6859 return NOTIFY_OK;
6860}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006861
6862
Herbert Xu7f353bf2007-08-10 15:47:58 -07006863/**
Herbert Xub63365a2008-10-23 01:11:29 -07006864 * netdev_increment_features - increment feature set by one
6865 * @all: current feature set
6866 * @one: new feature set
6867 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07006868 *
6869 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07006870 * @one to the master device with current feature set @all. Will not
6871 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07006872 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006873netdev_features_t netdev_increment_features(netdev_features_t all,
6874 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07006875{
Michał Mirosław1742f182011-04-22 06:31:16 +00006876 if (mask & NETIF_F_GEN_CSUM)
6877 mask |= NETIF_F_ALL_CSUM;
6878 mask |= NETIF_F_VLAN_CHALLENGED;
6879
6880 all |= one & (NETIF_F_ONE_FOR_ALL|NETIF_F_ALL_CSUM) & mask;
6881 all &= one | ~NETIF_F_ALL_FOR_ALL;
6882
Michał Mirosław1742f182011-04-22 06:31:16 +00006883 /* If one device supports hw checksumming, set for all. */
6884 if (all & NETIF_F_GEN_CSUM)
6885 all &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_GEN_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07006886
6887 return all;
6888}
Herbert Xub63365a2008-10-23 01:11:29 -07006889EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07006890
Baruch Siach430f03c2013-06-02 20:43:55 +00006891static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006892{
6893 int i;
6894 struct hlist_head *hash;
6895
6896 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
6897 if (hash != NULL)
6898 for (i = 0; i < NETDEV_HASHENTRIES; i++)
6899 INIT_HLIST_HEAD(&hash[i]);
6900
6901 return hash;
6902}
6903
Eric W. Biederman881d9662007-09-17 11:56:21 -07006904/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07006905static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07006906{
Rustad, Mark D734b6542012-07-18 09:06:07 +00006907 if (net != &init_net)
6908 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07006909
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006910 net->dev_name_head = netdev_create_hash();
6911 if (net->dev_name_head == NULL)
6912 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006913
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006914 net->dev_index_head = netdev_create_hash();
6915 if (net->dev_index_head == NULL)
6916 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006917
6918 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006919
6920err_idx:
6921 kfree(net->dev_name_head);
6922err_name:
6923 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006924}
6925
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006926/**
6927 * netdev_drivername - network driver for the device
6928 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006929 *
6930 * Determine network driver for device.
6931 */
David S. Miller3019de12011-06-06 16:41:33 -07006932const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07006933{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07006934 const struct device_driver *driver;
6935 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07006936 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07006937
6938 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07006939 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07006940 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07006941
6942 driver = parent->driver;
6943 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07006944 return driver->name;
6945 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07006946}
6947
Joe Perchesb004ff42012-09-12 20:12:19 -07006948static int __netdev_printk(const char *level, const struct net_device *dev,
Joe Perches256df2f2010-06-27 01:02:35 +00006949 struct va_format *vaf)
6950{
6951 int r;
6952
Joe Perchesb004ff42012-09-12 20:12:19 -07006953 if (dev && dev->dev.parent) {
Joe Perches666f3552012-09-12 20:14:11 -07006954 r = dev_printk_emit(level[1] - '0',
6955 dev->dev.parent,
Veaceslav Falicoccc7f492014-07-17 19:46:10 +02006956 "%s %s %s%s: %pV",
Joe Perches666f3552012-09-12 20:14:11 -07006957 dev_driver_string(dev->dev.parent),
6958 dev_name(dev->dev.parent),
Veaceslav Falicoccc7f492014-07-17 19:46:10 +02006959 netdev_name(dev), netdev_reg_state(dev),
6960 vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07006961 } else if (dev) {
Veaceslav Falicoccc7f492014-07-17 19:46:10 +02006962 r = printk("%s%s%s: %pV", level, netdev_name(dev),
6963 netdev_reg_state(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07006964 } else {
Joe Perches256df2f2010-06-27 01:02:35 +00006965 r = printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07006966 }
Joe Perches256df2f2010-06-27 01:02:35 +00006967
6968 return r;
6969}
6970
6971int netdev_printk(const char *level, const struct net_device *dev,
6972 const char *format, ...)
6973{
6974 struct va_format vaf;
6975 va_list args;
6976 int r;
6977
6978 va_start(args, format);
6979
6980 vaf.fmt = format;
6981 vaf.va = &args;
6982
6983 r = __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07006984
Joe Perches256df2f2010-06-27 01:02:35 +00006985 va_end(args);
6986
6987 return r;
6988}
6989EXPORT_SYMBOL(netdev_printk);
6990
6991#define define_netdev_printk_level(func, level) \
6992int func(const struct net_device *dev, const char *fmt, ...) \
6993{ \
6994 int r; \
6995 struct va_format vaf; \
6996 va_list args; \
6997 \
6998 va_start(args, fmt); \
6999 \
7000 vaf.fmt = fmt; \
7001 vaf.va = &args; \
7002 \
7003 r = __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07007004 \
Joe Perches256df2f2010-06-27 01:02:35 +00007005 va_end(args); \
7006 \
7007 return r; \
7008} \
7009EXPORT_SYMBOL(func);
7010
7011define_netdev_printk_level(netdev_emerg, KERN_EMERG);
7012define_netdev_printk_level(netdev_alert, KERN_ALERT);
7013define_netdev_printk_level(netdev_crit, KERN_CRIT);
7014define_netdev_printk_level(netdev_err, KERN_ERR);
7015define_netdev_printk_level(netdev_warn, KERN_WARNING);
7016define_netdev_printk_level(netdev_notice, KERN_NOTICE);
7017define_netdev_printk_level(netdev_info, KERN_INFO);
7018
Pavel Emelyanov46650792007-10-08 20:38:39 -07007019static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07007020{
7021 kfree(net->dev_name_head);
7022 kfree(net->dev_index_head);
7023}
7024
Denis V. Lunev022cbae2007-11-13 03:23:50 -08007025static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07007026 .init = netdev_init,
7027 .exit = netdev_exit,
7028};
7029
Pavel Emelyanov46650792007-10-08 20:38:39 -07007030static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02007031{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007032 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02007033 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007034 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02007035 * initial network namespace
7036 */
7037 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007038 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007039 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007040 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02007041
7042 /* Ignore unmoveable devices (i.e. loopback) */
7043 if (dev->features & NETIF_F_NETNS_LOCAL)
7044 continue;
7045
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007046 /* Leave virtual devices for the generic cleanup */
7047 if (dev->rtnl_link_ops)
7048 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08007049
Lucas De Marchi25985ed2011-03-30 22:57:33 -03007050 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007051 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
7052 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007053 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007054 pr_emerg("%s: failed to move %s to init_net: %d\n",
7055 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007056 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02007057 }
7058 }
7059 rtnl_unlock();
7060}
7061
Eric W. Biederman50624c92013-09-23 21:19:49 -07007062static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
7063{
7064 /* Return with the rtnl_lock held when there are no network
7065 * devices unregistering in any network namespace in net_list.
7066 */
7067 struct net *net;
7068 bool unregistering;
7069 DEFINE_WAIT(wait);
7070
7071 for (;;) {
7072 prepare_to_wait(&netdev_unregistering_wq, &wait,
7073 TASK_UNINTERRUPTIBLE);
7074 unregistering = false;
7075 rtnl_lock();
7076 list_for_each_entry(net, net_list, exit_list) {
7077 if (net->dev_unreg_count > 0) {
7078 unregistering = true;
7079 break;
7080 }
7081 }
7082 if (!unregistering)
7083 break;
7084 __rtnl_unlock();
7085 schedule();
7086 }
7087 finish_wait(&netdev_unregistering_wq, &wait);
7088}
7089
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007090static void __net_exit default_device_exit_batch(struct list_head *net_list)
7091{
7092 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04007093 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007094 * Do this across as many network namespaces as possible to
7095 * improve batching efficiency.
7096 */
7097 struct net_device *dev;
7098 struct net *net;
7099 LIST_HEAD(dev_kill_list);
7100
Eric W. Biederman50624c92013-09-23 21:19:49 -07007101 /* To prevent network device cleanup code from dereferencing
7102 * loopback devices or network devices that have been freed
7103 * wait here for all pending unregistrations to complete,
7104 * before unregistring the loopback device and allowing the
7105 * network namespace be freed.
7106 *
7107 * The netdev todo list containing all network devices
7108 * unregistrations that happen in default_device_exit_batch
7109 * will run in the rtnl_unlock() at the end of
7110 * default_device_exit_batch.
7111 */
7112 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007113 list_for_each_entry(net, net_list, exit_list) {
7114 for_each_netdev_reverse(net, dev) {
Jiri Pirkob0ab2fa2014-06-26 09:58:25 +02007115 if (dev->rtnl_link_ops && dev->rtnl_link_ops->dellink)
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007116 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
7117 else
7118 unregister_netdevice_queue(dev, &dev_kill_list);
7119 }
7120 }
7121 unregister_netdevice_many(&dev_kill_list);
7122 rtnl_unlock();
7123}
7124
Denis V. Lunev022cbae2007-11-13 03:23:50 -08007125static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007126 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007127 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02007128};
7129
Linus Torvalds1da177e2005-04-16 15:20:36 -07007130/*
7131 * Initialize the DEV module. At boot time this walks the device list and
7132 * unhooks any devices that fail to initialise (normally hardware not
7133 * present) and leaves us with a valid list of present and active devices.
7134 *
7135 */
7136
7137/*
7138 * This is called single threaded during boot, so no need
7139 * to take the rtnl semaphore.
7140 */
7141static int __init net_dev_init(void)
7142{
7143 int i, rc = -ENOMEM;
7144
7145 BUG_ON(!dev_boot_phase);
7146
Linus Torvalds1da177e2005-04-16 15:20:36 -07007147 if (dev_proc_init())
7148 goto out;
7149
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007150 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07007151 goto out;
7152
7153 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08007154 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007155 INIT_LIST_HEAD(&ptype_base[i]);
7156
Vlad Yasevich62532da2012-11-15 08:49:10 +00007157 INIT_LIST_HEAD(&offload_base);
7158
Eric W. Biederman881d9662007-09-17 11:56:21 -07007159 if (register_pernet_subsys(&netdev_net_ops))
7160 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007161
7162 /*
7163 * Initialise the packet receive queues.
7164 */
7165
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07007166 for_each_possible_cpu(i) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007167 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007168
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007169 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07007170 skb_queue_head_init(&sd->process_queue);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007171 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00007172 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00007173#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007174 sd->csd.func = rps_trigger_softirq;
7175 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007176 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07007177#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00007178
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007179 sd->backlog.poll = process_backlog;
7180 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007181 }
7182
Linus Torvalds1da177e2005-04-16 15:20:36 -07007183 dev_boot_phase = 0;
7184
Eric W. Biederman505d4f72008-11-07 22:54:20 -08007185 /* The loopback device is special if any other network devices
7186 * is present in a network namespace the loopback device must
7187 * be present. Since we now dynamically allocate and free the
7188 * loopback device ensure this invariant is maintained by
7189 * keeping the loopback device as the first device on the
7190 * list of network devices. Ensuring the loopback devices
7191 * is the first device that appears and the last network device
7192 * that disappears.
7193 */
7194 if (register_pernet_device(&loopback_net_ops))
7195 goto out;
7196
7197 if (register_pernet_device(&default_device_ops))
7198 goto out;
7199
Carlos R. Mafra962cf362008-05-15 11:15:37 -03007200 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
7201 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007202
7203 hotcpu_notifier(dev_cpu_callback, 0);
7204 dst_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007205 rc = 0;
7206out:
7207 return rc;
7208}
7209
7210subsys_initcall(net_dev_init);