blob: 7990984ca364093f77964d3ac1bbfcbc8f366595 [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{
Herbert Xufcc5a032007-07-30 17:03:38 -07001088 char oldname[IFNAMSIZ];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 int err = 0;
Herbert Xufcc5a032007-07-30 17:03:38 -07001090 int ret;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001091 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 ASSERT_RTNL();
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001094 BUG_ON(!dev_net(dev));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09001096 net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 if (dev->flags & IFF_UP)
1098 return -EBUSY;
1099
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001100 write_seqcount_begin(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001101
1102 if (strncmp(newname, dev->name, IFNAMSIZ) == 0) {
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001103 write_seqcount_end(&devnet_rename_seq);
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001104 return 0;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001105 }
Stephen Hemmingerc8d90dc2007-10-26 03:53:42 -07001106
Herbert Xufcc5a032007-07-30 17:03:38 -07001107 memcpy(oldname, dev->name, IFNAMSIZ);
1108
Gao feng828de4f2012-09-13 20:58:27 +00001109 err = dev_get_valid_name(net, dev, newname);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001110 if (err < 0) {
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001111 write_seqcount_end(&devnet_rename_seq);
Octavian Purdilad9031022009-11-18 02:36:59 +00001112 return err;
Brian Haleyc91f6df2012-11-26 05:21:08 +00001113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114
Herbert Xufcc5a032007-07-30 17:03:38 -07001115rollback:
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001116 ret = device_rename(&dev->dev, dev->name);
1117 if (ret) {
1118 memcpy(dev->name, oldname, IFNAMSIZ);
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001119 write_seqcount_end(&devnet_rename_seq);
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07001120 return ret;
Stephen Hemmingerdcc99772008-05-14 22:33:38 -07001121 }
Herbert Xu7f988ea2007-07-30 16:35:46 -07001122
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001123 write_seqcount_end(&devnet_rename_seq);
Brian Haleyc91f6df2012-11-26 05:21:08 +00001124
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001125 netdev_adjacent_rename_links(dev, oldname);
1126
Herbert Xu7f988ea2007-07-30 16:35:46 -07001127 write_lock_bh(&dev_base_lock);
Eric Dumazet372b2312011-05-17 13:56:59 -04001128 hlist_del_rcu(&dev->name_hlist);
Eric Dumazet72c95282009-10-30 07:11:27 +00001129 write_unlock_bh(&dev_base_lock);
1130
1131 synchronize_rcu();
1132
1133 write_lock_bh(&dev_base_lock);
1134 hlist_add_head_rcu(&dev->name_hlist, dev_name_hash(net, dev->name));
Herbert Xu7f988ea2007-07-30 16:35:46 -07001135 write_unlock_bh(&dev_base_lock);
1136
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001137 ret = call_netdevice_notifiers(NETDEV_CHANGENAME, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001138 ret = notifier_to_errno(ret);
1139
1140 if (ret) {
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001141 /* err >= 0 after dev_alloc_name() or stores the first errno */
1142 if (err >= 0) {
Herbert Xufcc5a032007-07-30 17:03:38 -07001143 err = ret;
Eric Dumazet30e6c9f2012-12-20 17:25:08 +00001144 write_seqcount_begin(&devnet_rename_seq);
Herbert Xufcc5a032007-07-30 17:03:38 -07001145 memcpy(dev->name, oldname, IFNAMSIZ);
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01001146 memcpy(oldname, newname, IFNAMSIZ);
Herbert Xufcc5a032007-07-30 17:03:38 -07001147 goto rollback;
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001148 } else {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001149 pr_err("%s: name change rollback failed: %d\n",
Eric Dumazet91e9c07b2009-11-15 23:30:24 +00001150 dev->name, ret);
Herbert Xufcc5a032007-07-30 17:03:38 -07001151 }
1152 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
1154 return err;
1155}
1156
1157/**
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001158 * dev_set_alias - change ifalias of a device
1159 * @dev: device
1160 * @alias: name up to IFALIASZ
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07001161 * @len: limit of bytes to copy from info
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001162 *
1163 * Set ifalias for a device,
1164 */
1165int dev_set_alias(struct net_device *dev, const char *alias, size_t len)
1166{
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001167 char *new_ifalias;
1168
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001169 ASSERT_RTNL();
1170
1171 if (len >= IFALIASZ)
1172 return -EINVAL;
1173
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001174 if (!len) {
Sachin Kamat388dfc22012-11-20 00:57:04 +00001175 kfree(dev->ifalias);
1176 dev->ifalias = NULL;
Oliver Hartkopp96ca4a22008-09-23 21:23:19 -07001177 return 0;
1178 }
1179
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001180 new_ifalias = krealloc(dev->ifalias, len + 1, GFP_KERNEL);
1181 if (!new_ifalias)
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001182 return -ENOMEM;
Alexey Khoroshilov7364e442012-08-08 00:33:25 +00001183 dev->ifalias = new_ifalias;
Stephen Hemminger0b815a12008-09-22 21:28:11 -07001184
1185 strlcpy(dev->ifalias, alias, len+1);
1186 return len;
1187}
1188
1189
1190/**
Stephen Hemminger3041a062006-05-26 13:25:24 -07001191 * netdev_features_change - device changes features
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001192 * @dev: device to cause notification
1193 *
1194 * Called to indicate a device has changed features.
1195 */
1196void netdev_features_change(struct net_device *dev)
1197{
Pavel Emelyanov056925a2007-09-16 15:42:43 -07001198 call_netdevice_notifiers(NETDEV_FEAT_CHANGE, dev);
Stephen Hemmingerd8a33ac2005-05-29 14:13:47 -07001199}
1200EXPORT_SYMBOL(netdev_features_change);
1201
1202/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 * netdev_state_change - device changes state
1204 * @dev: device to cause notification
1205 *
1206 * Called to indicate a device has changed state. This function calls
1207 * the notifier chains for netdev_chain and sends a NEWLINK message
1208 * to the routing socket.
1209 */
1210void netdev_state_change(struct net_device *dev)
1211{
1212 if (dev->flags & IFF_UP) {
Loic Prylli5495119462014-07-01 21:39:43 -07001213 struct netdev_notifier_change_info change_info;
1214
1215 change_info.flags_changed = 0;
1216 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
1217 &change_info.info);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001218 rtmsg_ifinfo(RTM_NEWLINK, dev, 0, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219 }
1220}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001221EXPORT_SYMBOL(netdev_state_change);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
Amerigo Wangee89bab2012-08-09 22:14:56 +00001223/**
1224 * netdev_notify_peers - notify network peers about existence of @dev
1225 * @dev: network device
1226 *
1227 * Generate traffic such that interested network peers are aware of
1228 * @dev, such as by generating a gratuitous ARP. This may be used when
1229 * a device wants to inform the rest of the network about some sort of
1230 * reconfiguration such as a failover event or virtual machine
1231 * migration.
1232 */
1233void netdev_notify_peers(struct net_device *dev)
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001234{
Amerigo Wangee89bab2012-08-09 22:14:56 +00001235 rtnl_lock();
1236 call_netdevice_notifiers(NETDEV_NOTIFY_PEERS, dev);
1237 rtnl_unlock();
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001238}
Amerigo Wangee89bab2012-08-09 22:14:56 +00001239EXPORT_SYMBOL(netdev_notify_peers);
Or Gerlitzc1da4ac2008-06-13 18:12:00 -07001240
Patrick McHardybd380812010-02-26 06:34:53 +00001241static int __dev_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001243 const struct net_device_ops *ops = dev->netdev_ops;
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001244 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001246 ASSERT_RTNL();
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 if (!netif_device_present(dev))
1249 return -ENODEV;
1250
Neil Hormanca99ca12013-02-05 08:05:43 +00001251 /* Block netpoll from trying to do any rx path servicing.
1252 * If we don't do this there is a chance ndo_poll_controller
1253 * or ndo_poll may be running while we open the device
1254 */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001255 netpoll_poll_disable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001256
Johannes Berg3b8bcfd2009-05-30 01:39:53 +02001257 ret = call_netdevice_notifiers(NETDEV_PRE_UP, dev);
1258 ret = notifier_to_errno(ret);
1259 if (ret)
1260 return ret;
1261
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262 set_bit(__LINK_STATE_START, &dev->state);
Jeff Garzikbada3392007-10-23 20:19:37 -07001263
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001264 if (ops->ndo_validate_addr)
1265 ret = ops->ndo_validate_addr(dev);
Jeff Garzikbada3392007-10-23 20:19:37 -07001266
Stephen Hemmingerd3147742008-11-19 21:32:24 -08001267 if (!ret && ops->ndo_open)
1268 ret = ops->ndo_open(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269
Eric W. Biederman66b55522014-03-27 15:39:03 -07001270 netpoll_poll_enable(dev);
Neil Hormanca99ca12013-02-05 08:05:43 +00001271
Jeff Garzikbada3392007-10-23 20:19:37 -07001272 if (ret)
1273 clear_bit(__LINK_STATE_START, &dev->state);
1274 else {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 dev->flags |= IFF_UP;
David S. Millerb4bd07c2009-02-06 22:06:43 -08001276 net_dmaengine_get();
Patrick McHardy4417da62007-06-27 01:28:10 -07001277 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 dev_activate(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04001279 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
Jeff Garzikbada3392007-10-23 20:19:37 -07001281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 return ret;
1283}
Patrick McHardybd380812010-02-26 06:34:53 +00001284
1285/**
1286 * dev_open - prepare an interface for use.
1287 * @dev: device to open
1288 *
1289 * Takes a device from down to up state. The device's private open
1290 * function is invoked and then the multicast lists are loaded. Finally
1291 * the device is moved into the up state and a %NETDEV_UP message is
1292 * sent to the netdev notifier chain.
1293 *
1294 * Calling this function on an active interface is a nop. On a failure
1295 * a negative errno code is returned.
1296 */
1297int dev_open(struct net_device *dev)
1298{
1299 int ret;
1300
Patrick McHardybd380812010-02-26 06:34:53 +00001301 if (dev->flags & IFF_UP)
1302 return 0;
1303
Patrick McHardybd380812010-02-26 06:34:53 +00001304 ret = __dev_open(dev);
1305 if (ret < 0)
1306 return ret;
1307
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001308 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Patrick McHardybd380812010-02-26 06:34:53 +00001309 call_netdevice_notifiers(NETDEV_UP, dev);
1310
1311 return ret;
1312}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001313EXPORT_SYMBOL(dev_open);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314
Octavian Purdila44345722010-12-13 12:44:07 +00001315static int __dev_close_many(struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316{
Octavian Purdila44345722010-12-13 12:44:07 +00001317 struct net_device *dev;
Patrick McHardybd380812010-02-26 06:34:53 +00001318
Ben Hutchingse46b66b2008-05-08 02:53:17 -07001319 ASSERT_RTNL();
David S. Miller9d5010d2007-09-12 14:33:25 +02001320 might_sleep();
1321
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001322 list_for_each_entry(dev, head, close_list) {
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001323 /* Temporarily disable netpoll until the interface is down */
Eric W. Biederman66b55522014-03-27 15:39:03 -07001324 netpoll_poll_disable(dev);
Eric W. Biederman3f4df202014-03-27 15:38:17 -07001325
Octavian Purdila44345722010-12-13 12:44:07 +00001326 call_netdevice_notifiers(NETDEV_GOING_DOWN, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Octavian Purdila44345722010-12-13 12:44:07 +00001328 clear_bit(__LINK_STATE_START, &dev->state);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
Octavian Purdila44345722010-12-13 12:44:07 +00001330 /* Synchronize to scheduled poll. We cannot touch poll list, it
1331 * can be even on different cpu. So just clear netif_running().
1332 *
1333 * dev->stop() will invoke napi_disable() on all of it's
1334 * napi_struct instances on this device.
1335 */
Peter Zijlstra4e857c52014-03-17 18:06:10 +01001336 smp_mb__after_atomic(); /* Commit netif_running(). */
Octavian Purdila44345722010-12-13 12:44:07 +00001337 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
Octavian Purdila44345722010-12-13 12:44:07 +00001339 dev_deactivate_many(head);
1340
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001341 list_for_each_entry(dev, head, close_list) {
Octavian Purdila44345722010-12-13 12:44:07 +00001342 const struct net_device_ops *ops = dev->netdev_ops;
1343
1344 /*
1345 * Call the device specific close. This cannot fail.
1346 * Only if device is UP
1347 *
1348 * We allow it to be called even after a DETACH hot-plug
1349 * event.
1350 */
1351 if (ops->ndo_stop)
1352 ops->ndo_stop(dev);
1353
Octavian Purdila44345722010-12-13 12:44:07 +00001354 dev->flags &= ~IFF_UP;
Octavian Purdila44345722010-12-13 12:44:07 +00001355 net_dmaengine_put();
Eric W. Biederman66b55522014-03-27 15:39:03 -07001356 netpoll_poll_enable(dev);
Octavian Purdila44345722010-12-13 12:44:07 +00001357 }
1358
1359 return 0;
1360}
1361
1362static int __dev_close(struct net_device *dev)
1363{
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001364 int retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001365 LIST_HEAD(single);
1366
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001367 list_add(&dev->close_list, &single);
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001368 retval = __dev_close_many(&single);
1369 list_del(&single);
Neil Hormanca99ca12013-02-05 08:05:43 +00001370
Linus Torvaldsf87e6f42011-02-17 22:54:38 +00001371 return retval;
Octavian Purdila44345722010-12-13 12:44:07 +00001372}
1373
Eric Dumazet3fbd8752011-01-19 21:23:22 +00001374static int dev_close_many(struct list_head *head)
Octavian Purdila44345722010-12-13 12:44:07 +00001375{
1376 struct net_device *dev, *tmp;
Octavian Purdila44345722010-12-13 12:44:07 +00001377
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001378 /* Remove the devices that don't need to be closed */
1379 list_for_each_entry_safe(dev, tmp, head, close_list)
Octavian Purdila44345722010-12-13 12:44:07 +00001380 if (!(dev->flags & IFF_UP))
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001381 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001382
1383 __dev_close_many(head);
Matti Linnanvuorid8b2a4d2008-02-12 23:10:11 -08001384
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001385 list_for_each_entry_safe(dev, tmp, head, close_list) {
Alexei Starovoitov7f294052013-10-23 16:02:42 -07001386 rtmsg_ifinfo(RTM_NEWLINK, dev, IFF_UP|IFF_RUNNING, GFP_KERNEL);
Octavian Purdila44345722010-12-13 12:44:07 +00001387 call_netdevice_notifiers(NETDEV_DOWN, dev);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001388 list_del_init(&dev->close_list);
Octavian Purdila44345722010-12-13 12:44:07 +00001389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391 return 0;
1392}
Patrick McHardybd380812010-02-26 06:34:53 +00001393
1394/**
1395 * dev_close - shutdown an interface.
1396 * @dev: device to shutdown
1397 *
1398 * This function moves an active device into down state. A
1399 * %NETDEV_GOING_DOWN is sent to the netdev notifier chain. The device
1400 * is then deactivated and finally a %NETDEV_DOWN is sent to the notifier
1401 * chain.
1402 */
1403int dev_close(struct net_device *dev)
1404{
Eric Dumazete14a5992011-05-10 12:26:06 -07001405 if (dev->flags & IFF_UP) {
1406 LIST_HEAD(single);
Patrick McHardybd380812010-02-26 06:34:53 +00001407
Eric W. Biederman5cde2822013-10-05 19:26:05 -07001408 list_add(&dev->close_list, &single);
Eric Dumazete14a5992011-05-10 12:26:06 -07001409 dev_close_many(&single);
1410 list_del(&single);
1411 }
dingtianhongda6e3782013-05-27 19:53:31 +00001412 return 0;
Patrick McHardybd380812010-02-26 06:34:53 +00001413}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001414EXPORT_SYMBOL(dev_close);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001417/**
1418 * dev_disable_lro - disable Large Receive Offload on a device
1419 * @dev: device
1420 *
1421 * Disable Large Receive Offload (LRO) on a net device. Must be
1422 * called under RTNL. This is needed if received packets may be
1423 * forwarded to another interface.
1424 */
1425void dev_disable_lro(struct net_device *dev)
1426{
Neil Hormanf11970e2011-05-24 08:31:09 +00001427 /*
1428 * If we're trying to disable lro on a vlan device
1429 * use the underlying physical device instead
1430 */
1431 if (is_vlan_dev(dev))
1432 dev = vlan_dev_real_dev(dev);
1433
Michal Kubeček529d0482013-11-15 06:18:50 +01001434 /* the same for macvlan devices */
1435 if (netif_is_macvlan(dev))
1436 dev = macvlan_dev_real_dev(dev);
1437
Michał Mirosławbc5787c62011-11-15 15:29:55 +00001438 dev->wanted_features &= ~NETIF_F_LRO;
1439 netdev_update_features(dev);
Michał Mirosław27660512011-03-18 16:56:34 +00001440
Michał Mirosław22d59692011-04-21 12:42:15 +00001441 if (unlikely(dev->features & NETIF_F_LRO))
1442 netdev_WARN(dev, "failed to disable LRO!\n");
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001443}
1444EXPORT_SYMBOL(dev_disable_lro);
1445
Jiri Pirko351638e2013-05-28 01:30:21 +00001446static int call_netdevice_notifier(struct notifier_block *nb, unsigned long val,
1447 struct net_device *dev)
1448{
1449 struct netdev_notifier_info info;
1450
1451 netdev_notifier_info_init(&info, dev);
1452 return nb->notifier_call(nb, val, &info);
1453}
Ben Hutchings0187bdf2008-06-19 16:15:47 -07001454
Eric W. Biederman881d9662007-09-17 11:56:21 -07001455static int dev_boot_phase = 1;
1456
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457/**
1458 * register_netdevice_notifier - register a network notifier block
1459 * @nb: notifier
1460 *
1461 * Register a notifier to be called when network device events occur.
1462 * The notifier passed is linked into the kernel structures and must
1463 * not be reused until it has been unregistered. A negative errno code
1464 * is returned on a failure.
1465 *
1466 * When registered all registration and up events are replayed
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09001467 * to the new notifier to allow device to have a race free
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 * view of the network device list.
1469 */
1470
1471int register_netdevice_notifier(struct notifier_block *nb)
1472{
1473 struct net_device *dev;
Herbert Xufcc5a032007-07-30 17:03:38 -07001474 struct net_device *last;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001475 struct net *net;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 int err;
1477
1478 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001479 err = raw_notifier_chain_register(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001480 if (err)
1481 goto unlock;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001482 if (dev_boot_phase)
1483 goto unlock;
1484 for_each_net(net) {
1485 for_each_netdev(net, dev) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001486 err = call_netdevice_notifier(nb, NETDEV_REGISTER, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001487 err = notifier_to_errno(err);
1488 if (err)
1489 goto rollback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
Eric W. Biederman881d9662007-09-17 11:56:21 -07001491 if (!(dev->flags & IFF_UP))
1492 continue;
Herbert Xufcc5a032007-07-30 17:03:38 -07001493
Jiri Pirko351638e2013-05-28 01:30:21 +00001494 call_netdevice_notifier(nb, NETDEV_UP, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001497
1498unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 rtnl_unlock();
1500 return err;
Herbert Xufcc5a032007-07-30 17:03:38 -07001501
1502rollback:
1503 last = dev;
Eric W. Biederman881d9662007-09-17 11:56:21 -07001504 for_each_net(net) {
1505 for_each_netdev(net, dev) {
1506 if (dev == last)
RongQing.Li8f891482011-11-30 23:43:07 -05001507 goto outroll;
Herbert Xufcc5a032007-07-30 17:03:38 -07001508
Eric W. Biederman881d9662007-09-17 11:56:21 -07001509 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001510 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1511 dev);
1512 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman881d9662007-09-17 11:56:21 -07001513 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001514 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07001515 }
Herbert Xufcc5a032007-07-30 17:03:38 -07001516 }
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001517
RongQing.Li8f891482011-11-30 23:43:07 -05001518outroll:
Pavel Emelyanovc67625a2007-11-14 15:53:16 -08001519 raw_notifier_chain_unregister(&netdev_chain, nb);
Herbert Xufcc5a032007-07-30 17:03:38 -07001520 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001522EXPORT_SYMBOL(register_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523
1524/**
1525 * unregister_netdevice_notifier - unregister a network notifier block
1526 * @nb: notifier
1527 *
1528 * Unregister a notifier previously registered by
1529 * register_netdevice_notifier(). The notifier is unlinked into the
1530 * kernel structures and may then be reused. A negative errno code
1531 * is returned on a failure.
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001532 *
1533 * After unregistering unregister and down device events are synthesized
1534 * for all devices on the device list to the removed notifier to remove
1535 * the need for special case cleanup code.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 */
1537
1538int unregister_netdevice_notifier(struct notifier_block *nb)
1539{
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001540 struct net_device *dev;
1541 struct net *net;
Herbert Xu9f514952006-03-25 01:24:25 -08001542 int err;
1543
1544 rtnl_lock();
Alan Sternf07d5b92006-05-09 15:23:03 -07001545 err = raw_notifier_chain_unregister(&netdev_chain, nb);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001546 if (err)
1547 goto unlock;
1548
1549 for_each_net(net) {
1550 for_each_netdev(net, dev) {
1551 if (dev->flags & IFF_UP) {
Jiri Pirko351638e2013-05-28 01:30:21 +00001552 call_netdevice_notifier(nb, NETDEV_GOING_DOWN,
1553 dev);
1554 call_netdevice_notifier(nb, NETDEV_DOWN, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001555 }
Jiri Pirko351638e2013-05-28 01:30:21 +00001556 call_netdevice_notifier(nb, NETDEV_UNREGISTER, dev);
Eric W. Biederman7d3d43d2012-04-06 15:33:35 +00001557 }
1558 }
1559unlock:
Herbert Xu9f514952006-03-25 01:24:25 -08001560 rtnl_unlock();
1561 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001563EXPORT_SYMBOL(unregister_netdevice_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564
1565/**
Jiri Pirko351638e2013-05-28 01:30:21 +00001566 * call_netdevice_notifiers_info - call all network notifier blocks
1567 * @val: value passed unmodified to notifier function
1568 * @dev: net_device pointer passed unmodified to notifier function
1569 * @info: notifier information data
1570 *
1571 * Call all network notifier blocks. Parameters and return value
1572 * are as for raw_notifier_call_chain().
1573 */
1574
stephen hemminger1d143d92013-12-29 14:01:29 -08001575static int call_netdevice_notifiers_info(unsigned long val,
1576 struct net_device *dev,
1577 struct netdev_notifier_info *info)
Jiri Pirko351638e2013-05-28 01:30:21 +00001578{
1579 ASSERT_RTNL();
1580 netdev_notifier_info_init(info, dev);
1581 return raw_notifier_call_chain(&netdev_chain, val, info);
1582}
Jiri Pirko351638e2013-05-28 01:30:21 +00001583
1584/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 * call_netdevice_notifiers - call all network notifier blocks
1586 * @val: value passed unmodified to notifier function
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07001587 * @dev: net_device pointer passed unmodified to notifier function
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 *
1589 * Call all network notifier blocks. Parameters and return value
Alan Sternf07d5b92006-05-09 15:23:03 -07001590 * are as for raw_notifier_call_chain().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 */
1592
Eric W. Biedermanad7379d2007-09-16 15:33:32 -07001593int call_netdevice_notifiers(unsigned long val, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594{
Jiri Pirko351638e2013-05-28 01:30:21 +00001595 struct netdev_notifier_info info;
1596
1597 return call_netdevice_notifiers_info(val, dev, &info);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598}
stephen hemmingeredf947f2011-03-24 13:24:01 +00001599EXPORT_SYMBOL(call_netdevice_notifiers);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Ingo Molnarc5905af2012-02-24 08:31:31 +01001601static struct static_key netstamp_needed __read_mostly;
Eric Dumazetb90e5792011-11-28 11:16:50 +00001602#ifdef HAVE_JUMP_LABEL
Ingo Molnarc5905af2012-02-24 08:31:31 +01001603/* We are not allowed to call static_key_slow_dec() from irq context
Eric Dumazetb90e5792011-11-28 11:16:50 +00001604 * If net_disable_timestamp() is called from irq context, defer the
Ingo Molnarc5905af2012-02-24 08:31:31 +01001605 * static_key_slow_dec() calls.
Eric Dumazetb90e5792011-11-28 11:16:50 +00001606 */
1607static atomic_t netstamp_needed_deferred;
1608#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
1610void net_enable_timestamp(void)
1611{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001612#ifdef HAVE_JUMP_LABEL
1613 int deferred = atomic_xchg(&netstamp_needed_deferred, 0);
1614
1615 if (deferred) {
1616 while (--deferred)
Ingo Molnarc5905af2012-02-24 08:31:31 +01001617 static_key_slow_dec(&netstamp_needed);
Eric Dumazetb90e5792011-11-28 11:16:50 +00001618 return;
1619 }
1620#endif
Ingo Molnarc5905af2012-02-24 08:31:31 +01001621 static_key_slow_inc(&netstamp_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001623EXPORT_SYMBOL(net_enable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624
1625void net_disable_timestamp(void)
1626{
Eric Dumazetb90e5792011-11-28 11:16:50 +00001627#ifdef HAVE_JUMP_LABEL
1628 if (in_interrupt()) {
1629 atomic_inc(&netstamp_needed_deferred);
1630 return;
1631 }
1632#endif
Ingo Molnarc5905af2012-02-24 08:31:31 +01001633 static_key_slow_dec(&netstamp_needed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07001635EXPORT_SYMBOL(net_disable_timestamp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Eric Dumazet3b098e22010-05-15 23:57:10 -07001637static inline void net_timestamp_set(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638{
Eric Dumazet588f0332011-11-15 04:12:55 +00001639 skb->tstamp.tv64 = 0;
Ingo Molnarc5905af2012-02-24 08:31:31 +01001640 if (static_key_false(&netstamp_needed))
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001641 __net_timestamp(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642}
1643
Eric Dumazet588f0332011-11-15 04:12:55 +00001644#define net_timestamp_check(COND, SKB) \
Ingo Molnarc5905af2012-02-24 08:31:31 +01001645 if (static_key_false(&netstamp_needed)) { \
Eric Dumazet588f0332011-11-15 04:12:55 +00001646 if ((COND) && !(SKB)->tstamp.tv64) \
1647 __net_timestamp(SKB); \
1648 } \
Eric Dumazet3b098e22010-05-15 23:57:10 -07001649
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001650bool is_skb_forwardable(struct net_device *dev, struct sk_buff *skb)
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001651{
1652 unsigned int len;
1653
1654 if (!(dev->flags & IFF_UP))
1655 return false;
1656
1657 len = dev->mtu + dev->hard_header_len + VLAN_HLEN;
1658 if (skb->len <= len)
1659 return true;
1660
1661 /* if TSO is enabled, we don't care about the length as the packet
1662 * could be forwarded without being segmented before
1663 */
1664 if (skb_is_gso(skb))
1665 return true;
1666
1667 return false;
1668}
Vlad Yasevich1ee481f2014-03-27 17:32:29 -04001669EXPORT_SYMBOL_GPL(is_skb_forwardable);
Daniel Lezcano79b569f2011-03-30 02:42:17 -07001670
Herbert Xua0265d22014-04-17 13:45:03 +08001671int __dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1672{
1673 if (skb_shinfo(skb)->tx_flags & SKBTX_DEV_ZEROCOPY) {
1674 if (skb_copy_ubufs(skb, GFP_ATOMIC)) {
1675 atomic_long_inc(&dev->rx_dropped);
1676 kfree_skb(skb);
1677 return NET_RX_DROP;
1678 }
1679 }
1680
1681 if (unlikely(!is_skb_forwardable(dev, skb))) {
1682 atomic_long_inc(&dev->rx_dropped);
1683 kfree_skb(skb);
1684 return NET_RX_DROP;
1685 }
1686
1687 skb_scrub_packet(skb, true);
1688 skb->protocol = eth_type_trans(skb, dev);
1689
1690 return 0;
1691}
1692EXPORT_SYMBOL_GPL(__dev_forward_skb);
1693
Arnd Bergmann44540962009-11-26 06:07:08 +00001694/**
1695 * dev_forward_skb - loopback an skb to another netif
1696 *
1697 * @dev: destination network device
1698 * @skb: buffer to forward
1699 *
1700 * return values:
1701 * NET_RX_SUCCESS (no congestion)
Eric Dumazet6ec82562010-05-06 00:53:53 -07001702 * NET_RX_DROP (packet was dropped, but freed)
Arnd Bergmann44540962009-11-26 06:07:08 +00001703 *
1704 * dev_forward_skb can be used for injecting an skb from the
1705 * start_xmit function of one device into the receive queue
1706 * of another device.
1707 *
1708 * The receiving device may be in another namespace, so
1709 * we have to clear all information in the skb that could
1710 * impact namespace isolation.
1711 */
1712int dev_forward_skb(struct net_device *dev, struct sk_buff *skb)
1713{
Herbert Xua0265d22014-04-17 13:45:03 +08001714 return __dev_forward_skb(dev, skb) ?: netif_rx_internal(skb);
Arnd Bergmann44540962009-11-26 06:07:08 +00001715}
1716EXPORT_SYMBOL_GPL(dev_forward_skb);
1717
Changli Gao71d9dec2010-12-15 19:57:25 +00001718static inline int deliver_skb(struct sk_buff *skb,
1719 struct packet_type *pt_prev,
1720 struct net_device *orig_dev)
1721{
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00001722 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
1723 return -ENOMEM;
Changli Gao71d9dec2010-12-15 19:57:25 +00001724 atomic_inc(&skb->users);
1725 return pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
1726}
1727
Eric Leblondc0de08d2012-08-16 22:02:58 +00001728static inline bool skb_loop_sk(struct packet_type *ptype, struct sk_buff *skb)
1729{
Eric Leblonda3d744e2012-11-06 02:10:10 +00001730 if (!ptype->af_packet_priv || !skb->sk)
Eric Leblondc0de08d2012-08-16 22:02:58 +00001731 return false;
1732
1733 if (ptype->id_match)
1734 return ptype->id_match(ptype, skb->sk);
1735 else if ((struct sock *)ptype->af_packet_priv == skb->sk)
1736 return true;
1737
1738 return false;
1739}
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741/*
1742 * Support routine. Sends outgoing frames to any network
1743 * taps currently in use.
1744 */
1745
Herbert Xuf6a78bf2006-06-22 02:57:17 -07001746static void dev_queue_xmit_nit(struct sk_buff *skb, struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747{
1748 struct packet_type *ptype;
Changli Gao71d9dec2010-12-15 19:57:25 +00001749 struct sk_buff *skb2 = NULL;
1750 struct packet_type *pt_prev = NULL;
Patrick McHardya61bbcf2005-08-14 17:24:31 -07001751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 rcu_read_lock();
1753 list_for_each_entry_rcu(ptype, &ptype_all, list) {
1754 /* Never send packets back to the socket
1755 * they originated from - MvS (miquels@drinkel.ow.org)
1756 */
1757 if ((ptype->dev == dev || !ptype->dev) &&
Eric Leblondc0de08d2012-08-16 22:02:58 +00001758 (!skb_loop_sk(ptype, skb))) {
Changli Gao71d9dec2010-12-15 19:57:25 +00001759 if (pt_prev) {
1760 deliver_skb(skb2, pt_prev, skb->dev);
1761 pt_prev = ptype;
1762 continue;
1763 }
1764
1765 skb2 = skb_clone(skb, GFP_ATOMIC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 if (!skb2)
1767 break;
1768
Eric Dumazet70978182010-12-20 21:22:51 +00001769 net_timestamp_set(skb2);
1770
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 /* skb->nh should be correctly
1772 set by sender, so that the second statement is
1773 just protection against buggy protocols.
1774 */
Arnaldo Carvalho de Melo459a98e2007-03-19 15:30:44 -07001775 skb_reset_mac_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776
Arnaldo Carvalho de Melod56f90a2007-04-10 20:50:43 -07001777 if (skb_network_header(skb2) < skb2->data ||
Simon Hormanced14f62013-05-28 20:34:25 +00001778 skb_network_header(skb2) > skb_tail_pointer(skb2)) {
Joe Perchese87cc472012-05-13 21:56:26 +00001779 net_crit_ratelimited("protocol %04x is buggy, dev %s\n",
1780 ntohs(skb2->protocol),
1781 dev->name);
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07001782 skb_reset_network_header(skb2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 }
1784
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -07001785 skb2->transport_header = skb2->network_header;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 skb2->pkt_type = PACKET_OUTGOING;
Changli Gao71d9dec2010-12-15 19:57:25 +00001787 pt_prev = ptype;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
1789 }
Changli Gao71d9dec2010-12-15 19:57:25 +00001790 if (pt_prev)
1791 pt_prev->func(skb2, skb->dev, pt_prev, skb->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 rcu_read_unlock();
1793}
1794
Ben Hutchings2c530402012-07-10 10:55:09 +00001795/**
1796 * netif_setup_tc - Handle tc mappings on real_num_tx_queues change
John Fastabend4f57c082011-01-17 08:06:04 +00001797 * @dev: Network device
1798 * @txq: number of queues available
1799 *
1800 * If real_num_tx_queues is changed the tc mappings may no longer be
1801 * valid. To resolve this verify the tc mapping remains valid and if
1802 * not NULL the mapping. With no priorities mapping to this
1803 * offset/count pair it will no longer be used. In the worst case TC0
1804 * is invalid nothing can be done so disable priority mappings. If is
1805 * expected that drivers will fix this mapping if they can before
1806 * calling netif_set_real_num_tx_queues.
1807 */
Eric Dumazetbb134d22011-01-20 19:18:08 +00001808static void netif_setup_tc(struct net_device *dev, unsigned int txq)
John Fastabend4f57c082011-01-17 08:06:04 +00001809{
1810 int i;
1811 struct netdev_tc_txq *tc = &dev->tc_to_txq[0];
1812
1813 /* If TC0 is invalidated disable TC mapping */
1814 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001815 pr_warn("Number of in use tx queues changed invalidating tc mappings. Priority traffic classification disabled!\n");
John Fastabend4f57c082011-01-17 08:06:04 +00001816 dev->num_tc = 0;
1817 return;
1818 }
1819
1820 /* Invalidated prio to tc mappings set to TC0 */
1821 for (i = 1; i < TC_BITMASK + 1; i++) {
1822 int q = netdev_get_prio_tc_map(dev, i);
1823
1824 tc = &dev->tc_to_txq[q];
1825 if (tc->offset + tc->count > txq) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00001826 pr_warn("Number of in use tx queues changed. Priority %i to tc mapping %i is no longer valid. Setting map to 0\n",
1827 i, q);
John Fastabend4f57c082011-01-17 08:06:04 +00001828 netdev_set_prio_tc_map(dev, i, 0);
1829 }
1830 }
1831}
1832
Alexander Duyck537c00d2013-01-10 08:57:02 +00001833#ifdef CONFIG_XPS
1834static DEFINE_MUTEX(xps_map_mutex);
1835#define xmap_dereference(P) \
1836 rcu_dereference_protected((P), lockdep_is_held(&xps_map_mutex))
1837
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001838static struct xps_map *remove_xps_queue(struct xps_dev_maps *dev_maps,
1839 int cpu, u16 index)
1840{
1841 struct xps_map *map = NULL;
1842 int pos;
1843
1844 if (dev_maps)
1845 map = xmap_dereference(dev_maps->cpu_map[cpu]);
1846
1847 for (pos = 0; map && pos < map->len; pos++) {
1848 if (map->queues[pos] == index) {
1849 if (map->len > 1) {
1850 map->queues[pos] = map->queues[--map->len];
1851 } else {
1852 RCU_INIT_POINTER(dev_maps->cpu_map[cpu], NULL);
1853 kfree_rcu(map, rcu);
1854 map = NULL;
1855 }
1856 break;
1857 }
1858 }
1859
1860 return map;
1861}
1862
Alexander Duyck024e9672013-01-10 08:57:46 +00001863static void netif_reset_xps_queues_gt(struct net_device *dev, u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00001864{
1865 struct xps_dev_maps *dev_maps;
Alexander Duyck024e9672013-01-10 08:57:46 +00001866 int cpu, i;
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001867 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001868
1869 mutex_lock(&xps_map_mutex);
1870 dev_maps = xmap_dereference(dev->xps_maps);
1871
1872 if (!dev_maps)
1873 goto out_no_maps;
1874
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001875 for_each_possible_cpu(cpu) {
Alexander Duyck024e9672013-01-10 08:57:46 +00001876 for (i = index; i < dev->num_tx_queues; i++) {
1877 if (!remove_xps_queue(dev_maps, cpu, i))
1878 break;
1879 }
1880 if (i == dev->num_tx_queues)
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001881 active = true;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001882 }
1883
Alexander Duyck10cdc3f2013-01-10 08:57:17 +00001884 if (!active) {
Alexander Duyck537c00d2013-01-10 08:57:02 +00001885 RCU_INIT_POINTER(dev->xps_maps, NULL);
1886 kfree_rcu(dev_maps, rcu);
1887 }
1888
Alexander Duyck024e9672013-01-10 08:57:46 +00001889 for (i = index; i < dev->num_tx_queues; i++)
1890 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, i),
1891 NUMA_NO_NODE);
1892
Alexander Duyck537c00d2013-01-10 08:57:02 +00001893out_no_maps:
1894 mutex_unlock(&xps_map_mutex);
1895}
1896
Alexander Duyck01c5f862013-01-10 08:57:35 +00001897static struct xps_map *expand_xps_map(struct xps_map *map,
1898 int cpu, u16 index)
1899{
1900 struct xps_map *new_map;
1901 int alloc_len = XPS_MIN_MAP_ALLOC;
1902 int i, pos;
1903
1904 for (pos = 0; map && pos < map->len; pos++) {
1905 if (map->queues[pos] != index)
1906 continue;
1907 return map;
1908 }
1909
1910 /* Need to add queue to this CPU's existing map */
1911 if (map) {
1912 if (pos < map->alloc_len)
1913 return map;
1914
1915 alloc_len = map->alloc_len * 2;
1916 }
1917
1918 /* Need to allocate new map to store queue on this CPU's map */
1919 new_map = kzalloc_node(XPS_MAP_SIZE(alloc_len), GFP_KERNEL,
1920 cpu_to_node(cpu));
1921 if (!new_map)
1922 return NULL;
1923
1924 for (i = 0; i < pos; i++)
1925 new_map->queues[i] = map->queues[i];
1926 new_map->alloc_len = alloc_len;
1927 new_map->len = pos;
1928
1929 return new_map;
1930}
1931
Michael S. Tsirkin35735402013-10-02 09:14:06 +03001932int netif_set_xps_queue(struct net_device *dev, const struct cpumask *mask,
1933 u16 index)
Alexander Duyck537c00d2013-01-10 08:57:02 +00001934{
Alexander Duyck01c5f862013-01-10 08:57:35 +00001935 struct xps_dev_maps *dev_maps, *new_dev_maps = NULL;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001936 struct xps_map *map, *new_map;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001937 int maps_sz = max_t(unsigned int, XPS_DEV_MAPS_SIZE, L1_CACHE_BYTES);
Alexander Duyck01c5f862013-01-10 08:57:35 +00001938 int cpu, numa_node_id = -2;
1939 bool active = false;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001940
1941 mutex_lock(&xps_map_mutex);
1942
1943 dev_maps = xmap_dereference(dev->xps_maps);
1944
Alexander Duyck01c5f862013-01-10 08:57:35 +00001945 /* allocate memory for queue storage */
1946 for_each_online_cpu(cpu) {
1947 if (!cpumask_test_cpu(cpu, mask))
1948 continue;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001949
Alexander Duyck01c5f862013-01-10 08:57:35 +00001950 if (!new_dev_maps)
1951 new_dev_maps = kzalloc(maps_sz, GFP_KERNEL);
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00001952 if (!new_dev_maps) {
1953 mutex_unlock(&xps_map_mutex);
Alexander Duyck01c5f862013-01-10 08:57:35 +00001954 return -ENOMEM;
Alexander Duyck2bb60cb2013-02-22 06:38:44 +00001955 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00001956
1957 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
1958 NULL;
1959
1960 map = expand_xps_map(map, cpu, index);
1961 if (!map)
1962 goto error;
1963
1964 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
1965 }
1966
1967 if (!new_dev_maps)
1968 goto out_no_new_maps;
1969
1970 for_each_possible_cpu(cpu) {
1971 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu)) {
1972 /* add queue to CPU maps */
1973 int pos = 0;
1974
1975 map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
1976 while ((pos < map->len) && (map->queues[pos] != index))
1977 pos++;
1978
1979 if (pos == map->len)
1980 map->queues[map->len++] = index;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001981#ifdef CONFIG_NUMA
Alexander Duyck537c00d2013-01-10 08:57:02 +00001982 if (numa_node_id == -2)
1983 numa_node_id = cpu_to_node(cpu);
1984 else if (numa_node_id != cpu_to_node(cpu))
1985 numa_node_id = -1;
Alexander Duyck537c00d2013-01-10 08:57:02 +00001986#endif
Alexander Duyck01c5f862013-01-10 08:57:35 +00001987 } else if (dev_maps) {
1988 /* fill in the new device map from the old device map */
1989 map = xmap_dereference(dev_maps->cpu_map[cpu]);
1990 RCU_INIT_POINTER(new_dev_maps->cpu_map[cpu], map);
Alexander Duyck537c00d2013-01-10 08:57:02 +00001991 }
Alexander Duyck01c5f862013-01-10 08:57:35 +00001992
Alexander Duyck537c00d2013-01-10 08:57:02 +00001993 }
1994
Alexander Duyck01c5f862013-01-10 08:57:35 +00001995 rcu_assign_pointer(dev->xps_maps, new_dev_maps);
1996
Alexander Duyck537c00d2013-01-10 08:57:02 +00001997 /* Cleanup old maps */
Alexander Duyck01c5f862013-01-10 08:57:35 +00001998 if (dev_maps) {
1999 for_each_possible_cpu(cpu) {
2000 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2001 map = xmap_dereference(dev_maps->cpu_map[cpu]);
2002 if (map && map != new_map)
2003 kfree_rcu(map, rcu);
2004 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002005
Alexander Duyck537c00d2013-01-10 08:57:02 +00002006 kfree_rcu(dev_maps, rcu);
Alexander Duyck01c5f862013-01-10 08:57:35 +00002007 }
Alexander Duyck537c00d2013-01-10 08:57:02 +00002008
Alexander Duyck01c5f862013-01-10 08:57:35 +00002009 dev_maps = new_dev_maps;
2010 active = true;
2011
2012out_no_new_maps:
2013 /* update Tx queue numa node */
Alexander Duyck537c00d2013-01-10 08:57:02 +00002014 netdev_queue_numa_node_write(netdev_get_tx_queue(dev, index),
2015 (numa_node_id >= 0) ? numa_node_id :
2016 NUMA_NO_NODE);
2017
Alexander Duyck01c5f862013-01-10 08:57:35 +00002018 if (!dev_maps)
2019 goto out_no_maps;
2020
2021 /* removes queue from unused CPUs */
2022 for_each_possible_cpu(cpu) {
2023 if (cpumask_test_cpu(cpu, mask) && cpu_online(cpu))
2024 continue;
2025
2026 if (remove_xps_queue(dev_maps, cpu, index))
2027 active = true;
2028 }
2029
2030 /* free map if not active */
2031 if (!active) {
2032 RCU_INIT_POINTER(dev->xps_maps, NULL);
2033 kfree_rcu(dev_maps, rcu);
2034 }
2035
2036out_no_maps:
Alexander Duyck537c00d2013-01-10 08:57:02 +00002037 mutex_unlock(&xps_map_mutex);
2038
2039 return 0;
2040error:
Alexander Duyck01c5f862013-01-10 08:57:35 +00002041 /* remove any maps that we added */
2042 for_each_possible_cpu(cpu) {
2043 new_map = xmap_dereference(new_dev_maps->cpu_map[cpu]);
2044 map = dev_maps ? xmap_dereference(dev_maps->cpu_map[cpu]) :
2045 NULL;
2046 if (new_map && new_map != map)
2047 kfree(new_map);
2048 }
2049
Alexander Duyck537c00d2013-01-10 08:57:02 +00002050 mutex_unlock(&xps_map_mutex);
2051
Alexander Duyck537c00d2013-01-10 08:57:02 +00002052 kfree(new_dev_maps);
2053 return -ENOMEM;
2054}
2055EXPORT_SYMBOL(netif_set_xps_queue);
2056
2057#endif
John Fastabendf0796d52010-07-01 13:21:57 +00002058/*
2059 * Routine to help set real_num_tx_queues. To avoid skbs mapped to queues
2060 * greater then real_num_tx_queues stale skbs on the qdisc must be flushed.
2061 */
Tom Herberte6484932010-10-18 18:04:39 +00002062int netif_set_real_num_tx_queues(struct net_device *dev, unsigned int txq)
John Fastabendf0796d52010-07-01 13:21:57 +00002063{
Tom Herbert1d24eb42010-11-21 13:17:27 +00002064 int rc;
2065
Tom Herberte6484932010-10-18 18:04:39 +00002066 if (txq < 1 || txq > dev->num_tx_queues)
2067 return -EINVAL;
John Fastabendf0796d52010-07-01 13:21:57 +00002068
Ben Hutchings5c565802011-02-15 19:39:21 +00002069 if (dev->reg_state == NETREG_REGISTERED ||
2070 dev->reg_state == NETREG_UNREGISTERING) {
Tom Herberte6484932010-10-18 18:04:39 +00002071 ASSERT_RTNL();
2072
Tom Herbert1d24eb42010-11-21 13:17:27 +00002073 rc = netdev_queue_update_kobjects(dev, dev->real_num_tx_queues,
2074 txq);
Tom Herbertbf264142010-11-26 08:36:09 +00002075 if (rc)
2076 return rc;
2077
John Fastabend4f57c082011-01-17 08:06:04 +00002078 if (dev->num_tc)
2079 netif_setup_tc(dev, txq);
2080
Alexander Duyck024e9672013-01-10 08:57:46 +00002081 if (txq < dev->real_num_tx_queues) {
Tom Herberte6484932010-10-18 18:04:39 +00002082 qdisc_reset_all_tx_gt(dev, txq);
Alexander Duyck024e9672013-01-10 08:57:46 +00002083#ifdef CONFIG_XPS
2084 netif_reset_xps_queues_gt(dev, txq);
2085#endif
2086 }
John Fastabendf0796d52010-07-01 13:21:57 +00002087 }
Tom Herberte6484932010-10-18 18:04:39 +00002088
2089 dev->real_num_tx_queues = txq;
2090 return 0;
John Fastabendf0796d52010-07-01 13:21:57 +00002091}
2092EXPORT_SYMBOL(netif_set_real_num_tx_queues);
Denis Vlasenko56079432006-03-29 15:57:29 -08002093
Michael Daltona953be52014-01-16 22:23:28 -08002094#ifdef CONFIG_SYSFS
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002095/**
2096 * netif_set_real_num_rx_queues - set actual number of RX queues used
2097 * @dev: Network device
2098 * @rxq: Actual number of RX queues
2099 *
2100 * This must be called either with the rtnl_lock held or before
2101 * registration of the net device. Returns 0 on success, or a
Ben Hutchings4e7f7952010-10-08 10:33:39 -07002102 * negative error code. If called before registration, it always
2103 * succeeds.
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002104 */
2105int netif_set_real_num_rx_queues(struct net_device *dev, unsigned int rxq)
2106{
2107 int rc;
2108
Tom Herbertbd25fa72010-10-18 18:00:16 +00002109 if (rxq < 1 || rxq > dev->num_rx_queues)
2110 return -EINVAL;
2111
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002112 if (dev->reg_state == NETREG_REGISTERED) {
2113 ASSERT_RTNL();
2114
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002115 rc = net_rx_queue_update_kobjects(dev, dev->real_num_rx_queues,
2116 rxq);
2117 if (rc)
2118 return rc;
Ben Hutchings62fe0b42010-09-27 08:24:33 +00002119 }
2120
2121 dev->real_num_rx_queues = rxq;
2122 return 0;
2123}
2124EXPORT_SYMBOL(netif_set_real_num_rx_queues);
2125#endif
2126
Ben Hutchings2c530402012-07-10 10:55:09 +00002127/**
2128 * netif_get_num_default_rss_queues - default number of RSS queues
Yuval Mintz16917b82012-07-01 03:18:50 +00002129 *
2130 * This routine should set an upper limit on the number of RSS queues
2131 * used by default by multiqueue devices.
2132 */
Ben Hutchingsa55b1382012-07-10 10:54:38 +00002133int netif_get_num_default_rss_queues(void)
Yuval Mintz16917b82012-07-01 03:18:50 +00002134{
2135 return min_t(int, DEFAULT_MAX_NUM_RSS_QUEUES, num_online_cpus());
2136}
2137EXPORT_SYMBOL(netif_get_num_default_rss_queues);
2138
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002139static inline void __netif_reschedule(struct Qdisc *q)
2140{
2141 struct softnet_data *sd;
2142 unsigned long flags;
2143
2144 local_irq_save(flags);
2145 sd = &__get_cpu_var(softnet_data);
Changli Gaoa9cbd582010-04-26 23:06:24 +00002146 q->next_sched = NULL;
2147 *sd->output_queue_tailp = q;
2148 sd->output_queue_tailp = &q->next_sched;
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002149 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2150 local_irq_restore(flags);
2151}
2152
David S. Miller37437bb2008-07-16 02:15:04 -07002153void __netif_schedule(struct Qdisc *q)
Denis Vlasenko56079432006-03-29 15:57:29 -08002154{
Jarek Poplawskidef82a12008-08-17 21:54:43 -07002155 if (!test_and_set_bit(__QDISC_STATE_SCHED, &q->state))
2156 __netif_reschedule(q);
Denis Vlasenko56079432006-03-29 15:57:29 -08002157}
2158EXPORT_SYMBOL(__netif_schedule);
2159
Eric Dumazete6247022013-12-05 04:45:08 -08002160struct dev_kfree_skb_cb {
2161 enum skb_free_reason reason;
2162};
2163
2164static struct dev_kfree_skb_cb *get_kfree_skb_cb(const struct sk_buff *skb)
Denis Vlasenko56079432006-03-29 15:57:29 -08002165{
Eric Dumazete6247022013-12-05 04:45:08 -08002166 return (struct dev_kfree_skb_cb *)skb->cb;
Denis Vlasenko56079432006-03-29 15:57:29 -08002167}
Denis Vlasenko56079432006-03-29 15:57:29 -08002168
Eric Dumazete6247022013-12-05 04:45:08 -08002169void __dev_kfree_skb_irq(struct sk_buff *skb, enum skb_free_reason reason)
2170{
2171 unsigned long flags;
2172
2173 if (likely(atomic_read(&skb->users) == 1)) {
2174 smp_rmb();
2175 atomic_set(&skb->users, 0);
2176 } else if (likely(!atomic_dec_and_test(&skb->users))) {
2177 return;
2178 }
2179 get_kfree_skb_cb(skb)->reason = reason;
2180 local_irq_save(flags);
2181 skb->next = __this_cpu_read(softnet_data.completion_queue);
2182 __this_cpu_write(softnet_data.completion_queue, skb);
2183 raise_softirq_irqoff(NET_TX_SOFTIRQ);
2184 local_irq_restore(flags);
2185}
2186EXPORT_SYMBOL(__dev_kfree_skb_irq);
2187
2188void __dev_kfree_skb_any(struct sk_buff *skb, enum skb_free_reason reason)
Denis Vlasenko56079432006-03-29 15:57:29 -08002189{
2190 if (in_irq() || irqs_disabled())
Eric Dumazete6247022013-12-05 04:45:08 -08002191 __dev_kfree_skb_irq(skb, reason);
Denis Vlasenko56079432006-03-29 15:57:29 -08002192 else
2193 dev_kfree_skb(skb);
2194}
Eric Dumazete6247022013-12-05 04:45:08 -08002195EXPORT_SYMBOL(__dev_kfree_skb_any);
Denis Vlasenko56079432006-03-29 15:57:29 -08002196
2197
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002198/**
2199 * netif_device_detach - mark device as removed
2200 * @dev: network device
2201 *
2202 * Mark device as removed from system and therefore no longer available.
2203 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002204void netif_device_detach(struct net_device *dev)
2205{
2206 if (test_and_clear_bit(__LINK_STATE_PRESENT, &dev->state) &&
2207 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002208 netif_tx_stop_all_queues(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002209 }
2210}
2211EXPORT_SYMBOL(netif_device_detach);
2212
Stephen Hemmingerbea33482007-10-03 16:41:36 -07002213/**
2214 * netif_device_attach - mark device as attached
2215 * @dev: network device
2216 *
2217 * Mark device as attached from system and restart if needed.
2218 */
Denis Vlasenko56079432006-03-29 15:57:29 -08002219void netif_device_attach(struct net_device *dev)
2220{
2221 if (!test_and_set_bit(__LINK_STATE_PRESENT, &dev->state) &&
2222 netif_running(dev)) {
Alexander Duyckd5431032009-04-08 13:15:22 +00002223 netif_tx_wake_all_queues(dev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002224 __netdev_watchdog_up(dev);
Denis Vlasenko56079432006-03-29 15:57:29 -08002225 }
2226}
2227EXPORT_SYMBOL(netif_device_attach);
2228
Ben Hutchings36c92472012-01-17 07:57:56 +00002229static void skb_warn_bad_offload(const struct sk_buff *skb)
2230{
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002231 static const netdev_features_t null_features = 0;
Ben Hutchings36c92472012-01-17 07:57:56 +00002232 struct net_device *dev = skb->dev;
2233 const char *driver = "";
2234
Ben Greearc846ad92013-04-19 10:45:52 +00002235 if (!net_ratelimit())
2236 return;
2237
Ben Hutchings36c92472012-01-17 07:57:56 +00002238 if (dev && dev->dev.parent)
2239 driver = dev_driver_string(dev->dev.parent);
2240
2241 WARN(1, "%s: caps=(%pNF, %pNF) len=%d data_len=%d gso_size=%d "
2242 "gso_type=%d ip_summed=%d\n",
Michał Mirosław65e9d2f2012-01-17 10:00:40 +00002243 driver, dev ? &dev->features : &null_features,
2244 skb->sk ? &skb->sk->sk_route_caps : &null_features,
Ben Hutchings36c92472012-01-17 07:57:56 +00002245 skb->len, skb->data_len, skb_shinfo(skb)->gso_size,
2246 skb_shinfo(skb)->gso_type, skb->ip_summed);
2247}
2248
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249/*
2250 * Invalidate hardware checksum when packet is to be mangled, and
2251 * complete checksum manually on outgoing path.
2252 */
Patrick McHardy84fa7932006-08-29 16:44:56 -07002253int skb_checksum_help(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254{
Al Virod3bc23e2006-11-14 21:24:49 -08002255 __wsum csum;
Herbert Xu663ead32007-04-09 11:59:07 -07002256 int ret = 0, offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
Patrick McHardy84fa7932006-08-29 16:44:56 -07002258 if (skb->ip_summed == CHECKSUM_COMPLETE)
Herbert Xua430a432006-07-08 13:34:56 -07002259 goto out_set_summed;
2260
2261 if (unlikely(skb_shinfo(skb)->gso_size)) {
Ben Hutchings36c92472012-01-17 07:57:56 +00002262 skb_warn_bad_offload(skb);
2263 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 }
2265
Eric Dumazetcef401d2013-01-25 20:34:37 +00002266 /* Before computing a checksum, we should make sure no frag could
2267 * be modified by an external entity : checksum could be wrong.
2268 */
2269 if (skb_has_shared_frag(skb)) {
2270 ret = __skb_linearize(skb);
2271 if (ret)
2272 goto out;
2273 }
2274
Michał Mirosław55508d62010-12-14 15:24:08 +00002275 offset = skb_checksum_start_offset(skb);
Herbert Xua0308472007-10-15 01:47:15 -07002276 BUG_ON(offset >= skb_headlen(skb));
2277 csum = skb_checksum(skb, offset, skb->len - offset, 0);
2278
2279 offset += skb->csum_offset;
2280 BUG_ON(offset + sizeof(__sum16) > skb_headlen(skb));
2281
2282 if (skb_cloned(skb) &&
2283 !skb_clone_writable(skb, offset + sizeof(__sum16))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 ret = pskb_expand_head(skb, 0, 0, GFP_ATOMIC);
2285 if (ret)
2286 goto out;
2287 }
2288
Herbert Xua0308472007-10-15 01:47:15 -07002289 *(__sum16 *)(skb->data + offset) = csum_fold(csum);
Herbert Xua430a432006-07-08 13:34:56 -07002290out_set_summed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 skb->ip_summed = CHECKSUM_NONE;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002292out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 return ret;
2294}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002295EXPORT_SYMBOL(skb_checksum_help);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Vlad Yasevich53d64712014-03-27 17:26:18 -04002297__be16 skb_network_protocol(struct sk_buff *skb, int *depth)
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002298{
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002299 unsigned int vlan_depth = skb->mac_len;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002300 __be16 type = skb->protocol;
2301
Pravin B Shelar19acc322013-05-07 20:41:07 +00002302 /* Tunnel gso handlers can set protocol to ethernet. */
2303 if (type == htons(ETH_P_TEB)) {
2304 struct ethhdr *eth;
2305
2306 if (unlikely(!pskb_may_pull(skb, sizeof(struct ethhdr))))
2307 return 0;
2308
2309 eth = (struct ethhdr *)skb_mac_header(skb);
2310 type = eth->h_proto;
2311 }
2312
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002313 /* if skb->protocol is 802.1Q/AD then the header should already be
2314 * present at mac_len - VLAN_HLEN (if mac_len > 0), or at
2315 * ETH_HLEN otherwise
2316 */
2317 if (type == htons(ETH_P_8021Q) || type == htons(ETH_P_8021AD)) {
2318 if (vlan_depth) {
2319 if (unlikely(WARN_ON(vlan_depth < VLAN_HLEN)))
2320 return 0;
2321 vlan_depth -= VLAN_HLEN;
2322 } else {
2323 vlan_depth = ETH_HLEN;
2324 }
2325 do {
2326 struct vlan_hdr *vh;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002327
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002328 if (unlikely(!pskb_may_pull(skb,
2329 vlan_depth + VLAN_HLEN)))
2330 return 0;
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002331
Nikolay Aleksandrov4b9b1cd2014-05-28 18:03:48 +02002332 vh = (struct vlan_hdr *)(skb->data + vlan_depth);
2333 type = vh->h_vlan_encapsulated_proto;
2334 vlan_depth += VLAN_HLEN;
2335 } while (type == htons(ETH_P_8021Q) ||
2336 type == htons(ETH_P_8021AD));
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002337 }
2338
Vlad Yasevich53d64712014-03-27 17:26:18 -04002339 *depth = vlan_depth;
2340
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002341 return type;
2342}
2343
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002344/**
2345 * skb_mac_gso_segment - mac layer segmentation handler.
2346 * @skb: buffer to segment
2347 * @features: features for the output path (see dev->features)
2348 */
2349struct sk_buff *skb_mac_gso_segment(struct sk_buff *skb,
2350 netdev_features_t features)
2351{
2352 struct sk_buff *segs = ERR_PTR(-EPROTONOSUPPORT);
2353 struct packet_offload *ptype;
Vlad Yasevich53d64712014-03-27 17:26:18 -04002354 int vlan_depth = skb->mac_len;
2355 __be16 type = skb_network_protocol(skb, &vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002356
Pravin B Shelarec5f0612013-03-07 09:28:01 +00002357 if (unlikely(!type))
2358 return ERR_PTR(-EINVAL);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002359
Vlad Yasevich53d64712014-03-27 17:26:18 -04002360 __skb_pull(skb, vlan_depth);
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002361
2362 rcu_read_lock();
2363 list_for_each_entry_rcu(ptype, &offload_base, list) {
2364 if (ptype->type == type && ptype->callbacks.gso_segment) {
2365 if (unlikely(skb->ip_summed != CHECKSUM_PARTIAL)) {
2366 int err;
2367
2368 err = ptype->callbacks.gso_send_check(skb);
2369 segs = ERR_PTR(err);
2370 if (err || skb_gso_ok(skb, features))
2371 break;
2372 __skb_push(skb, (skb->data -
2373 skb_network_header(skb)));
2374 }
2375 segs = ptype->callbacks.gso_segment(skb, features);
2376 break;
2377 }
2378 }
2379 rcu_read_unlock();
2380
2381 __skb_push(skb, skb->data - skb_mac_header(skb));
2382
2383 return segs;
2384}
2385EXPORT_SYMBOL(skb_mac_gso_segment);
2386
2387
Cong Wang12b00042013-02-05 16:36:38 +00002388/* openvswitch calls this on rx path, so we need a different check.
2389 */
2390static inline bool skb_needs_check(struct sk_buff *skb, bool tx_path)
2391{
2392 if (tx_path)
2393 return skb->ip_summed != CHECKSUM_PARTIAL;
2394 else
2395 return skb->ip_summed == CHECKSUM_NONE;
2396}
2397
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002398/**
Cong Wang12b00042013-02-05 16:36:38 +00002399 * __skb_gso_segment - Perform segmentation on skb.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002400 * @skb: buffer to segment
Herbert Xu576a30e2006-06-27 13:22:38 -07002401 * @features: features for the output path (see dev->features)
Cong Wang12b00042013-02-05 16:36:38 +00002402 * @tx_path: whether it is called in TX path
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002403 *
2404 * This function segments the given skb and returns a list of segments.
Herbert Xu576a30e2006-06-27 13:22:38 -07002405 *
2406 * It may return NULL if the skb requires no segmentation. This is
2407 * only possible when GSO is used for verifying header integrity.
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002408 */
Cong Wang12b00042013-02-05 16:36:38 +00002409struct sk_buff *__skb_gso_segment(struct sk_buff *skb,
2410 netdev_features_t features, bool tx_path)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002411{
Cong Wang12b00042013-02-05 16:36:38 +00002412 if (unlikely(skb_needs_check(skb, tx_path))) {
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002413 int err;
2414
Ben Hutchings36c92472012-01-17 07:57:56 +00002415 skb_warn_bad_offload(skb);
Herbert Xu67fd1a72009-01-19 16:26:44 -08002416
Herbert Xua430a432006-07-08 13:34:56 -07002417 if (skb_header_cloned(skb) &&
2418 (err = pskb_expand_head(skb, 0, 0, GFP_ATOMIC)))
2419 return ERR_PTR(err);
2420 }
2421
Pravin B Shelar68c33162013-02-14 14:02:41 +00002422 SKB_GSO_CB(skb)->mac_offset = skb_headroom(skb);
Eric Dumazet3347c962013-10-19 11:42:56 -07002423 SKB_GSO_CB(skb)->encap_level = 0;
2424
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002425 skb_reset_mac_header(skb);
2426 skb_reset_mac_len(skb);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002427
Pravin B Shelar05e8ef42013-02-14 09:44:55 +00002428 return skb_mac_gso_segment(skb, features);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002429}
Cong Wang12b00042013-02-05 16:36:38 +00002430EXPORT_SYMBOL(__skb_gso_segment);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002431
Herbert Xufb286bb2005-11-10 13:01:24 -08002432/* Take action when hardware reception checksum errors are detected. */
2433#ifdef CONFIG_BUG
2434void netdev_rx_csum_fault(struct net_device *dev)
2435{
2436 if (net_ratelimit()) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00002437 pr_err("%s: hw csum failure\n", dev ? dev->name : "<unknown>");
Herbert Xufb286bb2005-11-10 13:01:24 -08002438 dump_stack();
2439 }
2440}
2441EXPORT_SYMBOL(netdev_rx_csum_fault);
2442#endif
2443
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444/* Actually, we should eliminate this check as soon as we know, that:
2445 * 1. IOMMU is present and allows to map all the memory.
2446 * 2. No high memory really exists on this machine.
2447 */
2448
Florian Westphalc1e756b2014-05-05 15:00:44 +02002449static int illegal_highdma(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450{
Herbert Xu3d3a8532006-06-27 13:33:10 -07002451#ifdef CONFIG_HIGHMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452 int i;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002453 if (!(dev->features & NETIF_F_HIGHDMA)) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002454 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
2455 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2456 if (PageHighMem(skb_frag_page(frag)))
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002457 return 1;
Ian Campbellea2ab692011-08-22 23:44:58 +00002458 }
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002459 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002461 if (PCI_DMA_BUS_IS_PHYS) {
2462 struct device *pdev = dev->dev.parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
Eric Dumazet9092c652010-04-02 13:34:49 -07002464 if (!pdev)
2465 return 0;
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002466 for (i = 0; i < skb_shinfo(skb)->nr_frags; i++) {
Ian Campbellea2ab692011-08-22 23:44:58 +00002467 skb_frag_t *frag = &skb_shinfo(skb)->frags[i];
2468 dma_addr_t addr = page_to_phys(skb_frag_page(frag));
FUJITA Tomonori5acbbd42010-03-30 22:35:50 +00002469 if (!pdev->dma_mask || addr + PAGE_SIZE - 1 > *pdev->dma_mask)
2470 return 1;
2471 }
2472 }
Herbert Xu3d3a8532006-06-27 13:33:10 -07002473#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 return 0;
2475}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002477struct dev_gso_cb {
2478 void (*destructor)(struct sk_buff *skb);
2479};
2480
2481#define DEV_GSO_CB(skb) ((struct dev_gso_cb *)(skb)->cb)
2482
2483static void dev_gso_skb_destructor(struct sk_buff *skb)
2484{
2485 struct dev_gso_cb *cb;
2486
Eric Dumazet289dccb2013-12-20 14:29:08 -08002487 kfree_skb_list(skb->next);
2488 skb->next = NULL;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002489
2490 cb = DEV_GSO_CB(skb);
2491 if (cb->destructor)
2492 cb->destructor(skb);
2493}
2494
2495/**
2496 * dev_gso_segment - Perform emulated hardware segmentation on skb.
2497 * @skb: buffer to segment
Jesse Gross91ecb632011-01-09 06:23:33 +00002498 * @features: device features as applicable to this skb
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002499 *
2500 * This function segments the given skb and stores the list of segments
2501 * in skb->next.
2502 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002503static int dev_gso_segment(struct sk_buff *skb, netdev_features_t features)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002504{
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002505 struct sk_buff *segs;
2506
Herbert Xu576a30e2006-06-27 13:22:38 -07002507 segs = skb_gso_segment(skb, features);
2508
2509 /* Verifying header integrity only. */
2510 if (!segs)
2511 return 0;
2512
Hirofumi Nakagawa801678c2008-04-29 01:03:09 -07002513 if (IS_ERR(segs))
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002514 return PTR_ERR(segs);
2515
2516 skb->next = segs;
2517 DEV_GSO_CB(skb)->destructor = skb->destructor;
2518 skb->destructor = dev_gso_skb_destructor;
2519
2520 return 0;
2521}
2522
Simon Horman3b392dd2014-06-04 08:53:17 +09002523/* If MPLS offload request, verify we are testing hardware MPLS features
2524 * instead of standard features for the netdev.
2525 */
2526#ifdef CONFIG_NET_MPLS_GSO
2527static netdev_features_t net_mpls_features(struct sk_buff *skb,
2528 netdev_features_t features,
2529 __be16 type)
2530{
2531 if (type == htons(ETH_P_MPLS_UC) || type == htons(ETH_P_MPLS_MC))
2532 features &= skb->dev->mpls_features;
2533
2534 return features;
2535}
2536#else
2537static netdev_features_t net_mpls_features(struct sk_buff *skb,
2538 netdev_features_t features,
2539 __be16 type)
2540{
2541 return features;
2542}
2543#endif
2544
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002545static netdev_features_t harmonize_features(struct sk_buff *skb,
Florian Westphalc1e756b2014-05-05 15:00:44 +02002546 netdev_features_t features)
Jesse Grossf01a5232011-01-09 06:23:31 +00002547{
Vlad Yasevich53d64712014-03-27 17:26:18 -04002548 int tmp;
Simon Horman3b392dd2014-06-04 08:53:17 +09002549 __be16 type;
2550
2551 type = skb_network_protocol(skb, &tmp);
2552 features = net_mpls_features(skb, features, type);
Vlad Yasevich53d64712014-03-27 17:26:18 -04002553
Ed Cashinc0d680e2012-09-19 15:49:00 +00002554 if (skb->ip_summed != CHECKSUM_NONE &&
Simon Horman3b392dd2014-06-04 08:53:17 +09002555 !can_checksum_protocol(features, type)) {
Jesse Grossf01a5232011-01-09 06:23:31 +00002556 features &= ~NETIF_F_ALL_CSUM;
Florian Westphalc1e756b2014-05-05 15:00:44 +02002557 } else if (illegal_highdma(skb->dev, skb)) {
Jesse Grossf01a5232011-01-09 06:23:31 +00002558 features &= ~NETIF_F_SG;
2559 }
2560
2561 return features;
2562}
2563
Florian Westphalc1e756b2014-05-05 15:00:44 +02002564netdev_features_t netif_skb_features(struct sk_buff *skb)
Jesse Gross58e998c2010-10-29 12:14:55 +00002565{
2566 __be16 protocol = skb->protocol;
Florian Westphalc1e756b2014-05-05 15:00:44 +02002567 netdev_features_t features = skb->dev->features;
Jesse Gross58e998c2010-10-29 12:14:55 +00002568
Florian Westphalc1e756b2014-05-05 15:00:44 +02002569 if (skb_shinfo(skb)->gso_segs > skb->dev->gso_max_segs)
Ben Hutchings30b678d2012-07-30 15:57:00 +00002570 features &= ~NETIF_F_GSO_MASK;
2571
Patrick McHardy8ad227f2013-04-19 02:04:31 +00002572 if (protocol == htons(ETH_P_8021Q) || protocol == htons(ETH_P_8021AD)) {
Jesse Gross58e998c2010-10-29 12:14:55 +00002573 struct vlan_ethhdr *veh = (struct vlan_ethhdr *)skb->data;
2574 protocol = veh->h_vlan_encapsulated_proto;
Jesse Grossf01a5232011-01-09 06:23:31 +00002575 } else if (!vlan_tx_tag_present(skb)) {
Florian Westphalc1e756b2014-05-05 15:00:44 +02002576 return harmonize_features(skb, features);
Jesse Grossf01a5232011-01-09 06:23:31 +00002577 }
Jesse Gross58e998c2010-10-29 12:14:55 +00002578
Florian Westphalc1e756b2014-05-05 15:00:44 +02002579 features &= (skb->dev->vlan_features | NETIF_F_HW_VLAN_CTAG_TX |
Patrick McHardy8ad227f2013-04-19 02:04:31 +00002580 NETIF_F_HW_VLAN_STAG_TX);
Jesse Grossf01a5232011-01-09 06:23:31 +00002581
Alexander Duyckcdbaa0b2013-07-10 17:05:06 -07002582 if (protocol == htons(ETH_P_8021Q) || protocol == htons(ETH_P_8021AD))
Jesse Grossf01a5232011-01-09 06:23:31 +00002583 features &= NETIF_F_SG | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST |
Patrick McHardy8ad227f2013-04-19 02:04:31 +00002584 NETIF_F_GEN_CSUM | NETIF_F_HW_VLAN_CTAG_TX |
2585 NETIF_F_HW_VLAN_STAG_TX;
Alexander Duyckcdbaa0b2013-07-10 17:05:06 -07002586
Florian Westphalc1e756b2014-05-05 15:00:44 +02002587 return harmonize_features(skb, features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002588}
Florian Westphalc1e756b2014-05-05 15:00:44 +02002589EXPORT_SYMBOL(netif_skb_features);
Jesse Gross58e998c2010-10-29 12:14:55 +00002590
David S. Millerfd2ea0a2008-07-17 01:56:23 -07002591int dev_hard_start_xmit(struct sk_buff *skb, struct net_device *dev,
Jason Wangf663dd92014-01-10 16:18:26 +08002592 struct netdev_queue *txq)
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002593{
Stephen Hemminger00829822008-11-20 20:14:53 -08002594 const struct net_device_ops *ops = dev->netdev_ops;
Patrick McHardy572a9d72009-11-10 06:14:14 +00002595 int rc = NETDEV_TX_OK;
Koki Sanagiec764bf2011-05-30 21:48:34 +00002596 unsigned int skb_len;
Stephen Hemminger00829822008-11-20 20:14:53 -08002597
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002598 if (likely(!skb->next)) {
Michał Mirosławc8f44af2011-11-15 15:29:55 +00002599 netdev_features_t features;
Jesse Grossfc741212011-01-09 06:23:32 +00002600
Eric Dumazet93f154b2009-05-18 22:19:19 -07002601 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002602 * If device doesn't need skb->dst, release it right now while
Eric Dumazet93f154b2009-05-18 22:19:19 -07002603 * its hot in this cpu cache
2604 */
Eric Dumazetadf30902009-06-02 05:19:30 +00002605 if (dev->priv_flags & IFF_XMIT_DST_RELEASE)
2606 skb_dst_drop(skb);
2607
Jesse Grossfc741212011-01-09 06:23:32 +00002608 features = netif_skb_features(skb);
2609
Jesse Gross7b9c6092010-10-20 13:56:04 +00002610 if (vlan_tx_tag_present(skb) &&
Patrick McHardy86a9bad2013-04-19 02:04:30 +00002611 !vlan_hw_offload_capable(features, skb->vlan_proto)) {
2612 skb = __vlan_put_tag(skb, skb->vlan_proto,
2613 vlan_tx_tag_get(skb));
Jesse Gross7b9c6092010-10-20 13:56:04 +00002614 if (unlikely(!skb))
2615 goto out;
2616
2617 skb->vlan_tci = 0;
2618 }
2619
Alexander Duyckfc70fb62012-12-07 14:14:15 +00002620 /* If encapsulation offload request, verify we are testing
2621 * hardware encapsulation features instead of standard
2622 * features for the netdev
2623 */
2624 if (skb->encapsulation)
2625 features &= dev->hw_enc_features;
2626
Jesse Grossfc741212011-01-09 06:23:32 +00002627 if (netif_needs_gso(skb, features)) {
Jesse Gross91ecb632011-01-09 06:23:33 +00002628 if (unlikely(dev_gso_segment(skb, features)))
David S. Miller9ccb8972010-04-22 01:02:07 -07002629 goto out_kfree_skb;
2630 if (skb->next)
2631 goto gso;
John Fastabend6afff0c2010-06-16 14:18:12 +00002632 } else {
Jesse Gross02932ce2011-01-09 06:23:34 +00002633 if (skb_needs_linearize(skb, features) &&
John Fastabend6afff0c2010-06-16 14:18:12 +00002634 __skb_linearize(skb))
2635 goto out_kfree_skb;
2636
2637 /* If packet is not checksummed and device does not
2638 * support checksumming for this protocol, complete
2639 * checksumming here.
2640 */
2641 if (skb->ip_summed == CHECKSUM_PARTIAL) {
Alexander Duyckfc70fb62012-12-07 14:14:15 +00002642 if (skb->encapsulation)
2643 skb_set_inner_transport_header(skb,
2644 skb_checksum_start_offset(skb));
2645 else
2646 skb_set_transport_header(skb,
2647 skb_checksum_start_offset(skb));
Jesse Gross03634662011-01-09 06:23:35 +00002648 if (!(features & NETIF_F_ALL_CSUM) &&
John Fastabend6afff0c2010-06-16 14:18:12 +00002649 skb_checksum_help(skb))
2650 goto out_kfree_skb;
2651 }
David S. Miller9ccb8972010-04-22 01:02:07 -07002652 }
2653
Eric Dumazetb40863c2012-09-18 20:44:49 +00002654 if (!list_empty(&ptype_all))
2655 dev_queue_xmit_nit(skb, dev);
2656
Koki Sanagiec764bf2011-05-30 21:48:34 +00002657 skb_len = skb->len;
Ben Hutchingsd87d04a2014-01-10 22:17:03 +00002658 trace_net_dev_start_xmit(skb, dev);
Ben Hutchings20567662014-01-10 22:16:30 +00002659 rc = ops->ndo_start_xmit(skb, dev);
Koki Sanagiec764bf2011-05-30 21:48:34 +00002660 trace_net_dev_xmit(skb, rc, dev, skb_len);
Jason Wangf663dd92014-01-10 16:18:26 +08002661 if (rc == NETDEV_TX_OK)
Eric Dumazet08baf562009-05-25 22:58:01 -07002662 txq_trans_update(txq);
Patrick Ohlyac45f602009-02-12 05:03:37 +00002663 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002664 }
2665
Herbert Xu576a30e2006-06-27 13:22:38 -07002666gso:
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002667 do {
2668 struct sk_buff *nskb = skb->next;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002669
2670 skb->next = nskb->next;
2671 nskb->next = NULL;
Krishna Kumar068a2de2009-12-09 20:59:58 +00002672
Eric Dumazetb40863c2012-09-18 20:44:49 +00002673 if (!list_empty(&ptype_all))
2674 dev_queue_xmit_nit(nskb, dev);
2675
Koki Sanagiec764bf2011-05-30 21:48:34 +00002676 skb_len = nskb->len;
Ben Hutchingsd87d04a2014-01-10 22:17:03 +00002677 trace_net_dev_start_xmit(nskb, dev);
Jason Wangf663dd92014-01-10 16:18:26 +08002678 rc = ops->ndo_start_xmit(nskb, dev);
Koki Sanagiec764bf2011-05-30 21:48:34 +00002679 trace_net_dev_xmit(nskb, rc, dev, skb_len);
Patrick McHardyec634fe2009-07-05 19:23:38 -07002680 if (unlikely(rc != NETDEV_TX_OK)) {
Patrick McHardy572a9d72009-11-10 06:14:14 +00002681 if (rc & ~NETDEV_TX_MASK)
2682 goto out_kfree_gso_skb;
Michael Chanf54d9e82006-06-25 23:57:04 -07002683 nskb->next = skb->next;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002684 skb->next = nskb;
2685 return rc;
2686 }
Eric Dumazet08baf562009-05-25 22:58:01 -07002687 txq_trans_update(txq);
Tom Herbert734664982011-11-28 16:32:44 +00002688 if (unlikely(netif_xmit_stopped(txq) && skb->next))
Michael Chanf54d9e82006-06-25 23:57:04 -07002689 return NETDEV_TX_BUSY;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002690 } while (skb->next);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002691
Patrick McHardy572a9d72009-11-10 06:14:14 +00002692out_kfree_gso_skb:
Sridhar Samudrala0c772152013-04-29 13:02:42 +00002693 if (likely(skb->next == NULL)) {
Patrick McHardy572a9d72009-11-10 06:14:14 +00002694 skb->destructor = DEV_GSO_CB(skb)->destructor;
Sridhar Samudrala0c772152013-04-29 13:02:42 +00002695 consume_skb(skb);
2696 return rc;
2697 }
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002698out_kfree_skb:
2699 kfree_skb(skb);
Jesse Gross7b9c6092010-10-20 13:56:04 +00002700out:
Patrick McHardy572a9d72009-11-10 06:14:14 +00002701 return rc;
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002702}
John Fastabenda6cc0cf2013-11-06 09:54:46 -08002703EXPORT_SYMBOL_GPL(dev_hard_start_xmit);
Herbert Xuf6a78bf2006-06-22 02:57:17 -07002704
Eric Dumazet1def9232013-01-10 12:36:42 +00002705static void qdisc_pkt_len_init(struct sk_buff *skb)
2706{
2707 const struct skb_shared_info *shinfo = skb_shinfo(skb);
2708
2709 qdisc_skb_cb(skb)->pkt_len = skb->len;
2710
2711 /* To get more precise estimation of bytes sent on wire,
2712 * we add to pkt_len the headers size of all segments
2713 */
2714 if (shinfo->gso_size) {
Eric Dumazet757b8b12013-01-15 21:14:21 -08002715 unsigned int hdr_len;
Jason Wang15e5a032013-03-25 20:19:59 +00002716 u16 gso_segs = shinfo->gso_segs;
Eric Dumazet1def9232013-01-10 12:36:42 +00002717
Eric Dumazet757b8b12013-01-15 21:14:21 -08002718 /* mac layer + network layer */
2719 hdr_len = skb_transport_header(skb) - skb_mac_header(skb);
2720
2721 /* + transport layer */
Eric Dumazet1def9232013-01-10 12:36:42 +00002722 if (likely(shinfo->gso_type & (SKB_GSO_TCPV4 | SKB_GSO_TCPV6)))
2723 hdr_len += tcp_hdrlen(skb);
2724 else
2725 hdr_len += sizeof(struct udphdr);
Jason Wang15e5a032013-03-25 20:19:59 +00002726
2727 if (shinfo->gso_type & SKB_GSO_DODGY)
2728 gso_segs = DIV_ROUND_UP(skb->len - hdr_len,
2729 shinfo->gso_size);
2730
2731 qdisc_skb_cb(skb)->pkt_len += (gso_segs - 1) * hdr_len;
Eric Dumazet1def9232013-01-10 12:36:42 +00002732 }
2733}
2734
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002735static inline int __dev_xmit_skb(struct sk_buff *skb, struct Qdisc *q,
2736 struct net_device *dev,
2737 struct netdev_queue *txq)
2738{
2739 spinlock_t *root_lock = qdisc_lock(q);
Eric Dumazeta2da5702011-01-20 03:48:19 +00002740 bool contended;
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002741 int rc;
2742
Eric Dumazet1def9232013-01-10 12:36:42 +00002743 qdisc_pkt_len_init(skb);
Eric Dumazeta2da5702011-01-20 03:48:19 +00002744 qdisc_calculate_pkt_len(skb, q);
Eric Dumazet79640a42010-06-02 05:09:29 -07002745 /*
2746 * Heuristic to force contended enqueues to serialize on a
2747 * separate lock before trying to get qdisc main lock.
2748 * This permits __QDISC_STATE_RUNNING owner to get the lock more often
2749 * and dequeue packets faster.
2750 */
Eric Dumazeta2da5702011-01-20 03:48:19 +00002751 contended = qdisc_is_running(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07002752 if (unlikely(contended))
2753 spin_lock(&q->busylock);
2754
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002755 spin_lock(root_lock);
2756 if (unlikely(test_bit(__QDISC_STATE_DEACTIVATED, &q->state))) {
2757 kfree_skb(skb);
2758 rc = NET_XMIT_DROP;
2759 } else if ((q->flags & TCQ_F_CAN_BYPASS) && !qdisc_qlen(q) &&
Eric Dumazetbc135b22010-06-02 03:23:51 -07002760 qdisc_run_begin(q)) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002761 /*
2762 * This is a work-conserving queue; there are no old skbs
2763 * waiting to be sent out; and the qdisc is not running -
2764 * xmit the skb directly.
2765 */
Eric Dumazet7fee2262010-05-11 23:19:48 +00002766 if (!(dev->priv_flags & IFF_XMIT_DST_RELEASE))
2767 skb_dst_force(skb);
Eric Dumazetbfe0d022011-01-09 08:30:54 +00002768
Eric Dumazetbfe0d022011-01-09 08:30:54 +00002769 qdisc_bstats_update(q, skb);
2770
Eric Dumazet79640a42010-06-02 05:09:29 -07002771 if (sch_direct_xmit(skb, q, dev, txq, root_lock)) {
2772 if (unlikely(contended)) {
2773 spin_unlock(&q->busylock);
2774 contended = false;
2775 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002776 __qdisc_run(q);
Eric Dumazet79640a42010-06-02 05:09:29 -07002777 } else
Eric Dumazetbc135b22010-06-02 03:23:51 -07002778 qdisc_run_end(q);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002779
2780 rc = NET_XMIT_SUCCESS;
2781 } else {
Eric Dumazet7fee2262010-05-11 23:19:48 +00002782 skb_dst_force(skb);
Eric Dumazeta2da5702011-01-20 03:48:19 +00002783 rc = q->enqueue(skb, q) & NET_XMIT_MASK;
Eric Dumazet79640a42010-06-02 05:09:29 -07002784 if (qdisc_run_begin(q)) {
2785 if (unlikely(contended)) {
2786 spin_unlock(&q->busylock);
2787 contended = false;
2788 }
2789 __qdisc_run(q);
2790 }
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002791 }
2792 spin_unlock(root_lock);
Eric Dumazet79640a42010-06-02 05:09:29 -07002793 if (unlikely(contended))
2794 spin_unlock(&q->busylock);
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002795 return rc;
2796}
2797
Daniel Borkmann86f85152013-12-29 17:27:11 +01002798#if IS_ENABLED(CONFIG_CGROUP_NET_PRIO)
Neil Horman5bc14212011-11-22 05:10:51 +00002799static void skb_update_prio(struct sk_buff *skb)
2800{
Igor Maravic6977a792011-11-25 07:44:54 +00002801 struct netprio_map *map = rcu_dereference_bh(skb->dev->priomap);
Neil Horman5bc14212011-11-22 05:10:51 +00002802
Eric Dumazet91c68ce2012-07-08 21:45:10 +00002803 if (!skb->priority && skb->sk && map) {
2804 unsigned int prioidx = skb->sk->sk_cgrp_prioidx;
2805
2806 if (prioidx < map->priomap_len)
2807 skb->priority = map->priomap[prioidx];
2808 }
Neil Horman5bc14212011-11-22 05:10:51 +00002809}
2810#else
2811#define skb_update_prio(skb)
2812#endif
2813
Eric Dumazet745e20f2010-09-29 13:23:09 -07002814static DEFINE_PER_CPU(int, xmit_recursion);
David S. Miller11a766c2010-10-25 12:51:55 -07002815#define RECURSION_LIMIT 10
Eric Dumazet745e20f2010-09-29 13:23:09 -07002816
Dave Jonesd29f7492008-07-22 14:09:06 -07002817/**
Michel Machado95603e22012-06-12 10:16:35 +00002818 * dev_loopback_xmit - loop back @skb
2819 * @skb: buffer to transmit
2820 */
2821int dev_loopback_xmit(struct sk_buff *skb)
2822{
2823 skb_reset_mac_header(skb);
2824 __skb_pull(skb, skb_network_offset(skb));
2825 skb->pkt_type = PACKET_LOOPBACK;
2826 skb->ip_summed = CHECKSUM_UNNECESSARY;
2827 WARN_ON(!skb_dst(skb));
2828 skb_dst_force(skb);
2829 netif_rx_ni(skb);
2830 return 0;
2831}
2832EXPORT_SYMBOL(dev_loopback_xmit);
2833
2834/**
Jason Wang9d08dd32014-01-20 11:25:13 +08002835 * __dev_queue_xmit - transmit a buffer
Dave Jonesd29f7492008-07-22 14:09:06 -07002836 * @skb: buffer to transmit
Jason Wang9d08dd32014-01-20 11:25:13 +08002837 * @accel_priv: private data used for L2 forwarding offload
Dave Jonesd29f7492008-07-22 14:09:06 -07002838 *
2839 * Queue a buffer for transmission to a network device. The caller must
2840 * have set the device and priority and built the buffer before calling
2841 * this function. The function can be called from an interrupt.
2842 *
2843 * A negative errno code is returned on a failure. A success does not
2844 * guarantee the frame will be transmitted as it may be dropped due
2845 * to congestion or traffic shaping.
2846 *
2847 * -----------------------------------------------------------------------------------
2848 * I notice this method can also return errors from the queue disciplines,
2849 * including NET_XMIT_DROP, which is a positive value. So, errors can also
2850 * be positive.
2851 *
2852 * Regardless of the return value, the skb is consumed, so it is currently
2853 * difficult to retry a send to this method. (You can bump the ref count
2854 * before sending to hold a reference for retry if you are careful.)
2855 *
2856 * When calling this method, interrupts MUST be enabled. This is because
2857 * the BH enable code must have IRQs enabled so that it will not deadlock.
2858 * --BLG
2859 */
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05302860static int __dev_queue_xmit(struct sk_buff *skb, void *accel_priv)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861{
2862 struct net_device *dev = skb->dev;
David S. Millerdc2b4842008-07-08 17:18:23 -07002863 struct netdev_queue *txq;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 struct Qdisc *q;
2865 int rc = -ENOMEM;
2866
Eric Dumazet6d1ccff2013-02-05 20:22:20 +00002867 skb_reset_mac_header(skb);
2868
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002869 /* Disable soft irqs for various locks below. Also
2870 * stops preemption for RCU.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09002872 rcu_read_lock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Neil Horman5bc14212011-11-22 05:10:51 +00002874 skb_update_prio(skb);
2875
Jason Wangf663dd92014-01-10 16:18:26 +08002876 txq = netdev_pick_tx(dev, skb, accel_priv);
Paul E. McKenneya898def2010-02-22 17:04:49 -08002877 q = rcu_dereference_bh(txq->qdisc);
David S. Miller37437bb2008-07-16 02:15:04 -07002878
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879#ifdef CONFIG_NET_CLS_ACT
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002880 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_EGRESS);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881#endif
Koki Sanagicf66ba52010-08-23 18:45:02 +09002882 trace_net_dev_queue(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 if (q->enqueue) {
Krishna Kumarbbd8a0d2009-08-06 01:44:21 +00002884 rc = __dev_xmit_skb(skb, q, dev, txq);
David S. Miller37437bb2008-07-16 02:15:04 -07002885 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 }
2887
2888 /* The device has no queue. Common case for software devices:
2889 loopback, all the sorts of tunnels...
2890
Herbert Xu932ff272006-06-09 12:20:56 -07002891 Really, it is unlikely that netif_tx_lock protection is necessary
2892 here. (f.e. loopback and IP tunnels are clean ignoring statistics
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 counters.)
2894 However, it is possible, that they rely on protection
2895 made by us here.
2896
2897 Check this and shot the lock. It is not prone from deadlocks.
2898 Either shot noqueue qdisc, it is even simpler 8)
2899 */
2900 if (dev->flags & IFF_UP) {
2901 int cpu = smp_processor_id(); /* ok because BHs are off */
2902
David S. Millerc773e842008-07-08 23:13:53 -07002903 if (txq->xmit_lock_owner != cpu) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
Eric Dumazet745e20f2010-09-29 13:23:09 -07002905 if (__this_cpu_read(xmit_recursion) > RECURSION_LIMIT)
2906 goto recursion_alert;
2907
David S. Millerc773e842008-07-08 23:13:53 -07002908 HARD_TX_LOCK(dev, txq, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Tom Herbert734664982011-11-28 16:32:44 +00002910 if (!netif_xmit_stopped(txq)) {
Eric Dumazet745e20f2010-09-29 13:23:09 -07002911 __this_cpu_inc(xmit_recursion);
Jason Wangf663dd92014-01-10 16:18:26 +08002912 rc = dev_hard_start_xmit(skb, dev, txq);
Eric Dumazet745e20f2010-09-29 13:23:09 -07002913 __this_cpu_dec(xmit_recursion);
Patrick McHardy572a9d72009-11-10 06:14:14 +00002914 if (dev_xmit_complete(rc)) {
David S. Millerc773e842008-07-08 23:13:53 -07002915 HARD_TX_UNLOCK(dev, txq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 goto out;
2917 }
2918 }
David S. Millerc773e842008-07-08 23:13:53 -07002919 HARD_TX_UNLOCK(dev, txq);
Joe Perchese87cc472012-05-13 21:56:26 +00002920 net_crit_ratelimited("Virtual device %s asks to queue packet!\n",
2921 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 } else {
2923 /* Recursion is detected! It is possible,
Eric Dumazet745e20f2010-09-29 13:23:09 -07002924 * unfortunately
2925 */
2926recursion_alert:
Joe Perchese87cc472012-05-13 21:56:26 +00002927 net_crit_ratelimited("Dead loop on virtual device %s, fix it urgently!\n",
2928 dev->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 }
2930 }
2931
2932 rc = -ENETDOWN;
Herbert Xud4828d82006-06-22 02:28:18 -07002933 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
Eric Dumazet015f0682014-03-27 08:45:56 -07002935 atomic_long_inc(&dev->tx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 kfree_skb(skb);
2937 return rc;
2938out:
Herbert Xud4828d82006-06-22 02:28:18 -07002939 rcu_read_unlock_bh();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 return rc;
2941}
Jason Wangf663dd92014-01-10 16:18:26 +08002942
2943int dev_queue_xmit(struct sk_buff *skb)
2944{
2945 return __dev_queue_xmit(skb, NULL);
2946}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07002947EXPORT_SYMBOL(dev_queue_xmit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
Jason Wangf663dd92014-01-10 16:18:26 +08002949int dev_queue_xmit_accel(struct sk_buff *skb, void *accel_priv)
2950{
2951 return __dev_queue_xmit(skb, accel_priv);
2952}
2953EXPORT_SYMBOL(dev_queue_xmit_accel);
2954
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
2956/*=======================================================================
2957 Receiver routines
2958 =======================================================================*/
2959
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07002960int netdev_max_backlog __read_mostly = 1000;
Eric Dumazetc9e6bc62012-09-27 19:29:05 +00002961EXPORT_SYMBOL(netdev_max_backlog);
2962
Eric Dumazet3b098e22010-05-15 23:57:10 -07002963int netdev_tstamp_prequeue __read_mostly = 1;
Stephen Hemminger6b2bedc2007-03-12 14:33:50 -07002964int netdev_budget __read_mostly = 300;
2965int weight_p __read_mostly = 64; /* old backlog weight */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07002967/* Called with irq disabled */
2968static inline void ____napi_schedule(struct softnet_data *sd,
2969 struct napi_struct *napi)
2970{
2971 list_add_tail(&napi->poll_list, &sd->poll_list);
2972 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
2973}
2974
Eric Dumazetdf334542010-03-24 19:13:54 +00002975#ifdef CONFIG_RPS
Tom Herbertfec5e652010-04-16 16:01:27 -07002976
2977/* One global table that all flow-based protocols share. */
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00002978struct rps_sock_flow_table __rcu *rps_sock_flow_table __read_mostly;
Tom Herbertfec5e652010-04-16 16:01:27 -07002979EXPORT_SYMBOL(rps_sock_flow_table);
2980
Ingo Molnarc5905af2012-02-24 08:31:31 +01002981struct static_key rps_needed __read_mostly;
Eric Dumazetadc93002011-11-17 03:13:26 +00002982
Ben Hutchingsc4454772011-01-19 11:03:53 +00002983static struct rps_dev_flow *
2984set_rps_cpu(struct net_device *dev, struct sk_buff *skb,
2985 struct rps_dev_flow *rflow, u16 next_cpu)
2986{
Ben Hutchings09994d12011-10-03 04:42:46 +00002987 if (next_cpu != RPS_NO_CPU) {
Ben Hutchingsc4454772011-01-19 11:03:53 +00002988#ifdef CONFIG_RFS_ACCEL
2989 struct netdev_rx_queue *rxqueue;
2990 struct rps_dev_flow_table *flow_table;
2991 struct rps_dev_flow *old_rflow;
2992 u32 flow_id;
2993 u16 rxq_index;
2994 int rc;
2995
2996 /* Should we steer this flow to a different hardware queue? */
Ben Hutchings69a19ee2011-02-15 20:32:04 +00002997 if (!skb_rx_queue_recorded(skb) || !dev->rx_cpu_rmap ||
2998 !(dev->features & NETIF_F_NTUPLE))
Ben Hutchingsc4454772011-01-19 11:03:53 +00002999 goto out;
3000 rxq_index = cpu_rmap_lookup_index(dev->rx_cpu_rmap, next_cpu);
3001 if (rxq_index == skb_get_rx_queue(skb))
3002 goto out;
3003
3004 rxqueue = dev->_rx + rxq_index;
3005 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3006 if (!flow_table)
3007 goto out;
Tom Herbert61b905d2014-03-24 15:34:47 -07003008 flow_id = skb_get_hash(skb) & flow_table->mask;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003009 rc = dev->netdev_ops->ndo_rx_flow_steer(dev, skb,
3010 rxq_index, flow_id);
3011 if (rc < 0)
3012 goto out;
3013 old_rflow = rflow;
3014 rflow = &flow_table->flows[flow_id];
Ben Hutchingsc4454772011-01-19 11:03:53 +00003015 rflow->filter = rc;
3016 if (old_rflow->filter == rflow->filter)
3017 old_rflow->filter = RPS_NO_FILTER;
3018 out:
3019#endif
3020 rflow->last_qtail =
Ben Hutchings09994d12011-10-03 04:42:46 +00003021 per_cpu(softnet_data, next_cpu).input_queue_head;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003022 }
3023
Ben Hutchings09994d12011-10-03 04:42:46 +00003024 rflow->cpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003025 return rflow;
3026}
3027
Tom Herbert0a9627f2010-03-16 08:03:29 +00003028/*
3029 * get_rps_cpu is called from netif_receive_skb and returns the target
3030 * CPU from the RPS map of the receiving queue for a given skb.
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003031 * rcu_read_lock must be held on entry.
Tom Herbert0a9627f2010-03-16 08:03:29 +00003032 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003033static int get_rps_cpu(struct net_device *dev, struct sk_buff *skb,
3034 struct rps_dev_flow **rflowp)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003035{
Tom Herbert0a9627f2010-03-16 08:03:29 +00003036 struct netdev_rx_queue *rxqueue;
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003037 struct rps_map *map;
Tom Herbertfec5e652010-04-16 16:01:27 -07003038 struct rps_dev_flow_table *flow_table;
3039 struct rps_sock_flow_table *sock_flow_table;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003040 int cpu = -1;
Tom Herbertfec5e652010-04-16 16:01:27 -07003041 u16 tcpu;
Tom Herbert61b905d2014-03-24 15:34:47 -07003042 u32 hash;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003043
Tom Herbert0a9627f2010-03-16 08:03:29 +00003044 if (skb_rx_queue_recorded(skb)) {
3045 u16 index = skb_get_rx_queue(skb);
Ben Hutchings62fe0b42010-09-27 08:24:33 +00003046 if (unlikely(index >= dev->real_num_rx_queues)) {
3047 WARN_ONCE(dev->real_num_rx_queues > 1,
3048 "%s received packet on queue %u, but number "
3049 "of RX queues is %u\n",
3050 dev->name, index, dev->real_num_rx_queues);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003051 goto done;
3052 }
3053 rxqueue = dev->_rx + index;
3054 } else
3055 rxqueue = dev->_rx;
3056
Eric Dumazet6e3f7fa2010-10-25 03:02:02 +00003057 map = rcu_dereference(rxqueue->rps_map);
3058 if (map) {
Tom Herbert85875232011-01-31 16:23:42 -08003059 if (map->len == 1 &&
Eric Dumazet33d480c2011-08-11 19:30:52 +00003060 !rcu_access_pointer(rxqueue->rps_flow_table)) {
Changli Gao6febfca2010-09-03 23:12:37 +00003061 tcpu = map->cpus[0];
3062 if (cpu_online(tcpu))
3063 cpu = tcpu;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003064 goto done;
Eric Dumazetb249dcb2010-04-19 21:56:38 +00003065 }
Eric Dumazet33d480c2011-08-11 19:30:52 +00003066 } else if (!rcu_access_pointer(rxqueue->rps_flow_table)) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00003067 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003068 }
3069
Changli Gao2d47b452010-08-17 19:00:56 +00003070 skb_reset_network_header(skb);
Tom Herbert61b905d2014-03-24 15:34:47 -07003071 hash = skb_get_hash(skb);
3072 if (!hash)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003073 goto done;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003074
Tom Herbertfec5e652010-04-16 16:01:27 -07003075 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3076 sock_flow_table = rcu_dereference(rps_sock_flow_table);
3077 if (flow_table && sock_flow_table) {
3078 u16 next_cpu;
3079 struct rps_dev_flow *rflow;
3080
Tom Herbert61b905d2014-03-24 15:34:47 -07003081 rflow = &flow_table->flows[hash & flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07003082 tcpu = rflow->cpu;
3083
Tom Herbert61b905d2014-03-24 15:34:47 -07003084 next_cpu = sock_flow_table->ents[hash & sock_flow_table->mask];
Tom Herbertfec5e652010-04-16 16:01:27 -07003085
3086 /*
3087 * If the desired CPU (where last recvmsg was done) is
3088 * different from current CPU (one in the rx-queue flow
3089 * table entry), switch if one of the following holds:
3090 * - Current CPU is unset (equal to RPS_NO_CPU).
3091 * - Current CPU is offline.
3092 * - The current CPU's queue tail has advanced beyond the
3093 * last packet that was enqueued using this table entry.
3094 * This guarantees that all previous packets for the flow
3095 * have been dequeued, thus preserving in order delivery.
3096 */
3097 if (unlikely(tcpu != next_cpu) &&
3098 (tcpu == RPS_NO_CPU || !cpu_online(tcpu) ||
3099 ((int)(per_cpu(softnet_data, tcpu).input_queue_head -
Tom Herbertbaefa312012-11-16 09:04:15 +00003100 rflow->last_qtail)) >= 0)) {
3101 tcpu = next_cpu;
Ben Hutchingsc4454772011-01-19 11:03:53 +00003102 rflow = set_rps_cpu(dev, skb, rflow, next_cpu);
Tom Herbertbaefa312012-11-16 09:04:15 +00003103 }
Ben Hutchingsc4454772011-01-19 11:03:53 +00003104
Tom Herbertfec5e652010-04-16 16:01:27 -07003105 if (tcpu != RPS_NO_CPU && cpu_online(tcpu)) {
3106 *rflowp = rflow;
3107 cpu = tcpu;
3108 goto done;
3109 }
3110 }
3111
Tom Herbert0a9627f2010-03-16 08:03:29 +00003112 if (map) {
Tom Herbert61b905d2014-03-24 15:34:47 -07003113 tcpu = map->cpus[((u64) hash * map->len) >> 32];
Tom Herbert0a9627f2010-03-16 08:03:29 +00003114
3115 if (cpu_online(tcpu)) {
3116 cpu = tcpu;
3117 goto done;
3118 }
3119 }
3120
3121done:
Tom Herbert0a9627f2010-03-16 08:03:29 +00003122 return cpu;
3123}
3124
Ben Hutchingsc4454772011-01-19 11:03:53 +00003125#ifdef CONFIG_RFS_ACCEL
3126
3127/**
3128 * rps_may_expire_flow - check whether an RFS hardware filter may be removed
3129 * @dev: Device on which the filter was set
3130 * @rxq_index: RX queue index
3131 * @flow_id: Flow ID passed to ndo_rx_flow_steer()
3132 * @filter_id: Filter ID returned by ndo_rx_flow_steer()
3133 *
3134 * Drivers that implement ndo_rx_flow_steer() should periodically call
3135 * this function for each installed filter and remove the filters for
3136 * which it returns %true.
3137 */
3138bool rps_may_expire_flow(struct net_device *dev, u16 rxq_index,
3139 u32 flow_id, u16 filter_id)
3140{
3141 struct netdev_rx_queue *rxqueue = dev->_rx + rxq_index;
3142 struct rps_dev_flow_table *flow_table;
3143 struct rps_dev_flow *rflow;
3144 bool expire = true;
3145 int cpu;
3146
3147 rcu_read_lock();
3148 flow_table = rcu_dereference(rxqueue->rps_flow_table);
3149 if (flow_table && flow_id <= flow_table->mask) {
3150 rflow = &flow_table->flows[flow_id];
3151 cpu = ACCESS_ONCE(rflow->cpu);
3152 if (rflow->filter == filter_id && cpu != RPS_NO_CPU &&
3153 ((int)(per_cpu(softnet_data, cpu).input_queue_head -
3154 rflow->last_qtail) <
3155 (int)(10 * flow_table->mask)))
3156 expire = false;
3157 }
3158 rcu_read_unlock();
3159 return expire;
3160}
3161EXPORT_SYMBOL(rps_may_expire_flow);
3162
3163#endif /* CONFIG_RFS_ACCEL */
3164
Tom Herbert0a9627f2010-03-16 08:03:29 +00003165/* Called from hardirq (IPI) context */
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003166static void rps_trigger_softirq(void *data)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003167{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003168 struct softnet_data *sd = data;
3169
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003170 ____napi_schedule(sd, &sd->backlog);
Changli Gaodee42872010-05-02 05:42:16 +00003171 sd->received_rps++;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003172}
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003173
Tom Herbertfec5e652010-04-16 16:01:27 -07003174#endif /* CONFIG_RPS */
Tom Herbert0a9627f2010-03-16 08:03:29 +00003175
3176/*
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003177 * Check if this softnet_data structure is another cpu one
3178 * If yes, queue it to our IPI list and return 1
3179 * If no, return 0
3180 */
3181static int rps_ipi_queued(struct softnet_data *sd)
3182{
3183#ifdef CONFIG_RPS
3184 struct softnet_data *mysd = &__get_cpu_var(softnet_data);
3185
3186 if (sd != mysd) {
3187 sd->rps_ipi_next = mysd->rps_ipi_list;
3188 mysd->rps_ipi_list = sd;
3189
3190 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
3191 return 1;
3192 }
3193#endif /* CONFIG_RPS */
3194 return 0;
3195}
3196
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003197#ifdef CONFIG_NET_FLOW_LIMIT
3198int netdev_flow_limit_table_len __read_mostly = (1 << 12);
3199#endif
3200
3201static bool skb_flow_limit(struct sk_buff *skb, unsigned int qlen)
3202{
3203#ifdef CONFIG_NET_FLOW_LIMIT
3204 struct sd_flow_limit *fl;
3205 struct softnet_data *sd;
3206 unsigned int old_flow, new_flow;
3207
3208 if (qlen < (netdev_max_backlog >> 1))
3209 return false;
3210
3211 sd = &__get_cpu_var(softnet_data);
3212
3213 rcu_read_lock();
3214 fl = rcu_dereference(sd->flow_limit);
3215 if (fl) {
Tom Herbert3958afa1b2013-12-15 22:12:06 -08003216 new_flow = skb_get_hash(skb) & (fl->num_buckets - 1);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003217 old_flow = fl->history[fl->history_head];
3218 fl->history[fl->history_head] = new_flow;
3219
3220 fl->history_head++;
3221 fl->history_head &= FLOW_LIMIT_HISTORY - 1;
3222
3223 if (likely(fl->buckets[old_flow]))
3224 fl->buckets[old_flow]--;
3225
3226 if (++fl->buckets[new_flow] > (FLOW_LIMIT_HISTORY >> 1)) {
3227 fl->count++;
3228 rcu_read_unlock();
3229 return true;
3230 }
3231 }
3232 rcu_read_unlock();
3233#endif
3234 return false;
3235}
3236
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003237/*
Tom Herbert0a9627f2010-03-16 08:03:29 +00003238 * enqueue_to_backlog is called to queue an skb to a per CPU backlog
3239 * queue (may be a remote CPU queue).
3240 */
Tom Herbertfec5e652010-04-16 16:01:27 -07003241static int enqueue_to_backlog(struct sk_buff *skb, int cpu,
3242 unsigned int *qtail)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003243{
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003244 struct softnet_data *sd;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003245 unsigned long flags;
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003246 unsigned int qlen;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003247
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003248 sd = &per_cpu(softnet_data, cpu);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003249
3250 local_irq_save(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003251
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003252 rps_lock(sd);
Willem de Bruijn99bbc702013-05-20 04:02:32 +00003253 qlen = skb_queue_len(&sd->input_pkt_queue);
3254 if (qlen <= netdev_max_backlog && !skb_flow_limit(skb, qlen)) {
Changli Gao6e7676c2010-04-27 15:07:33 -07003255 if (skb_queue_len(&sd->input_pkt_queue)) {
Tom Herbert0a9627f2010-03-16 08:03:29 +00003256enqueue:
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003257 __skb_queue_tail(&sd->input_pkt_queue, skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003258 input_queue_tail_incr_save(sd, qtail);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003259 rps_unlock(sd);
Changli Gao152102c2010-03-30 20:16:22 +00003260 local_irq_restore(flags);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003261 return NET_RX_SUCCESS;
3262 }
3263
Eric Dumazetebda37c22010-05-06 23:51:21 +00003264 /* Schedule NAPI for backlog device
3265 * We can use non atomic operation since we own the queue lock
3266 */
3267 if (!__test_and_set_bit(NAPI_STATE_SCHED, &sd->backlog.state)) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003268 if (!rps_ipi_queued(sd))
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07003269 ____napi_schedule(sd, &sd->backlog);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003270 }
3271 goto enqueue;
3272 }
3273
Changli Gaodee42872010-05-02 05:42:16 +00003274 sd->dropped++;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003275 rps_unlock(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003276
Tom Herbert0a9627f2010-03-16 08:03:29 +00003277 local_irq_restore(flags);
3278
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003279 atomic_long_inc(&skb->dev->rx_dropped);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003280 kfree_skb(skb);
3281 return NET_RX_DROP;
3282}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003284static int netif_rx_internal(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003285{
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003286 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287
Eric Dumazet588f0332011-11-15 04:12:55 +00003288 net_timestamp_check(netdev_tstamp_prequeue, skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289
Koki Sanagicf66ba52010-08-23 18:45:02 +09003290 trace_netif_rx(skb);
Eric Dumazetdf334542010-03-24 19:13:54 +00003291#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003292 if (static_key_false(&rps_needed)) {
Tom Herbertfec5e652010-04-16 16:01:27 -07003293 struct rps_dev_flow voidflow, *rflow = &voidflow;
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003294 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295
Changli Gaocece1942010-08-07 20:35:43 -07003296 preempt_disable();
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003297 rcu_read_lock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003298
3299 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003300 if (cpu < 0)
3301 cpu = smp_processor_id();
Tom Herbertfec5e652010-04-16 16:01:27 -07003302
3303 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3304
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003305 rcu_read_unlock();
Changli Gaocece1942010-08-07 20:35:43 -07003306 preempt_enable();
Eric Dumazetadc93002011-11-17 03:13:26 +00003307 } else
3308#endif
Tom Herbertfec5e652010-04-16 16:01:27 -07003309 {
3310 unsigned int qtail;
3311 ret = enqueue_to_backlog(skb, get_cpu(), &qtail);
3312 put_cpu();
3313 }
Eric Dumazetb0e28f12010-04-15 00:14:07 -07003314 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003316
3317/**
3318 * netif_rx - post buffer to the network code
3319 * @skb: buffer to post
3320 *
3321 * This function receives a packet from a device driver and queues it for
3322 * the upper (protocol) levels to process. It always succeeds. The buffer
3323 * may be dropped during processing for congestion control or by the
3324 * protocol layers.
3325 *
3326 * return values:
3327 * NET_RX_SUCCESS (no congestion)
3328 * NET_RX_DROP (packet was dropped)
3329 *
3330 */
3331
3332int netif_rx(struct sk_buff *skb)
3333{
3334 trace_netif_rx_entry(skb);
3335
3336 return netif_rx_internal(skb);
3337}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003338EXPORT_SYMBOL(netif_rx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003339
3340int netif_rx_ni(struct sk_buff *skb)
3341{
3342 int err;
3343
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003344 trace_netif_rx_ni_entry(skb);
3345
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 preempt_disable();
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003347 err = netif_rx_internal(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 if (local_softirq_pending())
3349 do_softirq();
3350 preempt_enable();
3351
3352 return err;
3353}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354EXPORT_SYMBOL(netif_rx_ni);
3355
Linus Torvalds1da177e2005-04-16 15:20:36 -07003356static void net_tx_action(struct softirq_action *h)
3357{
3358 struct softnet_data *sd = &__get_cpu_var(softnet_data);
3359
3360 if (sd->completion_queue) {
3361 struct sk_buff *clist;
3362
3363 local_irq_disable();
3364 clist = sd->completion_queue;
3365 sd->completion_queue = NULL;
3366 local_irq_enable();
3367
3368 while (clist) {
3369 struct sk_buff *skb = clist;
3370 clist = clist->next;
3371
Ilpo Järvinen547b7922008-07-25 21:43:18 -07003372 WARN_ON(atomic_read(&skb->users));
Eric Dumazete6247022013-12-05 04:45:08 -08003373 if (likely(get_kfree_skb_cb(skb)->reason == SKB_REASON_CONSUMED))
3374 trace_consume_skb(skb);
3375 else
3376 trace_kfree_skb(skb, net_tx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 __kfree_skb(skb);
3378 }
3379 }
3380
3381 if (sd->output_queue) {
David S. Miller37437bb2008-07-16 02:15:04 -07003382 struct Qdisc *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383
3384 local_irq_disable();
3385 head = sd->output_queue;
3386 sd->output_queue = NULL;
Changli Gaoa9cbd582010-04-26 23:06:24 +00003387 sd->output_queue_tailp = &sd->output_queue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 local_irq_enable();
3389
3390 while (head) {
David S. Miller37437bb2008-07-16 02:15:04 -07003391 struct Qdisc *q = head;
3392 spinlock_t *root_lock;
3393
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 head = head->next_sched;
3395
David S. Miller5fb66222008-08-02 20:02:43 -07003396 root_lock = qdisc_lock(q);
David S. Miller37437bb2008-07-16 02:15:04 -07003397 if (spin_trylock(root_lock)) {
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003398 smp_mb__before_atomic();
Jarek Poplawskidef82a12008-08-17 21:54:43 -07003399 clear_bit(__QDISC_STATE_SCHED,
3400 &q->state);
David S. Miller37437bb2008-07-16 02:15:04 -07003401 qdisc_run(q);
3402 spin_unlock(root_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 } else {
David S. Miller195648b2008-08-19 04:00:36 -07003404 if (!test_bit(__QDISC_STATE_DEACTIVATED,
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07003405 &q->state)) {
David S. Miller195648b2008-08-19 04:00:36 -07003406 __netif_reschedule(q);
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07003407 } else {
Peter Zijlstra4e857c52014-03-17 18:06:10 +01003408 smp_mb__before_atomic();
Jarek Poplawskie8a83e12008-09-07 18:41:21 -07003409 clear_bit(__QDISC_STATE_SCHED,
3410 &q->state);
3411 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 }
3413 }
3414 }
3415}
3416
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003417#if (defined(CONFIG_BRIDGE) || defined(CONFIG_BRIDGE_MODULE)) && \
3418 (defined(CONFIG_ATM_LANE) || defined(CONFIG_ATM_LANE_MODULE))
Michał Mirosławda678292009-06-05 05:35:28 +00003419/* This hook is defined here for ATM LANE */
3420int (*br_fdb_test_addr_hook)(struct net_device *dev,
3421 unsigned char *addr) __read_mostly;
Stephen Hemminger4fb019a2009-09-11 11:50:08 -07003422EXPORT_SYMBOL_GPL(br_fdb_test_addr_hook);
Michał Mirosławda678292009-06-05 05:35:28 +00003423#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425#ifdef CONFIG_NET_CLS_ACT
3426/* TODO: Maybe we should just force sch_ingress to be compiled in
3427 * when CONFIG_NET_CLS_ACT is? otherwise some useless instructions
3428 * a compare and 2 stores extra right now if we dont have it on
3429 * but have CONFIG_NET_CLS_ACT
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003430 * NOTE: This doesn't stop any functionality; if you dont have
3431 * the ingress scheduler, you just can't add policies on ingress.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 *
3433 */
Eric Dumazet24824a02010-10-02 06:11:55 +00003434static int ing_filter(struct sk_buff *skb, struct netdev_queue *rxq)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 struct net_device *dev = skb->dev;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003437 u32 ttl = G_TC_RTTL(skb->tc_verd);
David S. Miller555353c2008-07-08 17:33:13 -07003438 int result = TC_ACT_OK;
3439 struct Qdisc *q;
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003440
Stephen Hemmingerde384832010-08-01 00:33:23 -07003441 if (unlikely(MAX_RED_LOOP < ttl++)) {
Joe Perchese87cc472012-05-13 21:56:26 +00003442 net_warn_ratelimited("Redir loop detected Dropping packet (%d->%d)\n",
3443 skb->skb_iif, dev->ifindex);
Herbert Xuf697c3e2007-10-14 00:38:47 -07003444 return TC_ACT_SHOT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 }
3446
Herbert Xuf697c3e2007-10-14 00:38:47 -07003447 skb->tc_verd = SET_TC_RTTL(skb->tc_verd, ttl);
3448 skb->tc_verd = SET_TC_AT(skb->tc_verd, AT_INGRESS);
3449
David S. Miller83874002008-07-17 00:53:03 -07003450 q = rxq->qdisc;
David S. Miller8d50b532008-07-30 02:37:46 -07003451 if (q != &noop_qdisc) {
David S. Miller83874002008-07-17 00:53:03 -07003452 spin_lock(qdisc_lock(q));
David S. Millera9312ae2008-08-17 21:51:03 -07003453 if (likely(!test_bit(__QDISC_STATE_DEACTIVATED, &q->state)))
3454 result = qdisc_enqueue_root(skb, q);
David S. Miller83874002008-07-17 00:53:03 -07003455 spin_unlock(qdisc_lock(q));
3456 }
Herbert Xuf697c3e2007-10-14 00:38:47 -07003457
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 return result;
3459}
Herbert Xuf697c3e2007-10-14 00:38:47 -07003460
3461static inline struct sk_buff *handle_ing(struct sk_buff *skb,
3462 struct packet_type **pt_prev,
3463 int *ret, struct net_device *orig_dev)
3464{
Eric Dumazet24824a02010-10-02 06:11:55 +00003465 struct netdev_queue *rxq = rcu_dereference(skb->dev->ingress_queue);
3466
3467 if (!rxq || rxq->qdisc == &noop_qdisc)
Herbert Xuf697c3e2007-10-14 00:38:47 -07003468 goto out;
3469
3470 if (*pt_prev) {
3471 *ret = deliver_skb(skb, *pt_prev, orig_dev);
3472 *pt_prev = NULL;
Herbert Xuf697c3e2007-10-14 00:38:47 -07003473 }
3474
Eric Dumazet24824a02010-10-02 06:11:55 +00003475 switch (ing_filter(skb, rxq)) {
Herbert Xuf697c3e2007-10-14 00:38:47 -07003476 case TC_ACT_SHOT:
3477 case TC_ACT_STOLEN:
3478 kfree_skb(skb);
3479 return NULL;
3480 }
3481
3482out:
3483 skb->tc_verd = 0;
3484 return skb;
3485}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486#endif
3487
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003488/**
3489 * netdev_rx_handler_register - register receive handler
3490 * @dev: device to register a handler for
3491 * @rx_handler: receive handler to register
Jiri Pirko93e2c322010-06-10 03:34:59 +00003492 * @rx_handler_data: data pointer that is used by rx handler
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003493 *
Masanari Iidae2278672014-02-18 22:54:36 +09003494 * Register a receive handler for a device. This handler will then be
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003495 * called from __netif_receive_skb. A negative errno code is returned
3496 * on a failure.
3497 *
3498 * The caller must hold the rtnl_mutex.
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003499 *
3500 * For a general description of rx_handler, see enum rx_handler_result.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003501 */
3502int netdev_rx_handler_register(struct net_device *dev,
Jiri Pirko93e2c322010-06-10 03:34:59 +00003503 rx_handler_func_t *rx_handler,
3504 void *rx_handler_data)
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003505{
3506 ASSERT_RTNL();
3507
3508 if (dev->rx_handler)
3509 return -EBUSY;
3510
Eric Dumazet00cfec32013-03-29 03:01:22 +00003511 /* Note: rx_handler_data must be set before rx_handler */
Jiri Pirko93e2c322010-06-10 03:34:59 +00003512 rcu_assign_pointer(dev->rx_handler_data, rx_handler_data);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003513 rcu_assign_pointer(dev->rx_handler, rx_handler);
3514
3515 return 0;
3516}
3517EXPORT_SYMBOL_GPL(netdev_rx_handler_register);
3518
3519/**
3520 * netdev_rx_handler_unregister - unregister receive handler
3521 * @dev: device to unregister a handler from
3522 *
Kusanagi Kouichi166ec362013-03-18 02:59:52 +00003523 * Unregister a receive handler from a device.
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003524 *
3525 * The caller must hold the rtnl_mutex.
3526 */
3527void netdev_rx_handler_unregister(struct net_device *dev)
3528{
3529
3530 ASSERT_RTNL();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003531 RCU_INIT_POINTER(dev->rx_handler, NULL);
Eric Dumazet00cfec32013-03-29 03:01:22 +00003532 /* a reader seeing a non NULL rx_handler in a rcu_read_lock()
3533 * section has a guarantee to see a non NULL rx_handler_data
3534 * as well.
3535 */
3536 synchronize_net();
Stephen Hemmingera9b3cd72011-08-01 16:19:00 +00003537 RCU_INIT_POINTER(dev->rx_handler_data, NULL);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003538}
3539EXPORT_SYMBOL_GPL(netdev_rx_handler_unregister);
3540
Mel Gormanb4b9e352012-07-31 16:44:26 -07003541/*
3542 * Limit the use of PFMEMALLOC reserves to those protocols that implement
3543 * the special handling of PFMEMALLOC skbs.
3544 */
3545static bool skb_pfmemalloc_protocol(struct sk_buff *skb)
3546{
3547 switch (skb->protocol) {
Joe Perches2b8837a2014-03-12 10:04:17 -07003548 case htons(ETH_P_ARP):
3549 case htons(ETH_P_IP):
3550 case htons(ETH_P_IPV6):
3551 case htons(ETH_P_8021Q):
3552 case htons(ETH_P_8021AD):
Mel Gormanb4b9e352012-07-31 16:44:26 -07003553 return true;
3554 default:
3555 return false;
3556 }
3557}
3558
David S. Miller9754e292013-02-14 15:57:38 -05003559static int __netif_receive_skb_core(struct sk_buff *skb, bool pfmemalloc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560{
3561 struct packet_type *ptype, *pt_prev;
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003562 rx_handler_func_t *rx_handler;
David S. Millerf2ccd8f2005-08-09 19:34:12 -07003563 struct net_device *orig_dev;
David S. Miller63d8ea72011-02-28 10:48:59 -08003564 struct net_device *null_or_dev;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003565 bool deliver_exact = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 int ret = NET_RX_DROP;
Al Viro252e3342006-11-14 20:48:11 -08003567 __be16 type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568
Eric Dumazet588f0332011-11-15 04:12:55 +00003569 net_timestamp_check(!netdev_tstamp_prequeue, skb);
Eric Dumazet81bbb3d2009-09-30 16:42:42 -07003570
Koki Sanagicf66ba52010-08-23 18:45:02 +09003571 trace_netif_receive_skb(skb);
Patrick McHardy9b22ea52008-11-04 14:49:57 -08003572
Joe Eykholtcc9bd5c2008-07-02 18:22:00 -07003573 orig_dev = skb->dev;
Jiri Pirko1765a572011-02-12 06:48:36 +00003574
Arnaldo Carvalho de Meloc1d2bbe2007-04-10 20:45:18 -07003575 skb_reset_network_header(skb);
Eric Dumazetfda55ec2013-01-07 09:28:21 +00003576 if (!skb_transport_header_was_set(skb))
3577 skb_reset_transport_header(skb);
Jiri Pirko0b5c9db2011-06-10 06:56:58 +00003578 skb_reset_mac_len(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579
3580 pt_prev = NULL;
3581
3582 rcu_read_lock();
3583
David S. Miller63d8ea72011-02-28 10:48:59 -08003584another_round:
David S. Millerb6858172012-07-23 16:27:54 -07003585 skb->skb_iif = skb->dev->ifindex;
David S. Miller63d8ea72011-02-28 10:48:59 -08003586
3587 __this_cpu_inc(softnet_data.processed);
3588
Patrick McHardy8ad227f2013-04-19 02:04:31 +00003589 if (skb->protocol == cpu_to_be16(ETH_P_8021Q) ||
3590 skb->protocol == cpu_to_be16(ETH_P_8021AD)) {
Jiri Pirkobcc6d472011-04-07 19:48:33 +00003591 skb = vlan_untag(skb);
3592 if (unlikely(!skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07003593 goto unlock;
Jiri Pirkobcc6d472011-04-07 19:48:33 +00003594 }
3595
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596#ifdef CONFIG_NET_CLS_ACT
3597 if (skb->tc_verd & TC_NCLS) {
3598 skb->tc_verd = CLR_TC_NCLS(skb->tc_verd);
3599 goto ncls;
3600 }
3601#endif
3602
David S. Miller9754e292013-02-14 15:57:38 -05003603 if (pfmemalloc)
Mel Gormanb4b9e352012-07-31 16:44:26 -07003604 goto skip_taps;
3605
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 list_for_each_entry_rcu(ptype, &ptype_all, list) {
David S. Miller63d8ea72011-02-28 10:48:59 -08003607 if (!ptype->dev || ptype->dev == skb->dev) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003608 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07003609 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 pt_prev = ptype;
3611 }
3612 }
3613
Mel Gormanb4b9e352012-07-31 16:44:26 -07003614skip_taps:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615#ifdef CONFIG_NET_CLS_ACT
Herbert Xuf697c3e2007-10-14 00:38:47 -07003616 skb = handle_ing(skb, &pt_prev, &ret, orig_dev);
3617 if (!skb)
Mel Gormanb4b9e352012-07-31 16:44:26 -07003618 goto unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619ncls:
3620#endif
3621
David S. Miller9754e292013-02-14 15:57:38 -05003622 if (pfmemalloc && !skb_pfmemalloc_protocol(skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07003623 goto drop;
3624
John Fastabend24257172011-10-10 09:16:41 +00003625 if (vlan_tx_tag_present(skb)) {
3626 if (pt_prev) {
3627 ret = deliver_skb(skb, pt_prev, orig_dev);
3628 pt_prev = NULL;
3629 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00003630 if (vlan_do_receive(&skb))
John Fastabend24257172011-10-10 09:16:41 +00003631 goto another_round;
3632 else if (unlikely(!skb))
Mel Gormanb4b9e352012-07-31 16:44:26 -07003633 goto unlock;
John Fastabend24257172011-10-10 09:16:41 +00003634 }
3635
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00003636 rx_handler = rcu_dereference(skb->dev->rx_handler);
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003637 if (rx_handler) {
3638 if (pt_prev) {
3639 ret = deliver_skb(skb, pt_prev, orig_dev);
3640 pt_prev = NULL;
3641 }
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003642 switch (rx_handler(&skb)) {
3643 case RX_HANDLER_CONSUMED:
Cristian Bercaru3bc1b1a2013-03-08 07:03:38 +00003644 ret = NET_RX_SUCCESS;
Mel Gormanb4b9e352012-07-31 16:44:26 -07003645 goto unlock;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003646 case RX_HANDLER_ANOTHER:
David S. Miller63d8ea72011-02-28 10:48:59 -08003647 goto another_round;
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003648 case RX_HANDLER_EXACT:
3649 deliver_exact = true;
3650 case RX_HANDLER_PASS:
3651 break;
3652 default:
3653 BUG();
3654 }
Jiri Pirkoab95bfe2010-06-01 21:52:08 +00003655 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003656
Eric Dumazetd4b812d2013-07-18 07:19:26 -07003657 if (unlikely(vlan_tx_tag_present(skb))) {
3658 if (vlan_tx_tag_get_id(skb))
3659 skb->pkt_type = PACKET_OTHERHOST;
3660 /* Note: we might in the future use prio bits
3661 * and set skb->priority like in vlan_do_receive()
3662 * For the time being, just ignore Priority Code Point
3663 */
3664 skb->vlan_tci = 0;
3665 }
Florian Zumbiehl48cc32d32012-10-07 15:51:58 +00003666
David S. Miller63d8ea72011-02-28 10:48:59 -08003667 /* deliver only exact match when indicated */
Jiri Pirko8a4eb572011-03-12 03:14:39 +00003668 null_or_dev = deliver_exact ? skb->dev : NULL;
Andy Gospodarek1f3c8802009-12-14 10:48:58 +00003669
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 type = skb->protocol;
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08003671 list_for_each_entry_rcu(ptype,
3672 &ptype_base[ntohs(type) & PTYPE_HASH_MASK], list) {
David S. Miller63d8ea72011-02-28 10:48:59 -08003673 if (ptype->type == type &&
Jiri Pirkoe3f48d32011-02-28 20:26:31 +00003674 (ptype->dev == null_or_dev || ptype->dev == skb->dev ||
3675 ptype->dev == orig_dev)) {
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09003676 if (pt_prev)
David S. Millerf2ccd8f2005-08-09 19:34:12 -07003677 ret = deliver_skb(skb, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 pt_prev = ptype;
3679 }
3680 }
3681
3682 if (pt_prev) {
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00003683 if (unlikely(skb_orphan_frags(skb, GFP_ATOMIC)))
Michael S. Tsirkin0e698bf2012-09-15 22:44:16 +00003684 goto drop;
Michael S. Tsirkin1080e512012-07-20 09:23:17 +00003685 else
3686 ret = pt_prev->func(skb, skb->dev, pt_prev, orig_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 } else {
Mel Gormanb4b9e352012-07-31 16:44:26 -07003688drop:
Eric Dumazetcaf586e2010-09-30 21:06:55 +00003689 atomic_long_inc(&skb->dev->rx_dropped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 kfree_skb(skb);
3691 /* Jamal, now you will not able to escape explaining
3692 * me how you were going to use this. :-)
3693 */
3694 ret = NET_RX_DROP;
3695 }
3696
Mel Gormanb4b9e352012-07-31 16:44:26 -07003697unlock:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 rcu_read_unlock();
David S. Miller9754e292013-02-14 15:57:38 -05003699 return ret;
3700}
3701
3702static int __netif_receive_skb(struct sk_buff *skb)
3703{
3704 int ret;
3705
3706 if (sk_memalloc_socks() && skb_pfmemalloc(skb)) {
3707 unsigned long pflags = current->flags;
3708
3709 /*
3710 * PFMEMALLOC skbs are special, they should
3711 * - be delivered to SOCK_MEMALLOC sockets only
3712 * - stay away from userspace
3713 * - have bounded memory usage
3714 *
3715 * Use PF_MEMALLOC as this saves us from propagating the allocation
3716 * context down to all allocation sites.
3717 */
3718 current->flags |= PF_MEMALLOC;
3719 ret = __netif_receive_skb_core(skb, true);
3720 tsk_restore_flags(current, pflags, PF_MEMALLOC);
3721 } else
3722 ret = __netif_receive_skb_core(skb, false);
3723
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724 return ret;
3725}
Tom Herbert0a9627f2010-03-16 08:03:29 +00003726
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003727static int netif_receive_skb_internal(struct sk_buff *skb)
Tom Herbert0a9627f2010-03-16 08:03:29 +00003728{
Eric Dumazet588f0332011-11-15 04:12:55 +00003729 net_timestamp_check(netdev_tstamp_prequeue, skb);
Eric Dumazet3b098e22010-05-15 23:57:10 -07003730
Richard Cochranc1f19b52010-07-17 08:49:36 +00003731 if (skb_defer_rx_timestamp(skb))
3732 return NET_RX_SUCCESS;
3733
Eric Dumazetdf334542010-03-24 19:13:54 +00003734#ifdef CONFIG_RPS
Ingo Molnarc5905af2012-02-24 08:31:31 +01003735 if (static_key_false(&rps_needed)) {
Eric Dumazet3b098e22010-05-15 23:57:10 -07003736 struct rps_dev_flow voidflow, *rflow = &voidflow;
3737 int cpu, ret;
Tom Herbert0a9627f2010-03-16 08:03:29 +00003738
Eric Dumazet3b098e22010-05-15 23:57:10 -07003739 rcu_read_lock();
Tom Herbert0a9627f2010-03-16 08:03:29 +00003740
Eric Dumazet3b098e22010-05-15 23:57:10 -07003741 cpu = get_rps_cpu(skb->dev, skb, &rflow);
Tom Herbertfec5e652010-04-16 16:01:27 -07003742
Eric Dumazet3b098e22010-05-15 23:57:10 -07003743 if (cpu >= 0) {
3744 ret = enqueue_to_backlog(skb, cpu, &rflow->last_qtail);
3745 rcu_read_unlock();
Eric Dumazetadc93002011-11-17 03:13:26 +00003746 return ret;
Eric Dumazet3b098e22010-05-15 23:57:10 -07003747 }
Eric Dumazetadc93002011-11-17 03:13:26 +00003748 rcu_read_unlock();
Tom Herbertfec5e652010-04-16 16:01:27 -07003749 }
Tom Herbert1e94d722010-03-18 17:45:44 -07003750#endif
Eric Dumazetadc93002011-11-17 03:13:26 +00003751 return __netif_receive_skb(skb);
Tom Herbert0a9627f2010-03-16 08:03:29 +00003752}
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003753
3754/**
3755 * netif_receive_skb - process receive buffer from network
3756 * @skb: buffer to process
3757 *
3758 * netif_receive_skb() is the main receive data processing function.
3759 * It always succeeds. The buffer may be dropped during processing
3760 * for congestion control or by the protocol layers.
3761 *
3762 * This function may only be called from softirq context and interrupts
3763 * should be enabled.
3764 *
3765 * Return values (usually ignored):
3766 * NET_RX_SUCCESS: no congestion
3767 * NET_RX_DROP: packet was dropped
3768 */
3769int netif_receive_skb(struct sk_buff *skb)
3770{
3771 trace_netif_receive_skb_entry(skb);
3772
3773 return netif_receive_skb_internal(skb);
3774}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07003775EXPORT_SYMBOL(netif_receive_skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776
Eric Dumazet88751272010-04-19 05:07:33 +00003777/* Network device is going away, flush any packets still pending
3778 * Called with irqs disabled.
3779 */
Changli Gao152102c2010-03-30 20:16:22 +00003780static void flush_backlog(void *arg)
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003781{
Changli Gao152102c2010-03-30 20:16:22 +00003782 struct net_device *dev = arg;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003783 struct softnet_data *sd = &__get_cpu_var(softnet_data);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003784 struct sk_buff *skb, *tmp;
3785
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003786 rps_lock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07003787 skb_queue_walk_safe(&sd->input_pkt_queue, skb, tmp) {
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003788 if (skb->dev == dev) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003789 __skb_unlink(skb, &sd->input_pkt_queue);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003790 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003791 input_queue_head_incr(sd);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003792 }
Changli Gao6e7676c2010-04-27 15:07:33 -07003793 }
Eric Dumazete36fa2f2010-04-19 21:17:14 +00003794 rps_unlock(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07003795
3796 skb_queue_walk_safe(&sd->process_queue, skb, tmp) {
3797 if (skb->dev == dev) {
3798 __skb_unlink(skb, &sd->process_queue);
3799 kfree_skb(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00003800 input_queue_head_incr(sd);
Changli Gao6e7676c2010-04-27 15:07:33 -07003801 }
3802 }
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07003803}
3804
Herbert Xud565b0a2008-12-15 23:38:52 -08003805static int napi_gro_complete(struct sk_buff *skb)
3806{
Vlad Yasevich22061d82012-11-15 08:49:11 +00003807 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08003808 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00003809 struct list_head *head = &offload_base;
Herbert Xud565b0a2008-12-15 23:38:52 -08003810 int err = -ENOENT;
3811
Eric Dumazetc3c7c252012-12-06 13:54:59 +00003812 BUILD_BUG_ON(sizeof(struct napi_gro_cb) > sizeof(skb->cb));
3813
Herbert Xufc59f9a2009-04-14 15:11:06 -07003814 if (NAPI_GRO_CB(skb)->count == 1) {
3815 skb_shinfo(skb)->gso_size = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08003816 goto out;
Herbert Xufc59f9a2009-04-14 15:11:06 -07003817 }
Herbert Xud565b0a2008-12-15 23:38:52 -08003818
3819 rcu_read_lock();
3820 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00003821 if (ptype->type != type || !ptype->callbacks.gro_complete)
Herbert Xud565b0a2008-12-15 23:38:52 -08003822 continue;
3823
Jerry Chu299603e82013-12-11 20:53:45 -08003824 err = ptype->callbacks.gro_complete(skb, 0);
Herbert Xud565b0a2008-12-15 23:38:52 -08003825 break;
3826 }
3827 rcu_read_unlock();
3828
3829 if (err) {
3830 WARN_ON(&ptype->list == head);
3831 kfree_skb(skb);
3832 return NET_RX_SUCCESS;
3833 }
3834
3835out:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00003836 return netif_receive_skb_internal(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08003837}
3838
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00003839/* napi->gro_list contains packets ordered by age.
3840 * youngest packets at the head of it.
3841 * Complete skbs in reverse order to reduce latencies.
3842 */
3843void napi_gro_flush(struct napi_struct *napi, bool flush_old)
Herbert Xud565b0a2008-12-15 23:38:52 -08003844{
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00003845 struct sk_buff *skb, *prev = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08003846
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00003847 /* scan list and build reverse chain */
3848 for (skb = napi->gro_list; skb != NULL; skb = skb->next) {
3849 skb->prev = prev;
3850 prev = skb;
Herbert Xud565b0a2008-12-15 23:38:52 -08003851 }
3852
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00003853 for (skb = prev; skb; skb = prev) {
3854 skb->next = NULL;
3855
3856 if (flush_old && NAPI_GRO_CB(skb)->age == jiffies)
3857 return;
3858
3859 prev = skb->prev;
3860 napi_gro_complete(skb);
3861 napi->gro_count--;
3862 }
3863
Herbert Xud565b0a2008-12-15 23:38:52 -08003864 napi->gro_list = NULL;
3865}
Eric Dumazet86cac582010-08-31 18:25:32 +00003866EXPORT_SYMBOL(napi_gro_flush);
Herbert Xud565b0a2008-12-15 23:38:52 -08003867
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003868static void gro_list_prepare(struct napi_struct *napi, struct sk_buff *skb)
3869{
3870 struct sk_buff *p;
3871 unsigned int maclen = skb->dev->hard_header_len;
Tom Herbert0b4cec82014-01-15 08:58:06 -08003872 u32 hash = skb_get_hash_raw(skb);
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003873
3874 for (p = napi->gro_list; p; p = p->next) {
3875 unsigned long diffs;
3876
Tom Herbert0b4cec82014-01-15 08:58:06 -08003877 NAPI_GRO_CB(p)->flush = 0;
3878
3879 if (hash != skb_get_hash_raw(p)) {
3880 NAPI_GRO_CB(p)->same_flow = 0;
3881 continue;
3882 }
3883
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003884 diffs = (unsigned long)p->dev ^ (unsigned long)skb->dev;
3885 diffs |= p->vlan_tci ^ skb->vlan_tci;
3886 if (maclen == ETH_HLEN)
3887 diffs |= compare_ether_header(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07003888 skb_mac_header(skb));
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003889 else if (!diffs)
3890 diffs = memcmp(skb_mac_header(p),
Eric Dumazeta50e2332014-03-29 21:28:21 -07003891 skb_mac_header(skb),
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003892 maclen);
3893 NAPI_GRO_CB(p)->same_flow = !diffs;
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003894 }
3895}
3896
Jerry Chu299603e82013-12-11 20:53:45 -08003897static void skb_gro_reset_offset(struct sk_buff *skb)
3898{
3899 const struct skb_shared_info *pinfo = skb_shinfo(skb);
3900 const skb_frag_t *frag0 = &pinfo->frags[0];
3901
3902 NAPI_GRO_CB(skb)->data_offset = 0;
3903 NAPI_GRO_CB(skb)->frag0 = NULL;
3904 NAPI_GRO_CB(skb)->frag0_len = 0;
3905
3906 if (skb_mac_header(skb) == skb_tail_pointer(skb) &&
3907 pinfo->nr_frags &&
3908 !PageHighMem(skb_frag_page(frag0))) {
3909 NAPI_GRO_CB(skb)->frag0 = skb_frag_address(frag0);
3910 NAPI_GRO_CB(skb)->frag0_len = skb_frag_size(frag0);
Herbert Xud565b0a2008-12-15 23:38:52 -08003911 }
3912}
3913
Eric Dumazeta50e2332014-03-29 21:28:21 -07003914static void gro_pull_from_frag0(struct sk_buff *skb, int grow)
3915{
3916 struct skb_shared_info *pinfo = skb_shinfo(skb);
3917
3918 BUG_ON(skb->end - skb->tail < grow);
3919
3920 memcpy(skb_tail_pointer(skb), NAPI_GRO_CB(skb)->frag0, grow);
3921
3922 skb->data_len -= grow;
3923 skb->tail += grow;
3924
3925 pinfo->frags[0].page_offset += grow;
3926 skb_frag_size_sub(&pinfo->frags[0], grow);
3927
3928 if (unlikely(!skb_frag_size(&pinfo->frags[0]))) {
3929 skb_frag_unref(skb, 0);
3930 memmove(pinfo->frags, pinfo->frags + 1,
3931 --pinfo->nr_frags * sizeof(pinfo->frags[0]));
3932 }
3933}
3934
Rami Rosenbb728822012-11-28 21:55:25 +00003935static enum gro_result dev_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xud565b0a2008-12-15 23:38:52 -08003936{
3937 struct sk_buff **pp = NULL;
Vlad Yasevich22061d82012-11-15 08:49:11 +00003938 struct packet_offload *ptype;
Herbert Xud565b0a2008-12-15 23:38:52 -08003939 __be16 type = skb->protocol;
Vlad Yasevich22061d82012-11-15 08:49:11 +00003940 struct list_head *head = &offload_base;
Herbert Xu0da2afd52008-12-26 14:57:42 -08003941 int same_flow;
Ben Hutchings5b252f02009-10-29 07:17:09 +00003942 enum gro_result ret;
Eric Dumazeta50e2332014-03-29 21:28:21 -07003943 int grow;
Herbert Xud565b0a2008-12-15 23:38:52 -08003944
Eric W. Biederman9c62a682014-03-14 20:51:52 -07003945 if (!(skb->dev->features & NETIF_F_GRO))
Herbert Xud565b0a2008-12-15 23:38:52 -08003946 goto normal;
3947
David S. Miller21dc3302010-08-23 00:13:46 -07003948 if (skb_is_gso(skb) || skb_has_frag_list(skb))
Herbert Xuf17f5c92009-01-14 14:36:12 -08003949 goto normal;
3950
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003951 gro_list_prepare(napi, skb);
Jerry Chubf5a7552014-01-07 10:23:19 -08003952 NAPI_GRO_CB(skb)->csum = skb->csum; /* Needed for CHECKSUM_COMPLETE */
Eric Dumazet89c5fa32012-12-10 13:28:16 +00003953
Herbert Xud565b0a2008-12-15 23:38:52 -08003954 rcu_read_lock();
3955 list_for_each_entry_rcu(ptype, head, list) {
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00003956 if (ptype->type != type || !ptype->callbacks.gro_receive)
Herbert Xud565b0a2008-12-15 23:38:52 -08003957 continue;
3958
Herbert Xu86911732009-01-29 14:19:50 +00003959 skb_set_network_header(skb, skb_gro_offset(skb));
Eric Dumazetefd94502013-02-14 17:31:48 +00003960 skb_reset_mac_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08003961 NAPI_GRO_CB(skb)->same_flow = 0;
3962 NAPI_GRO_CB(skb)->flush = 0;
Herbert Xu5d38a072009-01-04 16:13:40 -08003963 NAPI_GRO_CB(skb)->free = 0;
Or Gerlitzb582ef02014-01-20 13:59:19 +02003964 NAPI_GRO_CB(skb)->udp_mark = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08003965
Vlad Yasevichf191a1d2012-11-15 08:49:23 +00003966 pp = ptype->callbacks.gro_receive(&napi->gro_list, skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08003967 break;
3968 }
3969 rcu_read_unlock();
3970
3971 if (&ptype->list == head)
3972 goto normal;
3973
Herbert Xu0da2afd52008-12-26 14:57:42 -08003974 same_flow = NAPI_GRO_CB(skb)->same_flow;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00003975 ret = NAPI_GRO_CB(skb)->free ? GRO_MERGED_FREE : GRO_MERGED;
Herbert Xu0da2afd52008-12-26 14:57:42 -08003976
Herbert Xud565b0a2008-12-15 23:38:52 -08003977 if (pp) {
3978 struct sk_buff *nskb = *pp;
3979
3980 *pp = nskb->next;
3981 nskb->next = NULL;
3982 napi_gro_complete(nskb);
Herbert Xu4ae55442009-02-08 18:00:36 +00003983 napi->gro_count--;
Herbert Xud565b0a2008-12-15 23:38:52 -08003984 }
3985
Herbert Xu0da2afd52008-12-26 14:57:42 -08003986 if (same_flow)
Herbert Xud565b0a2008-12-15 23:38:52 -08003987 goto ok;
3988
Eric Dumazet600adc12014-01-09 14:12:19 -08003989 if (NAPI_GRO_CB(skb)->flush)
Herbert Xud565b0a2008-12-15 23:38:52 -08003990 goto normal;
Herbert Xud565b0a2008-12-15 23:38:52 -08003991
Eric Dumazet600adc12014-01-09 14:12:19 -08003992 if (unlikely(napi->gro_count >= MAX_GRO_SKBS)) {
3993 struct sk_buff *nskb = napi->gro_list;
3994
3995 /* locate the end of the list to select the 'oldest' flow */
3996 while (nskb->next) {
3997 pp = &nskb->next;
3998 nskb = *pp;
3999 }
4000 *pp = NULL;
4001 nskb->next = NULL;
4002 napi_gro_complete(nskb);
4003 } else {
4004 napi->gro_count++;
4005 }
Herbert Xud565b0a2008-12-15 23:38:52 -08004006 NAPI_GRO_CB(skb)->count = 1;
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004007 NAPI_GRO_CB(skb)->age = jiffies;
Eric Dumazet29e98242014-05-16 11:34:37 -07004008 NAPI_GRO_CB(skb)->last = skb;
Herbert Xu86911732009-01-29 14:19:50 +00004009 skb_shinfo(skb)->gso_size = skb_gro_len(skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004010 skb->next = napi->gro_list;
4011 napi->gro_list = skb;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004012 ret = GRO_HELD;
Herbert Xud565b0a2008-12-15 23:38:52 -08004013
Herbert Xuad0f9902009-02-01 01:24:55 -08004014pull:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004015 grow = skb_gro_offset(skb) - skb_headlen(skb);
4016 if (grow > 0)
4017 gro_pull_from_frag0(skb, grow);
Herbert Xud565b0a2008-12-15 23:38:52 -08004018ok:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004019 return ret;
Herbert Xud565b0a2008-12-15 23:38:52 -08004020
4021normal:
Herbert Xuad0f9902009-02-01 01:24:55 -08004022 ret = GRO_NORMAL;
4023 goto pull;
Herbert Xu5d38a072009-01-04 16:13:40 -08004024}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004025
Jerry Chubf5a7552014-01-07 10:23:19 -08004026struct packet_offload *gro_find_receive_by_type(__be16 type)
4027{
4028 struct list_head *offload_head = &offload_base;
4029 struct packet_offload *ptype;
4030
4031 list_for_each_entry_rcu(ptype, offload_head, list) {
4032 if (ptype->type != type || !ptype->callbacks.gro_receive)
4033 continue;
4034 return ptype;
4035 }
4036 return NULL;
4037}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004038EXPORT_SYMBOL(gro_find_receive_by_type);
Jerry Chubf5a7552014-01-07 10:23:19 -08004039
4040struct packet_offload *gro_find_complete_by_type(__be16 type)
4041{
4042 struct list_head *offload_head = &offload_base;
4043 struct packet_offload *ptype;
4044
4045 list_for_each_entry_rcu(ptype, offload_head, list) {
4046 if (ptype->type != type || !ptype->callbacks.gro_complete)
4047 continue;
4048 return ptype;
4049 }
4050 return NULL;
4051}
Or Gerlitze27a2f82014-01-20 13:59:20 +02004052EXPORT_SYMBOL(gro_find_complete_by_type);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004053
Rami Rosenbb728822012-11-28 21:55:25 +00004054static gro_result_t napi_skb_finish(gro_result_t ret, struct sk_buff *skb)
Herbert Xu5d38a072009-01-04 16:13:40 -08004055{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004056 switch (ret) {
4057 case GRO_NORMAL:
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004058 if (netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004059 ret = GRO_DROP;
4060 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004061
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004062 case GRO_DROP:
Herbert Xu5d38a072009-01-04 16:13:40 -08004063 kfree_skb(skb);
4064 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004065
Eric Dumazetdaa86542012-04-19 07:07:40 +00004066 case GRO_MERGED_FREE:
Eric Dumazetd7e88832012-04-30 08:10:34 +00004067 if (NAPI_GRO_CB(skb)->free == NAPI_GRO_FREE_STOLEN_HEAD)
4068 kmem_cache_free(skbuff_head_cache, skb);
4069 else
4070 __kfree_skb(skb);
Eric Dumazetdaa86542012-04-19 07:07:40 +00004071 break;
4072
Ben Hutchings5b252f02009-10-29 07:17:09 +00004073 case GRO_HELD:
4074 case GRO_MERGED:
4075 break;
Herbert Xu5d38a072009-01-04 16:13:40 -08004076 }
4077
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004078 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004079}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004080
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004081gro_result_t napi_gro_receive(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004082{
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004083 trace_napi_gro_receive_entry(skb);
Herbert Xu86911732009-01-29 14:19:50 +00004084
Eric Dumazeta50e2332014-03-29 21:28:21 -07004085 skb_gro_reset_offset(skb);
4086
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004087 return napi_skb_finish(dev_gro_receive(napi, skb), skb);
Herbert Xud565b0a2008-12-15 23:38:52 -08004088}
4089EXPORT_SYMBOL(napi_gro_receive);
4090
stephen hemmingerd0c2b0d2010-10-19 07:12:10 +00004091static void napi_reuse_skb(struct napi_struct *napi, struct sk_buff *skb)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004092{
Herbert Xu96e93ea2009-01-06 10:49:34 -08004093 __skb_pull(skb, skb_headlen(skb));
Eric Dumazet2a2a4592012-03-21 06:58:03 +00004094 /* restore the reserve we had after netdev_alloc_skb_ip_align() */
4095 skb_reserve(skb, NET_SKB_PAD + NET_IP_ALIGN - skb_headroom(skb));
Jesse Gross3701e512010-10-20 13:56:06 +00004096 skb->vlan_tci = 0;
Herbert Xu66c46d72011-01-29 20:44:54 -08004097 skb->dev = napi->dev;
Andy Gospodarek6d152e22011-02-02 14:53:25 -08004098 skb->skb_iif = 0;
Eric Dumazete33d0ba2014-04-03 09:28:10 -07004099 skb->truesize = SKB_TRUESIZE(skb_end_offset(skb));
Herbert Xu96e93ea2009-01-06 10:49:34 -08004100
4101 napi->skb = skb;
4102}
Herbert Xu96e93ea2009-01-06 10:49:34 -08004103
Herbert Xu76620aa2009-04-16 02:02:07 -07004104struct sk_buff *napi_get_frags(struct napi_struct *napi)
Herbert Xu5d38a072009-01-04 16:13:40 -08004105{
Herbert Xu5d38a072009-01-04 16:13:40 -08004106 struct sk_buff *skb = napi->skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004107
4108 if (!skb) {
Eric Dumazet89d71a62009-10-13 05:34:20 +00004109 skb = netdev_alloc_skb_ip_align(napi->dev, GRO_MAX_HEAD);
Eric Dumazet84b9cd62013-12-05 21:44:27 -08004110 napi->skb = skb;
Herbert Xu5d38a072009-01-04 16:13:40 -08004111 }
Herbert Xu96e93ea2009-01-06 10:49:34 -08004112 return skb;
4113}
Herbert Xu76620aa2009-04-16 02:02:07 -07004114EXPORT_SYMBOL(napi_get_frags);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004115
Eric Dumazeta50e2332014-03-29 21:28:21 -07004116static gro_result_t napi_frags_finish(struct napi_struct *napi,
4117 struct sk_buff *skb,
4118 gro_result_t ret)
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004119{
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004120 switch (ret) {
4121 case GRO_NORMAL:
Eric Dumazeta50e2332014-03-29 21:28:21 -07004122 case GRO_HELD:
4123 __skb_push(skb, ETH_HLEN);
4124 skb->protocol = eth_type_trans(skb, skb->dev);
4125 if (ret == GRO_NORMAL && netif_receive_skb_internal(skb))
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004126 ret = GRO_DROP;
Herbert Xu86911732009-01-29 14:19:50 +00004127 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004128
4129 case GRO_DROP:
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004130 case GRO_MERGED_FREE:
4131 napi_reuse_skb(napi, skb);
4132 break;
Ben Hutchings5b252f02009-10-29 07:17:09 +00004133
4134 case GRO_MERGED:
4135 break;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004136 }
4137
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004138 return ret;
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004139}
Herbert Xu5d0d9be2009-01-29 14:19:48 +00004140
Eric Dumazeta50e2332014-03-29 21:28:21 -07004141/* Upper GRO stack assumes network header starts at gro_offset=0
4142 * Drivers could call both napi_gro_frags() and napi_gro_receive()
4143 * We copy ethernet header into skb->data to have a common layout.
4144 */
Eric Dumazet4adb9c42012-05-18 20:49:06 +00004145static struct sk_buff *napi_frags_skb(struct napi_struct *napi)
Herbert Xu96e93ea2009-01-06 10:49:34 -08004146{
Herbert Xu76620aa2009-04-16 02:02:07 -07004147 struct sk_buff *skb = napi->skb;
Eric Dumazeta50e2332014-03-29 21:28:21 -07004148 const struct ethhdr *eth;
4149 unsigned int hlen = sizeof(*eth);
Herbert Xu76620aa2009-04-16 02:02:07 -07004150
4151 napi->skb = NULL;
4152
Eric Dumazeta50e2332014-03-29 21:28:21 -07004153 skb_reset_mac_header(skb);
4154 skb_gro_reset_offset(skb);
4155
4156 eth = skb_gro_header_fast(skb, 0);
4157 if (unlikely(skb_gro_header_hard(skb, hlen))) {
4158 eth = skb_gro_header_slow(skb, hlen, 0);
4159 if (unlikely(!eth)) {
4160 napi_reuse_skb(napi, skb);
4161 return NULL;
4162 }
4163 } else {
4164 gro_pull_from_frag0(skb, hlen);
4165 NAPI_GRO_CB(skb)->frag0 += hlen;
4166 NAPI_GRO_CB(skb)->frag0_len -= hlen;
Herbert Xu76620aa2009-04-16 02:02:07 -07004167 }
Eric Dumazeta50e2332014-03-29 21:28:21 -07004168 __skb_pull(skb, hlen);
4169
4170 /*
4171 * This works because the only protocols we care about don't require
4172 * special handling.
4173 * We'll fix it up properly in napi_frags_finish()
4174 */
4175 skb->protocol = eth->h_proto;
Herbert Xu76620aa2009-04-16 02:02:07 -07004176
Herbert Xu76620aa2009-04-16 02:02:07 -07004177 return skb;
4178}
Herbert Xu76620aa2009-04-16 02:02:07 -07004179
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004180gro_result_t napi_gro_frags(struct napi_struct *napi)
Herbert Xu76620aa2009-04-16 02:02:07 -07004181{
4182 struct sk_buff *skb = napi_frags_skb(napi);
Herbert Xu96e93ea2009-01-06 10:49:34 -08004183
4184 if (!skb)
Ben Hutchingsc7c4b3b2009-10-29 21:36:53 -07004185 return GRO_DROP;
Herbert Xu96e93ea2009-01-06 10:49:34 -08004186
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00004187 trace_napi_gro_frags_entry(skb);
4188
Eric Dumazet89c5fa32012-12-10 13:28:16 +00004189 return napi_frags_finish(napi, skb, dev_gro_receive(napi, skb));
Herbert Xu5d38a072009-01-04 16:13:40 -08004190}
4191EXPORT_SYMBOL(napi_gro_frags);
4192
Eric Dumazete326bed2010-04-22 00:22:45 -07004193/*
Zhi Yong Wu855abcf2014-01-01 04:34:50 +08004194 * net_rps_action_and_irq_enable sends any pending IPI's for rps.
Eric Dumazete326bed2010-04-22 00:22:45 -07004195 * Note: called with local irq disabled, but exits with local irq enabled.
4196 */
4197static void net_rps_action_and_irq_enable(struct softnet_data *sd)
4198{
4199#ifdef CONFIG_RPS
4200 struct softnet_data *remsd = sd->rps_ipi_list;
4201
4202 if (remsd) {
4203 sd->rps_ipi_list = NULL;
4204
4205 local_irq_enable();
4206
4207 /* Send pending IPI's to kick RPS processing on remote cpus. */
4208 while (remsd) {
4209 struct softnet_data *next = remsd->rps_ipi_next;
4210
4211 if (cpu_online(remsd->cpu))
Frederic Weisbeckerc46fff22014-02-24 16:40:02 +01004212 smp_call_function_single_async(remsd->cpu,
Frederic Weisbeckerfce8ad12014-02-24 16:40:01 +01004213 &remsd->csd);
Eric Dumazete326bed2010-04-22 00:22:45 -07004214 remsd = next;
4215 }
4216 } else
4217#endif
4218 local_irq_enable();
4219}
4220
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004221static int process_backlog(struct napi_struct *napi, int quota)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222{
4223 int work = 0;
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004224 struct softnet_data *sd = container_of(napi, struct softnet_data, backlog);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225
Eric Dumazete326bed2010-04-22 00:22:45 -07004226#ifdef CONFIG_RPS
4227 /* Check if we have pending ipi, its better to send them now,
4228 * not waiting net_rx_action() end.
4229 */
4230 if (sd->rps_ipi_list) {
4231 local_irq_disable();
4232 net_rps_action_and_irq_enable(sd);
4233 }
4234#endif
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004235 napi->weight = weight_p;
Changli Gao6e7676c2010-04-27 15:07:33 -07004236 local_irq_disable();
Tom Herbert11ef7a82014-06-30 09:50:40 -07004237 while (1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 struct sk_buff *skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
Changli Gao6e7676c2010-04-27 15:07:33 -07004240 while ((skb = __skb_dequeue(&sd->process_queue))) {
Eric Dumazete4008272010-04-05 15:42:39 -07004241 local_irq_enable();
Changli Gao6e7676c2010-04-27 15:07:33 -07004242 __netif_receive_skb(skb);
Changli Gao6e7676c2010-04-27 15:07:33 -07004243 local_irq_disable();
Tom Herbert76cc8b12010-05-20 18:37:59 +00004244 input_queue_head_incr(sd);
4245 if (++work >= quota) {
4246 local_irq_enable();
4247 return work;
4248 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004249 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250
Changli Gao6e7676c2010-04-27 15:07:33 -07004251 rps_lock(sd);
Tom Herbert11ef7a82014-06-30 09:50:40 -07004252 if (skb_queue_empty(&sd->input_pkt_queue)) {
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004253 /*
4254 * Inline a custom version of __napi_complete().
4255 * only current cpu owns and manipulates this napi,
Tom Herbert11ef7a82014-06-30 09:50:40 -07004256 * and NAPI_STATE_SCHED is the only possible flag set
4257 * on backlog.
4258 * We can use a plain write instead of clear_bit(),
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004259 * and we dont need an smp_mb() memory barrier.
4260 */
4261 list_del(&napi->poll_list);
4262 napi->state = 0;
Tom Herbert11ef7a82014-06-30 09:50:40 -07004263 rps_unlock(sd);
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004264
Tom Herbert11ef7a82014-06-30 09:50:40 -07004265 break;
Changli Gao6e7676c2010-04-27 15:07:33 -07004266 }
Tom Herbert11ef7a82014-06-30 09:50:40 -07004267
4268 skb_queue_splice_tail_init(&sd->input_pkt_queue,
4269 &sd->process_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07004270 rps_unlock(sd);
4271 }
4272 local_irq_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004274 return work;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275}
4276
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004277/**
4278 * __napi_schedule - schedule for receive
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07004279 * @n: entry to schedule
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004280 *
4281 * The entry's receive function will be scheduled to run
4282 */
Harvey Harrisonb5606c22008-02-13 15:03:16 -08004283void __napi_schedule(struct napi_struct *n)
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004284{
4285 unsigned long flags;
4286
4287 local_irq_save(flags);
Eric Dumazeteecfd7c2010-05-06 22:07:48 -07004288 ____napi_schedule(&__get_cpu_var(softnet_data), n);
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004289 local_irq_restore(flags);
4290}
4291EXPORT_SYMBOL(__napi_schedule);
4292
Herbert Xud565b0a2008-12-15 23:38:52 -08004293void __napi_complete(struct napi_struct *n)
4294{
4295 BUG_ON(!test_bit(NAPI_STATE_SCHED, &n->state));
4296 BUG_ON(n->gro_list);
4297
4298 list_del(&n->poll_list);
Peter Zijlstra4e857c52014-03-17 18:06:10 +01004299 smp_mb__before_atomic();
Herbert Xud565b0a2008-12-15 23:38:52 -08004300 clear_bit(NAPI_STATE_SCHED, &n->state);
4301}
4302EXPORT_SYMBOL(__napi_complete);
4303
4304void napi_complete(struct napi_struct *n)
4305{
4306 unsigned long flags;
4307
4308 /*
4309 * don't let napi dequeue from the cpu poll list
4310 * just in case its running on a different cpu
4311 */
4312 if (unlikely(test_bit(NAPI_STATE_NPSVC, &n->state)))
4313 return;
4314
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004315 napi_gro_flush(n, false);
Herbert Xud565b0a2008-12-15 23:38:52 -08004316 local_irq_save(flags);
4317 __napi_complete(n);
4318 local_irq_restore(flags);
4319}
4320EXPORT_SYMBOL(napi_complete);
4321
Eliezer Tamiraf12fa62013-06-10 11:39:41 +03004322/* must be called under rcu_read_lock(), as we dont take a reference */
4323struct napi_struct *napi_by_id(unsigned int napi_id)
4324{
4325 unsigned int hash = napi_id % HASH_SIZE(napi_hash);
4326 struct napi_struct *napi;
4327
4328 hlist_for_each_entry_rcu(napi, &napi_hash[hash], napi_hash_node)
4329 if (napi->napi_id == napi_id)
4330 return napi;
4331
4332 return NULL;
4333}
4334EXPORT_SYMBOL_GPL(napi_by_id);
4335
4336void napi_hash_add(struct napi_struct *napi)
4337{
4338 if (!test_and_set_bit(NAPI_STATE_HASHED, &napi->state)) {
4339
4340 spin_lock(&napi_hash_lock);
4341
4342 /* 0 is not a valid id, we also skip an id that is taken
4343 * we expect both events to be extremely rare
4344 */
4345 napi->napi_id = 0;
4346 while (!napi->napi_id) {
4347 napi->napi_id = ++napi_gen_id;
4348 if (napi_by_id(napi->napi_id))
4349 napi->napi_id = 0;
4350 }
4351
4352 hlist_add_head_rcu(&napi->napi_hash_node,
4353 &napi_hash[napi->napi_id % HASH_SIZE(napi_hash)]);
4354
4355 spin_unlock(&napi_hash_lock);
4356 }
4357}
4358EXPORT_SYMBOL_GPL(napi_hash_add);
4359
4360/* Warning : caller is responsible to make sure rcu grace period
4361 * is respected before freeing memory containing @napi
4362 */
4363void napi_hash_del(struct napi_struct *napi)
4364{
4365 spin_lock(&napi_hash_lock);
4366
4367 if (test_and_clear_bit(NAPI_STATE_HASHED, &napi->state))
4368 hlist_del_rcu(&napi->napi_hash_node);
4369
4370 spin_unlock(&napi_hash_lock);
4371}
4372EXPORT_SYMBOL_GPL(napi_hash_del);
4373
Herbert Xud565b0a2008-12-15 23:38:52 -08004374void netif_napi_add(struct net_device *dev, struct napi_struct *napi,
4375 int (*poll)(struct napi_struct *, int), int weight)
4376{
4377 INIT_LIST_HEAD(&napi->poll_list);
Herbert Xu4ae55442009-02-08 18:00:36 +00004378 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004379 napi->gro_list = NULL;
Herbert Xu5d38a072009-01-04 16:13:40 -08004380 napi->skb = NULL;
Herbert Xud565b0a2008-12-15 23:38:52 -08004381 napi->poll = poll;
Eric Dumazet82dc3c62013-03-05 15:57:22 +00004382 if (weight > NAPI_POLL_WEIGHT)
4383 pr_err_once("netif_napi_add() called with weight %d on device %s\n",
4384 weight, dev->name);
Herbert Xud565b0a2008-12-15 23:38:52 -08004385 napi->weight = weight;
4386 list_add(&napi->dev_list, &dev->napi_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08004387 napi->dev = dev;
Herbert Xu5d38a072009-01-04 16:13:40 -08004388#ifdef CONFIG_NETPOLL
Herbert Xud565b0a2008-12-15 23:38:52 -08004389 spin_lock_init(&napi->poll_lock);
4390 napi->poll_owner = -1;
4391#endif
4392 set_bit(NAPI_STATE_SCHED, &napi->state);
4393}
4394EXPORT_SYMBOL(netif_napi_add);
4395
4396void netif_napi_del(struct napi_struct *napi)
4397{
Peter P Waskiewicz Jrd7b06632008-12-26 01:35:35 -08004398 list_del_init(&napi->dev_list);
Herbert Xu76620aa2009-04-16 02:02:07 -07004399 napi_free_frags(napi);
Herbert Xud565b0a2008-12-15 23:38:52 -08004400
Eric Dumazet289dccb2013-12-20 14:29:08 -08004401 kfree_skb_list(napi->gro_list);
Herbert Xud565b0a2008-12-15 23:38:52 -08004402 napi->gro_list = NULL;
Herbert Xu4ae55442009-02-08 18:00:36 +00004403 napi->gro_count = 0;
Herbert Xud565b0a2008-12-15 23:38:52 -08004404}
4405EXPORT_SYMBOL(netif_napi_del);
4406
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407static void net_rx_action(struct softirq_action *h)
4408{
Eric Dumazete326bed2010-04-22 00:22:45 -07004409 struct softnet_data *sd = &__get_cpu_var(softnet_data);
Stephen Hemminger24f8b232008-11-03 17:14:38 -08004410 unsigned long time_limit = jiffies + 2;
Stephen Hemminger51b0bde2005-06-23 20:14:40 -07004411 int budget = netdev_budget;
Matt Mackall53fb95d2005-08-11 19:27:43 -07004412 void *have;
4413
Linus Torvalds1da177e2005-04-16 15:20:36 -07004414 local_irq_disable();
4415
Eric Dumazete326bed2010-04-22 00:22:45 -07004416 while (!list_empty(&sd->poll_list)) {
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004417 struct napi_struct *n;
4418 int work, weight;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004419
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004420 /* If softirq window is exhuasted then punt.
Stephen Hemminger24f8b232008-11-03 17:14:38 -08004421 * Allow this to run for 2 jiffies since which will allow
4422 * an average latency of 1.5/HZ.
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004423 */
Eric Dumazetd1f41b62013-03-05 07:15:13 +00004424 if (unlikely(budget <= 0 || time_after_eq(jiffies, time_limit)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425 goto softnet_break;
4426
4427 local_irq_enable();
4428
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004429 /* Even though interrupts have been re-enabled, this
4430 * access is safe because interrupts can only add new
4431 * entries to the tail of this list, and only ->poll()
4432 * calls can remove this head entry from the list.
4433 */
Eric Dumazete326bed2010-04-22 00:22:45 -07004434 n = list_first_entry(&sd->poll_list, struct napi_struct, poll_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004435
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004436 have = netpoll_poll_lock(n);
4437
4438 weight = n->weight;
4439
David S. Miller0a7606c2007-10-29 21:28:47 -07004440 /* This NAPI_STATE_SCHED test is for avoiding a race
4441 * with netpoll's poll_napi(). Only the entity which
4442 * obtains the lock and sees NAPI_STATE_SCHED set will
4443 * actually make the ->poll() call. Therefore we avoid
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004444 * accidentally calling ->poll() when NAPI is not scheduled.
David S. Miller0a7606c2007-10-29 21:28:47 -07004445 */
4446 work = 0;
Neil Horman4ea7e382009-05-21 07:36:08 +00004447 if (test_bit(NAPI_STATE_SCHED, &n->state)) {
David S. Miller0a7606c2007-10-29 21:28:47 -07004448 work = n->poll(n, weight);
Neil Horman4ea7e382009-05-21 07:36:08 +00004449 trace_napi_poll(n);
4450 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004451
4452 WARN_ON_ONCE(work > weight);
4453
4454 budget -= work;
4455
4456 local_irq_disable();
4457
4458 /* Drivers must not modify the NAPI state if they
4459 * consume the entire weight. In such cases this code
4460 * still "owns" the NAPI instance and therefore can
4461 * move the instance around on the list at-will.
4462 */
David S. Millerfed17f32008-01-07 21:00:40 -08004463 if (unlikely(work == weight)) {
Herbert Xuff780cd2009-06-26 19:27:04 -07004464 if (unlikely(napi_disable_pending(n))) {
4465 local_irq_enable();
4466 napi_complete(n);
4467 local_irq_disable();
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004468 } else {
4469 if (n->gro_list) {
4470 /* flush too old packets
4471 * If HZ < 1000, flush all packets.
4472 */
4473 local_irq_enable();
4474 napi_gro_flush(n, HZ >= 1000);
4475 local_irq_disable();
4476 }
Eric Dumazete326bed2010-04-22 00:22:45 -07004477 list_move_tail(&n->poll_list, &sd->poll_list);
Eric Dumazet2e71a6f2012-10-06 08:08:49 +00004478 }
David S. Millerfed17f32008-01-07 21:00:40 -08004479 }
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004480
4481 netpoll_poll_unlock(have);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004482 }
4483out:
Eric Dumazete326bed2010-04-22 00:22:45 -07004484 net_rps_action_and_irq_enable(sd);
Tom Herbert0a9627f2010-03-16 08:03:29 +00004485
Chris Leechdb217332006-06-17 21:24:58 -07004486#ifdef CONFIG_NET_DMA
4487 /*
4488 * There may not be any more sk_buffs coming right now, so push
4489 * any pending DMA copies to hardware
4490 */
Dan Williams2ba05622009-01-06 11:38:14 -07004491 dma_issue_pending_all();
Chris Leechdb217332006-06-17 21:24:58 -07004492#endif
Stephen Hemmingerbea33482007-10-03 16:41:36 -07004493
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 return;
4495
4496softnet_break:
Changli Gaodee42872010-05-02 05:42:16 +00004497 sd->time_squeeze++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004498 __raise_softirq_irqoff(NET_RX_SOFTIRQ);
4499 goto out;
4500}
4501
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004502struct netdev_adjacent {
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004503 struct net_device *dev;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004504
4505 /* upper master flag, there can only be one master device per list */
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004506 bool master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004507
Veaceslav Falico5d261912013-08-28 23:25:05 +02004508 /* counter for the number of times this device was added to us */
4509 u16 ref_nr;
4510
Veaceslav Falico402dae92013-09-25 09:20:09 +02004511 /* private field for the users */
4512 void *private;
4513
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004514 struct list_head list;
4515 struct rcu_head rcu;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004516};
4517
Veaceslav Falico5d261912013-08-28 23:25:05 +02004518static struct netdev_adjacent *__netdev_find_adj(struct net_device *dev,
4519 struct net_device *adj_dev,
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004520 struct list_head *adj_list)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004521{
Veaceslav Falico5d261912013-08-28 23:25:05 +02004522 struct netdev_adjacent *adj;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004523
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004524 list_for_each_entry(adj, adj_list, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02004525 if (adj->dev == adj_dev)
4526 return adj;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004527 }
4528 return NULL;
4529}
4530
4531/**
4532 * netdev_has_upper_dev - Check if device is linked to an upper device
4533 * @dev: device
4534 * @upper_dev: upper device to check
4535 *
4536 * Find out if a device is linked to specified upper device and return true
4537 * in case it is. Note that this checks only immediate upper device,
4538 * not through a complete stack of devices. The caller must hold the RTNL lock.
4539 */
4540bool netdev_has_upper_dev(struct net_device *dev,
4541 struct net_device *upper_dev)
4542{
4543 ASSERT_RTNL();
4544
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004545 return __netdev_find_adj(dev, upper_dev, &dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004546}
4547EXPORT_SYMBOL(netdev_has_upper_dev);
4548
4549/**
4550 * netdev_has_any_upper_dev - Check if device is linked to some device
4551 * @dev: device
4552 *
4553 * Find out if a device is linked to an upper device and return true in case
4554 * it is. The caller must hold the RTNL lock.
4555 */
stephen hemminger1d143d92013-12-29 14:01:29 -08004556static bool netdev_has_any_upper_dev(struct net_device *dev)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004557{
4558 ASSERT_RTNL();
4559
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004560 return !list_empty(&dev->all_adj_list.upper);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004561}
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004562
4563/**
4564 * netdev_master_upper_dev_get - Get master upper device
4565 * @dev: device
4566 *
4567 * Find a master upper device and return pointer to it or NULL in case
4568 * it's not there. The caller must hold the RTNL lock.
4569 */
4570struct net_device *netdev_master_upper_dev_get(struct net_device *dev)
4571{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004572 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004573
4574 ASSERT_RTNL();
4575
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004576 if (list_empty(&dev->adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004577 return NULL;
4578
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004579 upper = list_first_entry(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004580 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004581 if (likely(upper->master))
4582 return upper->dev;
4583 return NULL;
4584}
4585EXPORT_SYMBOL(netdev_master_upper_dev_get);
4586
Veaceslav Falicob6ccba42013-09-25 09:20:23 +02004587void *netdev_adjacent_get_private(struct list_head *adj_list)
4588{
4589 struct netdev_adjacent *adj;
4590
4591 adj = list_entry(adj_list, struct netdev_adjacent, list);
4592
4593 return adj->private;
4594}
4595EXPORT_SYMBOL(netdev_adjacent_get_private);
4596
Veaceslav Falico31088a12013-09-25 09:20:12 +02004597/**
Vlad Yasevich44a40852014-05-16 17:20:38 -04004598 * netdev_upper_get_next_dev_rcu - Get the next dev from upper list
4599 * @dev: device
4600 * @iter: list_head ** of the current position
4601 *
4602 * Gets the next device from the dev's upper list, starting from iter
4603 * position. The caller must hold RCU read lock.
4604 */
4605struct net_device *netdev_upper_get_next_dev_rcu(struct net_device *dev,
4606 struct list_head **iter)
4607{
4608 struct netdev_adjacent *upper;
4609
4610 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
4611
4612 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4613
4614 if (&upper->list == &dev->adj_list.upper)
4615 return NULL;
4616
4617 *iter = &upper->list;
4618
4619 return upper->dev;
4620}
4621EXPORT_SYMBOL(netdev_upper_get_next_dev_rcu);
4622
4623/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02004624 * netdev_all_upper_get_next_dev_rcu - Get the next dev from upper list
Veaceslav Falico48311f42013-08-28 23:25:07 +02004625 * @dev: device
4626 * @iter: list_head ** of the current position
4627 *
4628 * Gets the next device from the dev's upper list, starting from iter
4629 * position. The caller must hold RCU read lock.
4630 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004631struct net_device *netdev_all_upper_get_next_dev_rcu(struct net_device *dev,
4632 struct list_head **iter)
Veaceslav Falico48311f42013-08-28 23:25:07 +02004633{
4634 struct netdev_adjacent *upper;
4635
John Fastabend85328242013-11-26 06:33:52 +00004636 WARN_ON_ONCE(!rcu_read_lock_held() && !lockdep_rtnl_is_held());
Veaceslav Falico48311f42013-08-28 23:25:07 +02004637
4638 upper = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4639
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004640 if (&upper->list == &dev->all_adj_list.upper)
Veaceslav Falico48311f42013-08-28 23:25:07 +02004641 return NULL;
4642
4643 *iter = &upper->list;
4644
4645 return upper->dev;
4646}
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004647EXPORT_SYMBOL(netdev_all_upper_get_next_dev_rcu);
Veaceslav Falico48311f42013-08-28 23:25:07 +02004648
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004649/**
Veaceslav Falico31088a12013-09-25 09:20:12 +02004650 * netdev_lower_get_next_private - Get the next ->private from the
4651 * lower neighbour list
4652 * @dev: device
4653 * @iter: list_head ** of the current position
4654 *
4655 * Gets the next netdev_adjacent->private from the dev's lower neighbour
4656 * list, starting from iter position. The caller must hold either hold the
4657 * RTNL lock or its own locking that guarantees that the neighbour lower
4658 * list will remain unchainged.
4659 */
4660void *netdev_lower_get_next_private(struct net_device *dev,
4661 struct list_head **iter)
4662{
4663 struct netdev_adjacent *lower;
4664
4665 lower = list_entry(*iter, struct netdev_adjacent, list);
4666
4667 if (&lower->list == &dev->adj_list.lower)
4668 return NULL;
4669
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02004670 *iter = lower->list.next;
Veaceslav Falico31088a12013-09-25 09:20:12 +02004671
4672 return lower->private;
4673}
4674EXPORT_SYMBOL(netdev_lower_get_next_private);
4675
4676/**
4677 * netdev_lower_get_next_private_rcu - Get the next ->private from the
4678 * lower neighbour list, RCU
4679 * variant
4680 * @dev: device
4681 * @iter: list_head ** of the current position
4682 *
4683 * Gets the next netdev_adjacent->private from the dev's lower neighbour
4684 * list, starting from iter position. The caller must hold RCU read lock.
4685 */
4686void *netdev_lower_get_next_private_rcu(struct net_device *dev,
4687 struct list_head **iter)
4688{
4689 struct netdev_adjacent *lower;
4690
4691 WARN_ON_ONCE(!rcu_read_lock_held());
4692
4693 lower = list_entry_rcu((*iter)->next, struct netdev_adjacent, list);
4694
4695 if (&lower->list == &dev->adj_list.lower)
4696 return NULL;
4697
Veaceslav Falico6859e7d2014-04-07 11:25:12 +02004698 *iter = &lower->list;
Veaceslav Falico31088a12013-09-25 09:20:12 +02004699
4700 return lower->private;
4701}
4702EXPORT_SYMBOL(netdev_lower_get_next_private_rcu);
4703
4704/**
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04004705 * netdev_lower_get_next - Get the next device from the lower neighbour
4706 * list
4707 * @dev: device
4708 * @iter: list_head ** of the current position
4709 *
4710 * Gets the next netdev_adjacent from the dev's lower neighbour
4711 * list, starting from iter position. The caller must hold RTNL lock or
4712 * its own locking that guarantees that the neighbour lower
4713 * list will remain unchainged.
4714 */
4715void *netdev_lower_get_next(struct net_device *dev, struct list_head **iter)
4716{
4717 struct netdev_adjacent *lower;
4718
4719 lower = list_entry((*iter)->next, struct netdev_adjacent, list);
4720
4721 if (&lower->list == &dev->adj_list.lower)
4722 return NULL;
4723
4724 *iter = &lower->list;
4725
4726 return lower->dev;
4727}
4728EXPORT_SYMBOL(netdev_lower_get_next);
4729
4730/**
dingtianhonge001bfa2013-12-13 10:19:55 +08004731 * netdev_lower_get_first_private_rcu - Get the first ->private from the
4732 * lower neighbour list, RCU
4733 * variant
4734 * @dev: device
4735 *
4736 * Gets the first netdev_adjacent->private from the dev's lower neighbour
4737 * list. The caller must hold RCU read lock.
4738 */
4739void *netdev_lower_get_first_private_rcu(struct net_device *dev)
4740{
4741 struct netdev_adjacent *lower;
4742
4743 lower = list_first_or_null_rcu(&dev->adj_list.lower,
4744 struct netdev_adjacent, list);
4745 if (lower)
4746 return lower->private;
4747 return NULL;
4748}
4749EXPORT_SYMBOL(netdev_lower_get_first_private_rcu);
4750
4751/**
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004752 * netdev_master_upper_dev_get_rcu - Get master upper device
4753 * @dev: device
4754 *
4755 * Find a master upper device and return pointer to it or NULL in case
4756 * it's not there. The caller must hold the RCU read lock.
4757 */
4758struct net_device *netdev_master_upper_dev_get_rcu(struct net_device *dev)
4759{
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004760 struct netdev_adjacent *upper;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004761
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004762 upper = list_first_or_null_rcu(&dev->adj_list.upper,
Veaceslav Falicoaa9d8562013-08-28 23:25:04 +02004763 struct netdev_adjacent, list);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004764 if (upper && likely(upper->master))
4765 return upper->dev;
4766 return NULL;
4767}
4768EXPORT_SYMBOL(netdev_master_upper_dev_get_rcu);
4769
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05304770static int netdev_adjacent_sysfs_add(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004771 struct net_device *adj_dev,
4772 struct list_head *dev_list)
4773{
4774 char linkname[IFNAMSIZ+7];
4775 sprintf(linkname, dev_list == &dev->adj_list.upper ?
4776 "upper_%s" : "lower_%s", adj_dev->name);
4777 return sysfs_create_link(&(dev->dev.kobj), &(adj_dev->dev.kobj),
4778 linkname);
4779}
Rashika Kheria0a59f3a2014-02-09 20:26:25 +05304780static void netdev_adjacent_sysfs_del(struct net_device *dev,
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004781 char *name,
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", name);
4787 sysfs_remove_link(&(dev->dev.kobj), linkname);
4788}
4789
4790#define netdev_adjacent_is_neigh_list(dev, dev_list) \
4791 (dev_list == &dev->adj_list.upper || \
4792 dev_list == &dev->adj_list.lower)
4793
Veaceslav Falico5d261912013-08-28 23:25:05 +02004794static int __netdev_adjacent_dev_insert(struct net_device *dev,
4795 struct net_device *adj_dev,
Veaceslav Falico7863c052013-09-25 09:20:06 +02004796 struct list_head *dev_list,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004797 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004798{
4799 struct netdev_adjacent *adj;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004800 int ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004801
Veaceslav Falico7863c052013-09-25 09:20:06 +02004802 adj = __netdev_find_adj(dev, adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004803
4804 if (adj) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02004805 adj->ref_nr++;
4806 return 0;
4807 }
4808
4809 adj = kmalloc(sizeof(*adj), GFP_KERNEL);
4810 if (!adj)
4811 return -ENOMEM;
4812
4813 adj->dev = adj_dev;
4814 adj->master = master;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004815 adj->ref_nr = 1;
Veaceslav Falico402dae92013-09-25 09:20:09 +02004816 adj->private = private;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004817 dev_hold(adj_dev);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004818
4819 pr_debug("dev_hold for %s, because of link added from %s to %s\n",
4820 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004821
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004822 if (netdev_adjacent_is_neigh_list(dev, dev_list)) {
4823 ret = netdev_adjacent_sysfs_add(dev, adj_dev, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004824 if (ret)
4825 goto free_adj;
4826 }
4827
Veaceslav Falico7863c052013-09-25 09:20:06 +02004828 /* Ensure that master link is always the first item in list. */
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004829 if (master) {
4830 ret = sysfs_create_link(&(dev->dev.kobj),
4831 &(adj_dev->dev.kobj), "master");
4832 if (ret)
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004833 goto remove_symlinks;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004834
Veaceslav Falico7863c052013-09-25 09:20:06 +02004835 list_add_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004836 } else {
Veaceslav Falico7863c052013-09-25 09:20:06 +02004837 list_add_tail_rcu(&adj->list, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004838 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02004839
4840 return 0;
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004841
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004842remove_symlinks:
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004843 if (netdev_adjacent_is_neigh_list(dev, dev_list))
4844 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004845free_adj:
4846 kfree(adj);
Nikolay Aleksandrov974daef2013-10-23 15:28:56 +02004847 dev_put(adj_dev);
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004848
4849 return ret;
Veaceslav Falico5d261912013-08-28 23:25:05 +02004850}
4851
stephen hemminger1d143d92013-12-29 14:01:29 -08004852static void __netdev_adjacent_dev_remove(struct net_device *dev,
4853 struct net_device *adj_dev,
4854 struct list_head *dev_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004855{
4856 struct netdev_adjacent *adj;
4857
Veaceslav Falico7863c052013-09-25 09:20:06 +02004858 adj = __netdev_find_adj(dev, adj_dev, dev_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004859
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004860 if (!adj) {
4861 pr_err("tried to remove device %s from %s\n",
4862 dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004863 BUG();
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004864 }
Veaceslav Falico5d261912013-08-28 23:25:05 +02004865
4866 if (adj->ref_nr > 1) {
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004867 pr_debug("%s to %s ref_nr-- = %d\n", dev->name, adj_dev->name,
4868 adj->ref_nr-1);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004869 adj->ref_nr--;
4870 return;
4871 }
4872
Veaceslav Falico842d67a2013-09-25 09:20:31 +02004873 if (adj->master)
4874 sysfs_remove_link(&(dev->dev.kobj), "master");
4875
Veaceslav Falico3ee32702014-01-14 21:58:50 +01004876 if (netdev_adjacent_is_neigh_list(dev, dev_list))
4877 netdev_adjacent_sysfs_del(dev, adj_dev->name, dev_list);
Veaceslav Falico5831d66e2013-09-25 09:20:32 +02004878
Veaceslav Falico5d261912013-08-28 23:25:05 +02004879 list_del_rcu(&adj->list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004880 pr_debug("dev_put for %s, because link removed from %s to %s\n",
4881 adj_dev->name, dev->name, adj_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004882 dev_put(adj_dev);
4883 kfree_rcu(adj, rcu);
4884}
4885
stephen hemminger1d143d92013-12-29 14:01:29 -08004886static int __netdev_adjacent_dev_link_lists(struct net_device *dev,
4887 struct net_device *upper_dev,
4888 struct list_head *up_list,
4889 struct list_head *down_list,
4890 void *private, bool master)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004891{
4892 int ret;
4893
Veaceslav Falico402dae92013-09-25 09:20:09 +02004894 ret = __netdev_adjacent_dev_insert(dev, upper_dev, up_list, private,
4895 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004896 if (ret)
4897 return ret;
4898
Veaceslav Falico402dae92013-09-25 09:20:09 +02004899 ret = __netdev_adjacent_dev_insert(upper_dev, dev, down_list, private,
4900 false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004901 if (ret) {
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004902 __netdev_adjacent_dev_remove(dev, upper_dev, up_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004903 return ret;
4904 }
4905
4906 return 0;
4907}
4908
stephen hemminger1d143d92013-12-29 14:01:29 -08004909static int __netdev_adjacent_dev_link(struct net_device *dev,
4910 struct net_device *upper_dev)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004911{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004912 return __netdev_adjacent_dev_link_lists(dev, upper_dev,
4913 &dev->all_adj_list.upper,
4914 &upper_dev->all_adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004915 NULL, false);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004916}
4917
stephen hemminger1d143d92013-12-29 14:01:29 -08004918static void __netdev_adjacent_dev_unlink_lists(struct net_device *dev,
4919 struct net_device *upper_dev,
4920 struct list_head *up_list,
4921 struct list_head *down_list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004922{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004923 __netdev_adjacent_dev_remove(dev, upper_dev, up_list);
4924 __netdev_adjacent_dev_remove(upper_dev, dev, down_list);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004925}
4926
stephen hemminger1d143d92013-12-29 14:01:29 -08004927static void __netdev_adjacent_dev_unlink(struct net_device *dev,
4928 struct net_device *upper_dev)
Veaceslav Falico5d261912013-08-28 23:25:05 +02004929{
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004930 __netdev_adjacent_dev_unlink_lists(dev, upper_dev,
4931 &dev->all_adj_list.upper,
4932 &upper_dev->all_adj_list.lower);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004933}
4934
stephen hemminger1d143d92013-12-29 14:01:29 -08004935static int __netdev_adjacent_dev_link_neighbour(struct net_device *dev,
4936 struct net_device *upper_dev,
4937 void *private, bool master)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004938{
4939 int ret = __netdev_adjacent_dev_link(dev, upper_dev);
4940
4941 if (ret)
4942 return ret;
4943
4944 ret = __netdev_adjacent_dev_link_lists(dev, upper_dev,
4945 &dev->adj_list.upper,
4946 &upper_dev->adj_list.lower,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004947 private, master);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004948 if (ret) {
4949 __netdev_adjacent_dev_unlink(dev, upper_dev);
4950 return ret;
4951 }
4952
4953 return 0;
4954}
4955
stephen hemminger1d143d92013-12-29 14:01:29 -08004956static void __netdev_adjacent_dev_unlink_neighbour(struct net_device *dev,
4957 struct net_device *upper_dev)
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004958{
4959 __netdev_adjacent_dev_unlink(dev, upper_dev);
4960 __netdev_adjacent_dev_unlink_lists(dev, upper_dev,
4961 &dev->adj_list.upper,
4962 &upper_dev->adj_list.lower);
4963}
Veaceslav Falico5d261912013-08-28 23:25:05 +02004964
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004965static int __netdev_upper_dev_link(struct net_device *dev,
Veaceslav Falico402dae92013-09-25 09:20:09 +02004966 struct net_device *upper_dev, bool master,
4967 void *private)
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004968{
Veaceslav Falico5d261912013-08-28 23:25:05 +02004969 struct netdev_adjacent *i, *j, *to_i, *to_j;
4970 int ret = 0;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004971
4972 ASSERT_RTNL();
4973
4974 if (dev == upper_dev)
4975 return -EBUSY;
4976
4977 /* To prevent loops, check if dev is not upper device to upper_dev. */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004978 if (__netdev_find_adj(upper_dev, dev, &upper_dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004979 return -EBUSY;
4980
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004981 if (__netdev_find_adj(dev, upper_dev, &dev->all_adj_list.upper))
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004982 return -EEXIST;
4983
4984 if (master && netdev_master_upper_dev_get(dev))
4985 return -EBUSY;
4986
Veaceslav Falico402dae92013-09-25 09:20:09 +02004987 ret = __netdev_adjacent_dev_link_neighbour(dev, upper_dev, private,
4988 master);
Veaceslav Falico5d261912013-08-28 23:25:05 +02004989 if (ret)
4990 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00004991
Veaceslav Falico5d261912013-08-28 23:25:05 +02004992 /* Now that we linked these devs, make all the upper_dev's
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004993 * all_adj_list.upper visible to every dev's all_adj_list.lower an
Veaceslav Falico5d261912013-08-28 23:25:05 +02004994 * versa, and don't forget the devices itself. All of these
4995 * links are non-neighbours.
4996 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02004997 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
4998 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
4999 pr_debug("Interlinking %s with %s, non-neighbour\n",
5000 i->dev->name, j->dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005001 ret = __netdev_adjacent_dev_link(i->dev, j->dev);
5002 if (ret)
5003 goto rollback_mesh;
5004 }
5005 }
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005006
Veaceslav Falico5d261912013-08-28 23:25:05 +02005007 /* add dev to every upper_dev's upper device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005008 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
5009 pr_debug("linking %s's upper device %s with %s\n",
5010 upper_dev->name, i->dev->name, dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005011 ret = __netdev_adjacent_dev_link(dev, i->dev);
5012 if (ret)
5013 goto rollback_upper_mesh;
5014 }
5015
5016 /* add upper_dev to every dev's lower device */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005017 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5018 pr_debug("linking %s's lower device %s with %s\n", dev->name,
5019 i->dev->name, upper_dev->name);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005020 ret = __netdev_adjacent_dev_link(i->dev, upper_dev);
5021 if (ret)
5022 goto rollback_lower_mesh;
5023 }
5024
Jiri Pirko42e52bf2013-05-25 04:12:10 +00005025 call_netdevice_notifiers(NETDEV_CHANGEUPPER, dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005026 return 0;
Veaceslav Falico5d261912013-08-28 23:25:05 +02005027
5028rollback_lower_mesh:
5029 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005030 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005031 if (i == to_i)
5032 break;
5033 __netdev_adjacent_dev_unlink(i->dev, upper_dev);
5034 }
5035
5036 i = NULL;
5037
5038rollback_upper_mesh:
5039 to_i = i;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005040 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005041 if (i == to_i)
5042 break;
5043 __netdev_adjacent_dev_unlink(dev, i->dev);
5044 }
5045
5046 i = j = NULL;
5047
5048rollback_mesh:
5049 to_i = i;
5050 to_j = j;
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005051 list_for_each_entry(i, &dev->all_adj_list.lower, list) {
5052 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list) {
Veaceslav Falico5d261912013-08-28 23:25:05 +02005053 if (i == to_i && j == to_j)
5054 break;
5055 __netdev_adjacent_dev_unlink(i->dev, j->dev);
5056 }
5057 if (i == to_i)
5058 break;
5059 }
5060
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005061 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005062
5063 return ret;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005064}
5065
5066/**
5067 * netdev_upper_dev_link - Add a link to the upper device
5068 * @dev: device
5069 * @upper_dev: new upper device
5070 *
5071 * Adds a link to device which is upper to this one. The caller must hold
5072 * the RTNL lock. On a failure a negative errno code is returned.
5073 * On success the reference counts are adjusted and the function
5074 * returns zero.
5075 */
5076int netdev_upper_dev_link(struct net_device *dev,
5077 struct net_device *upper_dev)
5078{
Veaceslav Falico402dae92013-09-25 09:20:09 +02005079 return __netdev_upper_dev_link(dev, upper_dev, false, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005080}
5081EXPORT_SYMBOL(netdev_upper_dev_link);
5082
5083/**
5084 * netdev_master_upper_dev_link - Add a master link to the upper device
5085 * @dev: device
5086 * @upper_dev: new upper device
5087 *
5088 * Adds a link to device which is upper to this one. In this case, only
5089 * one master upper device can be linked, although other non-master devices
5090 * might be linked as well. The caller must hold the RTNL lock.
5091 * On a failure a negative errno code is returned. On success the reference
5092 * counts are adjusted and the function returns zero.
5093 */
5094int netdev_master_upper_dev_link(struct net_device *dev,
5095 struct net_device *upper_dev)
5096{
Veaceslav Falico402dae92013-09-25 09:20:09 +02005097 return __netdev_upper_dev_link(dev, upper_dev, true, NULL);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005098}
5099EXPORT_SYMBOL(netdev_master_upper_dev_link);
5100
Veaceslav Falico402dae92013-09-25 09:20:09 +02005101int netdev_master_upper_dev_link_private(struct net_device *dev,
5102 struct net_device *upper_dev,
5103 void *private)
5104{
5105 return __netdev_upper_dev_link(dev, upper_dev, true, private);
5106}
5107EXPORT_SYMBOL(netdev_master_upper_dev_link_private);
5108
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005109/**
5110 * netdev_upper_dev_unlink - Removes a link to upper device
5111 * @dev: device
5112 * @upper_dev: new upper device
5113 *
5114 * Removes a link to device which is upper to this one. The caller must hold
5115 * the RTNL lock.
5116 */
5117void netdev_upper_dev_unlink(struct net_device *dev,
5118 struct net_device *upper_dev)
5119{
Veaceslav Falico5d261912013-08-28 23:25:05 +02005120 struct netdev_adjacent *i, *j;
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005121 ASSERT_RTNL();
5122
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005123 __netdev_adjacent_dev_unlink_neighbour(dev, upper_dev);
Veaceslav Falico5d261912013-08-28 23:25:05 +02005124
5125 /* Here is the tricky part. We must remove all dev's lower
5126 * devices from all upper_dev's upper devices and vice
5127 * versa, to maintain the graph relationship.
5128 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005129 list_for_each_entry(i, &dev->all_adj_list.lower, list)
5130 list_for_each_entry(j, &upper_dev->all_adj_list.upper, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005131 __netdev_adjacent_dev_unlink(i->dev, j->dev);
5132
5133 /* remove also the devices itself from lower/upper device
5134 * list
5135 */
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005136 list_for_each_entry(i, &dev->all_adj_list.lower, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005137 __netdev_adjacent_dev_unlink(i->dev, upper_dev);
5138
Veaceslav Falico2f268f12013-09-25 09:20:07 +02005139 list_for_each_entry(i, &upper_dev->all_adj_list.upper, list)
Veaceslav Falico5d261912013-08-28 23:25:05 +02005140 __netdev_adjacent_dev_unlink(dev, i->dev);
5141
Jiri Pirko42e52bf2013-05-25 04:12:10 +00005142 call_netdevice_notifiers(NETDEV_CHANGEUPPER, dev);
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005143}
5144EXPORT_SYMBOL(netdev_upper_dev_unlink);
5145
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005146void netdev_adjacent_rename_links(struct net_device *dev, char *oldname)
Veaceslav Falico402dae92013-09-25 09:20:09 +02005147{
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005148 struct netdev_adjacent *iter;
Veaceslav Falico402dae92013-09-25 09:20:09 +02005149
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005150 list_for_each_entry(iter, &dev->adj_list.upper, list) {
5151 netdev_adjacent_sysfs_del(iter->dev, oldname,
5152 &iter->dev->adj_list.lower);
5153 netdev_adjacent_sysfs_add(iter->dev, dev,
5154 &iter->dev->adj_list.lower);
5155 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02005156
Veaceslav Falico5bb025f2014-01-14 21:58:51 +01005157 list_for_each_entry(iter, &dev->adj_list.lower, list) {
5158 netdev_adjacent_sysfs_del(iter->dev, oldname,
5159 &iter->dev->adj_list.upper);
5160 netdev_adjacent_sysfs_add(iter->dev, dev,
5161 &iter->dev->adj_list.upper);
5162 }
Veaceslav Falico402dae92013-09-25 09:20:09 +02005163}
Veaceslav Falico402dae92013-09-25 09:20:09 +02005164
5165void *netdev_lower_dev_get_private(struct net_device *dev,
5166 struct net_device *lower_dev)
5167{
5168 struct netdev_adjacent *lower;
5169
5170 if (!lower_dev)
5171 return NULL;
5172 lower = __netdev_find_adj(dev, lower_dev, &dev->adj_list.lower);
5173 if (!lower)
5174 return NULL;
5175
5176 return lower->private;
5177}
5178EXPORT_SYMBOL(netdev_lower_dev_get_private);
5179
Vlad Yasevich4085ebe2014-05-16 17:04:53 -04005180
5181int dev_get_nest_level(struct net_device *dev,
5182 bool (*type_check)(struct net_device *dev))
5183{
5184 struct net_device *lower = NULL;
5185 struct list_head *iter;
5186 int max_nest = -1;
5187 int nest;
5188
5189 ASSERT_RTNL();
5190
5191 netdev_for_each_lower_dev(dev, lower, iter) {
5192 nest = dev_get_nest_level(lower, type_check);
5193 if (max_nest < nest)
5194 max_nest = nest;
5195 }
5196
5197 if (type_check(dev))
5198 max_nest++;
5199
5200 return max_nest;
5201}
5202EXPORT_SYMBOL(dev_get_nest_level);
5203
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005204static void dev_change_rx_flags(struct net_device *dev, int flags)
5205{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005206 const struct net_device_ops *ops = dev->netdev_ops;
5207
Vlad Yasevichd2615bf2013-11-19 20:47:15 -05005208 if (ops->ndo_change_rx_flags)
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005209 ops->ndo_change_rx_flags(dev, flags);
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005210}
5211
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005212static int __dev_set_promiscuity(struct net_device *dev, int inc, bool notify)
Patrick McHardy4417da62007-06-27 01:28:10 -07005213{
Eric Dumazetb536db92011-11-30 21:42:26 +00005214 unsigned int old_flags = dev->flags;
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06005215 kuid_t uid;
5216 kgid_t gid;
Patrick McHardy4417da62007-06-27 01:28:10 -07005217
Patrick McHardy24023452007-07-14 18:51:31 -07005218 ASSERT_RTNL();
5219
Wang Chendad9b332008-06-18 01:48:28 -07005220 dev->flags |= IFF_PROMISC;
5221 dev->promiscuity += inc;
5222 if (dev->promiscuity == 0) {
5223 /*
5224 * Avoid overflow.
5225 * If inc causes overflow, untouch promisc and return error.
5226 */
5227 if (inc < 0)
5228 dev->flags &= ~IFF_PROMISC;
5229 else {
5230 dev->promiscuity -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005231 pr_warn("%s: promiscuity touches roof, set promiscuity failed. promiscuity feature of device might be broken.\n",
5232 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07005233 return -EOVERFLOW;
5234 }
5235 }
Patrick McHardy4417da62007-06-27 01:28:10 -07005236 if (dev->flags != old_flags) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005237 pr_info("device %s %s promiscuous mode\n",
5238 dev->name,
5239 dev->flags & IFF_PROMISC ? "entered" : "left");
David Howells8192b0c2008-11-14 10:39:10 +11005240 if (audit_enabled) {
5241 current_uid_gid(&uid, &gid);
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05005242 audit_log(current->audit_context, GFP_ATOMIC,
5243 AUDIT_ANOM_PROMISCUOUS,
5244 "dev=%s prom=%d old_prom=%d auid=%u uid=%u gid=%u ses=%u",
5245 dev->name, (dev->flags & IFF_PROMISC),
5246 (old_flags & IFF_PROMISC),
Eric W. Biedermane1760bd2012-09-10 22:39:43 -07005247 from_kuid(&init_user_ns, audit_get_loginuid(current)),
Eric W. Biedermand04a48b2012-05-23 17:01:57 -06005248 from_kuid(&init_user_ns, uid),
5249 from_kgid(&init_user_ns, gid),
Klaus Heinrich Kiwi7759db82008-01-23 22:57:45 -05005250 audit_get_sessionid(current));
David Howells8192b0c2008-11-14 10:39:10 +11005251 }
Patrick McHardy24023452007-07-14 18:51:31 -07005252
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005253 dev_change_rx_flags(dev, IFF_PROMISC);
Patrick McHardy4417da62007-06-27 01:28:10 -07005254 }
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005255 if (notify)
5256 __dev_notify_flags(dev, old_flags, IFF_PROMISC);
Wang Chendad9b332008-06-18 01:48:28 -07005257 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07005258}
5259
Linus Torvalds1da177e2005-04-16 15:20:36 -07005260/**
5261 * dev_set_promiscuity - update promiscuity count on a device
5262 * @dev: device
5263 * @inc: modifier
5264 *
Stephen Hemminger3041a062006-05-26 13:25:24 -07005265 * Add or remove promiscuity from a device. While the count in the device
Linus Torvalds1da177e2005-04-16 15:20:36 -07005266 * remains above zero the interface remains promiscuous. Once it hits zero
5267 * the device reverts back to normal filtering operation. A negative inc
5268 * value is used to drop promiscuity on the device.
Wang Chendad9b332008-06-18 01:48:28 -07005269 * Return 0 if successful or a negative errno code on error.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005270 */
Wang Chendad9b332008-06-18 01:48:28 -07005271int dev_set_promiscuity(struct net_device *dev, int inc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005272{
Eric Dumazetb536db92011-11-30 21:42:26 +00005273 unsigned int old_flags = dev->flags;
Wang Chendad9b332008-06-18 01:48:28 -07005274 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005275
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005276 err = __dev_set_promiscuity(dev, inc, true);
Patrick McHardy4b5a6982008-07-06 15:49:08 -07005277 if (err < 0)
Wang Chendad9b332008-06-18 01:48:28 -07005278 return err;
Patrick McHardy4417da62007-06-27 01:28:10 -07005279 if (dev->flags != old_flags)
5280 dev_set_rx_mode(dev);
Wang Chendad9b332008-06-18 01:48:28 -07005281 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005282}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005283EXPORT_SYMBOL(dev_set_promiscuity);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005284
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005285static int __dev_set_allmulti(struct net_device *dev, int inc, bool notify)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005286{
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005287 unsigned int old_flags = dev->flags, old_gflags = dev->gflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005288
Patrick McHardy24023452007-07-14 18:51:31 -07005289 ASSERT_RTNL();
5290
Linus Torvalds1da177e2005-04-16 15:20:36 -07005291 dev->flags |= IFF_ALLMULTI;
Wang Chendad9b332008-06-18 01:48:28 -07005292 dev->allmulti += inc;
5293 if (dev->allmulti == 0) {
5294 /*
5295 * Avoid overflow.
5296 * If inc causes overflow, untouch allmulti and return error.
5297 */
5298 if (inc < 0)
5299 dev->flags &= ~IFF_ALLMULTI;
5300 else {
5301 dev->allmulti -= inc;
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005302 pr_warn("%s: allmulti touches roof, set allmulti failed. allmulti feature of device might be broken.\n",
5303 dev->name);
Wang Chendad9b332008-06-18 01:48:28 -07005304 return -EOVERFLOW;
5305 }
5306 }
Patrick McHardy24023452007-07-14 18:51:31 -07005307 if (dev->flags ^ old_flags) {
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005308 dev_change_rx_flags(dev, IFF_ALLMULTI);
Patrick McHardy4417da62007-06-27 01:28:10 -07005309 dev_set_rx_mode(dev);
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005310 if (notify)
5311 __dev_notify_flags(dev, old_flags,
5312 dev->gflags ^ old_gflags);
Patrick McHardy24023452007-07-14 18:51:31 -07005313 }
Wang Chendad9b332008-06-18 01:48:28 -07005314 return 0;
Patrick McHardy4417da62007-06-27 01:28:10 -07005315}
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005316
5317/**
5318 * dev_set_allmulti - update allmulti count on a device
5319 * @dev: device
5320 * @inc: modifier
5321 *
5322 * Add or remove reception of all multicast frames to a device. While the
5323 * count in the device remains above zero the interface remains listening
5324 * to all interfaces. Once it hits zero the device reverts back to normal
5325 * filtering operation. A negative @inc value is used to drop the counter
5326 * when releasing a resource needing all multicasts.
5327 * Return 0 if successful or a negative errno code on error.
5328 */
5329
5330int dev_set_allmulti(struct net_device *dev, int inc)
5331{
5332 return __dev_set_allmulti(dev, inc, true);
5333}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005334EXPORT_SYMBOL(dev_set_allmulti);
Patrick McHardy4417da62007-06-27 01:28:10 -07005335
5336/*
5337 * Upload unicast and multicast address lists to device and
5338 * configure RX filtering. When the device doesn't support unicast
Joe Perches53ccaae2007-12-20 14:02:06 -08005339 * filtering it is put in promiscuous mode while unicast addresses
Patrick McHardy4417da62007-06-27 01:28:10 -07005340 * are present.
5341 */
5342void __dev_set_rx_mode(struct net_device *dev)
5343{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005344 const struct net_device_ops *ops = dev->netdev_ops;
5345
Patrick McHardy4417da62007-06-27 01:28:10 -07005346 /* dev_open will call this function so the list will stay sane. */
5347 if (!(dev->flags&IFF_UP))
5348 return;
5349
5350 if (!netif_device_present(dev))
YOSHIFUJI Hideaki40b77c92007-07-19 10:43:23 +09005351 return;
Patrick McHardy4417da62007-06-27 01:28:10 -07005352
Jiri Pirko01789342011-08-16 06:29:00 +00005353 if (!(dev->priv_flags & IFF_UNICAST_FLT)) {
Patrick McHardy4417da62007-06-27 01:28:10 -07005354 /* Unicast addresses changes may only happen under the rtnl,
5355 * therefore calling __dev_set_promiscuity here is safe.
5356 */
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08005357 if (!netdev_uc_empty(dev) && !dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005358 __dev_set_promiscuity(dev, 1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07005359 dev->uc_promisc = true;
Jiri Pirko32e7bfc2010-01-25 13:36:10 -08005360 } else if (netdev_uc_empty(dev) && dev->uc_promisc) {
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005361 __dev_set_promiscuity(dev, -1, false);
Joe Perches2d348d12011-07-25 16:17:35 -07005362 dev->uc_promisc = false;
Patrick McHardy4417da62007-06-27 01:28:10 -07005363 }
Patrick McHardy4417da62007-06-27 01:28:10 -07005364 }
Jiri Pirko01789342011-08-16 06:29:00 +00005365
5366 if (ops->ndo_set_rx_mode)
5367 ops->ndo_set_rx_mode(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07005368}
5369
5370void dev_set_rx_mode(struct net_device *dev)
5371{
David S. Millerb9e40852008-07-15 00:15:08 -07005372 netif_addr_lock_bh(dev);
Patrick McHardy4417da62007-06-27 01:28:10 -07005373 __dev_set_rx_mode(dev);
David S. Millerb9e40852008-07-15 00:15:08 -07005374 netif_addr_unlock_bh(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005375}
5376
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005377/**
5378 * dev_get_flags - get flags reported to userspace
5379 * @dev: device
5380 *
5381 * Get the combination of flag bits exported through APIs to userspace.
5382 */
Eric Dumazet95c96172012-04-15 05:58:06 +00005383unsigned int dev_get_flags(const struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005384{
Eric Dumazet95c96172012-04-15 05:58:06 +00005385 unsigned int flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005386
5387 flags = (dev->flags & ~(IFF_PROMISC |
5388 IFF_ALLMULTI |
Stefan Rompfb00055a2006-03-20 17:09:11 -08005389 IFF_RUNNING |
5390 IFF_LOWER_UP |
5391 IFF_DORMANT)) |
Linus Torvalds1da177e2005-04-16 15:20:36 -07005392 (dev->gflags & (IFF_PROMISC |
5393 IFF_ALLMULTI));
5394
Stefan Rompfb00055a2006-03-20 17:09:11 -08005395 if (netif_running(dev)) {
5396 if (netif_oper_up(dev))
5397 flags |= IFF_RUNNING;
5398 if (netif_carrier_ok(dev))
5399 flags |= IFF_LOWER_UP;
5400 if (netif_dormant(dev))
5401 flags |= IFF_DORMANT;
5402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005403
5404 return flags;
5405}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005406EXPORT_SYMBOL(dev_get_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005407
Patrick McHardybd380812010-02-26 06:34:53 +00005408int __dev_change_flags(struct net_device *dev, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005409{
Eric Dumazetb536db92011-11-30 21:42:26 +00005410 unsigned int old_flags = dev->flags;
Patrick McHardybd380812010-02-26 06:34:53 +00005411 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005412
Patrick McHardy24023452007-07-14 18:51:31 -07005413 ASSERT_RTNL();
5414
Linus Torvalds1da177e2005-04-16 15:20:36 -07005415 /*
5416 * Set the flags on our device.
5417 */
5418
5419 dev->flags = (flags & (IFF_DEBUG | IFF_NOTRAILERS | IFF_NOARP |
5420 IFF_DYNAMIC | IFF_MULTICAST | IFF_PORTSEL |
5421 IFF_AUTOMEDIA)) |
5422 (dev->flags & (IFF_UP | IFF_VOLATILE | IFF_PROMISC |
5423 IFF_ALLMULTI));
5424
5425 /*
5426 * Load in the correct multicast list now the flags have changed.
5427 */
5428
Patrick McHardyb6c40d62008-10-07 15:26:48 -07005429 if ((old_flags ^ flags) & IFF_MULTICAST)
5430 dev_change_rx_flags(dev, IFF_MULTICAST);
Patrick McHardy24023452007-07-14 18:51:31 -07005431
Patrick McHardy4417da62007-06-27 01:28:10 -07005432 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005433
5434 /*
5435 * Have we downed the interface. We handle IFF_UP ourselves
5436 * according to user attempts to set it, rather than blindly
5437 * setting it.
5438 */
5439
5440 ret = 0;
5441 if ((old_flags ^ flags) & IFF_UP) { /* Bit is different ? */
Patrick McHardybd380812010-02-26 06:34:53 +00005442 ret = ((old_flags & IFF_UP) ? __dev_close : __dev_open)(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005443
5444 if (!ret)
Patrick McHardy4417da62007-06-27 01:28:10 -07005445 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005446 }
5447
Linus Torvalds1da177e2005-04-16 15:20:36 -07005448 if ((flags ^ dev->gflags) & IFF_PROMISC) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005449 int inc = (flags & IFF_PROMISC) ? 1 : -1;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005450 unsigned int old_flags = dev->flags;
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005451
Linus Torvalds1da177e2005-04-16 15:20:36 -07005452 dev->gflags ^= IFF_PROMISC;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005453
5454 if (__dev_set_promiscuity(dev, inc, false) >= 0)
5455 if (dev->flags != old_flags)
5456 dev_set_rx_mode(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005457 }
5458
5459 /* NOTE: order of synchronization of IFF_PROMISC and IFF_ALLMULTI
5460 is important. Some (broken) drivers set IFF_PROMISC, when
5461 IFF_ALLMULTI is requested not asking us and not reporting.
5462 */
5463 if ((flags ^ dev->gflags) & IFF_ALLMULTI) {
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005464 int inc = (flags & IFF_ALLMULTI) ? 1 : -1;
5465
Linus Torvalds1da177e2005-04-16 15:20:36 -07005466 dev->gflags ^= IFF_ALLMULTI;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005467 __dev_set_allmulti(dev, inc, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005468 }
5469
Patrick McHardybd380812010-02-26 06:34:53 +00005470 return ret;
5471}
5472
Nicolas Dichtela528c212013-09-25 12:02:44 +02005473void __dev_notify_flags(struct net_device *dev, unsigned int old_flags,
5474 unsigned int gchanges)
Patrick McHardybd380812010-02-26 06:34:53 +00005475{
5476 unsigned int changes = dev->flags ^ old_flags;
5477
Nicolas Dichtela528c212013-09-25 12:02:44 +02005478 if (gchanges)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07005479 rtmsg_ifinfo(RTM_NEWLINK, dev, gchanges, GFP_ATOMIC);
Nicolas Dichtela528c212013-09-25 12:02:44 +02005480
Patrick McHardybd380812010-02-26 06:34:53 +00005481 if (changes & IFF_UP) {
5482 if (dev->flags & IFF_UP)
5483 call_netdevice_notifiers(NETDEV_UP, dev);
5484 else
5485 call_netdevice_notifiers(NETDEV_DOWN, dev);
5486 }
5487
5488 if (dev->flags & IFF_UP &&
Jiri Pirkobe9efd32013-05-28 01:30:22 +00005489 (changes & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI | IFF_VOLATILE))) {
5490 struct netdev_notifier_change_info change_info;
5491
5492 change_info.flags_changed = changes;
5493 call_netdevice_notifiers_info(NETDEV_CHANGE, dev,
5494 &change_info.info);
5495 }
Patrick McHardybd380812010-02-26 06:34:53 +00005496}
5497
5498/**
5499 * dev_change_flags - change device settings
5500 * @dev: device
5501 * @flags: device state flags
5502 *
5503 * Change settings on device based state flags. The flags are
5504 * in the userspace exported format.
5505 */
Eric Dumazetb536db92011-11-30 21:42:26 +00005506int dev_change_flags(struct net_device *dev, unsigned int flags)
Patrick McHardybd380812010-02-26 06:34:53 +00005507{
Eric Dumazetb536db92011-11-30 21:42:26 +00005508 int ret;
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005509 unsigned int changes, old_flags = dev->flags, old_gflags = dev->gflags;
Patrick McHardybd380812010-02-26 06:34:53 +00005510
5511 ret = __dev_change_flags(dev, flags);
5512 if (ret < 0)
5513 return ret;
5514
Nicolas Dichtel991fb3f2013-09-25 12:02:45 +02005515 changes = (old_flags ^ dev->flags) | (old_gflags ^ dev->gflags);
Nicolas Dichtela528c212013-09-25 12:02:44 +02005516 __dev_notify_flags(dev, old_flags, changes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005517 return ret;
5518}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005519EXPORT_SYMBOL(dev_change_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005520
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005521static int __dev_set_mtu(struct net_device *dev, int new_mtu)
5522{
5523 const struct net_device_ops *ops = dev->netdev_ops;
5524
5525 if (ops->ndo_change_mtu)
5526 return ops->ndo_change_mtu(dev, new_mtu);
5527
5528 dev->mtu = new_mtu;
5529 return 0;
5530}
5531
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005532/**
5533 * dev_set_mtu - Change maximum transfer unit
5534 * @dev: device
5535 * @new_mtu: new transfer unit
5536 *
5537 * Change the maximum transfer size of the network device.
5538 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005539int dev_set_mtu(struct net_device *dev, int new_mtu)
5540{
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005541 int err, orig_mtu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005542
5543 if (new_mtu == dev->mtu)
5544 return 0;
5545
5546 /* MTU must be positive. */
5547 if (new_mtu < 0)
5548 return -EINVAL;
5549
5550 if (!netif_device_present(dev))
5551 return -ENODEV;
5552
Veaceslav Falico1d486bf2014-01-16 00:02:18 +01005553 err = call_netdevice_notifiers(NETDEV_PRECHANGEMTU, dev);
5554 err = notifier_to_errno(err);
5555 if (err)
5556 return err;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005557
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005558 orig_mtu = dev->mtu;
5559 err = __dev_set_mtu(dev, new_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005560
Veaceslav Falico2315dc92014-01-10 16:56:25 +01005561 if (!err) {
5562 err = call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
5563 err = notifier_to_errno(err);
5564 if (err) {
5565 /* setting mtu back and notifying everyone again,
5566 * so that they have a chance to revert changes.
5567 */
5568 __dev_set_mtu(dev, orig_mtu);
5569 call_netdevice_notifiers(NETDEV_CHANGEMTU, dev);
5570 }
5571 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07005572 return err;
5573}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005574EXPORT_SYMBOL(dev_set_mtu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005575
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005576/**
Vlad Dogarucbda10f2011-01-13 23:38:30 +00005577 * dev_set_group - Change group this device belongs to
5578 * @dev: device
5579 * @new_group: group this device should belong to
5580 */
5581void dev_set_group(struct net_device *dev, int new_group)
5582{
5583 dev->group = new_group;
5584}
5585EXPORT_SYMBOL(dev_set_group);
5586
5587/**
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07005588 * dev_set_mac_address - Change Media Access Control Address
5589 * @dev: device
5590 * @sa: new address
5591 *
5592 * Change the hardware (MAC) address of the device
5593 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07005594int dev_set_mac_address(struct net_device *dev, struct sockaddr *sa)
5595{
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005596 const struct net_device_ops *ops = dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005597 int err;
5598
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005599 if (!ops->ndo_set_mac_address)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005600 return -EOPNOTSUPP;
5601 if (sa->sa_family != dev->type)
5602 return -EINVAL;
5603 if (!netif_device_present(dev))
5604 return -ENODEV;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08005605 err = ops->ndo_set_mac_address(dev, sa);
Jiri Pirkof6521512013-01-01 03:30:14 +00005606 if (err)
5607 return err;
Jiri Pirkofbdeca22013-01-01 03:30:16 +00005608 dev->addr_assign_type = NET_ADDR_SET;
Jiri Pirkof6521512013-01-01 03:30:14 +00005609 call_netdevice_notifiers(NETDEV_CHANGEADDR, dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04005610 add_device_randomness(dev->dev_addr, dev->addr_len);
Jiri Pirkof6521512013-01-01 03:30:14 +00005611 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005612}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07005613EXPORT_SYMBOL(dev_set_mac_address);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005614
Jiri Pirko4bf84c32012-12-27 23:49:37 +00005615/**
5616 * dev_change_carrier - Change device carrier
5617 * @dev: device
Randy Dunlap691b3b72013-03-04 12:32:43 +00005618 * @new_carrier: new value
Jiri Pirko4bf84c32012-12-27 23:49:37 +00005619 *
5620 * Change device carrier
5621 */
5622int dev_change_carrier(struct net_device *dev, bool new_carrier)
5623{
5624 const struct net_device_ops *ops = dev->netdev_ops;
5625
5626 if (!ops->ndo_change_carrier)
5627 return -EOPNOTSUPP;
5628 if (!netif_device_present(dev))
5629 return -ENODEV;
5630 return ops->ndo_change_carrier(dev, new_carrier);
5631}
5632EXPORT_SYMBOL(dev_change_carrier);
5633
Linus Torvalds1da177e2005-04-16 15:20:36 -07005634/**
Jiri Pirko66b52b02013-07-29 18:16:49 +02005635 * dev_get_phys_port_id - Get device physical port ID
5636 * @dev: device
5637 * @ppid: port ID
5638 *
5639 * Get device physical port ID
5640 */
5641int dev_get_phys_port_id(struct net_device *dev,
5642 struct netdev_phys_port_id *ppid)
5643{
5644 const struct net_device_ops *ops = dev->netdev_ops;
5645
5646 if (!ops->ndo_get_phys_port_id)
5647 return -EOPNOTSUPP;
5648 return ops->ndo_get_phys_port_id(dev, ppid);
5649}
5650EXPORT_SYMBOL(dev_get_phys_port_id);
5651
5652/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005653 * dev_new_index - allocate an ifindex
Randy Dunlapc4ea43c2007-10-12 21:17:49 -07005654 * @net: the applicable net namespace
Linus Torvalds1da177e2005-04-16 15:20:36 -07005655 *
5656 * Returns a suitable unique value for a new device interface
5657 * number. The caller must hold the rtnl semaphore or the
5658 * dev_base_lock to be sure it remains unique.
5659 */
Eric W. Biederman881d9662007-09-17 11:56:21 -07005660static int dev_new_index(struct net *net)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005661{
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00005662 int ifindex = net->ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005663 for (;;) {
5664 if (++ifindex <= 0)
5665 ifindex = 1;
Eric W. Biederman881d9662007-09-17 11:56:21 -07005666 if (!__dev_get_by_index(net, ifindex))
Pavel Emelyanovaa79e662012-08-08 21:53:19 +00005667 return net->ifindex = ifindex;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005668 }
5669}
5670
Linus Torvalds1da177e2005-04-16 15:20:36 -07005671/* Delayed registration/unregisteration */
Denis Cheng3b5b34f2007-12-07 00:49:17 -08005672static LIST_HEAD(net_todo_list);
Cong Wang200b9162014-05-12 15:11:20 -07005673DECLARE_WAIT_QUEUE_HEAD(netdev_unregistering_wq);
Linus Torvalds1da177e2005-04-16 15:20:36 -07005674
Stephen Hemminger6f05f622007-03-08 20:46:03 -08005675static void net_set_todo(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005676{
Linus Torvalds1da177e2005-04-16 15:20:36 -07005677 list_add_tail(&dev->todo_list, &net_todo_list);
Eric W. Biederman50624c92013-09-23 21:19:49 -07005678 dev_net(dev)->dev_unreg_count++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07005679}
5680
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005681static void rollback_registered_many(struct list_head *head)
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005682{
Krishna Kumare93737b2009-12-08 22:26:02 +00005683 struct net_device *dev, *tmp;
Eric W. Biederman5cde2822013-10-05 19:26:05 -07005684 LIST_HEAD(close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005685
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005686 BUG_ON(dev_boot_phase);
5687 ASSERT_RTNL();
5688
Krishna Kumare93737b2009-12-08 22:26:02 +00005689 list_for_each_entry_safe(dev, tmp, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005690 /* Some devices call without registering
Krishna Kumare93737b2009-12-08 22:26:02 +00005691 * for initialization unwind. Remove those
5692 * devices and proceed with the remaining.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005693 */
5694 if (dev->reg_state == NETREG_UNINITIALIZED) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00005695 pr_debug("unregister_netdevice: device %s/%p never was registered\n",
5696 dev->name, dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005697
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005698 WARN_ON(1);
Krishna Kumare93737b2009-12-08 22:26:02 +00005699 list_del(&dev->unreg_list);
5700 continue;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005701 }
Eric Dumazet449f4542011-05-19 12:24:16 +00005702 dev->dismantle = true;
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005703 BUG_ON(dev->reg_state != NETREG_REGISTERED);
Octavian Purdila44345722010-12-13 12:44:07 +00005704 }
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005705
Octavian Purdila44345722010-12-13 12:44:07 +00005706 /* If device is running, close it first. */
Eric W. Biederman5cde2822013-10-05 19:26:05 -07005707 list_for_each_entry(dev, head, unreg_list)
5708 list_add_tail(&dev->close_list, &close_head);
5709 dev_close_many(&close_head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005710
Octavian Purdila44345722010-12-13 12:44:07 +00005711 list_for_each_entry(dev, head, unreg_list) {
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005712 /* And unlink it from device chain. */
5713 unlist_netdevice(dev);
5714
5715 dev->reg_state = NETREG_UNREGISTERING;
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005716 }
5717
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005718 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005719
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005720 list_for_each_entry(dev, head, unreg_list) {
5721 /* Shutdown queueing discipline. */
5722 dev_shutdown(dev);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005723
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005724
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005725 /* Notify protocols, that we are about to destroy
5726 this device. They should clean all the things.
5727 */
5728 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
5729
5730 /*
5731 * Flush the unicast and multicast chains
5732 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00005733 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00005734 dev_mc_flush(dev);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005735
5736 if (dev->netdev_ops->ndo_uninit)
5737 dev->netdev_ops->ndo_uninit(dev);
5738
Roopa Prabhu56bfa7e2014-05-01 11:40:30 -07005739 if (!dev->rtnl_link_ops ||
5740 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
5741 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
5742
Jiri Pirko9ff162a2013-01-03 22:48:49 +00005743 /* Notifier chain MUST detach us all upper devices. */
5744 WARN_ON(netdev_has_any_upper_dev(dev));
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005745
5746 /* Remove entries from kobject tree */
5747 netdev_unregister_kobject(dev);
Alexander Duyck024e9672013-01-10 08:57:46 +00005748#ifdef CONFIG_XPS
5749 /* Remove XPS queueing entries */
5750 netif_reset_xps_queues_gt(dev, 0);
5751#endif
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005752 }
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005753
Eric W. Biederman850a5452011-10-13 22:25:23 +00005754 synchronize_net();
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005755
Eric W. Biedermana5ee1552009-11-29 15:45:58 +00005756 list_for_each_entry(dev, head, unreg_list)
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005757 dev_put(dev);
5758}
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005759
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005760static void rollback_registered(struct net_device *dev)
5761{
5762 LIST_HEAD(single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005763
Eric Dumazet9b5e3832009-10-27 07:04:19 +00005764 list_add(&dev->unreg_list, &single);
5765 rollback_registered_many(&single);
Eric Dumazetceaaec92011-02-17 22:59:19 +00005766 list_del(&single);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07005767}
5768
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005769static netdev_features_t netdev_fix_features(struct net_device *dev,
5770 netdev_features_t features)
Herbert Xub63365a2008-10-23 01:11:29 -07005771{
Michał Mirosław57422dc2011-01-22 12:14:12 +00005772 /* Fix illegal checksum combinations */
5773 if ((features & NETIF_F_HW_CSUM) &&
5774 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005775 netdev_warn(dev, "mixed HW and IP checksum settings.\n");
Michał Mirosław57422dc2011-01-22 12:14:12 +00005776 features &= ~(NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM);
5777 }
5778
Herbert Xub63365a2008-10-23 01:11:29 -07005779 /* TSO requires that SG is present as well. */
Ben Hutchingsea2d3682011-04-12 14:38:37 +00005780 if ((features & NETIF_F_ALL_TSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005781 netdev_dbg(dev, "Dropping TSO features since no SG feature.\n");
Ben Hutchingsea2d3682011-04-12 14:38:37 +00005782 features &= ~NETIF_F_ALL_TSO;
Herbert Xub63365a2008-10-23 01:11:29 -07005783 }
5784
Pravin B Shelarec5f0612013-03-07 09:28:01 +00005785 if ((features & NETIF_F_TSO) && !(features & NETIF_F_HW_CSUM) &&
5786 !(features & NETIF_F_IP_CSUM)) {
5787 netdev_dbg(dev, "Dropping TSO features since no CSUM feature.\n");
5788 features &= ~NETIF_F_TSO;
5789 features &= ~NETIF_F_TSO_ECN;
5790 }
5791
5792 if ((features & NETIF_F_TSO6) && !(features & NETIF_F_HW_CSUM) &&
5793 !(features & NETIF_F_IPV6_CSUM)) {
5794 netdev_dbg(dev, "Dropping TSO6 features since no CSUM feature.\n");
5795 features &= ~NETIF_F_TSO6;
5796 }
5797
Ben Hutchings31d8b9e2011-04-12 14:47:15 +00005798 /* TSO ECN requires that TSO is present as well. */
5799 if ((features & NETIF_F_ALL_TSO) == NETIF_F_TSO_ECN)
5800 features &= ~NETIF_F_TSO_ECN;
5801
Michał Mirosław212b5732011-02-15 16:59:16 +00005802 /* Software GSO depends on SG. */
5803 if ((features & NETIF_F_GSO) && !(features & NETIF_F_SG)) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005804 netdev_dbg(dev, "Dropping NETIF_F_GSO since no SG feature.\n");
Michał Mirosław212b5732011-02-15 16:59:16 +00005805 features &= ~NETIF_F_GSO;
5806 }
5807
Michał Mirosławacd11302011-01-24 15:45:15 -08005808 /* UFO needs SG and checksumming */
Herbert Xub63365a2008-10-23 01:11:29 -07005809 if (features & NETIF_F_UFO) {
Michał Mirosław79032642010-11-30 06:38:00 +00005810 /* maybe split UFO into V4 and V6? */
5811 if (!((features & NETIF_F_GEN_CSUM) ||
5812 (features & (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))
5813 == (NETIF_F_IP_CSUM|NETIF_F_IPV6_CSUM))) {
Michał Mirosław6f404e42011-05-16 15:14:21 -04005814 netdev_dbg(dev,
Michał Mirosławacd11302011-01-24 15:45:15 -08005815 "Dropping NETIF_F_UFO since no checksum offload features.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07005816 features &= ~NETIF_F_UFO;
5817 }
5818
5819 if (!(features & NETIF_F_SG)) {
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 NETIF_F_SG feature.\n");
Herbert Xub63365a2008-10-23 01:11:29 -07005822 features &= ~NETIF_F_UFO;
5823 }
5824 }
5825
Jiri Pirkod0290212014-04-02 23:09:31 +02005826#ifdef CONFIG_NET_RX_BUSY_POLL
5827 if (dev->netdev_ops->ndo_busy_poll)
5828 features |= NETIF_F_BUSY_POLL;
5829 else
5830#endif
5831 features &= ~NETIF_F_BUSY_POLL;
5832
Herbert Xub63365a2008-10-23 01:11:29 -07005833 return features;
5834}
Herbert Xub63365a2008-10-23 01:11:29 -07005835
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005836int __netdev_update_features(struct net_device *dev)
Michał Mirosław5455c692011-02-15 16:59:17 +00005837{
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005838 netdev_features_t features;
Michał Mirosław5455c692011-02-15 16:59:17 +00005839 int err = 0;
5840
Michał Mirosław87267482011-04-12 09:56:38 +00005841 ASSERT_RTNL();
5842
Michał Mirosław5455c692011-02-15 16:59:17 +00005843 features = netdev_get_wanted_features(dev);
5844
5845 if (dev->netdev_ops->ndo_fix_features)
5846 features = dev->netdev_ops->ndo_fix_features(dev, features);
5847
5848 /* driver might be less strict about feature dependencies */
5849 features = netdev_fix_features(dev, features);
5850
5851 if (dev->features == features)
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005852 return 0;
Michał Mirosław5455c692011-02-15 16:59:17 +00005853
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005854 netdev_dbg(dev, "Features changed: %pNF -> %pNF\n",
5855 &dev->features, &features);
Michał Mirosław5455c692011-02-15 16:59:17 +00005856
5857 if (dev->netdev_ops->ndo_set_features)
5858 err = dev->netdev_ops->ndo_set_features(dev, features);
5859
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005860 if (unlikely(err < 0)) {
Michał Mirosław5455c692011-02-15 16:59:17 +00005861 netdev_err(dev,
Michał Mirosławc8f44af2011-11-15 15:29:55 +00005862 "set_features() failed (%d); wanted %pNF, left %pNF\n",
5863 err, &features, &dev->features);
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005864 return -1;
5865 }
5866
5867 if (!err)
5868 dev->features = features;
5869
5870 return 1;
5871}
5872
Michał Mirosławafe12cc2011-05-07 03:22:17 +00005873/**
5874 * netdev_update_features - recalculate device features
5875 * @dev: the device to check
5876 *
5877 * Recalculate dev->features set and send notifications if it
5878 * has changed. Should be called after driver or hardware dependent
5879 * conditions might have changed that influence the features.
5880 */
Michał Mirosław6cb6a272011-04-02 22:48:47 -07005881void netdev_update_features(struct net_device *dev)
5882{
5883 if (__netdev_update_features(dev))
5884 netdev_features_change(dev);
Michał Mirosław5455c692011-02-15 16:59:17 +00005885}
5886EXPORT_SYMBOL(netdev_update_features);
5887
Linus Torvalds1da177e2005-04-16 15:20:36 -07005888/**
Michał Mirosławafe12cc2011-05-07 03:22:17 +00005889 * netdev_change_features - recalculate device features
5890 * @dev: the device to check
5891 *
5892 * Recalculate dev->features set and send notifications even
5893 * if they have not changed. Should be called instead of
5894 * netdev_update_features() if also dev->vlan_features might
5895 * have changed to allow the changes to be propagated to stacked
5896 * VLAN devices.
5897 */
5898void netdev_change_features(struct net_device *dev)
5899{
5900 __netdev_update_features(dev);
5901 netdev_features_change(dev);
5902}
5903EXPORT_SYMBOL(netdev_change_features);
5904
5905/**
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08005906 * netif_stacked_transfer_operstate - transfer operstate
5907 * @rootdev: the root or lower level device to transfer state from
5908 * @dev: the device to transfer operstate to
5909 *
5910 * Transfer operational state from root to device. This is normally
5911 * called when a stacking relationship exists between the root
5912 * device and the device(a leaf device).
5913 */
5914void netif_stacked_transfer_operstate(const struct net_device *rootdev,
5915 struct net_device *dev)
5916{
5917 if (rootdev->operstate == IF_OPER_DORMANT)
5918 netif_dormant_on(dev);
5919 else
5920 netif_dormant_off(dev);
5921
5922 if (netif_carrier_ok(rootdev)) {
5923 if (!netif_carrier_ok(dev))
5924 netif_carrier_on(dev);
5925 } else {
5926 if (netif_carrier_ok(dev))
5927 netif_carrier_off(dev);
5928 }
5929}
5930EXPORT_SYMBOL(netif_stacked_transfer_operstate);
5931
Michael Daltona953be52014-01-16 22:23:28 -08005932#ifdef CONFIG_SYSFS
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005933static int netif_alloc_rx_queues(struct net_device *dev)
5934{
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005935 unsigned int i, count = dev->num_rx_queues;
Tom Herbertbd25fa72010-10-18 18:00:16 +00005936 struct netdev_rx_queue *rx;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005937
Tom Herbertbd25fa72010-10-18 18:00:16 +00005938 BUG_ON(count < 1);
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005939
Tom Herbertbd25fa72010-10-18 18:00:16 +00005940 rx = kcalloc(count, sizeof(struct netdev_rx_queue), GFP_KERNEL);
Joe Perches62b59422013-02-04 16:48:16 +00005941 if (!rx)
Tom Herbertbd25fa72010-10-18 18:00:16 +00005942 return -ENOMEM;
Joe Perches62b59422013-02-04 16:48:16 +00005943
Tom Herbertbd25fa72010-10-18 18:00:16 +00005944 dev->_rx = rx;
5945
Tom Herbertbd25fa72010-10-18 18:00:16 +00005946 for (i = 0; i < count; i++)
Tom Herbertfe822242010-11-09 10:47:38 +00005947 rx[i].dev = dev;
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005948 return 0;
5949}
Tom Herbertbf264142010-11-26 08:36:09 +00005950#endif
Eric Dumazet1b4bf462010-09-23 17:26:35 +00005951
Changli Gaoaa942102010-12-04 02:31:41 +00005952static void netdev_init_one_queue(struct net_device *dev,
5953 struct netdev_queue *queue, void *_unused)
5954{
5955 /* Initialize queue lock */
5956 spin_lock_init(&queue->_xmit_lock);
5957 netdev_set_xmit_lockdep_class(&queue->_xmit_lock, dev->type);
5958 queue->xmit_lock_owner = -1;
Changli Gaob236da62010-12-14 03:09:15 +00005959 netdev_queue_numa_node_write(queue, NUMA_NO_NODE);
Changli Gaoaa942102010-12-04 02:31:41 +00005960 queue->dev = dev;
Tom Herbert114cf582011-11-28 16:33:09 +00005961#ifdef CONFIG_BQL
5962 dql_init(&queue->dql, HZ);
5963#endif
Changli Gaoaa942102010-12-04 02:31:41 +00005964}
5965
Eric Dumazet60877a32013-06-20 01:15:51 -07005966static void netif_free_tx_queues(struct net_device *dev)
5967{
WANG Cong4cb28972014-06-02 15:55:22 -07005968 kvfree(dev->_tx);
Eric Dumazet60877a32013-06-20 01:15:51 -07005969}
5970
Tom Herberte6484932010-10-18 18:04:39 +00005971static int netif_alloc_netdev_queues(struct net_device *dev)
5972{
5973 unsigned int count = dev->num_tx_queues;
5974 struct netdev_queue *tx;
Eric Dumazet60877a32013-06-20 01:15:51 -07005975 size_t sz = count * sizeof(*tx);
Tom Herberte6484932010-10-18 18:04:39 +00005976
Eric Dumazet60877a32013-06-20 01:15:51 -07005977 BUG_ON(count < 1 || count > 0xffff);
Tom Herberte6484932010-10-18 18:04:39 +00005978
Eric Dumazet60877a32013-06-20 01:15:51 -07005979 tx = kzalloc(sz, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
5980 if (!tx) {
5981 tx = vzalloc(sz);
5982 if (!tx)
5983 return -ENOMEM;
5984 }
Tom Herberte6484932010-10-18 18:04:39 +00005985 dev->_tx = tx;
Tom Herbert1d24eb42010-11-21 13:17:27 +00005986
Tom Herberte6484932010-10-18 18:04:39 +00005987 netdev_for_each_tx_queue(dev, netdev_init_one_queue, NULL);
5988 spin_lock_init(&dev->tx_global_lock);
Changli Gaoaa942102010-12-04 02:31:41 +00005989
5990 return 0;
Tom Herberte6484932010-10-18 18:04:39 +00005991}
5992
Patrick Mullaneyfc4a7482009-12-03 15:59:22 -08005993/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07005994 * register_netdevice - register a network device
5995 * @dev: device to register
5996 *
5997 * Take a completed network device structure and add it to the kernel
5998 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
5999 * chain. 0 is returned on success. A negative errno code is returned
6000 * on a failure to set up the device, or if the name is a duplicate.
6001 *
6002 * Callers must hold the rtnl semaphore. You may want
6003 * register_netdev() instead of this.
6004 *
6005 * BUGS:
6006 * The locking appears insufficient to guarantee two parallel registers
6007 * will not get the same name.
6008 */
6009
6010int register_netdevice(struct net_device *dev)
6011{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006012 int ret;
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006013 struct net *net = dev_net(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006014
6015 BUG_ON(dev_boot_phase);
6016 ASSERT_RTNL();
6017
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006018 might_sleep();
6019
Linus Torvalds1da177e2005-04-16 15:20:36 -07006020 /* When net_device's are persistent, this will be fatal. */
6021 BUG_ON(dev->reg_state != NETREG_UNINITIALIZED);
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006022 BUG_ON(!net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006023
David S. Millerf1f28aa2008-07-15 00:08:33 -07006024 spin_lock_init(&dev->addr_list_lock);
David S. Millercf508b12008-07-22 14:16:42 -07006025 netdev_set_addr_lockdep_class(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006026
Linus Torvalds1da177e2005-04-16 15:20:36 -07006027 dev->iflink = -1;
6028
Gao feng828de4f2012-09-13 20:58:27 +00006029 ret = dev_get_valid_name(net, dev, dev->name);
Peter Pan(潘卫平)0696c3a2011-05-12 15:46:56 +00006030 if (ret < 0)
6031 goto out;
6032
Linus Torvalds1da177e2005-04-16 15:20:36 -07006033 /* Init, if this function is available */
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006034 if (dev->netdev_ops->ndo_init) {
6035 ret = dev->netdev_ops->ndo_init(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006036 if (ret) {
6037 if (ret > 0)
6038 ret = -EIO;
Adrian Bunk90833aa2006-11-13 16:02:22 -08006039 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006040 }
6041 }
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006042
Patrick McHardyf6469682013-04-19 02:04:27 +00006043 if (((dev->hw_features | dev->features) &
6044 NETIF_F_HW_VLAN_CTAG_FILTER) &&
Michał Mirosławd2ed2732013-01-29 15:14:16 +00006045 (!dev->netdev_ops->ndo_vlan_rx_add_vid ||
6046 !dev->netdev_ops->ndo_vlan_rx_kill_vid)) {
6047 netdev_WARN(dev, "Buggy VLAN acceleration in driver!\n");
6048 ret = -EINVAL;
6049 goto err_uninit;
6050 }
6051
Pavel Emelyanov9c7dafb2012-08-08 21:52:46 +00006052 ret = -EBUSY;
6053 if (!dev->ifindex)
6054 dev->ifindex = dev_new_index(net);
6055 else if (__dev_get_by_index(net, dev->ifindex))
6056 goto err_uninit;
6057
Linus Torvalds1da177e2005-04-16 15:20:36 -07006058 if (dev->iflink == -1)
6059 dev->iflink = dev->ifindex;
6060
Michał Mirosław5455c692011-02-15 16:59:17 +00006061 /* Transfer changeable features to wanted_features and enable
6062 * software offloads (GSO and GRO).
6063 */
6064 dev->hw_features |= NETIF_F_SOFT_FEATURES;
Michał Mirosław14d12322011-02-22 16:52:28 +00006065 dev->features |= NETIF_F_SOFT_FEATURES;
6066 dev->wanted_features = dev->features & dev->hw_features;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006067
Michał Mirosław34324dc2011-11-15 15:29:55 +00006068 if (!(dev->flags & IFF_LOOPBACK)) {
6069 dev->hw_features |= NETIF_F_NOCACHE_COPY;
Tom Herbertc6e1a0d2011-04-04 22:30:30 -07006070 }
6071
Michał Mirosław1180e7d2011-07-14 14:41:11 -07006072 /* Make NETIF_F_HIGHDMA inheritable to VLAN devices.
Brandon Philips16c3ea72010-09-15 09:24:24 +00006073 */
Michał Mirosław1180e7d2011-07-14 14:41:11 -07006074 dev->vlan_features |= NETIF_F_HIGHDMA;
Brandon Philips16c3ea72010-09-15 09:24:24 +00006075
Pravin B Shelaree579672013-03-07 09:28:08 +00006076 /* Make NETIF_F_SG inheritable to tunnel devices.
6077 */
6078 dev->hw_enc_features |= NETIF_F_SG;
6079
Simon Horman0d89d202013-05-23 21:02:52 +00006080 /* Make NETIF_F_SG inheritable to MPLS.
6081 */
6082 dev->mpls_features |= NETIF_F_SG;
6083
Johannes Berg7ffbe3f2009-10-02 05:15:27 +00006084 ret = call_netdevice_notifiers(NETDEV_POST_INIT, dev);
6085 ret = notifier_to_errno(ret);
6086 if (ret)
6087 goto err_uninit;
6088
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006089 ret = netdev_register_kobject(dev);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006090 if (ret)
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006091 goto err_uninit;
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006092 dev->reg_state = NETREG_REGISTERED;
6093
Michał Mirosław6cb6a272011-04-02 22:48:47 -07006094 __netdev_update_features(dev);
Michał Mirosław8e9b59b2011-02-22 16:52:28 +00006095
Linus Torvalds1da177e2005-04-16 15:20:36 -07006096 /*
6097 * Default initial state at registry is that the
6098 * device is present.
6099 */
6100
6101 set_bit(__LINK_STATE_PRESENT, &dev->state);
6102
Ben Hutchings8f4cccb2012-08-20 22:16:51 +01006103 linkwatch_init_dev(dev);
6104
Linus Torvalds1da177e2005-04-16 15:20:36 -07006105 dev_init_scheduler(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006106 dev_hold(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006107 list_netdevice(dev);
Theodore Ts'o7bf23572012-07-04 21:23:25 -04006108 add_device_randomness(dev->dev_addr, dev->addr_len);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006109
Jiri Pirko948b3372013-01-08 01:38:25 +00006110 /* If the device has permanent device address, driver should
6111 * set dev_addr and also addr_assign_type should be set to
6112 * NET_ADDR_PERM (default value).
6113 */
6114 if (dev->addr_assign_type == NET_ADDR_PERM)
6115 memcpy(dev->perm_addr, dev->dev_addr, dev->addr_len);
6116
Linus Torvalds1da177e2005-04-16 15:20:36 -07006117 /* Notify protocols, that a new device appeared. */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07006118 ret = call_netdevice_notifiers(NETDEV_REGISTER, dev);
Herbert Xufcc5a032007-07-30 17:03:38 -07006119 ret = notifier_to_errno(ret);
Daniel Lezcano93ee31f2007-10-30 15:38:18 -07006120 if (ret) {
6121 rollback_registered(dev);
6122 dev->reg_state = NETREG_UNREGISTERED;
6123 }
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006124 /*
6125 * Prevent userspace races by waiting until the network
6126 * device is fully setup before sending notifications.
6127 */
Patrick McHardya2835762010-02-26 06:34:51 +00006128 if (!dev->rtnl_link_ops ||
6129 dev->rtnl_link_state == RTNL_LINK_INITIALIZED)
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006130 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006131
6132out:
6133 return ret;
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006134
6135err_uninit:
Stephen Hemmingerd3147742008-11-19 21:32:24 -08006136 if (dev->netdev_ops->ndo_uninit)
6137 dev->netdev_ops->ndo_uninit(dev);
Herbert Xu7ce1b0e2007-07-30 16:29:40 -07006138 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006139}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006140EXPORT_SYMBOL(register_netdevice);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006141
6142/**
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006143 * init_dummy_netdev - init a dummy network device for NAPI
6144 * @dev: device to init
6145 *
6146 * This takes a network device structure and initialize the minimum
6147 * amount of fields so it can be used to schedule NAPI polls without
6148 * registering a full blown interface. This is to be used by drivers
6149 * that need to tie several hardware interfaces to a single NAPI
6150 * poll scheduler due to HW limitations.
6151 */
6152int init_dummy_netdev(struct net_device *dev)
6153{
6154 /* Clear everything. Note we don't initialize spinlocks
6155 * are they aren't supposed to be taken by any of the
6156 * NAPI code and this dummy netdev is supposed to be
6157 * only ever used for NAPI polls
6158 */
6159 memset(dev, 0, sizeof(struct net_device));
6160
6161 /* make sure we BUG if trying to hit standard
6162 * register/unregister code path
6163 */
6164 dev->reg_state = NETREG_DUMMY;
6165
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006166 /* NAPI wants this */
6167 INIT_LIST_HEAD(&dev->napi_list);
6168
6169 /* a dummy interface is started by default */
6170 set_bit(__LINK_STATE_PRESENT, &dev->state);
6171 set_bit(__LINK_STATE_START, &dev->state);
6172
Eric Dumazet29b44332010-10-11 10:22:12 +00006173 /* Note : We dont allocate pcpu_refcnt for dummy devices,
6174 * because users of this 'device' dont need to change
6175 * its refcount.
6176 */
6177
Benjamin Herrenschmidt937f1ba2009-01-14 21:05:05 -08006178 return 0;
6179}
6180EXPORT_SYMBOL_GPL(init_dummy_netdev);
6181
6182
6183/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006184 * register_netdev - register a network device
6185 * @dev: device to register
6186 *
6187 * Take a completed network device structure and add it to the kernel
6188 * interfaces. A %NETDEV_REGISTER message is sent to the netdev notifier
6189 * chain. 0 is returned on success. A negative errno code is returned
6190 * on a failure to set up the device, or if the name is a duplicate.
6191 *
Borislav Petkov38b4da32007-04-20 22:14:10 -07006192 * This is a wrapper around register_netdevice that takes the rtnl semaphore
Linus Torvalds1da177e2005-04-16 15:20:36 -07006193 * and expands the device name if you passed a format string to
6194 * alloc_netdev.
6195 */
6196int register_netdev(struct net_device *dev)
6197{
6198 int err;
6199
6200 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006201 err = register_netdevice(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006202 rtnl_unlock();
6203 return err;
6204}
6205EXPORT_SYMBOL(register_netdev);
6206
Eric Dumazet29b44332010-10-11 10:22:12 +00006207int netdev_refcnt_read(const struct net_device *dev)
6208{
6209 int i, refcnt = 0;
6210
6211 for_each_possible_cpu(i)
6212 refcnt += *per_cpu_ptr(dev->pcpu_refcnt, i);
6213 return refcnt;
6214}
6215EXPORT_SYMBOL(netdev_refcnt_read);
6216
Ben Hutchings2c530402012-07-10 10:55:09 +00006217/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006218 * netdev_wait_allrefs - wait until all references are gone.
Randy Dunlap3de7a372012-08-18 14:36:44 +00006219 * @dev: target net_device
Linus Torvalds1da177e2005-04-16 15:20:36 -07006220 *
6221 * This is called when unregistering network devices.
6222 *
6223 * Any protocol or device that holds a reference should register
6224 * for netdevice notification, and cleanup and put back the
6225 * reference if they receive an UNREGISTER event.
6226 * We can get stuck here if buggy protocols don't correctly
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006227 * call dev_put.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006228 */
6229static void netdev_wait_allrefs(struct net_device *dev)
6230{
6231 unsigned long rebroadcast_time, warning_time;
Eric Dumazet29b44332010-10-11 10:22:12 +00006232 int refcnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006233
Eric Dumazete014deb2009-11-17 05:59:21 +00006234 linkwatch_forget_dev(dev);
6235
Linus Torvalds1da177e2005-04-16 15:20:36 -07006236 rebroadcast_time = warning_time = jiffies;
Eric Dumazet29b44332010-10-11 10:22:12 +00006237 refcnt = netdev_refcnt_read(dev);
6238
6239 while (refcnt != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07006240 if (time_after(jiffies, rebroadcast_time + 1 * HZ)) {
Stephen Hemminger6756ae42006-03-20 22:23:58 -08006241 rtnl_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006242
6243 /* Rebroadcast unregister notification */
Pavel Emelyanov056925a2007-09-16 15:42:43 -07006244 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006245
Eric Dumazet748e2d92012-08-22 21:50:59 +00006246 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006247 rcu_barrier();
Eric Dumazet748e2d92012-08-22 21:50:59 +00006248 rtnl_lock();
6249
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006250 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006251 if (test_bit(__LINK_STATE_LINKWATCH_PENDING,
6252 &dev->state)) {
6253 /* We must not have linkwatch events
6254 * pending on unregister. If this
6255 * happens, we simply run the queue
6256 * unscheduled, resulting in a noop
6257 * for this device.
6258 */
6259 linkwatch_run_queue();
6260 }
6261
Stephen Hemminger6756ae42006-03-20 22:23:58 -08006262 __rtnl_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006263
6264 rebroadcast_time = jiffies;
6265 }
6266
6267 msleep(250);
6268
Eric Dumazet29b44332010-10-11 10:22:12 +00006269 refcnt = netdev_refcnt_read(dev);
6270
Linus Torvalds1da177e2005-04-16 15:20:36 -07006271 if (time_after(jiffies, warning_time + 10 * HZ)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006272 pr_emerg("unregister_netdevice: waiting for %s to become free. Usage count = %d\n",
6273 dev->name, refcnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006274 warning_time = jiffies;
6275 }
6276 }
6277}
6278
6279/* The sequence is:
6280 *
6281 * rtnl_lock();
6282 * ...
6283 * register_netdevice(x1);
6284 * register_netdevice(x2);
6285 * ...
6286 * unregister_netdevice(y1);
6287 * unregister_netdevice(y2);
6288 * ...
6289 * rtnl_unlock();
6290 * free_netdev(y1);
6291 * free_netdev(y2);
6292 *
Herbert Xu58ec3b42008-10-07 15:50:03 -07006293 * We are invoked by rtnl_unlock().
Linus Torvalds1da177e2005-04-16 15:20:36 -07006294 * This allows us to deal with problems:
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006295 * 1) We can delete sysfs objects which invoke hotplug
Linus Torvalds1da177e2005-04-16 15:20:36 -07006296 * without deadlocking with linkwatch via keventd.
6297 * 2) Since we run with the RTNL semaphore not held, we can sleep
6298 * safely in order to wait for the netdev refcnt to drop to zero.
Herbert Xu58ec3b42008-10-07 15:50:03 -07006299 *
6300 * We must not return until all unregister events added during
6301 * the interval the lock was held have been completed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006302 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006303void netdev_run_todo(void)
6304{
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006305 struct list_head list;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006306
Linus Torvalds1da177e2005-04-16 15:20:36 -07006307 /* Snapshot list, allow later requests */
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006308 list_replace_init(&net_todo_list, &list);
Herbert Xu58ec3b42008-10-07 15:50:03 -07006309
6310 __rtnl_unlock();
Oleg Nesterov626ab0e2006-06-23 02:05:55 -07006311
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006312
6313 /* Wait for rcu callbacks to finish before next phase */
Eric W. Biederman850a5452011-10-13 22:25:23 +00006314 if (!list_empty(&list))
6315 rcu_barrier();
6316
Linus Torvalds1da177e2005-04-16 15:20:36 -07006317 while (!list_empty(&list)) {
6318 struct net_device *dev
stephen hemmingere5e26d72010-02-24 14:01:38 +00006319 = list_first_entry(&list, struct net_device, todo_list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006320 list_del(&dev->todo_list);
6321
Eric Dumazet748e2d92012-08-22 21:50:59 +00006322 rtnl_lock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006323 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Eric Dumazet748e2d92012-08-22 21:50:59 +00006324 __rtnl_unlock();
Eric Dumazet0115e8e2012-08-22 17:19:46 +00006325
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006326 if (unlikely(dev->reg_state != NETREG_UNREGISTERING)) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006327 pr_err("network todo '%s' but state %d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -07006328 dev->name, dev->reg_state);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006329 dump_stack();
6330 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006331 }
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006332
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006333 dev->reg_state = NETREG_UNREGISTERED;
6334
Changli Gao152102c2010-03-30 20:16:22 +00006335 on_each_cpu(flush_backlog, dev, 1);
Stephen Hemminger6e583ce2008-08-03 21:29:57 -07006336
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006337 netdev_wait_allrefs(dev);
6338
6339 /* paranoia */
Eric Dumazet29b44332010-10-11 10:22:12 +00006340 BUG_ON(netdev_refcnt_read(dev));
Eric Dumazet33d480c2011-08-11 19:30:52 +00006341 WARN_ON(rcu_access_pointer(dev->ip_ptr));
6342 WARN_ON(rcu_access_pointer(dev->ip6_ptr));
Ilpo Järvinen547b7922008-07-25 21:43:18 -07006343 WARN_ON(dev->dn_ptr);
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006344
Stephen Hemmingerb17a7c12006-05-10 13:21:17 -07006345 if (dev->destructor)
6346 dev->destructor(dev);
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07006347
Eric W. Biederman50624c92013-09-23 21:19:49 -07006348 /* Report a network device has been unregistered */
6349 rtnl_lock();
6350 dev_net(dev)->dev_unreg_count--;
6351 __rtnl_unlock();
6352 wake_up(&netdev_unregistering_wq);
6353
Stephen Hemminger9093bbb2007-05-19 15:39:25 -07006354 /* Free network device */
6355 kobject_put(&dev->dev.kobj);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006356 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006357}
6358
Ben Hutchings3cfde792010-07-09 09:11:52 +00006359/* Convert net_device_stats to rtnl_link_stats64. They have the same
6360 * fields in the same order, with only the type differing.
6361 */
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006362void netdev_stats_to_stats64(struct rtnl_link_stats64 *stats64,
6363 const struct net_device_stats *netdev_stats)
Ben Hutchings3cfde792010-07-09 09:11:52 +00006364{
6365#if BITS_PER_LONG == 64
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006366 BUILD_BUG_ON(sizeof(*stats64) != sizeof(*netdev_stats));
6367 memcpy(stats64, netdev_stats, sizeof(*stats64));
Ben Hutchings3cfde792010-07-09 09:11:52 +00006368#else
6369 size_t i, n = sizeof(*stats64) / sizeof(u64);
6370 const unsigned long *src = (const unsigned long *)netdev_stats;
6371 u64 *dst = (u64 *)stats64;
6372
6373 BUILD_BUG_ON(sizeof(*netdev_stats) / sizeof(unsigned long) !=
6374 sizeof(*stats64) / sizeof(u64));
6375 for (i = 0; i < n; i++)
6376 dst[i] = src[i];
6377#endif
6378}
Eric Dumazet77a1abf2012-03-05 04:50:09 +00006379EXPORT_SYMBOL(netdev_stats_to_stats64);
Ben Hutchings3cfde792010-07-09 09:11:52 +00006380
Eric Dumazetd83345a2009-11-16 03:36:51 +00006381/**
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006382 * dev_get_stats - get network device statistics
6383 * @dev: device to get statistics from
Eric Dumazet28172732010-07-07 14:58:56 -07006384 * @storage: place to store stats
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006385 *
Ben Hutchingsd7753512010-07-09 09:12:41 +00006386 * Get network statistics from device. Return @storage.
6387 * The device driver may provide its own method by setting
6388 * dev->netdev_ops->get_stats64 or dev->netdev_ops->get_stats;
6389 * otherwise the internal statistics structure is used.
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006390 */
Ben Hutchingsd7753512010-07-09 09:12:41 +00006391struct rtnl_link_stats64 *dev_get_stats(struct net_device *dev,
6392 struct rtnl_link_stats64 *storage)
Eric Dumazet7004bf22009-05-18 00:34:33 +00006393{
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006394 const struct net_device_ops *ops = dev->netdev_ops;
6395
Eric Dumazet28172732010-07-07 14:58:56 -07006396 if (ops->ndo_get_stats64) {
6397 memset(storage, 0, sizeof(*storage));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006398 ops->ndo_get_stats64(dev, storage);
6399 } else if (ops->ndo_get_stats) {
Ben Hutchings3cfde792010-07-09 09:11:52 +00006400 netdev_stats_to_stats64(storage, ops->ndo_get_stats(dev));
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006401 } else {
6402 netdev_stats_to_stats64(storage, &dev->stats);
Eric Dumazet28172732010-07-07 14:58:56 -07006403 }
Eric Dumazetcaf586e2010-09-30 21:06:55 +00006404 storage->rx_dropped += atomic_long_read(&dev->rx_dropped);
Eric Dumazet015f0682014-03-27 08:45:56 -07006405 storage->tx_dropped += atomic_long_read(&dev->tx_dropped);
Eric Dumazet28172732010-07-07 14:58:56 -07006406 return storage;
Rusty Russellc45d2862007-03-28 14:29:08 -07006407}
Stephen Hemmingereeda3fd2008-11-19 21:40:23 -08006408EXPORT_SYMBOL(dev_get_stats);
Rusty Russellc45d2862007-03-28 14:29:08 -07006409
Eric Dumazet24824a02010-10-02 06:11:55 +00006410struct netdev_queue *dev_ingress_queue_create(struct net_device *dev)
David S. Millerdc2b4842008-07-08 17:18:23 -07006411{
Eric Dumazet24824a02010-10-02 06:11:55 +00006412 struct netdev_queue *queue = dev_ingress_queue(dev);
David S. Millerdc2b4842008-07-08 17:18:23 -07006413
Eric Dumazet24824a02010-10-02 06:11:55 +00006414#ifdef CONFIG_NET_CLS_ACT
6415 if (queue)
6416 return queue;
6417 queue = kzalloc(sizeof(*queue), GFP_KERNEL);
6418 if (!queue)
6419 return NULL;
6420 netdev_init_one_queue(dev, queue, NULL);
Eric Dumazet24824a02010-10-02 06:11:55 +00006421 queue->qdisc = &noop_qdisc;
6422 queue->qdisc_sleeping = &noop_qdisc;
6423 rcu_assign_pointer(dev->ingress_queue, queue);
6424#endif
6425 return queue;
David S. Millerbb949fb2008-07-08 16:55:56 -07006426}
6427
Eric Dumazet2c60db02012-09-16 09:17:26 +00006428static const struct ethtool_ops default_ethtool_ops;
6429
Stanislaw Gruszkad07d7502013-01-10 23:19:10 +00006430void netdev_set_default_ethtool_ops(struct net_device *dev,
6431 const struct ethtool_ops *ops)
6432{
6433 if (dev->ethtool_ops == &default_ethtool_ops)
6434 dev->ethtool_ops = ops;
6435}
6436EXPORT_SYMBOL_GPL(netdev_set_default_ethtool_ops);
6437
Eric Dumazet74d332c2013-10-30 13:10:44 -07006438void netdev_freemem(struct net_device *dev)
6439{
6440 char *addr = (char *)dev - dev->padded;
6441
WANG Cong4cb28972014-06-02 15:55:22 -07006442 kvfree(addr);
Eric Dumazet74d332c2013-10-30 13:10:44 -07006443}
6444
Linus Torvalds1da177e2005-04-16 15:20:36 -07006445/**
Tom Herbert36909ea2011-01-09 19:36:31 +00006446 * alloc_netdev_mqs - allocate network device
Linus Torvalds1da177e2005-04-16 15:20:36 -07006447 * @sizeof_priv: size of private data to allocate space for
6448 * @name: device name format string
6449 * @setup: callback to initialize device
Tom Herbert36909ea2011-01-09 19:36:31 +00006450 * @txqs: the number of TX subqueues to allocate
6451 * @rxqs: the number of RX subqueues to allocate
Linus Torvalds1da177e2005-04-16 15:20:36 -07006452 *
6453 * Allocates a struct net_device with private data area for driver use
Li Zhong90e51ad2013-11-22 15:04:46 +08006454 * and performs basic initialization. Also allocates subqueue structs
Tom Herbert36909ea2011-01-09 19:36:31 +00006455 * for each queue on the device.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006456 */
Tom Herbert36909ea2011-01-09 19:36:31 +00006457struct net_device *alloc_netdev_mqs(int sizeof_priv, const char *name,
6458 void (*setup)(struct net_device *),
6459 unsigned int txqs, unsigned int rxqs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006460{
Linus Torvalds1da177e2005-04-16 15:20:36 -07006461 struct net_device *dev;
Stephen Hemminger79439862008-07-21 13:28:44 -07006462 size_t alloc_size;
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006463 struct net_device *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006464
Stephen Hemmingerb6fe17d2006-08-29 17:06:13 -07006465 BUG_ON(strlen(name) >= sizeof(dev->name));
6466
Tom Herbert36909ea2011-01-09 19:36:31 +00006467 if (txqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006468 pr_err("alloc_netdev: Unable to allocate device with zero queues\n");
Tom Herbert55513fb2010-10-18 17:55:58 +00006469 return NULL;
6470 }
6471
Michael Daltona953be52014-01-16 22:23:28 -08006472#ifdef CONFIG_SYSFS
Tom Herbert36909ea2011-01-09 19:36:31 +00006473 if (rxqs < 1) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00006474 pr_err("alloc_netdev: Unable to allocate device with zero RX queues\n");
Tom Herbert36909ea2011-01-09 19:36:31 +00006475 return NULL;
6476 }
6477#endif
6478
David S. Millerfd2ea0a2008-07-17 01:56:23 -07006479 alloc_size = sizeof(struct net_device);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07006480 if (sizeof_priv) {
6481 /* ensure 32-byte alignment of private area */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006482 alloc_size = ALIGN(alloc_size, NETDEV_ALIGN);
Alexey Dobriyand1643d22008-04-18 15:43:32 -07006483 alloc_size += sizeof_priv;
6484 }
6485 /* ensure 32-byte alignment of whole construct */
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006486 alloc_size += NETDEV_ALIGN - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006487
Eric Dumazet74d332c2013-10-30 13:10:44 -07006488 p = kzalloc(alloc_size, GFP_KERNEL | __GFP_NOWARN | __GFP_REPEAT);
6489 if (!p)
6490 p = vzalloc(alloc_size);
Joe Perches62b59422013-02-04 16:48:16 +00006491 if (!p)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006492 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006493
Eric Dumazet1ce8e7b2009-05-27 04:42:37 +00006494 dev = PTR_ALIGN(p, NETDEV_ALIGN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006495 dev->padded = (char *)dev - (char *)p;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006496
Eric Dumazet29b44332010-10-11 10:22:12 +00006497 dev->pcpu_refcnt = alloc_percpu(int);
6498 if (!dev->pcpu_refcnt)
Eric Dumazet74d332c2013-10-30 13:10:44 -07006499 goto free_dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006500
Linus Torvalds1da177e2005-04-16 15:20:36 -07006501 if (dev_addr_init(dev))
Eric Dumazet29b44332010-10-11 10:22:12 +00006502 goto free_pcpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006503
Jiri Pirko22bedad32010-04-01 21:22:57 +00006504 dev_mc_init(dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006505 dev_uc_init(dev);
Jiri Pirkoccffad252009-05-22 23:22:17 +00006506
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09006507 dev_net_set(dev, &init_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006508
Peter P Waskiewicz Jr82cc1a72008-03-21 03:43:19 -07006509 dev->gso_max_size = GSO_MAX_SIZE;
Ben Hutchings30b678d2012-07-30 15:57:00 +00006510 dev->gso_max_segs = GSO_MAX_SEGS;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006511
Herbert Xud565b0a2008-12-15 23:38:52 -08006512 INIT_LIST_HEAD(&dev->napi_list);
Eric W. Biederman9fdce092009-10-30 14:51:13 +00006513 INIT_LIST_HEAD(&dev->unreg_list);
Eric W. Biederman5cde2822013-10-05 19:26:05 -07006514 INIT_LIST_HEAD(&dev->close_list);
Eric Dumazete014deb2009-11-17 05:59:21 +00006515 INIT_LIST_HEAD(&dev->link_watch_list);
Veaceslav Falico2f268f12013-09-25 09:20:07 +02006516 INIT_LIST_HEAD(&dev->adj_list.upper);
6517 INIT_LIST_HEAD(&dev->adj_list.lower);
6518 INIT_LIST_HEAD(&dev->all_adj_list.upper);
6519 INIT_LIST_HEAD(&dev->all_adj_list.lower);
Eric Dumazet93f154b2009-05-18 22:19:19 -07006520 dev->priv_flags = IFF_XMIT_DST_RELEASE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006521 setup(dev);
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006522
6523 dev->num_tx_queues = txqs;
6524 dev->real_num_tx_queues = txqs;
6525 if (netif_alloc_netdev_queues(dev))
6526 goto free_all;
6527
Michael Daltona953be52014-01-16 22:23:28 -08006528#ifdef CONFIG_SYSFS
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006529 dev->num_rx_queues = rxqs;
6530 dev->real_num_rx_queues = rxqs;
6531 if (netif_alloc_rx_queues(dev))
6532 goto free_all;
6533#endif
6534
Linus Torvalds1da177e2005-04-16 15:20:36 -07006535 strcpy(dev->name, name);
Vlad Dogarucbda10f2011-01-13 23:38:30 +00006536 dev->group = INIT_NETDEV_GROUP;
Eric Dumazet2c60db02012-09-16 09:17:26 +00006537 if (!dev->ethtool_ops)
6538 dev->ethtool_ops = &default_ethtool_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006539 return dev;
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006540
David S. Miller8d3bdbd2011-02-08 15:02:50 -08006541free_all:
6542 free_netdev(dev);
6543 return NULL;
6544
Eric Dumazet29b44332010-10-11 10:22:12 +00006545free_pcpu:
6546 free_percpu(dev->pcpu_refcnt);
Eric Dumazet74d332c2013-10-30 13:10:44 -07006547free_dev:
6548 netdev_freemem(dev);
Jiri Pirkoab9c73c2009-05-08 13:30:17 +00006549 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006550}
Tom Herbert36909ea2011-01-09 19:36:31 +00006551EXPORT_SYMBOL(alloc_netdev_mqs);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006552
6553/**
6554 * free_netdev - free network device
6555 * @dev: device
6556 *
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006557 * This function does the last stage of destroying an allocated device
6558 * interface. The reference to the device object is released.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006559 * If this is the last reference then it will be freed.
6560 */
6561void free_netdev(struct net_device *dev)
6562{
Herbert Xud565b0a2008-12-15 23:38:52 -08006563 struct napi_struct *p, *n;
6564
Denis V. Lunevf3005d72008-04-16 02:02:18 -07006565 release_net(dev_net(dev));
6566
Eric Dumazet60877a32013-06-20 01:15:51 -07006567 netif_free_tx_queues(dev);
Michael Daltona953be52014-01-16 22:23:28 -08006568#ifdef CONFIG_SYSFS
Tom Herbertfe822242010-11-09 10:47:38 +00006569 kfree(dev->_rx);
6570#endif
David S. Millere8a04642008-07-17 00:34:19 -07006571
Eric Dumazet33d480c2011-08-11 19:30:52 +00006572 kfree(rcu_dereference_protected(dev->ingress_queue, 1));
Eric Dumazet24824a02010-10-02 06:11:55 +00006573
Jiri Pirkof001fde2009-05-05 02:48:28 +00006574 /* Flush device addresses */
6575 dev_addr_flush(dev);
6576
Herbert Xud565b0a2008-12-15 23:38:52 -08006577 list_for_each_entry_safe(p, n, &dev->napi_list, dev_list)
6578 netif_napi_del(p);
6579
Eric Dumazet29b44332010-10-11 10:22:12 +00006580 free_percpu(dev->pcpu_refcnt);
6581 dev->pcpu_refcnt = NULL;
6582
Stephen Hemminger3041a062006-05-26 13:25:24 -07006583 /* Compatibility with error handling in drivers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07006584 if (dev->reg_state == NETREG_UNINITIALIZED) {
Eric Dumazet74d332c2013-10-30 13:10:44 -07006585 netdev_freemem(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006586 return;
6587 }
6588
6589 BUG_ON(dev->reg_state != NETREG_UNREGISTERED);
6590 dev->reg_state = NETREG_RELEASED;
6591
Greg Kroah-Hartman43cb76d2002-04-09 12:14:34 -07006592 /* will free via device release */
6593 put_device(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006594}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006595EXPORT_SYMBOL(free_netdev);
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006596
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006597/**
6598 * synchronize_net - Synchronize with packet receive processing
6599 *
6600 * Wait for packets currently being received to be done.
6601 * Does not block later packets from starting.
6602 */
YOSHIFUJI Hideaki4ec93ed2007-02-09 23:24:36 +09006603void synchronize_net(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006604{
6605 might_sleep();
Eric Dumazetbe3fc412011-05-23 23:07:32 +00006606 if (rtnl_is_locked())
6607 synchronize_rcu_expedited();
6608 else
6609 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07006610}
Eric Dumazetd1b19df2009-09-03 01:29:39 -07006611EXPORT_SYMBOL(synchronize_net);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006612
6613/**
Eric Dumazet44a08732009-10-27 07:03:04 +00006614 * unregister_netdevice_queue - remove device from the kernel
Linus Torvalds1da177e2005-04-16 15:20:36 -07006615 * @dev: device
Eric Dumazet44a08732009-10-27 07:03:04 +00006616 * @head: list
Jaswinder Singh Rajput6ebfbc02009-11-22 20:43:13 -08006617 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006618 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08006619 * from the kernel tables.
Eric Dumazet44a08732009-10-27 07:03:04 +00006620 * If head not NULL, device is queued to be unregistered later.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006621 *
6622 * Callers must hold the rtnl semaphore. You may want
6623 * unregister_netdev() instead of this.
6624 */
6625
Eric Dumazet44a08732009-10-27 07:03:04 +00006626void unregister_netdevice_queue(struct net_device *dev, struct list_head *head)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006627{
Herbert Xua6620712007-12-12 19:21:56 -08006628 ASSERT_RTNL();
6629
Eric Dumazet44a08732009-10-27 07:03:04 +00006630 if (head) {
Eric W. Biederman9fdce092009-10-30 14:51:13 +00006631 list_move_tail(&dev->unreg_list, head);
Eric Dumazet44a08732009-10-27 07:03:04 +00006632 } else {
6633 rollback_registered(dev);
6634 /* Finish processing unregister after unlock */
6635 net_set_todo(dev);
6636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006637}
Eric Dumazet44a08732009-10-27 07:03:04 +00006638EXPORT_SYMBOL(unregister_netdevice_queue);
Linus Torvalds1da177e2005-04-16 15:20:36 -07006639
6640/**
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006641 * unregister_netdevice_many - unregister many devices
6642 * @head: list of devices
Eric Dumazet87757a92014-06-06 06:44:03 -07006643 *
6644 * Note: As most callers use a stack allocated list_head,
6645 * we force a list_del() to make sure stack wont be corrupted later.
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006646 */
6647void unregister_netdevice_many(struct list_head *head)
6648{
6649 struct net_device *dev;
6650
6651 if (!list_empty(head)) {
6652 rollback_registered_many(head);
6653 list_for_each_entry(dev, head, unreg_list)
6654 net_set_todo(dev);
Eric Dumazet87757a92014-06-06 06:44:03 -07006655 list_del(head);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006656 }
6657}
Eric Dumazet63c80992009-10-27 07:06:49 +00006658EXPORT_SYMBOL(unregister_netdevice_many);
Eric Dumazet9b5e3832009-10-27 07:04:19 +00006659
6660/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07006661 * unregister_netdev - remove device from the kernel
6662 * @dev: device
6663 *
6664 * This function shuts down a device interface and removes it
Wang Chend59b54b2007-12-11 02:28:03 -08006665 * from the kernel tables.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006666 *
6667 * This is just a wrapper for unregister_netdevice that takes
6668 * the rtnl semaphore. In general you want to use this and not
6669 * unregister_netdevice.
6670 */
6671void unregister_netdev(struct net_device *dev)
6672{
6673 rtnl_lock();
6674 unregister_netdevice(dev);
6675 rtnl_unlock();
6676}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006677EXPORT_SYMBOL(unregister_netdev);
6678
Eric W. Biedermance286d32007-09-12 13:53:49 +02006679/**
6680 * dev_change_net_namespace - move device to different nethost namespace
6681 * @dev: device
6682 * @net: network namespace
6683 * @pat: If not NULL name pattern to try if the current device name
6684 * is already taken in the destination network namespace.
6685 *
6686 * This function shuts down a device interface and moves it
6687 * to a new network namespace. On success 0 is returned, on
6688 * a failure a netagive errno code is returned.
6689 *
6690 * Callers must hold the rtnl semaphore.
6691 */
6692
6693int dev_change_net_namespace(struct net_device *dev, struct net *net, const char *pat)
6694{
Eric W. Biedermance286d32007-09-12 13:53:49 +02006695 int err;
6696
6697 ASSERT_RTNL();
6698
6699 /* Don't allow namespace local devices to be moved. */
6700 err = -EINVAL;
6701 if (dev->features & NETIF_F_NETNS_LOCAL)
6702 goto out;
6703
6704 /* Ensure the device has been registrered */
Eric W. Biedermance286d32007-09-12 13:53:49 +02006705 if (dev->reg_state != NETREG_REGISTERED)
6706 goto out;
6707
6708 /* Get out if there is nothing todo */
6709 err = 0;
YOSHIFUJI Hideaki878628f2008-03-26 03:57:35 +09006710 if (net_eq(dev_net(dev), net))
Eric W. Biedermance286d32007-09-12 13:53:49 +02006711 goto out;
6712
6713 /* Pick the destination device name, and ensure
6714 * we can use it in the destination network namespace.
6715 */
6716 err = -EEXIST;
Octavian Purdilad9031022009-11-18 02:36:59 +00006717 if (__dev_get_by_name(net, dev->name)) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02006718 /* We get here if we can't use the current device name */
6719 if (!pat)
6720 goto out;
Gao feng828de4f2012-09-13 20:58:27 +00006721 if (dev_get_valid_name(net, dev, pat) < 0)
Eric W. Biedermance286d32007-09-12 13:53:49 +02006722 goto out;
6723 }
6724
6725 /*
6726 * And now a mini version of register_netdevice unregister_netdevice.
6727 */
6728
6729 /* If device is running close it first. */
Pavel Emelyanov9b772652007-10-10 02:49:09 -07006730 dev_close(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006731
6732 /* And unlink it from device chain */
6733 err = -ENODEV;
6734 unlist_netdevice(dev);
6735
6736 synchronize_net();
6737
6738 /* Shutdown queueing discipline. */
6739 dev_shutdown(dev);
6740
6741 /* Notify protocols, that we are about to destroy
6742 this device. They should clean all the things.
David Lamparter3b27e102010-09-17 03:22:19 +00006743
6744 Note that dev->reg_state stays at NETREG_REGISTERED.
6745 This is wanted because this way 8021q and macvlan know
6746 the device is just moving and can keep their slaves up.
Eric W. Biedermance286d32007-09-12 13:53:49 +02006747 */
6748 call_netdevice_notifiers(NETDEV_UNREGISTER, dev);
Gao feng6549dd42012-08-23 15:36:55 +00006749 rcu_barrier();
6750 call_netdevice_notifiers(NETDEV_UNREGISTER_FINAL, dev);
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006751 rtmsg_ifinfo(RTM_DELLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006752
6753 /*
6754 * Flush the unicast and multicast chains
6755 */
Jiri Pirkoa748ee22010-04-01 21:22:09 +00006756 dev_uc_flush(dev);
Jiri Pirko22bedad32010-04-01 21:22:57 +00006757 dev_mc_flush(dev);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006758
Serge Hallyn4e66ae22012-12-03 16:17:12 +00006759 /* Send a netdev-removed uevent to the old namespace */
6760 kobject_uevent(&dev->dev.kobj, KOBJ_REMOVE);
6761
Eric W. Biedermance286d32007-09-12 13:53:49 +02006762 /* Actually switch the network namespace */
YOSHIFUJI Hideakic346dca2008-03-25 21:47:49 +09006763 dev_net_set(dev, net);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006764
Eric W. Biedermance286d32007-09-12 13:53:49 +02006765 /* If there is an ifindex conflict assign a new one */
6766 if (__dev_get_by_index(net, dev->ifindex)) {
6767 int iflink = (dev->iflink == dev->ifindex);
6768 dev->ifindex = dev_new_index(net);
6769 if (iflink)
6770 dev->iflink = dev->ifindex;
6771 }
6772
Serge Hallyn4e66ae22012-12-03 16:17:12 +00006773 /* Send a netdev-add uevent to the new namespace */
6774 kobject_uevent(&dev->dev.kobj, KOBJ_ADD);
6775
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006776 /* Fixup kobjects */
Eric W. Biedermana1b3f592010-05-04 17:36:49 -07006777 err = device_rename(&dev->dev, dev->name);
Eric W. Biederman8b41d182007-09-26 22:02:53 -07006778 WARN_ON(err);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006779
6780 /* Add the device back in the hashes */
6781 list_netdevice(dev);
6782
6783 /* Notify protocols, that a new device appeared. */
6784 call_netdevice_notifiers(NETDEV_REGISTER, dev);
6785
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006786 /*
6787 * Prevent userspace races by waiting until the network
6788 * device is fully setup before sending notifications.
6789 */
Alexei Starovoitov7f294052013-10-23 16:02:42 -07006790 rtmsg_ifinfo(RTM_NEWLINK, dev, ~0U, GFP_KERNEL);
Eric W. Biedermand90a9092009-12-12 22:11:15 +00006791
Eric W. Biedermance286d32007-09-12 13:53:49 +02006792 synchronize_net();
6793 err = 0;
6794out:
6795 return err;
6796}
Johannes Berg463d0182009-07-14 00:33:35 +02006797EXPORT_SYMBOL_GPL(dev_change_net_namespace);
Eric W. Biedermance286d32007-09-12 13:53:49 +02006798
Linus Torvalds1da177e2005-04-16 15:20:36 -07006799static int dev_cpu_callback(struct notifier_block *nfb,
6800 unsigned long action,
6801 void *ocpu)
6802{
6803 struct sk_buff **list_skb;
Linus Torvalds1da177e2005-04-16 15:20:36 -07006804 struct sk_buff *skb;
6805 unsigned int cpu, oldcpu = (unsigned long)ocpu;
6806 struct softnet_data *sd, *oldsd;
6807
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07006808 if (action != CPU_DEAD && action != CPU_DEAD_FROZEN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006809 return NOTIFY_OK;
6810
6811 local_irq_disable();
6812 cpu = smp_processor_id();
6813 sd = &per_cpu(softnet_data, cpu);
6814 oldsd = &per_cpu(softnet_data, oldcpu);
6815
6816 /* Find end of our completion_queue. */
6817 list_skb = &sd->completion_queue;
6818 while (*list_skb)
6819 list_skb = &(*list_skb)->next;
6820 /* Append completion queue from offline CPU. */
6821 *list_skb = oldsd->completion_queue;
6822 oldsd->completion_queue = NULL;
6823
Linus Torvalds1da177e2005-04-16 15:20:36 -07006824 /* Append output queue from offline CPU. */
Changli Gaoa9cbd582010-04-26 23:06:24 +00006825 if (oldsd->output_queue) {
6826 *sd->output_queue_tailp = oldsd->output_queue;
6827 sd->output_queue_tailp = oldsd->output_queue_tailp;
6828 oldsd->output_queue = NULL;
6829 oldsd->output_queue_tailp = &oldsd->output_queue;
6830 }
Heiko Carstens264524d2011-06-06 20:50:03 +00006831 /* Append NAPI poll list from offline CPU. */
6832 if (!list_empty(&oldsd->poll_list)) {
6833 list_splice_init(&oldsd->poll_list, &sd->poll_list);
6834 raise_softirq_irqoff(NET_RX_SOFTIRQ);
6835 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006836
6837 raise_softirq_irqoff(NET_TX_SOFTIRQ);
6838 local_irq_enable();
6839
6840 /* Process offline CPU's input_pkt_queue */
Tom Herbert76cc8b12010-05-20 18:37:59 +00006841 while ((skb = __skb_dequeue(&oldsd->process_queue))) {
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006842 netif_rx_internal(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00006843 input_queue_head_incr(oldsd);
6844 }
Tom Herbertfec5e652010-04-16 16:01:27 -07006845 while ((skb = __skb_dequeue(&oldsd->input_pkt_queue))) {
Ben Hutchingsae78dbf2014-01-10 22:17:24 +00006846 netif_rx_internal(skb);
Tom Herbert76cc8b12010-05-20 18:37:59 +00006847 input_queue_head_incr(oldsd);
Tom Herbertfec5e652010-04-16 16:01:27 -07006848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07006849
6850 return NOTIFY_OK;
6851}
Linus Torvalds1da177e2005-04-16 15:20:36 -07006852
6853
Herbert Xu7f353bf2007-08-10 15:47:58 -07006854/**
Herbert Xub63365a2008-10-23 01:11:29 -07006855 * netdev_increment_features - increment feature set by one
6856 * @all: current feature set
6857 * @one: new feature set
6858 * @mask: mask feature set
Herbert Xu7f353bf2007-08-10 15:47:58 -07006859 *
6860 * Computes a new feature set after adding a device with feature set
Herbert Xub63365a2008-10-23 01:11:29 -07006861 * @one to the master device with current feature set @all. Will not
6862 * enable anything that is off in @mask. Returns the new feature set.
Herbert Xu7f353bf2007-08-10 15:47:58 -07006863 */
Michał Mirosławc8f44af2011-11-15 15:29:55 +00006864netdev_features_t netdev_increment_features(netdev_features_t all,
6865 netdev_features_t one, netdev_features_t mask)
Herbert Xu7f353bf2007-08-10 15:47:58 -07006866{
Michał Mirosław1742f182011-04-22 06:31:16 +00006867 if (mask & NETIF_F_GEN_CSUM)
6868 mask |= NETIF_F_ALL_CSUM;
6869 mask |= NETIF_F_VLAN_CHALLENGED;
6870
6871 all |= one & (NETIF_F_ONE_FOR_ALL|NETIF_F_ALL_CSUM) & mask;
6872 all &= one | ~NETIF_F_ALL_FOR_ALL;
6873
Michał Mirosław1742f182011-04-22 06:31:16 +00006874 /* If one device supports hw checksumming, set for all. */
6875 if (all & NETIF_F_GEN_CSUM)
6876 all &= ~(NETIF_F_ALL_CSUM & ~NETIF_F_GEN_CSUM);
Herbert Xu7f353bf2007-08-10 15:47:58 -07006877
6878 return all;
6879}
Herbert Xub63365a2008-10-23 01:11:29 -07006880EXPORT_SYMBOL(netdev_increment_features);
Herbert Xu7f353bf2007-08-10 15:47:58 -07006881
Baruch Siach430f03c2013-06-02 20:43:55 +00006882static struct hlist_head * __net_init netdev_create_hash(void)
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006883{
6884 int i;
6885 struct hlist_head *hash;
6886
6887 hash = kmalloc(sizeof(*hash) * NETDEV_HASHENTRIES, GFP_KERNEL);
6888 if (hash != NULL)
6889 for (i = 0; i < NETDEV_HASHENTRIES; i++)
6890 INIT_HLIST_HEAD(&hash[i]);
6891
6892 return hash;
6893}
6894
Eric W. Biederman881d9662007-09-17 11:56:21 -07006895/* Initialize per network namespace state */
Pavel Emelyanov46650792007-10-08 20:38:39 -07006896static int __net_init netdev_init(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07006897{
Rustad, Mark D734b6542012-07-18 09:06:07 +00006898 if (net != &init_net)
6899 INIT_LIST_HEAD(&net->dev_base_head);
Eric W. Biederman881d9662007-09-17 11:56:21 -07006900
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006901 net->dev_name_head = netdev_create_hash();
6902 if (net->dev_name_head == NULL)
6903 goto err_name;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006904
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006905 net->dev_index_head = netdev_create_hash();
6906 if (net->dev_index_head == NULL)
6907 goto err_idx;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006908
6909 return 0;
Pavel Emelyanov30d97d32007-09-16 15:40:33 -07006910
6911err_idx:
6912 kfree(net->dev_name_head);
6913err_name:
6914 return -ENOMEM;
Eric W. Biederman881d9662007-09-17 11:56:21 -07006915}
6916
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006917/**
6918 * netdev_drivername - network driver for the device
6919 * @dev: network device
Stephen Hemmingerf0db2752008-09-30 02:23:58 -07006920 *
6921 * Determine network driver for device.
6922 */
David S. Miller3019de12011-06-06 16:41:33 -07006923const char *netdev_drivername(const struct net_device *dev)
Arjan van de Ven6579e572008-07-21 13:31:48 -07006924{
Stephen Hemmingercf04a4c72008-09-30 02:22:14 -07006925 const struct device_driver *driver;
6926 const struct device *parent;
David S. Miller3019de12011-06-06 16:41:33 -07006927 const char *empty = "";
Arjan van de Ven6579e572008-07-21 13:31:48 -07006928
6929 parent = dev->dev.parent;
Arjan van de Ven6579e572008-07-21 13:31:48 -07006930 if (!parent)
David S. Miller3019de12011-06-06 16:41:33 -07006931 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07006932
6933 driver = parent->driver;
6934 if (driver && driver->name)
David S. Miller3019de12011-06-06 16:41:33 -07006935 return driver->name;
6936 return empty;
Arjan van de Ven6579e572008-07-21 13:31:48 -07006937}
6938
Joe Perchesb004ff42012-09-12 20:12:19 -07006939static int __netdev_printk(const char *level, const struct net_device *dev,
Joe Perches256df2f2010-06-27 01:02:35 +00006940 struct va_format *vaf)
6941{
6942 int r;
6943
Joe Perchesb004ff42012-09-12 20:12:19 -07006944 if (dev && dev->dev.parent) {
Joe Perches666f3552012-09-12 20:14:11 -07006945 r = dev_printk_emit(level[1] - '0',
6946 dev->dev.parent,
6947 "%s %s %s: %pV",
6948 dev_driver_string(dev->dev.parent),
6949 dev_name(dev->dev.parent),
6950 netdev_name(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07006951 } else if (dev) {
Joe Perches256df2f2010-06-27 01:02:35 +00006952 r = printk("%s%s: %pV", level, netdev_name(dev), vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07006953 } else {
Joe Perches256df2f2010-06-27 01:02:35 +00006954 r = printk("%s(NULL net_device): %pV", level, vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07006955 }
Joe Perches256df2f2010-06-27 01:02:35 +00006956
6957 return r;
6958}
6959
6960int netdev_printk(const char *level, const struct net_device *dev,
6961 const char *format, ...)
6962{
6963 struct va_format vaf;
6964 va_list args;
6965 int r;
6966
6967 va_start(args, format);
6968
6969 vaf.fmt = format;
6970 vaf.va = &args;
6971
6972 r = __netdev_printk(level, dev, &vaf);
Joe Perchesb004ff42012-09-12 20:12:19 -07006973
Joe Perches256df2f2010-06-27 01:02:35 +00006974 va_end(args);
6975
6976 return r;
6977}
6978EXPORT_SYMBOL(netdev_printk);
6979
6980#define define_netdev_printk_level(func, level) \
6981int func(const struct net_device *dev, const char *fmt, ...) \
6982{ \
6983 int r; \
6984 struct va_format vaf; \
6985 va_list args; \
6986 \
6987 va_start(args, fmt); \
6988 \
6989 vaf.fmt = fmt; \
6990 vaf.va = &args; \
6991 \
6992 r = __netdev_printk(level, dev, &vaf); \
Joe Perchesb004ff42012-09-12 20:12:19 -07006993 \
Joe Perches256df2f2010-06-27 01:02:35 +00006994 va_end(args); \
6995 \
6996 return r; \
6997} \
6998EXPORT_SYMBOL(func);
6999
7000define_netdev_printk_level(netdev_emerg, KERN_EMERG);
7001define_netdev_printk_level(netdev_alert, KERN_ALERT);
7002define_netdev_printk_level(netdev_crit, KERN_CRIT);
7003define_netdev_printk_level(netdev_err, KERN_ERR);
7004define_netdev_printk_level(netdev_warn, KERN_WARNING);
7005define_netdev_printk_level(netdev_notice, KERN_NOTICE);
7006define_netdev_printk_level(netdev_info, KERN_INFO);
7007
Pavel Emelyanov46650792007-10-08 20:38:39 -07007008static void __net_exit netdev_exit(struct net *net)
Eric W. Biederman881d9662007-09-17 11:56:21 -07007009{
7010 kfree(net->dev_name_head);
7011 kfree(net->dev_index_head);
7012}
7013
Denis V. Lunev022cbae2007-11-13 03:23:50 -08007014static struct pernet_operations __net_initdata netdev_net_ops = {
Eric W. Biederman881d9662007-09-17 11:56:21 -07007015 .init = netdev_init,
7016 .exit = netdev_exit,
7017};
7018
Pavel Emelyanov46650792007-10-08 20:38:39 -07007019static void __net_exit default_device_exit(struct net *net)
Eric W. Biedermance286d32007-09-12 13:53:49 +02007020{
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007021 struct net_device *dev, *aux;
Eric W. Biedermance286d32007-09-12 13:53:49 +02007022 /*
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007023 * Push all migratable network devices back to the
Eric W. Biedermance286d32007-09-12 13:53:49 +02007024 * initial network namespace
7025 */
7026 rtnl_lock();
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007027 for_each_netdev_safe(net, dev, aux) {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007028 int err;
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007029 char fb_name[IFNAMSIZ];
Eric W. Biedermance286d32007-09-12 13:53:49 +02007030
7031 /* Ignore unmoveable devices (i.e. loopback) */
7032 if (dev->features & NETIF_F_NETNS_LOCAL)
7033 continue;
7034
Eric W. Biedermane008b5f2009-11-29 22:25:30 +00007035 /* Leave virtual devices for the generic cleanup */
7036 if (dev->rtnl_link_ops)
7037 continue;
Eric W. Biedermand0c082c2008-11-05 15:59:38 -08007038
Lucas De Marchi25985ed2011-03-30 22:57:33 -03007039 /* Push remaining network devices to init_net */
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007040 snprintf(fb_name, IFNAMSIZ, "dev%d", dev->ifindex);
7041 err = dev_change_net_namespace(dev, &init_net, fb_name);
Eric W. Biedermance286d32007-09-12 13:53:49 +02007042 if (err) {
Joe Perches7b6cd1c2012-02-01 10:54:43 +00007043 pr_emerg("%s: failed to move %s to init_net: %d\n",
7044 __func__, dev->name, err);
Pavel Emelyanovaca51392008-05-08 01:24:25 -07007045 BUG();
Eric W. Biedermance286d32007-09-12 13:53:49 +02007046 }
7047 }
7048 rtnl_unlock();
7049}
7050
Eric W. Biederman50624c92013-09-23 21:19:49 -07007051static void __net_exit rtnl_lock_unregistering(struct list_head *net_list)
7052{
7053 /* Return with the rtnl_lock held when there are no network
7054 * devices unregistering in any network namespace in net_list.
7055 */
7056 struct net *net;
7057 bool unregistering;
7058 DEFINE_WAIT(wait);
7059
7060 for (;;) {
7061 prepare_to_wait(&netdev_unregistering_wq, &wait,
7062 TASK_UNINTERRUPTIBLE);
7063 unregistering = false;
7064 rtnl_lock();
7065 list_for_each_entry(net, net_list, exit_list) {
7066 if (net->dev_unreg_count > 0) {
7067 unregistering = true;
7068 break;
7069 }
7070 }
7071 if (!unregistering)
7072 break;
7073 __rtnl_unlock();
7074 schedule();
7075 }
7076 finish_wait(&netdev_unregistering_wq, &wait);
7077}
7078
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007079static void __net_exit default_device_exit_batch(struct list_head *net_list)
7080{
7081 /* At exit all network devices most be removed from a network
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04007082 * namespace. Do this in the reverse order of registration.
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007083 * Do this across as many network namespaces as possible to
7084 * improve batching efficiency.
7085 */
7086 struct net_device *dev;
7087 struct net *net;
7088 LIST_HEAD(dev_kill_list);
7089
Eric W. Biederman50624c92013-09-23 21:19:49 -07007090 /* To prevent network device cleanup code from dereferencing
7091 * loopback devices or network devices that have been freed
7092 * wait here for all pending unregistrations to complete,
7093 * before unregistring the loopback device and allowing the
7094 * network namespace be freed.
7095 *
7096 * The netdev todo list containing all network devices
7097 * unregistrations that happen in default_device_exit_batch
7098 * will run in the rtnl_unlock() at the end of
7099 * default_device_exit_batch.
7100 */
7101 rtnl_lock_unregistering(net_list);
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007102 list_for_each_entry(net, net_list, exit_list) {
7103 for_each_netdev_reverse(net, dev) {
7104 if (dev->rtnl_link_ops)
7105 dev->rtnl_link_ops->dellink(dev, &dev_kill_list);
7106 else
7107 unregister_netdevice_queue(dev, &dev_kill_list);
7108 }
7109 }
7110 unregister_netdevice_many(&dev_kill_list);
7111 rtnl_unlock();
7112}
7113
Denis V. Lunev022cbae2007-11-13 03:23:50 -08007114static struct pernet_operations __net_initdata default_device_ops = {
Eric W. Biedermance286d32007-09-12 13:53:49 +02007115 .exit = default_device_exit,
Eric W. Biederman04dc7f6b2009-12-03 02:29:04 +00007116 .exit_batch = default_device_exit_batch,
Eric W. Biedermance286d32007-09-12 13:53:49 +02007117};
7118
Linus Torvalds1da177e2005-04-16 15:20:36 -07007119/*
7120 * Initialize the DEV module. At boot time this walks the device list and
7121 * unhooks any devices that fail to initialise (normally hardware not
7122 * present) and leaves us with a valid list of present and active devices.
7123 *
7124 */
7125
7126/*
7127 * This is called single threaded during boot, so no need
7128 * to take the rtnl semaphore.
7129 */
7130static int __init net_dev_init(void)
7131{
7132 int i, rc = -ENOMEM;
7133
7134 BUG_ON(!dev_boot_phase);
7135
Linus Torvalds1da177e2005-04-16 15:20:36 -07007136 if (dev_proc_init())
7137 goto out;
7138
Eric W. Biederman8b41d182007-09-26 22:02:53 -07007139 if (netdev_kobject_init())
Linus Torvalds1da177e2005-04-16 15:20:36 -07007140 goto out;
7141
7142 INIT_LIST_HEAD(&ptype_all);
Pavel Emelyanov82d8a8672007-11-26 20:12:58 +08007143 for (i = 0; i < PTYPE_HASH_SIZE; i++)
Linus Torvalds1da177e2005-04-16 15:20:36 -07007144 INIT_LIST_HEAD(&ptype_base[i]);
7145
Vlad Yasevich62532da2012-11-15 08:49:10 +00007146 INIT_LIST_HEAD(&offload_base);
7147
Eric W. Biederman881d9662007-09-17 11:56:21 -07007148 if (register_pernet_subsys(&netdev_net_ops))
7149 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007150
7151 /*
7152 * Initialise the packet receive queues.
7153 */
7154
KAMEZAWA Hiroyuki6f912042006-04-10 22:52:50 -07007155 for_each_possible_cpu(i) {
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007156 struct softnet_data *sd = &per_cpu(softnet_data, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007157
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007158 skb_queue_head_init(&sd->input_pkt_queue);
Changli Gao6e7676c2010-04-27 15:07:33 -07007159 skb_queue_head_init(&sd->process_queue);
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007160 INIT_LIST_HEAD(&sd->poll_list);
Changli Gaoa9cbd582010-04-26 23:06:24 +00007161 sd->output_queue_tailp = &sd->output_queue;
Eric Dumazetdf334542010-03-24 19:13:54 +00007162#ifdef CONFIG_RPS
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007163 sd->csd.func = rps_trigger_softirq;
7164 sd->csd.info = sd;
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007165 sd->cpu = i;
Tom Herbert1e94d722010-03-18 17:45:44 -07007166#endif
Tom Herbert0a9627f2010-03-16 08:03:29 +00007167
Eric Dumazete36fa2f2010-04-19 21:17:14 +00007168 sd->backlog.poll = process_backlog;
7169 sd->backlog.weight = weight_p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07007170 }
7171
Linus Torvalds1da177e2005-04-16 15:20:36 -07007172 dev_boot_phase = 0;
7173
Eric W. Biederman505d4f72008-11-07 22:54:20 -08007174 /* The loopback device is special if any other network devices
7175 * is present in a network namespace the loopback device must
7176 * be present. Since we now dynamically allocate and free the
7177 * loopback device ensure this invariant is maintained by
7178 * keeping the loopback device as the first device on the
7179 * list of network devices. Ensuring the loopback devices
7180 * is the first device that appears and the last network device
7181 * that disappears.
7182 */
7183 if (register_pernet_device(&loopback_net_ops))
7184 goto out;
7185
7186 if (register_pernet_device(&default_device_ops))
7187 goto out;
7188
Carlos R. Mafra962cf362008-05-15 11:15:37 -03007189 open_softirq(NET_TX_SOFTIRQ, net_tx_action);
7190 open_softirq(NET_RX_SOFTIRQ, net_rx_action);
Linus Torvalds1da177e2005-04-16 15:20:36 -07007191
7192 hotcpu_notifier(dev_cpu_callback, 0);
7193 dst_init();
Linus Torvalds1da177e2005-04-16 15:20:36 -07007194 rc = 0;
7195out:
7196 return rc;
7197}
7198
7199subsys_initcall(net_dev_init);